chore: add some dependency project descriptions in notice (#1499)

## Rationale
Add some dependency project descriptions in `NOTICE`.

## Detailed Changes
1. Add some dependency project descriptions in `NOTICE`.
2. Add `DEPENDENCIES` file.

## Test Plan
No need.
19 files changed
tree: 558eb30b3a9d9224b26b5a8c189b5ffc29d87732
  1. .github/
  2. docker/
  3. docs/
  4. horaemeta/
  5. integration_tests/
  6. licenses/
  7. scripts/
  8. src/
  9. .asf.yaml
  10. .dockerignore
  11. .gitignore
  12. .gitmodules
  13. .pre-commit-config.yaml
  14. Cargo.lock
  15. Cargo.toml
  16. clippy.toml
  17. CONTRIBUTING.md
  18. DEPENDENCIES.tsv
  19. DISCLAIMER
  20. Dockerfile
  21. LICENSE
  22. licenserc.toml
  23. Makefile
  24. NOTICE
  25. README-CN.md
  26. README.md
  27. rust-toolchain.toml
  28. rustfmt.toml
README.md

HoraeDB

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

Run HoraeDB cluster with two horaedb-server node and one horaemeta-server node.

docker compose -f docker/docker-compose.yaml up

Run from source code

See details here.

Create Table and Write/Read data

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`
'

Drop table.

curl --location --request POST 'http://127.0.0.1:5440/sql' \
-d '
Drop TABLE `demo`
'

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.