Skip to content

Commit

Permalink
[hotfix][tests] Reformat default flink configuration map
Browse files Browse the repository at this point in the history
  • Loading branch information
GJL committed May 17, 2020
1 parent 547c168 commit 95f25b2
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions flink-jepsen/src/jepsen/flink/db.clj
Original file line number Diff line number Diff line change
Expand Up @@ -38,21 +38,21 @@

(defn- default-flink-configuration
[test node]
{:high-availability "zookeeper"
:high-availability.zookeeper.quorum (zookeeper-quorum test)
:high-availability.storageDir "hdfs:https:///flink/ha"
:jobmanager.memory.process.size "2048m"
:jobmanager.rpc.address node
:state.savepoints.dir "hdfs:https:///flink/savepoints"
:rest.address node
:rest.port 8081
:rest.bind-address "0.0.0.0"
:taskmanager.numberOfTaskSlots taskmanager-slots
:yarn.application-attempts 99999
:slotmanager.taskmanager-timeout 10000
:state.backend.local-recovery "true"
:taskmanager.memory.process.size "2048m"
:taskmanager.registration.timeout "30 s"})
{:high-availability "zookeeper"
:high-availability.zookeeper.quorum (zookeeper-quorum test)
:high-availability.storageDir "hdfs:https:///flink/ha"
:jobmanager.memory.process.size "2048m"
:jobmanager.rpc.address node
:state.savepoints.dir "hdfs:https:///flink/savepoints"
:rest.address node
:rest.port 8081
:rest.bind-address "0.0.0.0"
:taskmanager.numberOfTaskSlots taskmanager-slots
:yarn.application-attempts 99999
:slotmanager.taskmanager-timeout 10000
:state.backend.local-recovery "true"
:taskmanager.memory.process.size "2048m"
:taskmanager.registration.timeout "30 s"})

(defn flink-configuration
[test node]
Expand Down

0 comments on commit 95f25b2

Please sign in to comment.