Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
e087e00
Add script to generate BigQuery benchmark tables
google-labs-jules[bot] Jun 24, 2025
3e01ce3
Refactor: Vectorize data generation in benchmark script
google-labs-jules[bot] Jun 24, 2025
c3e34a7
Implement batched data generation and loading
google-labs-jules[bot] Jun 24, 2025
ecb25e1
Optimize DATETIME/TIMESTAMP generation with numpy.datetime_as_string
google-labs-jules[bot] Jun 24, 2025
fc0a783
Add argparse for project and dataset IDs
google-labs-jules[bot] Jun 24, 2025
c6e9357
Add unit tests for table generation script
google-labs-jules[bot] Jun 24, 2025
b84723e
refactor
tswast Jun 24, 2025
ac6f0c9
Merge remote-tracking branch 'origin/main' into feat/create-bq-benchm…
tswast Jun 24, 2025
1e64755
reduce duplicated work
tswast Jun 24, 2025
91771e7
only use percentile in table name
tswast Jun 24, 2025
ebe8f80
use annotations to not fail in 3.9
tswast Jun 24, 2025
996f9fc
Merge branch 'main' into feat/create-bq-benchmark-tables
tswast Jun 24, 2025
02db00b
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] Jun 24, 2025
b518111
Update scripts/create_read_gbq_colab_benchmark_tables.py
tswast Jun 24, 2025
54f8ee9
Delete scripts/requirements-create_tables.txt
tswast Jun 24, 2025
ba31911
base64 encode
tswast Jun 24, 2025
982f725
refactor batch generation
tswast Jun 25, 2025
9d57638
adjust test formatting
tswast Jun 25, 2025
a42f57c
Merge remote-tracking branch 'origin/main' into feat/create-bq-benchm…
tswast Jun 25, 2025
9970d5a
parallel processing
tswast Jun 25, 2025
649601c
Merge branch 'main' into feat/create-bq-benchmark-tables
tswast Jun 25, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,6 @@ repos:
rev: v1.15.0
hooks:
- id: mypy
additional_dependencies: [types-requests, types-tabulate, pandas-stubs<=2.2.3.241126]
additional_dependencies: [types-requests, types-tabulate, types-PyYAML, pandas-stubs<=2.2.3.241126]
exclude: "^third_party"
args: ["--check-untyped-defs", "--explicit-package-bases", "--ignore-missing-imports"]
2 changes: 2 additions & 0 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@
LINT_PATHS = [
"docs",
"bigframes",
"scripts",
"tests",
"third_party",
"noxfile.py",
Expand Down Expand Up @@ -275,6 +276,7 @@ def mypy(session):
"types-requests",
"types-setuptools",
"types-tabulate",
"types-PyYAML",
"polars",
"anywidget",
]
Expand Down
Loading