|
9 | 9 | </thead>
|
10 | 10 | <tbody>
|
11 | 11 | <tr>
|
12 |
| - <td><h5>dstl.dfs.base-path</h5></td> |
| 12 | + <td><h5>state.changelog.dstl.dfs.base-path</h5></td> |
13 | 13 | <td style="word-wrap: break-word;">(none)</td>
|
14 | 14 | <td>String</td>
|
15 | 15 | <td>Base path to store changelog files.</td>
|
16 | 16 | </tr>
|
17 | 17 | <tr>
|
18 |
| - <td><h5>dstl.dfs.batch.persist-delay</h5></td> |
| 18 | + <td><h5>state.changelog.dstl.dfs.batch.persist-delay</h5></td> |
19 | 19 | <td style="word-wrap: break-word;">10 ms</td>
|
20 | 20 | <td>Duration</td>
|
21 | 21 | <td>Delay before persisting changelog after receiving persist request (on checkpoint). Minimizes the number of files and requests if multiple operators (backends) or sub-tasks are using the same store. Correspondingly increases checkpoint time (async phase).</td>
|
22 | 22 | </tr>
|
23 | 23 | <tr>
|
24 |
| - <td><h5>dstl.dfs.batch.persist-size-threshold</h5></td> |
| 24 | + <td><h5>state.changelog.dstl.dfs.batch.persist-size-threshold</h5></td> |
25 | 25 | <td style="word-wrap: break-word;">10 mb</td>
|
26 | 26 | <td>MemorySize</td>
|
27 |
| - <td>Size threshold for state changes that were requested to be persisted but are waiting for dstl.dfs.batch.persist-delay (from all operators). . Once reached, accumulated changes are persisted immediately. This is different from dstl.dfs.preemptive-persist-threshold as it happens AFTER the checkpoint and potentially for state changes of multiple operators. Must not exceed in-flight data limit (see below)</td> |
| 27 | + <td>Size threshold for state changes that were requested to be persisted but are waiting for state.changelog.dstl.dfs.batch.persist-delay (from all operators). . Once reached, accumulated changes are persisted immediately. This is different from state.changelog.dstl.dfs.preemptive-persist-threshold as it happens AFTER the checkpoint and potentially for state changes of multiple operators. Must not exceed in-flight data limit (see below)</td> |
28 | 28 | </tr>
|
29 | 29 | <tr>
|
30 |
| - <td><h5>dstl.dfs.compression.enabled</h5></td> |
| 30 | + <td><h5>state.changelog.dstl.dfs.compression.enabled</h5></td> |
31 | 31 | <td style="word-wrap: break-word;">false</td>
|
32 | 32 | <td>Boolean</td>
|
33 | 33 | <td>Whether to enable compression when serializing changelog.</td>
|
34 | 34 | </tr>
|
35 | 35 | <tr>
|
36 |
| - <td><h5>dstl.dfs.discard.num-threads</h5></td> |
| 36 | + <td><h5>state.changelog.dstl.dfs.discard.num-threads</h5></td> |
37 | 37 | <td style="word-wrap: break-word;">1</td>
|
38 | 38 | <td>Integer</td>
|
39 | 39 | <td>Number of threads to use to discard changelog (e.g. pre-emptively uploaded unused state).</td>
|
40 | 40 | </tr>
|
41 | 41 | <tr>
|
42 |
| - <td><h5>dstl.dfs.download.local-cache.idle-timeout-ms</h5></td> |
| 42 | + <td><h5>state.changelog.dstl.dfs.download.local-cache.idle-timeout-ms</h5></td> |
43 | 43 | <td style="word-wrap: break-word;">10 min</td>
|
44 | 44 | <td>Duration</td>
|
45 | 45 | <td>Maximum idle time for cache files of distributed changelog file, after which the cache files will be deleted.</td>
|
46 | 46 | </tr>
|
47 | 47 | <tr>
|
48 |
| - <td><h5>dstl.dfs.preemptive-persist-threshold</h5></td> |
| 48 | + <td><h5>state.changelog.dstl.dfs.preemptive-persist-threshold</h5></td> |
49 | 49 | <td style="word-wrap: break-word;">5 mb</td>
|
50 | 50 | <td>MemorySize</td>
|
51 | 51 | <td>Size threshold for state changes of a single operator beyond which they are persisted pre-emptively without waiting for a checkpoint. Improves checkpointing time by allowing quasi-continuous uploading of state changes (as opposed to uploading all accumulated changes on checkpoint).</td>
|
52 | 52 | </tr>
|
53 | 53 | <tr>
|
54 |
| - <td><h5>dstl.dfs.upload.buffer-size</h5></td> |
| 54 | + <td><h5>state.changelog.dstl.dfs.upload.buffer-size</h5></td> |
55 | 55 | <td style="word-wrap: break-word;">1 mb</td>
|
56 | 56 | <td>MemorySize</td>
|
57 | 57 | <td>Buffer size used when uploading change sets</td>
|
58 | 58 | </tr>
|
59 | 59 | <tr>
|
60 |
| - <td><h5>dstl.dfs.upload.max-attempts</h5></td> |
| 60 | + <td><h5>state.changelog.dstl.dfs.upload.max-attempts</h5></td> |
61 | 61 | <td style="word-wrap: break-word;">3</td>
|
62 | 62 | <td>Integer</td>
|
63 |
| - <td>Maximum number of attempts (including the initial one) to perform a particular upload. Only takes effect if dstl.dfs.upload.retry-policy is fixed.</td> |
| 63 | + <td>Maximum number of attempts (including the initial one) to perform a particular upload. Only takes effect if state.changelog.dstl.dfs.upload.retry-policy is fixed.</td> |
64 | 64 | </tr>
|
65 | 65 | <tr>
|
66 |
| - <td><h5>dstl.dfs.upload.max-in-flight</h5></td> |
| 66 | + <td><h5>state.changelog.dstl.dfs.upload.max-in-flight</h5></td> |
67 | 67 | <td style="word-wrap: break-word;">100 mb</td>
|
68 | 68 | <td>MemorySize</td>
|
69 |
| - <td>Max amount of data allowed to be in-flight. Upon reaching this limit the task will be back-pressured. I.e., snapshotting will block; normal processing will block if dstl.dfs.preemptive-persist-threshold is set and reached. The limit is applied to the total size of in-flight changes if multiple operators/backends are using the same changelog storage. Must be greater than or equal to dstl.dfs.batch.persist-size-threshold</td> |
| 69 | + <td>Max amount of data allowed to be in-flight. Upon reaching this limit the task will be back-pressured. I.e., snapshotting will block; normal processing will block if state.changelog.dstl.dfs.preemptive-persist-threshold is set and reached. The limit is applied to the total size of in-flight changes if multiple operators/backends are using the same changelog storage. Must be greater than or equal to state.changelog.dstl.dfs.batch.persist-size-threshold</td> |
70 | 70 | </tr>
|
71 | 71 | <tr>
|
72 |
| - <td><h5>dstl.dfs.upload.next-attempt-delay</h5></td> |
| 72 | + <td><h5>state.changelog.dstl.dfs.upload.next-attempt-delay</h5></td> |
73 | 73 | <td style="word-wrap: break-word;">500 ms</td>
|
74 | 74 | <td>Duration</td>
|
75 | 75 | <td>Delay before the next attempt (if the failure was not caused by a timeout).</td>
|
76 | 76 | </tr>
|
77 | 77 | <tr>
|
78 |
| - <td><h5>dstl.dfs.upload.num-threads</h5></td> |
| 78 | + <td><h5>state.changelog.dstl.dfs.upload.num-threads</h5></td> |
79 | 79 | <td style="word-wrap: break-word;">5</td>
|
80 | 80 | <td>Integer</td>
|
81 | 81 | <td>Number of threads to use for upload.</td>
|
82 | 82 | </tr>
|
83 | 83 | <tr>
|
84 |
| - <td><h5>dstl.dfs.upload.retry-policy</h5></td> |
| 84 | + <td><h5>state.changelog.dstl.dfs.upload.retry-policy</h5></td> |
85 | 85 | <td style="word-wrap: break-word;">"fixed"</td>
|
86 | 86 | <td>String</td>
|
87 | 87 | <td>Retry policy for the failed uploads (in particular, timed out). Valid values: none, fixed.</td>
|
88 | 88 | </tr>
|
89 | 89 | <tr>
|
90 |
| - <td><h5>dstl.dfs.upload.timeout</h5></td> |
| 90 | + <td><h5>state.changelog.dstl.dfs.upload.timeout</h5></td> |
91 | 91 | <td style="word-wrap: break-word;">1 s</td>
|
92 | 92 | <td>Duration</td>
|
93 |
| - <td>Time threshold beyond which an upload is considered timed out. If a new attempt is made but this upload succeeds earlier then this upload result will be used. May improve upload times if tail latencies of upload requests are significantly high. Only takes effect if dstl.dfs.upload.retry-policy is fixed. Please note that timeout * max_attempts should be less than execution.checkpointing.timeout</td> |
| 93 | + <td>Time threshold beyond which an upload is considered timed out. If a new attempt is made but this upload succeeds earlier then this upload result will be used. May improve upload times if tail latencies of upload requests are significantly high. Only takes effect if state.changelog.dstl.dfs.upload.retry-policy is fixed. Please note that timeout * max_attempts should be less than execution.checkpointing.timeout</td> |
94 | 94 | </tr>
|
95 | 95 | </tbody>
|
96 | 96 | </table>
|
0 commit comments