wolfboys commented on issue #1857:
URL: 
https://github.com/apache/incubator-streampark/issues/1857#issuecomment-1282533786

   hi @1996fanrui :
   
   table config definition in `env.property.table`, `env.property` will pass to 
Flink Env(Exclude `table` prefix), e.g:
   
   ```
   env:
     property: 
       ${key1} : ${value2}
       table: 
         ${key2} : ${value2}
   ```
   ${key1} is Flink Env config, key2 is  Flink table config, not Flink Env 
config,  All configurations with the `env.property.table` prefix are Flink 
table config
   
   
   use the table.exec.mini-batch.enabled as an example:
   
   ```
   env:
     option: #cli opiton args
       target: yarn-application # yarn-application, yarn-perjob
       shutdownOnAttachedExit:
       jobmanager:
     property: 
       taskmanager.numberOfTaskSlots: 1
       parallelism.default: 2
       table: 
        exec.mini-batch.enabled : true
   
   ```
   
   
   


-- 
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]

Reply via email to