Allows you to update code configuration on a running cluster
Source:R/finspace_operations.R
finspace_update_kx_cluster_code_configuration.RdAllows you to update code configuration on a running cluster. By using this API you can update the code, the initialization script path, and the command line arguments for a specific cluster. The configuration that you want to update will override any existing configurations on the cluster.
See https://www.paws-r-sdk.com/docs/finspace_update_kx_cluster_code_configuration/ for full documentation.
Usage
finspace_update_kx_cluster_code_configuration(
environmentId,
clusterName,
clientToken = NULL,
code,
initializationScript = NULL,
commandLineArguments = NULL,
deploymentConfiguration = NULL
)Arguments
- environmentId
[required] A unique identifier of the kdb environment.
- clusterName
[required] The name of the cluster.
- clientToken
A token that ensures idempotency. This token expires in 10 minutes.
- code
[required] The structure of the customer code available within the running cluster.
- initializationScript
Specifies a Q program that will be run at launch of a cluster. It is a relative path within .zip file that contains the custom code, which will be loaded on the cluster. It must include the file name itself. For example,
somedir/init.q.You cannot update this parameter for a
NO_RESTARTdeployment.- commandLineArguments
Specifies the key-value pairs to make them available inside the cluster.
You cannot update this parameter for a
NO_RESTARTdeployment.- deploymentConfiguration
The configuration that allows you to choose how you want to update the code on a cluster.