azagrebin commented on a change in pull request #7351: [FLINK-11008][State 
Backends, Checkpointing]SpeedUp upload state files using multithread
URL: https://github.com/apache/flink/pull/7351#discussion_r250323327
 
 

 ##########
 File path: 
flink-state-backends/flink-statebackend-rocksdb/src/main/java/org/apache/flink/contrib/streaming/state/RocksDBStateBackend.java
 ##########
 @@ -701,17 +702,22 @@ public RocksDBNativeMetricOptions 
getMemoryWatcherOptions() {
        }
 
        /**
-        * Gets the thread number will used for downloading files from DFS when 
restore.
+        * Gets the number of threads used to transfer files while 
snapshotting/restoring.
         */
-       public int getNumberOfRestoringThreads() {
-               return numberOfRestoringThreads == 
UNDEFINED_NUMBER_OF_RESTORING_THREADS ?
-                       
RocksDBOptions.CHECKPOINT_RESTORE_THREAD_NUM.defaultValue() : 
numberOfRestoringThreads;
+       public int getNumberOfTransferingThreads() {
+               return numberOfTransferingThreads == 
UNDEFINED_NUMBER_OF_TRANSFERING_THREADS ?
+                       CHECKPOINT_TRANSFER_THREAD_NUM.defaultValue() : 
numberOfTransferingThreads;
        }
 
-       public void setNumberOfRestoringThreads(int numberOfRestoringThreads) {
-               Preconditions.checkArgument(numberOfRestoringThreads > 0,
-                       "The number of threads used to download files from DFS 
in RocksDBStateBackend should > 0.");
-               this.numberOfRestoringThreads = numberOfRestoringThreads;
+       /**
+        * Sets the number of threads used to transfer files while 
snapshotting/restoring.
+        *
+        * @param numberOfTransferingThreads The number of threads used to 
download files from DFS while restoring.
 
 Review comment:
   `used to download files from DFS while restoring` -> `to transfer files 
while snapshotting/restoring`

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to