You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/layouts/shortcodes/generated/forst_configuration.html
+4-4
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@
12
12
<td><h5>state.backend.forst.cache.dir</h5></td>
13
13
<tdstyle="word-wrap: break-word;">(none)</td>
14
14
<td>String</td>
15
-
<td>The directory where ForSt caches its SST files, fallback to state.backend.forst.local-dir/cache if not configured.</td>
15
+
<td>The directory where ForSt caches its SST files, fallback to the subdirectory of '/cache' under the value of 'state.backend.forst.local-dir' if not configured.</td>
<td>The options factory class for users to add customized options in DBOptions and ColumnFamilyOptions for ForSt. If set, the ForSt state backend will load the class and apply configs to DBOptions and ColumnFamilyOptions after loading ones from 'ForStConfigurableOptions' and pre-defined options.</td>
<td>The remote directory where ForSt puts its SST files, fallback to state.backend.forst.local-dir if not configured. Recognized shortcut name is 'checkpoint-dir', which means that forst shares the directory with checkpoint.</td>
105
+
<td>The primary directory where ForSt puts its SST files. By default, it will be the same as the checkpoint directory. Recognized shortcut name is 'checkpoint-dir', which means that ForSt shares the directory with checkpoint, and 'local-dir', which means that ForSt will use the local directory of TaskManager.</td>
Copy file name to clipboardExpand all lines: docs/layouts/shortcodes/generated/state_backend_forst_section.html
+4-4
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@
12
12
<td><h5>state.backend.forst.cache.dir</h5></td>
13
13
<tdstyle="word-wrap: break-word;">(none)</td>
14
14
<td>String</td>
15
-
<td>The directory where ForSt caches its SST files, fallback to state.backend.forst.local-dir/cache if not configured.</td>
15
+
<td>The directory where ForSt caches its SST files, fallback to the subdirectory of '/cache' under the value of 'state.backend.forst.local-dir' if not configured.</td>
<td>With partitioning, the index/filter block of an SST file is partitioned into smaller blocks with an additional top-level index on them. When reading an index/filter, only top-level index is loaded into memory. The partitioned index/filter then uses the top-level index to load on demand into the block cache the partitions that are required to perform the index/filter query. This option only has an effect when 'state.backend.forst.memory.managed' or 'state.backend.forst.memory.fixed-per-slot' are configured.</td>
<td>The remote directory where ForSt puts its SST files, fallback to state.backend.forst.local-dir if not configured. Recognized shortcut name is 'checkpoint-dir', which means that forst shares the directory with checkpoint.</td>
51
+
<td>The primary directory where ForSt puts its SST files. By default, it will be the same as the checkpoint directory. Recognized shortcut name is 'checkpoint-dir', which means that ForSt shares the directory with checkpoint, and 'local-dir', which means that ForSt will use the local directory of TaskManager.</td>
Copy file name to clipboardExpand all lines: flink-state-backends/flink-statebackend-forst/src/main/java/org/apache/flink/state/forst/ForStOptions.java
Copy file name to clipboardExpand all lines: flink-state-backends/flink-statebackend-forst/src/main/java/org/apache/flink/state/forst/ForStResourceContainer.java
+5-1
Original file line number
Diff line number
Diff line change
@@ -386,7 +386,11 @@ public void prepareDirectories() throws Exception {
Copy file name to clipboardExpand all lines: flink-state-backends/flink-statebackend-forst/src/main/java/org/apache/flink/state/forst/ForStStateBackend.java
Copy file name to clipboardExpand all lines: flink-state-backends/flink-statebackend-forst/src/main/java/org/apache/flink/state/forst/fs/ForStFlinkFileSystem.java
+11-1
Original file line number
Diff line number
Diff line change
@@ -108,11 +108,21 @@ public static ForStFlinkFileSystem get(URI uri, Path localBase, FileBasedCache f
Copy file name to clipboardExpand all lines: flink-state-backends/flink-statebackend-forst/src/test/java/org/apache/flink/state/forst/ForStStateBackendConfigTest.java
Copy file name to clipboardExpand all lines: flink-state-backends/flink-statebackend-forst/src/test/java/org/apache/flink/state/forst/ForStStateBackendV2Test.java
Copy file name to clipboardExpand all lines: flink-state-backends/flink-statebackend-forst/src/test/java/org/apache/flink/state/forst/ForStStateTestBase.java
+1-1
Original file line number
Diff line number
Diff line change
@@ -61,7 +61,7 @@ public class ForStStateTestBase {
0 commit comments