forked from google/adk-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquery_tool.py
More file actions
1326 lines (1177 loc) · 45.3 KB
/
query_tool.py
File metadata and controls
1326 lines (1177 loc) · 45.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from __future__ import annotations
import functools
import json
import types
from typing import Callable
from typing import Optional
import uuid
from google.auth.credentials import Credentials
from google.cloud import bigquery
from . import client
from ..tool_context import ToolContext
from .config import BigQueryToolConfig
from .config import WriteMode
BIGQUERY_SESSION_INFO_KEY = "bigquery_session_info"
def execute_sql(
project_id: str,
query: str,
credentials: Credentials,
settings: BigQueryToolConfig,
tool_context: ToolContext,
dry_run: bool = False,
) -> dict:
"""Run a BigQuery or BigQuery ML SQL query in the project and return the result.
Args:
project_id (str): The GCP project id in which the query should be
executed.
query (str): The BigQuery SQL query to be executed.
credentials (Credentials): The credentials to use for the request.
settings (BigQueryToolConfig): The settings for the tool.
tool_context (ToolContext): The context for the tool.
dry_run (bool, default False): If True, the query will not be executed.
Instead, the query will be validated and information about the query
will be returned. Defaults to False.
Returns:
dict: If `dry_run` is False, dictionary representing the result of the
query. If the result contains the key "result_is_likely_truncated"
with value True, it means that there may be additional rows matching
the query not returned in the result.
If `dry_run` is True, dictionary with "dry_run_info" field
containing query information returned by BigQuery.
Examples:
Fetch data or insights from a table:
>>> execute_sql("my_project",
... "SELECT island, COUNT(*) AS population "
... "FROM bigquery-public-data.ml_datasets.penguins GROUP BY island")
{
"status": "SUCCESS",
"rows": [
{
"island": "Dream",
"population": 124
},
{
"island": "Biscoe",
"population": 168
},
{
"island": "Torgersen",
"population": 52
}
]
}
Validate a query and estimate costs without executing it:
>>> execute_sql(
... "my_project",
... "SELECT island FROM "
... "bigquery-public-data.ml_datasets.penguins",
... dry_run=True
... )
{
"status": "SUCCESS",
"dry_run_info": {
"configuration": {
"dryRun": True,
"jobType": "QUERY",
"query": {
"destinationTable": {
"datasetId": "_...",
"projectId": "my_project",
"tableId": "anon..."
},
"priority": "INTERACTIVE",
"query": "SELECT island FROM bigquery-public-data.ml_datasets.penguins",
"useLegacySql": False,
"writeDisposition": "WRITE_TRUNCATE"
}
},
"jobReference": {
"location": "US",
"projectId": "my_project"
}
}
}
"""
try:
# Validate compute project if applicable
if (
settings.compute_project_id
and project_id != settings.compute_project_id
):
return {
"status": "ERROR",
"error_details": (
f"Cannot execute query in the project {project_id}, as the tool"
" is restricted to execute queries only in the project"
f" {settings.compute_project_id}."
),
}
# Get BigQuery client
bq_client = client.get_bigquery_client(
project=project_id,
credentials=credentials,
location=settings.location,
user_agent=settings.application_name,
)
# BigQuery connection properties where applicable
bq_connection_properties = None
if not settings or settings.write_mode == WriteMode.BLOCKED:
dry_run_query_job = bq_client.query(
query,
project=project_id,
job_config=bigquery.QueryJobConfig(dry_run=True),
)
if dry_run_query_job.statement_type != "SELECT":
return {
"status": "ERROR",
"error_details": "Read-only mode only supports SELECT statements.",
}
elif settings.write_mode == WriteMode.PROTECTED:
# In protected write mode, write operation only to a temporary artifact is
# allowed. This artifact must have been created in a BigQuery session. In
# such a scenario, the session info (session id and the anonymous dataset
# containing the artifact) is persisted in the tool context.
bq_session_info = tool_context.state.get(BIGQUERY_SESSION_INFO_KEY, None)
if bq_session_info:
bq_session_id, bq_session_dataset_id = bq_session_info
else:
session_creator_job = bq_client.query(
"SELECT 1",
project=project_id,
job_config=bigquery.QueryJobConfig(
dry_run=True, create_session=True
),
)
bq_session_id = session_creator_job.session_info.session_id
bq_session_dataset_id = session_creator_job.destination.dataset_id
# Remember the BigQuery session info for subsequent queries
tool_context.state[BIGQUERY_SESSION_INFO_KEY] = (
bq_session_id,
bq_session_dataset_id,
)
# Session connection property will be set in the query execution
bq_connection_properties = [
bigquery.ConnectionProperty("session_id", bq_session_id)
]
# Check the query type w.r.t. the BigQuery session
dry_run_query_job = bq_client.query(
query,
project=project_id,
job_config=bigquery.QueryJobConfig(
dry_run=True,
connection_properties=bq_connection_properties,
),
)
destination_dataset_id = None
if dry_run_query_job.destination:
destination_dataset_id = dry_run_query_job.destination.dataset_id
if (
dry_run_query_job.statement_type != "SELECT"
and destination_dataset_id != bq_session_dataset_id
and destination_dataset_id is not None
):
return {
"status": "ERROR",
"error_details": (
"Protected write mode only supports SELECT statements, or write"
" operations in the anonymous dataset of a BigQuery session."
),
}
# Finally execute the query and fetch the result
if dry_run:
job_config_kwargs = {"dry_run": True}
if bq_connection_properties:
job_config_kwargs["connection_properties"] = bq_connection_properties
job_config = bigquery.QueryJobConfig(**job_config_kwargs)
dry_run_job = bq_client.query(
query,
project=project_id,
job_config=job_config,
)
return {"status": "SUCCESS", "dry_run_info": dry_run_job.to_api_repr()}
job_config = (
bigquery.QueryJobConfig(connection_properties=bq_connection_properties)
if bq_connection_properties
else None
)
row_iterator = bq_client.query_and_wait(
query,
job_config=job_config,
project=project_id,
max_results=settings.max_query_result_rows,
)
rows = []
for row in row_iterator:
row_values = {}
for key, val in row.items():
try:
# if the json serialization of the value succeeds, use it as is
json.dumps(val)
except:
val = str(val)
row_values[key] = val
rows.append(row_values)
result = {"status": "SUCCESS", "rows": rows}
if (
settings.max_query_result_rows is not None
and len(rows) == settings.max_query_result_rows
):
result["result_is_likely_truncated"] = True
return result
except Exception as ex: # pylint: disable=broad-except
return {
"status": "ERROR",
"error_details": str(ex),
}
def _execute_sql_write_mode(*args, **kwargs) -> dict:
"""Run a BigQuery or BigQuery ML SQL query in the project and return the result.
Args:
project_id (str): The GCP project id in which the query should be
executed.
query (str): The BigQuery SQL query to be executed.
credentials (Credentials): The credentials to use for the request.
settings (BigQueryToolConfig): The settings for the tool.
tool_context (ToolContext): The context for the tool.
dry_run (bool, default False): If True, the query will not be executed.
Instead, the query will be validated and information about the query
will be returned. Defaults to False.
Returns:
dict: If `dry_run` is False, dictionary representing the result of the
query. If the result contains the key "result_is_likely_truncated"
with value True, it means that there may be additional rows matching
the query not returned in the result.
If `dry_run` is True, dictionary with "dry_run_info" field
containing query information returned by BigQuery.
Examples:
Fetch data or insights from a table:
>>> execute_sql("my_project",
... "SELECT island, COUNT(*) AS population "
... "FROM bigquery-public-data.ml_datasets.penguins GROUP BY island")
{
"status": "SUCCESS",
"rows": [
{
"island": "Dream",
"population": 124
},
{
"island": "Biscoe",
"population": 168
},
{
"island": "Torgersen",
"population": 52
}
]
}
Validate a query and estimate costs without executing it:
>>> execute_sql(
... "my_project",
... "SELECT island FROM "
... "bigquery-public-data.ml_datasets.penguins",
... dry_run=True
... )
{
"status": "SUCCESS",
"dry_run_info": {
"configuration": {
"dryRun": True,
"jobType": "QUERY",
"query": {
"destinationTable": {
"datasetId": "_...",
"projectId": "my_project",
"tableId": "anon..."
},
"priority": "INTERACTIVE",
"query": "SELECT island FROM bigquery-public-data.ml_datasets.penguins",
"useLegacySql": False,
"writeDisposition": "WRITE_TRUNCATE"
}
},
"jobReference": {
"location": "US",
"projectId": "my_project"
}
}
}
Create a table with schema prescribed:
>>> execute_sql("my_project",
... "CREATE TABLE my_project.my_dataset.my_table "
... "(island STRING, population INT64)")
{
"status": "SUCCESS",
"rows": []
}
Insert data into an existing table:
>>> execute_sql("my_project",
... "INSERT INTO my_project.my_dataset.my_table (island, population) "
... "VALUES ('Dream', 124), ('Biscoe', 168)")
{
"status": "SUCCESS",
"rows": []
}
Create a table from the result of a query:
>>> execute_sql("my_project",
... "CREATE TABLE my_project.my_dataset.my_table AS "
... "SELECT island, COUNT(*) AS population "
... "FROM bigquery-public-data.ml_datasets.penguins GROUP BY island")
{
"status": "SUCCESS",
"rows": []
}
Delete a table:
>>> execute_sql("my_project",
... "DROP TABLE my_project.my_dataset.my_table")
{
"status": "SUCCESS",
"rows": []
}
Copy a table to another table:
>>> execute_sql("my_project",
... "CREATE TABLE my_project.my_dataset.my_table_clone "
... "CLONE my_project.my_dataset.my_table")
{
"status": "SUCCESS",
"rows": []
}
Create a snapshot (a lightweight, read-optimized copy) of en existing
table:
>>> execute_sql("my_project",
... "CREATE SNAPSHOT TABLE my_project.my_dataset.my_table_snapshot "
... "CLONE my_project.my_dataset.my_table")
{
"status": "SUCCESS",
"rows": []
}
Create a BigQuery ML linear regression model:
>>> execute_sql("my_project",
... "CREATE MODEL `my_dataset.my_model` "
... "OPTIONS (model_type='linear_reg', input_label_cols=['body_mass_g']) AS "
... "SELECT * FROM `bigquery-public-data.ml_datasets.penguins` "
... "WHERE body_mass_g IS NOT NULL")
{
"status": "SUCCESS",
"rows": []
}
Evaluate BigQuery ML model:
>>> execute_sql("my_project",
... "SELECT * FROM ML.EVALUATE(MODEL `my_dataset.my_model`)")
{
"status": "SUCCESS",
"rows": [{'mean_absolute_error': 227.01223667447218,
'mean_squared_error': 81838.15989216768,
'mean_squared_log_error': 0.0050704473735013,
'median_absolute_error': 173.08081641661738,
'r2_score': 0.8723772534253441,
'explained_variance': 0.8723772534253442}]
}
Evaluate BigQuery ML model on custom data:
>>> execute_sql("my_project",
... "SELECT * FROM ML.EVALUATE(MODEL `my_dataset.my_model`, "
... "(SELECT * FROM `my_dataset.my_table`))")
{
"status": "SUCCESS",
"rows": [{'mean_absolute_error': 227.01223667447218,
'mean_squared_error': 81838.15989216768,
'mean_squared_log_error': 0.0050704473735013,
'median_absolute_error': 173.08081641661738,
'r2_score': 0.8723772534253441,
'explained_variance': 0.8723772534253442}]
}
Predict using BigQuery ML model:
>>> execute_sql("my_project",
... "SELECT * FROM ML.PREDICT(MODEL `my_dataset.my_model`, "
... "(SELECT * FROM `my_dataset.my_table`))")
{
"status": "SUCCESS",
"rows": [
{
"predicted_body_mass_g": "3380.9271650847013",
...
}, {
"predicted_body_mass_g": "3873.6072435386004",
...
},
...
]
}
Delete a BigQuery ML model:
>>> execute_sql("my_project", "DROP MODEL `my_dataset.my_model`")
{
"status": "SUCCESS",
"rows": []
}
Notes:
- If a destination table already exists, there are a few ways to overwrite
it:
- Use "CREATE OR REPLACE TABLE" instead of "CREATE TABLE".
- First run "DROP TABLE", followed by "CREATE TABLE".
- If a model already exists, there are a few ways to overwrite it:
- Use "CREATE OR REPLACE MODEL" instead of "CREATE MODEL".
- First run "DROP MODEL", followed by "CREATE MODEL".
"""
return execute_sql(*args, **kwargs)
def _execute_sql_protected_write_mode(*args, **kwargs) -> dict:
"""Run a BigQuery or BigQuery ML SQL query in the project and return the result.
Args:
project_id (str): The GCP project id in which the query should be
executed.
query (str): The BigQuery SQL query to be executed.
credentials (Credentials): The credentials to use for the request.
settings (BigQueryToolConfig): The settings for the tool.
tool_context (ToolContext): The context for the tool.
dry_run (bool, default False): If True, the query will not be executed.
Instead, the query will be validated and information about the query
will be returned. Defaults to False.
Returns:
dict: If `dry_run` is False, dictionary representing the result of the
query. If the result contains the key "result_is_likely_truncated"
with value True, it means that there may be additional rows matching
the query not returned in the result.
If `dry_run` is True, dictionary with "dry_run_info" field
containing query information returned by BigQuery.
Examples:
Fetch data or insights from a table:
>>> execute_sql("my_project",
... "SELECT island, COUNT(*) AS population "
... "FROM bigquery-public-data.ml_datasets.penguins GROUP BY island")
{
"status": "SUCCESS",
"rows": [
{
"island": "Dream",
"population": 124
},
{
"island": "Biscoe",
"population": 168
},
{
"island": "Torgersen",
"population": 52
}
]
}
Validate a query and estimate costs without executing it:
>>> execute_sql(
... "my_project",
... "SELECT island FROM "
... "bigquery-public-data.ml_datasets.penguins",
... dry_run=True
... )
{
"status": "SUCCESS",
"dry_run_info": {
"configuration": {
"dryRun": True,
"jobType": "QUERY",
"query": {
"destinationTable": {
"datasetId": "_...",
"projectId": "my_project",
"tableId": "anon..."
},
"priority": "INTERACTIVE",
"query": "SELECT island FROM bigquery-public-data.ml_datasets.penguins",
"useLegacySql": False,
"writeDisposition": "WRITE_TRUNCATE"
}
},
"jobReference": {
"location": "US",
"projectId": "my_project"
}
}
}
Create a temporary table with schema prescribed:
>>> execute_sql("my_project",
... "CREATE TEMP TABLE my_table (island STRING, population INT64)")
{
"status": "SUCCESS",
"rows": []
}
Insert data into an existing temporary table:
>>> execute_sql("my_project",
... "INSERT INTO my_table (island, population) "
... "VALUES ('Dream', 124), ('Biscoe', 168)")
{
"status": "SUCCESS",
"rows": []
}
Create a temporary table from the result of a query:
>>> execute_sql("my_project",
... "CREATE TEMP TABLE my_table AS "
... "SELECT island, COUNT(*) AS population "
... "FROM bigquery-public-data.ml_datasets.penguins GROUP BY island")
{
"status": "SUCCESS",
"rows": []
}
Delete a temporary table:
>>> execute_sql("my_project", "DROP TABLE my_table")
{
"status": "SUCCESS",
"rows": []
}
Copy a temporary table to another temporary table:
>>> execute_sql("my_project",
... "CREATE TEMP TABLE my_table_clone CLONE my_table")
{
"status": "SUCCESS",
"rows": []
}
Create a temporary BigQuery ML linear regression model:
>>> execute_sql("my_project",
... "CREATE TEMP MODEL my_model "
... "OPTIONS (model_type='linear_reg', input_label_cols=['body_mass_g']) AS"
... "SELECT * FROM `bigquery-public-data.ml_datasets.penguins` "
... "WHERE body_mass_g IS NOT NULL")
{
"status": "SUCCESS",
"rows": []
}
Evaluate BigQuery ML model:
>>> execute_sql("my_project", "SELECT * FROM ML.EVALUATE(MODEL my_model)")
{
"status": "SUCCESS",
"rows": [{'mean_absolute_error': 227.01223667447218,
'mean_squared_error': 81838.15989216768,
'mean_squared_log_error': 0.0050704473735013,
'median_absolute_error': 173.08081641661738,
'r2_score': 0.8723772534253441,
'explained_variance': 0.8723772534253442}]
}
Evaluate BigQuery ML model on custom data:
>>> execute_sql("my_project",
... "SELECT * FROM ML.EVALUATE(MODEL my_model, "
... "(SELECT * FROM `my_dataset.my_table`))")
{
"status": "SUCCESS",
"rows": [{'mean_absolute_error': 227.01223667447218,
'mean_squared_error': 81838.15989216768,
'mean_squared_log_error': 0.0050704473735013,
'median_absolute_error': 173.08081641661738,
'r2_score': 0.8723772534253441,
'explained_variance': 0.8723772534253442}]
}
Predict using BigQuery ML model:
>>> execute_sql("my_project",
... "SELECT * FROM ML.PREDICT(MODEL my_model, "
... "(SELECT * FROM `my_dataset.my_table`))")
{
"status": "SUCCESS",
"rows": [
{
"predicted_body_mass_g": "3380.9271650847013",
...
}, {
"predicted_body_mass_g": "3873.6072435386004",
...
},
...
]
}
Delete a BigQuery ML model:
>>> execute_sql("my_project", "DROP MODEL my_model")
{
"status": "SUCCESS",
"rows": []
}
Notes:
- If a destination table already exists, there are a few ways to overwrite
it:
- Use "CREATE OR REPLACE TEMP TABLE" instead of "CREATE TEMP TABLE".
- First run "DROP TABLE", followed by "CREATE TEMP TABLE".
- Only temporary tables can be created, inserted into or deleted. Please
do not try creating a permanent table (non-TEMP table), inserting into or
deleting one.
- If a destination model already exists, there are a few ways to overwrite
it:
- Use "CREATE OR REPLACE TEMP MODEL" instead of "CREATE TEMP MODEL".
- First run "DROP MODEL", followed by "CREATE TEMP MODEL".
- Only temporary models can be created or deleted. Please do not try
creating a permanent model (non-TEMP model) or deleting one.
"""
return execute_sql(*args, **kwargs)
def get_execute_sql(settings: BigQueryToolConfig) -> Callable[..., dict]:
"""Get the execute_sql tool customized as per the given tool settings.
Args:
settings: BigQuery tool settings indicating the behavior of the
execute_sql tool.
Returns:
callable[..., dict]: A version of the execute_sql tool respecting the tool
settings.
"""
if not settings or settings.write_mode == WriteMode.BLOCKED:
return execute_sql
# Create a new function object using the original function's code and globals.
# We pass the original code, globals, name, defaults, and closure.
# This creates a raw function object without copying other metadata yet.
execute_sql_wrapper = types.FunctionType(
execute_sql.__code__,
execute_sql.__globals__,
execute_sql.__name__,
execute_sql.__defaults__,
execute_sql.__closure__,
)
# Use functools.update_wrapper to copy over other essential attributes
# from the original function to the new one.
# This includes __name__, __qualname__, __module__, __annotations__, etc.
# It specifically allows us to then set __doc__ separately.
functools.update_wrapper(execute_sql_wrapper, execute_sql)
# Now, set the new docstring
if settings.write_mode == WriteMode.PROTECTED:
execute_sql_wrapper.__doc__ = _execute_sql_protected_write_mode.__doc__
else:
execute_sql_wrapper.__doc__ = _execute_sql_write_mode.__doc__
return execute_sql_wrapper
def forecast(
project_id: str,
history_data: str,
timestamp_col: str,
data_col: str,
horizon: int = 10,
id_cols: Optional[list[str]] = None,
*,
credentials: Credentials,
settings: BigQueryToolConfig,
tool_context: ToolContext,
) -> dict:
"""Run a BigQuery AI time series forecast using AI.FORECAST.
Args:
project_id (str): The GCP project id in which the query should be
executed.
history_data (str): The table id of the BigQuery table containing the
history time series data or a query statement that select the history
data.
timestamp_col (str): The name of the column containing the timestamp for
each data point.
data_col (str): The name of the column containing the numerical values to
be forecasted.
horizon (int, optional): The number of time steps to forecast into the
future. Defaults to 10.
id_cols (list, optional): The column names of the id columns to indicate
each time series when there are multiple time series in the table. All
elements must be strings. Defaults to None.
credentials (Credentials): The credentials to use for the request.
settings (BigQueryToolConfig): The settings for the tool.
tool_context (ToolContext): The context for the tool.
Returns:
dict: Dictionary representing the result of the forecast. The result
contains the forecasted values along with prediction intervals.
Examples:
Forecast daily sales for the next 7 days based on historical data from
a BigQuery table:
>>> forecast(
... project_id="my-gcp-project",
... history_data="my-dataset.my-sales-table",
... timestamp_col="sale_date",
... data_col="daily_sales",
... horizon=7
... )
{
"status": "SUCCESS",
"rows": [
{
"forecast_timestamp": "2025-01-08T00:00:00",
"forecast_value": 12345.67,
"confidence_level": 0.95,
"prediction_interval_lower_bound": 11000.0,
"prediction_interval_upper_bound": 13691.34,
"ai_forecast_status": ""
},
...
]
}
Forecast multiple time series using a SQL query as input:
>>> history_query = (
... "SELECT unique_id, timestamp, value "
... "FROM `my-project.my-dataset.my-timeseries-table` "
... "WHERE timestamp > '1980-01-01'"
... )
>>> forecast(
... project_id="my-gcp-project",
... history_data=history_query,
... timestamp_col="timestamp",
... data_col="value",
... id_cols=["unique_id"],
... horizon=14
... )
{
"status": "SUCCESS",
"rows": [
{
"unique_id": "T1",
"forecast_timestamp": "1980-08-28T00:00:00",
"forecast_value": 1253218.75,
"confidence_level": 0.95,
"prediction_interval_lower_bound": 274252.51,
"prediction_interval_upper_bound": 2232184.99,
"ai_forecast_status": ""
},
...
]
}
Error Scenarios:
When an element in `id_cols` is not a string:
>>> forecast(
... project_id="my-gcp-project",
... history_data="my-dataset.my-sales-table",
... timestamp_col="sale_date",
... data_col="daily_sales",
... id_cols=["store_id", 123]
... )
{
"status": "ERROR",
"error_details": "All elements in id_cols must be strings."
}
When `history_data` refers to a table that does not exist:
>>> forecast(
... project_id="my-gcp-project",
... history_data="my-dataset.non-existent-table",
... timestamp_col="sale_date",
... data_col="daily_sales"
... )
{
"status": "ERROR",
"error_details": "Not found: Table
my-gcp-project:my-dataset.non-existent-table was not found in
location US"
}
"""
model = "TimesFM 2.0"
confidence_level = 0.95
trimmed_upper_history_data = history_data.strip().upper()
if trimmed_upper_history_data.startswith(
"SELECT"
) or trimmed_upper_history_data.startswith("WITH"):
history_data_source = f"({history_data})"
else:
history_data_source = f"TABLE `{history_data}`"
if id_cols:
if not all(isinstance(item, str) for item in id_cols):
return {
"status": "ERROR",
"error_details": "All elements in id_cols must be strings.",
}
id_cols_str = "[" + ", ".join([f"'{col}'" for col in id_cols]) + "]"
query = f"""
SELECT * FROM AI.FORECAST(
{history_data_source},
data_col => '{data_col}',
timestamp_col => '{timestamp_col}',
model => '{model}',
id_cols => {id_cols_str},
horizon => {horizon},
confidence_level => {confidence_level}
)
"""
else:
query = f"""
SELECT * FROM AI.FORECAST(
{history_data_source},
data_col => '{data_col}',
timestamp_col => '{timestamp_col}',
model => '{model}',
horizon => {horizon},
confidence_level => {confidence_level}
)
"""
return execute_sql(project_id, query, credentials, settings, tool_context)
def analyze_contribution(
project_id: str,
input_data: str,
contribution_metric: str,
dimension_id_cols: list[str],
is_test_col: str,
credentials: Credentials,
settings: BigQueryToolConfig,
tool_context: ToolContext,
top_k_insights: int = 30,
pruning_method: str = "PRUNE_REDUNDANT_INSIGHTS",
) -> dict:
"""Run a BigQuery ML contribution analysis using ML.CREATE_MODEL and ML.GET_INSIGHTS.
Args:
project_id (str): The GCP project id in which the query should be
executed.
input_data (str): The data that contain the test and control data to
analyze. Can be a fully qualified BigQuery table ID or a SQL query.
dimension_id_cols (list[str]): The column names of the dimension columns.
contribution_metric (str): The name of the column that contains the metric
to analyze. Provides the expression to use to calculate the metric you
are analyzing. To calculate a summable metric, the expression must be in
the form SUM(metric_column_name), where metric_column_name is a numeric
data type. To calculate a summable ratio metric, the expression must be
in the form
SUM(numerator_metric_column_name)/SUM(denominator_metric_column_name),
where numerator_metric_column_name and denominator_metric_column_name
are numeric data types. To calculate a summable by category metric, the
expression must be in the form
SUM(metric_sum_column_name)/COUNT(DISTINCT categorical_column_name). The
summed column must be a numeric data type. The categorical column must
have type BOOL, DATE, DATETIME, TIME, TIMESTAMP, STRING, or INT64.
is_test_col (str): The name of the column to use to determine whether a
given row is test data or control data. The column must have a BOOL data
type.
credentials: The credentials to use for the request.
settings: The settings for the tool.
tool_context: The context for the tool.
top_k_insights (int, optional): The number of top insights to return,
ranked by apriori support. Defaults to 30.
pruning_method (str, optional): The method to use for pruning redundant
insights. Can be 'NO_PRUNING' or 'PRUNE_REDUNDANT_INSIGHTS'. Defaults to
"PRUNE_REDUNDANT_INSIGHTS".
Returns:
dict: Dictionary representing the result of the contribution analysis.
Examples:
Analyze the contribution of different dimensions to the total sales:
>>> analyze_contribution(
... project_id="my-gcp-project",
... input_data="my-dataset.my-sales-table",
... dimension_id_cols=["store_id", "product_category"],
... contribution_metric="SUM(total_sales)",
... is_test_col="is_test"
... )
The return is:
{
"status": "SUCCESS",
"rows": [
{
"store_id": "S1",
"product_category": "Electronics",
"contributors": ["S1", "Electronics"],
"metric_test": 120,
"metric_control": 100,
"difference": 20,
"relative_difference": 0.2,
"unexpected_difference": 5,
"relative_unexpected_difference": 0.043,
"apriori_support": 0.15
},
...
]
}
Analyze the contribution of different dimensions to the total sales using
a SQL query as input:
>>> analyze_contribution(
... project_id="my-gcp-project",
... input_data="SELECT store_id, product_category, total_sales, "
... "is_test FROM `my-project.my-dataset.my-sales-table` "
... "WHERE transaction_date > '2025-01-01'"
... dimension_id_cols=["store_id", "product_category"],
... contribution_metric="SUM(total_sales)",
... is_test_col="is_test"
... )
The return is:
{
"status": "SUCCESS",
"rows": [
{
"store_id": "S2",
"product_category": "Groceries",
"contributors": ["S2", "Groceries"],