Skip to content

Commit

Permalink
doc: add new logo to readme (#1161)
Browse files Browse the repository at this point in the history
  • Loading branch information
milenkovicm authored Jan 15, 2025
1 parent 810ac56 commit e5e50e9
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,14 @@

# Ballista: Making DataFusion Applications Distributed

Ballista is a distributed execution engine which makes [Apache DataFusion](https://github.com/apache/datafusion) applications distributed.
[![Apache licensed][license-badge]][license-url]

[license-badge]: https://img.shields.io/badge/license-Apache%20v2-blue.svg
[license-url]: https://github.com/apache/datafusion-comet/blob/main/LICENSE.txt

<img src="docs/source/_static/images/ballista-logo.png" width="512" alt="logo"/>

Ballista is a distributed query execution engine that enhances [Apache DataFusion](https://github.com/apache/datafusion) by enabling the parallelized execution of workloads across multiple nodes in a distributed environment.

Existing DataFusion application:

Expand All @@ -45,7 +52,7 @@ async fn main() -> datafusion::error::Result<()> {
can be distributed with few lines of code changed:

> [!IMPORTANT]
> There is a gap between DataFusion and Ballista, which may bring incompatibilities. The community is working hard to close this gap
> There is a gap between DataFusion and Ballista, which may bring incompatibilities. The community is actively working to close the gap
```rust
use ballista::prelude::*;
Expand All @@ -68,7 +75,7 @@ async fn main() -> datafusion::error::Result<()> {
}
```

If you are looking for documentation or more examples, please refer to the [Ballista User Guide][user-guide].
For documentation or more examples, please refer to the [Ballista User Guide][user-guide].

## Architecture

Expand Down

0 comments on commit e5e50e9

Please sign in to comment.