Add default LoadJobConfig to Client #1519
Labels
api: bigquery
Issues related to the googleapis/python-bigquery API.
type: feature request
‘Nice-to-have’ improvement, new feature or different behavior or design.
Is your feature request related to a problem? Please describe.
Client can supports the default QueryJobConfig (commit d7a9a80) a while ago. This is helpful to bind a session_id for the query jobs (related #1512).
After BQ load jobs support connection_properties with session_id (commit cd0aaa1), we would like to introduce
default_load_job_config
to Client so that the similar connection properties can be passed.Describe the solution you'd like
Can we introduce
default_load_job_config
to Client (similar to commit cd0aaa1)Describe alternatives you've considered
The alternatives solution would patching the connection_properties to all load_* APIs, which is not workable if we need to call an external libraries (e.g. ibis), where we can only config the client settings but its load APIs are hidden within the external libraries.
The text was updated successfully, but these errors were encountered: