-
Notifications
You must be signed in to change notification settings - Fork 174
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[FEAT] New Local Execution Model #2437
Conversation
tests/integration/test_tpch.py
Outdated
def test_tpch_q6(tmp_path, check_answer, get_df): | ||
daft.context.set_execution_config(enable_aqe=True, enable_native_executor=True) | ||
start = time.time() | ||
daft_df = answers.q6(get_df) | ||
daft_pd_df = daft_df.to_pandas() | ||
end = time.time() | ||
print(f"Time taken: {end-start}") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Currently the runtime is the same for current engine vs the simple local execution engine in this PR
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #2437 +/- ##
==========================================
+ Coverage 63.12% 63.31% +0.19%
==========================================
Files 938 961 +23
Lines 105269 107395 +2126
==========================================
+ Hits 66449 68002 +1553
- Misses 38820 39393 +573
|
|
||
let mut handles = FuturesUnordered::new(); | ||
let mut receivers = vec![]; | ||
while let Some(morsel) = source_stream.next().await { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There should be a fixed number of parallel pipelines that are pushed data to in round robin fashion
follow on PRs:
|
Prototype for new local execution model