hailin0 commented on issue #2912:
URL:
https://github.com/apache/incubator-seatunnel/issues/2912#issuecomment-1297978694
flink example:
```
env {
# You can set flink configuration here
execution.parallelism = 1
job.mode = "BATCH"
execution.checkpoint.interval = 10000
execution.checkpoint.data-uri = "hdfs://localhost:9000/checkpoint"
}
```
spark example:
```
env {
job.mode = "BATCH"
job.name = "SeaTunnel"
spark.executor.instances = 2
spark.executor.cores = 1
spark.executor.memory = "1g"
spark.master = local
}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]