Skip to content

Commit 4e0ea0d

Browse files
authored
Move local container execution specific Flink defaults to default-run-package.json (#1660)
1 parent cbe44a2 commit 4e0ea0d

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

sqrl-planner/src/main/resources/default-package.json

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,7 @@
2626
"flink": {
2727
"config": {
2828
"execution.runtime-mode": "STREAMING",
29-
"execution.target": "local",
30-
"execution.attached": true,
31-
"rest.address": "localhost",
32-
"rest.port": 8081,
33-
"state.backend.type": "rocksdb",
34-
"taskmanager.memory.network.max": "800m"
29+
"state.backend.type": "rocksdb"
3530
}
3631
},
3732
"duckdb": {

sqrl-planner/src/main/resources/default-run-package.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,14 @@
22
"engines" : {
33
"flink" : {
44
"config": {
5-
"table.exec.resource.default-parallelism": 1,
5+
"execution.target": "local",
6+
"execution.attached": true,
7+
"rest.address": "localhost",
8+
"rest.port": 8081,
69
"state.checkpoints.dir": "file:///data/flink/checkpoints",
7-
"state.savepoints.dir": "file:///data/flink/savepoints"
10+
"state.savepoints.dir": "file:///data/flink/savepoints",
11+
"table.exec.resource.default-parallelism": 1,
12+
"taskmanager.memory.network.max": "800m"
813
}
914
}
1015
}

0 commit comments

Comments
 (0)