Skip to content
This repository was archived by the owner on May 7, 2026. It is now read-only.

Commit efb54ac

Browse files
use 4 threads per worker
1 parent e64d9ec commit efb54ac

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

bigframes/functions/_function_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -647,8 +647,8 @@ def provision_bq_remote_function(
647647
cloud_function_memory_mib
648648
)
649649
workers = expected_cpus
650-
concurrency = expected_cpus
651-
threads = 2 # (per worker)
650+
threads = 4 # (per worker)
651+
concurrency = workers * threads
652652

653653
# Create the cloud function if it does not exist
654654
if not cf_endpoint:

0 commit comments

Comments
 (0)