ASF Infra: Delete CNAME

This causes the GitHub interface to break. Removing as per INFRA-25342 to disable gh pages.
1 file changed
tree: 0a8b506781abb3b7ba310a803c8a876b6f7fb0e5
  1. .github/
  2. analytic_engine/
  3. benchmarks/
  4. catalog/
  5. catalog_impls/
  6. cluster/
  7. common_types/
  8. components/
  9. df_engine_extensions/
  10. df_operator/
  11. docker/
  12. docs/
  13. integration_tests/
  14. interpreters/
  15. meta_client/
  16. partition_table_engine/
  17. proxy/
  18. query_engine/
  19. query_frontend/
  20. remote_engine_client/
  21. router/
  22. scripts/
  23. server/
  24. src/
  25. system_catalog/
  26. table_engine/
  27. tools/
  28. .asf.yaml
  29. .dockerignore
  30. .gitignore
  31. .gitmodules
  32. .pre-commit-config.yaml
  33. Cargo.lock
  34. Cargo.toml
  35. clippy.toml
  36. CONTRIBUTING.md
  37. Dockerfile
  38. LICENSE
  39. licenserc.toml
  40. Makefile
  41. README-CN.md
  42. README.md
  43. rust-toolchain.toml
  44. rustfmt.toml
README.md

CeresDB

License CI OpenIssue

中文

HoraeDB is a high-performance, distributed, cloud native time-series database.

Documentation

Quick Start

Run with Docker

Run HoraeDB standalone Server.

docker run -d --name horaedb-server \
  -p 8831:8831 \
  -p 3307:3307 \
  -p 5440:5440 \
  ghcr.io/apache/horaedb-server:nightly-20231222-f57b3827

Create Table.

curl --location --request POST 'http://127.0.0.1:5440/sql' \
-d '
CREATE TABLE `demo` (
    `name` string TAG,
    `value` double NOT NULL,
    `t` timestamp NOT NULL,
    timestamp KEY (t))
ENGINE=Analytic
  with
(enable_ttl="false")
'

Write data with SQL.

curl --location --request POST 'http://127.0.0.1:5440/sql' \
-d '
INSERT INTO demo (t, name, value)
    VALUES (1702224000000, "horaedb", 100)
'

Read data with SQL.

curl --location --request POST 'http://127.0.0.1:5440/sql' \
-d '
SELECT * FROM `demo`
'

Run from source code

See details here.

Contributing

Any contribution is welcome!

Discuss at dev mailing list (subscribe / unsubscribe / archives)

Send request to dev@horaedb.apache.org to join Horadb slack channel.

Read our Contributing Guide and make your first contribution!

Acknowledgment

When develop HoraeDB, we benefit a lot from several other open source projects, such as influxdb_iox, tikv etc, thanks for their awesome work.

In our production usage, we heavily use OceanBase as implementation of both WAL and ObjectStorage, and OceanBase team help us maintain stability of our cluster, thanks for their kindly support.

License

HoraeDB is under Apache License 2.0.