Skip to content

Commit

Permalink
Move BanyanDB storage to the recommended storage. (#12202)
Browse files Browse the repository at this point in the history
  • Loading branch information
wu-sheng authored May 9, 2024
1 parent 28bf552 commit c3a2368
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 12 deletions.
1 change: 1 addition & 0 deletions docs/en/changes/changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -182,5 +182,6 @@
* Add doc of one-line quick start script for different storage types.
* Add FAQ for `Why is Clickhouse or Loki or xxx not supported as a storage option?`.
* Add `SWIP-8 Support ActiveMQ Monitoring`.
* Move BanyanDB storage to the recommended storage.

All issues and pull requests are [here](https://github.com/apache/skywalking/milestone/202?closed=1)
28 changes: 20 additions & 8 deletions docs/en/setup/backend/backend-storage.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,30 @@ storage:
```
Natively supported storage:
## BanyanDB - Native APM Database
- [BanyanDB](storages/banyandb.md)
This is recommended to use for medium scale deployments from 0.6 until 1.0.
BanyanDB is going to be our next generation storage solution. It has shown high potential performance
improvement. Less than 50% CPU usage and 50% memory usage with 40% disk volume compared to Elasticsearch in the same scale.
We are looking for early adoption. Please contact us through slack channels if you are interested in using BanyanDB.
## SQL database
- [H2](storages/h2.md)
- [OpenSearch](storages/elasticsearch.md#opensearch)
- [ElasticSearch 7 and 8](storages/elasticsearch.md#elasticsearch).
H2 is the default storage option in the distribution package. It is recommended to use H2 for testing and development ONLY.
- [MySQL and its compatible databases](storages/mysql.md)
- [PostgreSQL and its compatible databases](storages/postgresql.md)
- [BanyanDB(alpha stage)](storages/banyandb.md)
H2 is the default storage option in the distribution package. It is recommended to use H2 for testing and development ONLY.
Elasticsearch and OpenSearch are recommended for production environments, specially for large scale deployments.
MySQL and PostgreSQL are recommended for production environments for medium scale deployments, especially for low trace
and log sampling rate. Some of their compatible databases may support larger scale better, such as TiDB and AWS Aurora.
BanyanDB is going to be our next generation storage solution. It is still in alpha stage. It has shown high potential performance
improvement. Less than 50% CPU usage and 50% memory usage with 40% disk volume compared to Elasticsearch in the same scale with 100% sampling.
We are looking for early adoption, and it would be our first-class recommended storage option since 2024.
## Elasticsearch+
- [OpenSearch](storages/elasticsearch.md#opensearch)
- [ElasticSearch 7 and 8](storages/elasticsearch.md#elasticsearch)
Elasticsearch and OpenSearch are recommended for production environments, specially for large scale deployments.
OpenSearch derived from Elasticsearch 7.10.2 and iterate by its own roadmap.
8 changes: 4 additions & 4 deletions docs/menu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,16 +62,16 @@ catalog:
catalog:
- name: "Introduction"
path: "/en/setup/backend/backend-storage"
- name: "BanyanDB"
path: "/en/setup/backend/storages/banyandb"
- name: "H2"
path: "/en/setup/backend/storages/h2"
- name: "Elasticsearch & OpenSearch"
path: "/en/setup/backend/storages/elasticsearch"
- name: "MySQL"
path: "/en/setup/backend/storages/mysql"
- name: "PostgreSQL"
path: "/en/setup/backend/storages/postgresql"
- name: "BanyanDB(Alpha)"
path: "/en/setup/backend/storages/banyandb"
- name: "Elasticsearch & OpenSearch"
path: "/en/setup/backend/storages/elasticsearch"
- name: "Setup External Communication Channels"
path: "/en/setup/backend/backend-expose"
- name: "Kafka Fetcher"
Expand Down

0 comments on commit c3a2368

Please sign in to comment.