Hi Flink users,
I try to cancel a job with savepoint via REST based on
https://issues.apache.org/jira/browse/FLINK-4787I can call jobs/:jobid/cancel-with-savepoint/ in our 1.2.0 Flink cluster, but in my test environment which is done by using:
<dependency>
<groupId>org.apache.flink</groupId>
<artifactId>flink-runtime-web</artifactId>
<version>0.10.1</version>
</dependency>
ENVCONFIG.setBoolean(ConfigConstants.LOCAL_START_WEBSERVER, true);
ENVCONFIG.setString(ConfigConstants.JOB_MANAGER_WEB_PORT_KEY, "9991");
ENVCONFIG.setString(ConfigConstants.JOB_MANAGER_WEB_LOG_PATH_KEY, LOG_PATH);
StreamExecutionEnvironment env = StreamExecutionEnvironment.createLocalEnvironment(4, ENVCONFIG);
I got 404. Is this the problem of the version of flink-runtime-web?
Best,
Sendoh