Guest User

Untitled

a guest
Jul 3rd, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.35 KB | None | 0 0
  1. tables:
  2. - name: TestTable
  3. type: source
  4. schema:
  5. - name: state
  6. type: INT
  7. - name: number
  8. type: INT
  9. connector:
  10. property-version: 1
  11. type: kafka
  12. version: 0.11
  13. topic: test_flink_state_check
  14. startup-mode: earliest-offset
  15. properties:
  16. - key: zookeeper.connect
  17. value: zookeeper01.xxxx.xxxxxx.com:2181
  18. - key: bootstrap.servers
  19. value: kafka01.xxxx.xxxxxx.com:9092
  20. - key: group.id
  21. value: test_flink_sql_01
  22. - format:
  23. property-version: 1
  24. type: json
  25. schema: "ROW(state INT, number INT)"
  26.  
  27. execution:
  28. # 'batch' or 'streaming' execution
  29. type: streaming
  30. # allow 'event-time' or only 'processing-time' in sources
  31. time-characteristic: processing-time
  32. # 'changelog' or 'table' presentation of results
  33. result-mode: table
  34. # parallelism of the program
  35. parallelism: 1
  36. # maximum parallelism
  37. max-parallelism: 128
  38. # minimum idle state retention in ms
  39. min-idle-state-retention: 0
  40. # maximum idle state retention in ms
  41. max-idle-state-retention: 0
  42.  
  43. deployment:
  44. # general cluster communication timeout in ms
  45. response-timeout: 5000
  46. # (optional) address from cluster to gateway
  47. gateway-address: ""
  48. # (optional) port from cluster to gateway
  49. gateway-port: 0
Add Comment
Please, Sign In to add comment