[ 
https://issues.apache.org/jira/browse/FLINK-22708?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Dawid Wysakowicz closed FLINK-22708.
------------------------------------
    Resolution: Fixed

Fixed in:
* master
** 4cf91cd8337ec319c3081b1e13e4cf1c75d096de
* 1.13.1
** 1fffd9d9d7435872f5b10975a9cbf390fd126536
* 1.12.5
** c35df7c2462536cf704e86cabfdffdb6863e8f55

> Propagate savepoint settings from StreamExecutionEnvironment to StreamGraph
> ---------------------------------------------------------------------------
>
>                 Key: FLINK-22708
>                 URL: https://issues.apache.org/jira/browse/FLINK-22708
>             Project: Flink
>          Issue Type: Improvement
>          Components: API / DataStream
>            Reporter: Dawid Wysakowicz
>            Assignee: Dawid Wysakowicz
>            Priority: Major
>              Labels: pull-request-available
>             Fix For: 1.14.0, 1.13.1, 1.12.5
>
>
> Currently, if you configure SavepointSettings in the initial Configuration 
> passed to StreamExecutionEnvironment it is not passed to the 
> StreamGraphGenerator. Therefore a chain of calls will not apply these 
> settings:
> {code}
> Configuration conf = new Configuration();
> conf.set(SavepointConfigOptions.SAVEPOINT_PATH, "/tmp/savepoint");
> StreamExecutionEnvironment env = 
> StreamExecutionEnvironment.getExecutionEnvironment(conf);
> StreamGraph graph = env.getStreamGraph();
> JobGraph jobGraph = graph.getJobGraph();
> miniCluste.submitJob(jobGraph);
> {code}
> This makes the UnalignedCheckpointRescaleITCase not testing what it is 
> supposed to test.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

Reply via email to