Skip to content

Commit

Permalink
doc: Updated known users list and usage dependency description (#9718)
Browse files Browse the repository at this point in the history
* minor: update known users and usage description
  • Loading branch information
comphead committed Mar 21, 2024
1 parent dc373a3 commit edaf235
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/source/user-guide/example-usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,20 +23,20 @@ In this example some simple processing is performed on the [`example.csv`](https

Even [`more code examples`](https://github.com/apache/arrow-datafusion/tree/main/datafusion-examples) attached to the project.

## Add DataFusion as a dependency
## Add published DataFusion dependency

Find latest available Datafusion version on [DataFusion's
crates.io] page. Add the dependency to your `Cargo.toml` file:

```toml
datafusion = "31"
datafusion = "latest_version"
tokio = "1.0"
```

## Add DataFusion latest codebase as a dependency
## Add latest non published DataFusion dependency

Cargo supports adding dependency directly from Github which allows testing out latest DataFusion codebase without waiting the code to be released to crates.io
according to the [DataFusion release schedule](https://github.com/apache/arrow-datafusion/blob/main/dev/release/README.md#release-process)
DataFusion changes are published to `crates.io` according to [release schedule](https://github.com/apache/arrow-datafusion/blob/main/dev/release/README.md#release-process)
In case if it is required to test out DataFusion changes which are merged but yet to be published, Cargo supports adding dependency directly to Github branch

```toml
datafusion = { git = "https://github.com/apache/arrow-datafusion", branch = "main"}
Expand Down
1 change: 1 addition & 0 deletions docs/source/user-guide/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ Here are some active projects using DataFusion:

- [Arroyo](https://github.com/ArroyoSystems/arroyo) Distributed stream processing engine in Rust
- [Ballista](https://github.com/apache/arrow-ballista) Distributed SQL Query Engine
- [Comet](https://github.com/apache/arrow-datafusion-comet) Apache Spark native query execution plugin
- [CnosDB](https://github.com/cnosdb/cnosdb) Open Source Distributed Time Series Database
- [Cube Store](https://github.com/cube-js/cube.js/tree/master/rust)
- [Dask SQL](https://github.com/dask-contrib/dask-sql) Distributed SQL query engine in Python
Expand Down

0 comments on commit edaf235

Please sign in to comment.