You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Presently, the --threads flag passed when running dbt rpc --threads X will be used for subsequent cli_args tasks submitted to the rpc server. If a cli_args task provides its own --threads flag, this value is discarded. Instead, the --threads flag supplied in a cli_args task should supersede the --threads flag supplied when the rpc server was started.
# Every subsequent cli_args task should use 10 threads
dbt rpc --threads 10
# A request like this should run with 2 threads
POST /rpc
{
"params": {
"cli": "run --threads 2"
}
}
The text was updated successfully, but these errors were encountered:
Describe the feature
Presently, the
--threads
flag passed when runningdbt rpc --threads X
will be used for subsequentcli_args
tasks submitted to the rpc server. If acli_args
task provides its own--threads
flag, this value is discarded. Instead, the--threads
flag supplied in acli_args
task should supersede the--threads
flag supplied when the rpc server was started.The text was updated successfully, but these errors were encountered: