You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@opendal.apache.org by xu...@apache.org on 2023/03/20 03:54:43 UTC

[incubator-opendal] branch main updated: docs: Update comparison vs object_store (#1698)

This is an automated email from the ASF dual-hosted git repository.

xuanwo pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-opendal.git


The following commit(s) were added to refs/heads/main by this push:
     new 4fcb3678 docs: Update comparison vs object_store (#1698)
4fcb3678 is described below

commit 4fcb3678888537268326a8de7cbb9af0001f26e9
Author: Xuanwo <gi...@xuanwo.io>
AuthorDate: Mon Mar 20 11:54:37 2023 +0800

    docs: Update comparison vs object_store (#1698)
    
    Signed-off-by: Xuanwo <gi...@xuanwo.io>
---
 core/src/docs/comparisons/vs_object_store.md | 21 +++++++++++++--------
 1 file changed, 13 insertions(+), 8 deletions(-)

diff --git a/core/src/docs/comparisons/vs_object_store.md b/core/src/docs/comparisons/vs_object_store.md
index 167c8146..1185c065 100644
--- a/core/src/docs/comparisons/vs_object_store.md
+++ b/core/src/docs/comparisons/vs_object_store.md
@@ -21,23 +21,28 @@ Yes, of course. Both `opendal` and `object_store` are developed in [Rust](https:
 
 Both `opendal` and `object_store` are licensed under [Apache 2.0](https://www.apache.org/licenses/LICENSE-2.0).
 
+### Owner
+
+`object_store` is a part of `Apache Arrow` which means it's hosted and maintained by [Apache Software Foundation](https://www.apache.org/).
+
+`opendal` is now hosted by [Apache Incubator](https://incubator.apache.org/projects/opendal.html).
+
 ### Domain
 
 Both `opendal` and `object_store` can be used to access data stored on object storage services. The primary users of those projects are both cloud-native databases too:
 
-- `opendal` is mainly used by [databend](https://github.com/datafuselabs/databend): A modern Elasticity and Performance cloud data warehouse
+- `opendal` is mainly used by:
+  - [databend](https://github.com/datafuselabs/databend): A modern Elasticity and Performance cloud data warehouse
+  - [GreptimeDB](https://github.com/GreptimeTeam/greptimedb): An open-source, cloud-native, distributed time-series database.
+  - [mozilla/sccache](https://github.com/mozilla/sccache/): sccache is ccache with cloud storage
+  - [risingwave](https://github.com/risingwavelabs/risingwave): A Distributed SQL Database for Stream Processing
+  - [Vector](https://github.com/vectordotdev/vector): A high-performance observability data pipeline.
 - `object_store` is mainly used by:
   - [datafusion](https://github.com/apache/arrow-datafusion): Apache Arrow DataFusion SQL Query Engine
   - [Influxdb IOx](https://github.com/influxdata/influxdb_iox/): The new core of InfluxDB is written in Rust on top of Apache Arrow.
 
 ## Differences
 
-### Owner
-
-`object_store` is a part of `Apache Arrow` which means it's hosted and maintained by [Apache Software Foundation](https://www.apache.org/).
-
-`opendal` is now hosted and maintained by [Apache Software Foundation](https://www.apache.org/).
-
 ### Vision
 
 `opendal` is Open Data Access Layer that accesses data freely, painlessly, and efficiently. `object_store` is more focused on async object store support.
@@ -158,7 +163,7 @@ builder.bucket("example");
 builder.access_key_id("access_key_id");
 builder.secret_access_key("secret_access_key");
 
-let store = Operator::create(builder)?.finish();
+let store = Operator::new(builder)?.finish();
 let r = store.reader("data.parquet").await?;
 ```