You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
refactor: introduce ai operator namespace and deprecated semantics (#1511)
* refactor: introduce ai operator namespace and deprecated semantics
* duplicate semantic op options too
* improve test coverage
* relax test condition
* clean up semantics and add public docs
* addressing comments
* use FutureWarning for deprecation
* copy over recent top_k changes
Copy file name to clipboardExpand all lines: bigframes/_config/compute_options.py
+19-4Lines changed: 19 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -60,19 +60,31 @@ class ComputeOptions:
60
60
bytes billed beyond this limit will fail (without incurring a
61
61
charge). If unspecified, this will be set to your project default.
62
62
See `maximum_bytes_billed`: https://cloud.google.com/python/docs/reference/bigquery/latest/google.cloud.bigquery.job.QueryJobConfig#google_cloud_bigquery_job_QueryJobConfig_maximum_bytes_billed.
63
+
63
64
enable_multi_query_execution (bool, Options):
64
65
If enabled, large queries may be factored into multiple smaller queries
65
66
in order to avoid generating queries that are too complex for the query
66
67
engine to handle. However this comes at the cost of increase cost and latency.
68
+
67
69
extra_query_labels (Dict[str, Any], Options):
68
70
Stores additional custom labels for query configuration.
0 commit comments