Executes a proc. This endpoint is asynchronous and does not wait for the proc to complete before returning.
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. If no table names are specified, no data will be passed to the proc. 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. 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. 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. The default value is an empty array ( [] ). | ||||||||
options | map of string to strings | Optional parameters. The default value is an empty map ( {} ).
|
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. |