-
Notifications
You must be signed in to change notification settings - Fork 26
Fix FFI errors, and add script for running TPC-H #20
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
Conversation
| sql = sql.strip() | ||
| if len(sql) > 0: | ||
| print(f"Executing: {sql}") | ||
| rows = ctx.sql(sql) |
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.
How does this time relate to the fact that the context only wait for the first partition ? see https://github.com/apache/datafusion-ray/blob/main/datafusion_ray/context.py#L234
is there always a single partition?
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.
Yes, the final query stage always has a single output partition. You can verify this by looking at the expected plans in the repo.
|
I will go ahead and merge this since the current main branch is broken without this FFI fix |
Closes #10
Changes in this PR:
I can now run TPC-H and see tasks distributed across both nodes in my Ray cluster.