Execute Proc

Executes a proc. This endpoint is asynchronous and does not wait for the proc to complete before returning.

If the proc being executed is distributed, input parameter input_table_names & input parameter input_column_names may be passed to the proc to use for reading data, and input parameter output_table_names may be passed to the proc to use for writing data.

If the proc being executed is non-distributed, these table parameters will be ignored.

Input Parameter Description

Name Type Description
proc_name string Name of the proc to execute. Must be the name of a currently existing proc.
params map of string to strings A map containing named parameters to pass to the proc. Each key/value pair specifies the name of a parameter and its value. The default value is an empty map ( {} ).
bin_params map of string to bytes A map containing named binary parameters to pass to the proc. Each key/value pair specifies the name of a parameter and its value. The default value is an empty map ( {} ).
input_table_names array of strings Names of the tables containing data to be passed to the proc. Each name specified must be the name of a currently existing table, in [schema_name.]table_name format, using standard name resolution rules. If no table names are specified, no data will be passed to the proc. This parameter is ignored if the proc has a non-distributed execution mode. The default value is an empty array ( [] ).
input_column_names map of string to arrays of strings Map of table names from input parameter input_table_names to lists of names of columns from those tables that will be passed to the proc. Each column name specified must be the name of an existing column in the corresponding table. If a table name from input parameter input_table_names is not included, all columns from that table will be passed to the proc. This parameter is ignored if the proc has a non-distributed execution mode. The default value is an empty map ( {} ).
output_table_names array of strings Names of the tables to which output data from the proc will be written, each in [schema_name.]table_name format, using standard name resolution rules and meeting table naming criteria. If a specified table does not exist, it will automatically be created with the same schema as the corresponding table (by order) from input parameter input_table_names, excluding any primary and shard keys. If a specified table is a non-persistent result table, it must not have primary or shard keys. If no table names are specified, no output data can be returned from the proc. This parameter is ignored if the proc has a non-distributed execution mode. The default value is an empty array ( [] ).
options map of string to strings

Optional parameters. The default value is an empty map ( {} ).

Supported Parameters (keys) Parameter Description
cache_input A comma-delimited list of table names from input parameter input_table_names from which input data will be cached for use in subsequent calls to Execute Proc with the use_cached_input option. Cached input data will be retained until the proc status is cleared with the clear_complete option of Show Proc Status and all proc instances using the cached data have completed. The default value is ''.
use_cached_input A comma-delimited list of run IDs (as returned from prior calls to Execute Proc ) of running or completed proc instances from which input data cached using the cache_input option will be used. Cached input data will not be used for any tables specified in input parameter input_table_names, but data from all other tables cached for the specified run IDs will be passed to the proc. If the same table was cached for multiple specified run IDs, the cached data from the first run ID specified in the list that includes that table will be used. The default value is ''.
run_tag A string that, if not empty, can be used in subsequent calls to Show Proc Status or Kill Proc to identify the proc instance. The default value is ''.
max_output_lines The maximum number of lines of output from stdout and stderr to return via Show Proc Status . If the number of lines output exceeds the maximum, earlier lines are discarded. The default value is '100'.
execute_at_startup

If true, an instance of the proc will run when the database is started instead of running immediately. The output parameter run_id can be retrieved using Show Proc and used in Show Proc Status . The default value is false. The supported values are:

  • true
  • false
execute_at_startup_as Sets the alternate user name to execute this proc instance as when execute_at_startup is true. The default value is ''.

Output Parameter Description

Name Type Description
run_id string The run ID of the running proc instance. This may be passed to Show Proc Status to obtain status information, or Kill Proc to kill the proc instance.
info map of string to strings Additional information.