This is an automated email from the ASF dual-hosted git repository. tzulitai pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/flink-statefun.git
commit cabe2eaca3194a472878c7c9f771ae302ee0f237 Author: Tzu-Li (Gordon) Tai <[email protected]> AuthorDate: Fri May 15 14:25:46 2020 +0800 [FLINK-16928] Remove jobmanager.scheduler from all config files and docs This closes #112. --- docs/deployment-and-operations/packaging.md | 1 - .../statefun-e2e-tests-common/src/main/resources/flink-conf.yaml | 1 - tools/docker/flink-distribution-template/conf/flink-conf.yaml | 1 - tools/k8s/templates/config-map.yaml | 1 - 4 files changed, 4 deletions(-) diff --git a/docs/deployment-and-operations/packaging.md b/docs/deployment-and-operations/packaging.md index c90944b..d603920 100644 --- a/docs/deployment-and-operations/packaging.md +++ b/docs/deployment-and-operations/packaging.md @@ -73,7 +73,6 @@ The following configurations are strictly required for running StateFun applicat {% highlight yaml %} classloader.parent-first-patterns.additional: org.apache.flink.statefun;org.apache.kafka;com.google.protobuf -jobmanager.scheduler: legacy execution.checkpointing.max-concurrent-checkpoints: 1 {% endhighlight %} diff --git a/statefun-e2e-tests/statefun-e2e-tests-common/src/main/resources/flink-conf.yaml b/statefun-e2e-tests/statefun-e2e-tests-common/src/main/resources/flink-conf.yaml index d081c43..b022b0a 100644 --- a/statefun-e2e-tests/statefun-e2e-tests-common/src/main/resources/flink-conf.yaml +++ b/statefun-e2e-tests/statefun-e2e-tests-common/src/main/resources/flink-conf.yaml @@ -20,6 +20,5 @@ state.backend.rocksdb.timer-service.factory: ROCKSDB state.checkpoints.dir: file:///checkpoint-dir state.backend.incremental: true taskmanager.memory.process.size: 4g -jobmanager.scheduler: legacy execution.checkpointing.interval: 5sec execution.checkpointing.mode: EXACTLY_ONCE diff --git a/tools/docker/flink-distribution-template/conf/flink-conf.yaml b/tools/docker/flink-distribution-template/conf/flink-conf.yaml index 574ccb0..d0d4522 100644 --- a/tools/docker/flink-distribution-template/conf/flink-conf.yaml +++ b/tools/docker/flink-distribution-template/conf/flink-conf.yaml @@ -20,7 +20,6 @@ classloader.parent-first-patterns.additional: org.apache.flink.statefun;org.apache.kafka;com.google.protobuf execution.checkpointing.max-concurrent-checkpoints: 1 -jobmanager.scheduler: legacy #============================================================================== # Recommended configurations. Users may change according to their needs. diff --git a/tools/k8s/templates/config-map.yaml b/tools/k8s/templates/config-map.yaml index d6bda3e..a57e7ff 100644 --- a/tools/k8s/templates/config-map.yaml +++ b/tools/k8s/templates/config-map.yaml @@ -34,7 +34,6 @@ data: execution.checkpointing.interval: {{ .Values.checkpoint.interval }} taskmanager.memory.process.size: {{ .Values.worker.jvm_mem }} parallelism.default: {{ .Values.worker.replicas }} - jobmanager.scheduler: legacy log4j-console.properties: |+ log4j.rootLogger=INFO, console
