This repository was archived by the owner on Apr 1, 2026. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +0
-10
lines changed
Expand file tree Collapse file tree 3 files changed +0
-10
lines changed Original file line number Diff line number Diff line change @@ -603,8 +603,6 @@ def provision_bq_remote_function(
603603 cloud_function_cpus ,
604604 cloud_function_ingress_settings ,
605605 bq_metadata ,
606- workers ,
607- concurrency ,
608606 ):
609607 """Provision a BigQuery remote function."""
610608 # Augment user package requirements with any internal package
Original file line number Diff line number Diff line change @@ -254,8 +254,6 @@ def remote_function(
254254 "all" , "internal-only" , "internal-and-gclb"
255255 ] = "internal-only" ,
256256 cloud_build_service_account : Optional [str ] = None ,
257- workers : Optional [int ] = 0 ,
258- concurrency : Optional [int ] = 0 ,
259257 ):
260258 """Decorator to turn a user defined function into a BigQuery remote function.
261259
@@ -648,8 +646,6 @@ def wrapper(func):
648646 cloud_function_cpus = cloud_function_cpus ,
649647 cloud_function_ingress_settings = cloud_function_ingress_settings ,
650648 bq_metadata = bqrf_metadata ,
651- workers = workers ,
652- concurrency = concurrency ,
653649 )
654650
655651 bigframes_cloud_function = (
Original file line number Diff line number Diff line change @@ -1543,8 +1543,6 @@ def remote_function(
15431543 "all" , "internal-only" , "internal-and-gclb"
15441544 ] = "internal-only" ,
15451545 cloud_build_service_account : Optional [str ] = None ,
1546- workers : Optional [int ] = 0 ,
1547- concurrency : Optional [int ] = 0 ,
15481546 ):
15491547 """Decorator to turn a user defined function into a BigQuery remote function. Check out
15501548 the code samples at: https://cloud.google.com/bigquery/docs/remote-functions#bigquery-dataframes.
@@ -1778,8 +1776,6 @@ def remote_function(
17781776 cloud_function_cpus = cloud_function_cpus ,
17791777 cloud_function_ingress_settings = cloud_function_ingress_settings ,
17801778 cloud_build_service_account = cloud_build_service_account ,
1781- workers = workers ,
1782- concurrency = concurrency ,
17831779 )
17841780
17851781 def deploy_udf (
You can’t perform that action at this time.
0 commit comments