-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
Remove ObjectStore from FileStream (#4533) #4601
Remove ObjectStore from FileStream (#4533) #4601
Conversation
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.
Seems reasonable to me -- is the rationale that any opener that needs a object_store
reference should obtain one as part of construction (rather than requiring it on the trait)?
The rationale is that some users are not using ObjectStore at all, and are using ParquetFileReaderFactory to provide a custom AsyncFileReader to the parquet crate's async reader. The FileStream plumbing, however, still required an ObjectStore necessitating a dummy object to be propagated through only to be ignored. |
LGTM |
I plan to merge this this afternoon, unless I hear any objections |
Benchmark runs are scheduled for baseline = a5cf577 and contender = 84d3ae8. 84d3ae8 is a master commit associated with this PR. Results will be available as each benchmark for each run completes. |
Which issue does this PR close?
Closes #4533
Rationale for this change
Reduces the coupling between ParquetExec and ObjectStore
What changes are included in this PR?
Are these changes tested?
Are there any user-facing changes?