You are viewing a plain text version of this content. The canonical link for it is here.
Posted to reviews@iotdb.apache.org by GitBox <gi...@apache.org> on 2020/01/03 01:19:36 UTC

[GitHub] [incubator-iotdb] qiaojialin commented on a change in pull request #685: abstract TsFileFlushPolicy and allow specifying storage groups in flush command

qiaojialin commented on a change in pull request #685: abstract TsFileFlushPolicy and allow specifying storage groups in flush command
URL: https://github.com/apache/incubator-iotdb/pull/685#discussion_r362681933
 
 

 ##########
 File path: server/src/main/java/org/apache/iotdb/db/engine/StorageEngine.java
 ##########
 @@ -264,6 +267,21 @@ public void syncCloseAllProcessor() {
     }
   }
 
+  public void asyncCloseProcessor(String storageGroupName, boolean isSeq)
+      throws StorageGroupNotSetException {
+    StorageGroupProcessor processor = processorMap.get(storageGroupName);
+    if (storageGroupName != null) {
 
 Review comment:
   ```suggestion
       if (processor != null) {
   ```

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services