feat(bigquery): add QueryResultsFormat and ArrowSerializationOptions configurations - #13942
Open
jinseopkim0 wants to merge 6 commits into
Open
feat(bigquery): add QueryResultsFormat and ArrowSerializationOptions configurations#13942jinseopkim0 wants to merge 6 commits into
jinseopkim0 wants to merge 6 commits into
Conversation
Contributor
There was a problem hiding this comment.
Code Review
This pull request introduces support for Apache Arrow serialization options in BigQuery queries by adding the ArrowSerializationOptions class, the QueryResultsFormat enum, and integrating them into QueryJobConfiguration. However, the new options are currently not mapped in QueryJobConfiguration.toPb() and QueryJobConfiguration.fromPb(), which will cause them to be silently dropped during serialization. It is recommended to implement these mappings to ensure the feature functions correctly.
jinseopkim0
force-pushed
the
feat-bigquery-arrow-config
branch
from
August 7, 2026 16:13
4f0d80d to
d43166d
Compare
jinseopkim0
marked this pull request as ready for review
August 7, 2026 17:12
jinseopkim0
force-pushed
the
feat-bigquery-arrow-config
branch
from
August 7, 2026 19:19
d43166d to
b441a9d
Compare
…rrowSerializationOptionsConverter
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Stacked PR 1 of 3: Exposes the public configuration API surface (
QueryResultsFormatandArrowSerializationOptions) and binds them to QueryJobConfiguration.Note: The new classes and methods are annotated with
@BetaApito indicate that the API surface is experimental while implementation PRs (PR 2 of 3 and PR 3 of 3) are merged. The@BetaApiannotation will be removed upon completion of the final PR in the stack.b/540476814