We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90a0791 commit aee40d1Copy full SHA for aee40d1
main.py
@@ -31,7 +31,7 @@
31
DATASETS = os.environ.get("BIGQUERY_DATASET", "").strip().split()
32
SIMPLE_TABLE = os.environ.get("BIGQUERY_SIMPLE_TABLE")
33
DOWNLOAD_TABLE = os.environ.get("BIGQUERY_DOWNLOAD_TABLE")
34
-MAX_BLOBS_PER_RUN = 5000 # Cannot exceed 10,000
+MAX_BLOBS_PER_RUN = int(os.environ.get("MAX_BLOBS_PER_RUN", '5000')) # Cannot exceed 10,000
35
36
prefix = {Simple.__name__: "simple_requests", Download.__name__: "file_downloads"}
37
0 commit comments