This repository has been archived by the owner on Jun 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
push based Vayu Execution Engine with multiple pipelines support (#4)
- Loading branch information
1 parent
6d86681
commit 71eaf97
Showing
33 changed files
with
1,691 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"rust-analyzer.linkedProjects": [ | ||
"./Cargo.toml" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule arrow-datafusion
added at
4fcb0b
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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", | ||
] } |
Oops, something went wrong.