Modify
1 min read
After a SQL draft or JAR/Python job is deployed, you can still modify the deployment configuration. The deployment configuration contains all the configuration parameters that are used for the job startup. This section describes how to modify deployment configuration.
Procedure
- On the Dashboard page, open the console for the workspace you want to manage.
- In the Console navigation pane, click Deployments.
- Click the name of the deployment you want to configure.
- Display the Configuration tab; this has some expandable panels (Basic, Resources, Parameters, Logging).
- Expand your chosen panel and click Edit at the righthand end of the title bar to access the options for editing.
- Modify the parameters.
- Click Save.
Basic Section
/Users/adam/Desktop/repos/documentation/portal/docs/byoc/user-guides/developer-guide/sql-development/manage-sql-drafts/create-delete-draft.mdx
Resources Section
Parameters Section
Flink Restart Policy
If a task fails and the checkpointing feature is disabled, the JobManager cannot be restarted. If the checkpointing feature is enabled, the JobManager is restarted. Valid values are:
- Failure Rate: The JobManager is restarted if the number of failures within the specified interval exceeds the upper limit. If you select Failure Rate from the Flink Restart Policy drop-down list, you must set the Failure Rate Interval, Max Failures per Interval, and Delay Between Restart Attempts parameters.
- Fixed Delay: The JobManager is restarted at a fixed interval. If you select Fixed Delay from the Flink Restart Policy drop-down list, you must set the Number of Restart Attempts and Delay Between Restart Attempts parameters.
- No Restarts: The JobManager is not restarted. This is the default value.
Logging Section
Root Log Level
You can specify the following log levels. The levels are listed in ascending order of urgency.
- TRACE: records finer-grained information than DEBUG logs.
- DEBUG: records the status of the system.
- INFO: records important system information.
- WARN: records the information about potential issues.
- ERROR: records the information about errors and exceptions that occur.
Was this helpful?