Dear Flink Community, I occasionally need to temporarily disable autoscaling and manually adjust the scale of a Flink job. However, this process has proven to be challenging. Although I've attempted to disable autoscaling by setting job.autoscaler.scaling.enabled to false and modifying the parallelism in the JobSpec, these changes don't take effect as expected. This is because the pipeline.jobvertex-parallelism-overrides setting in the job manager consistently overrides the parallelism defined in the JobSpec. Consequently, the only workaround I've found so far is to recreate the FlinkDeployment resource whenever I need to switch off autoscaling and adjust the scaling manually. Is there a simpler method to accomplish this?
Regards, Yang