-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Avoid schema validation by default in ArrowEngine #6536
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
Could perhaps use a test? |
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.
LGTM, one question about the implementation, which is also present on master so not a huge deal to fix here.
Or perhaps a benchmark in https://github.com/dask/dask-benchmarks, but we need a bit more tooling around that to automatically detect and report regressions. |
I modified
Yeah, we should definitely try to incorperate meaningful parquet/IO benchmarks to detect these types of regressions |
I suggest this is a separate item of work |
Thanks! |
Addresses cudf#6055
Given the computational expense required to validate the schema of every file in a dataset, we should certainly be avoiding this by default.
Example/motivation (I can confirm that this PR achieves the same performance improvement).
Non-
dask_cudf
example:With This PR:
Before This PR:
black dask
/flake8 dask