Skip to content
This repository has been archived by the owner on Jun 6, 2024. It is now read-only.

Commit

Permalink
push based Vayu Execution Engine with multiple pipelines support (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
yashkothari42 authored Mar 27, 2024
1 parent 6d86681 commit 71eaf97
Show file tree
Hide file tree
Showing 33 changed files with 1,691 additions and 7 deletions.
Binary file added .DS_Store
Binary file not shown.
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "arrow-datafusion"]
path = arrow-datafusion
url = [email protected]:yashkothari42/arrow-datafusion.git
5 changes: 5 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"rust-analyzer.linkedProjects": [
"./Cargo.toml"
]
}
10 changes: 6 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
[workspace]
members = ["datafusion-integration", "lighting", "vayu"]
exclude = ["arrow-datafusion"]

[package]
name = "ee2"
version = "0.1.0"
Expand All @@ -6,7 +10,5 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
substrait = "0.24.1"
prost = "0.12"
prost-types = "0.12"
protoc-rust = "2.28.0"
arrow = { version = "50.0.0"}
tokio = { version = "1.4.0", features = ["rt", "rt-multi-thread", "macros"] }
1 change: 1 addition & 0 deletions arrow-datafusion
Submodule arrow-datafusion added at 4fcb0b
Binary file added datafusion-integration/.DS_Store
Binary file not shown.
16 changes: 16 additions & 0 deletions datafusion-integration/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
[package]
name = "datafusion_integration"
version = "0.1.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
arrow = { version = "50.0.0"}
tokio = { version = "1.4.0", features = ["rt", "rt-multi-thread", "macros"] }
vayu = { path = "../vayu", version = "0.1.0"}
datafusion = { version = "36.0.0", path = "../arrow-datafusion/datafusion/core"}
datafusion-proto = { version = "36.0.0", path = "../arrow-datafusion/datafusion/proto"}
ahash = { version = "0.8", default-features = false, features = [
"runtime-rng",
] }
Loading

0 comments on commit 71eaf97

Please sign in to comment.