mynameborat commented on a change in pull request #912: SEP-19 : Refactoring 
sideInputs from SamzaContainer to ContainerStorageManager
URL: https://github.com/apache/samza/pull/912#discussion_r259969766
 
 

 ##########
 File path: 
samza-core/src/main/scala/org/apache/samza/storage/ContainerStorageManager.java
 ##########
 @@ -729,11 +1058,16 @@ public void stop() {
      * can invoke compaction.
      */
     public void stopPersistentStores() {
-      this.taskStores.values().stream().filter(storageEngine -> {
-          return storageEngine.getStoreProperties().isPersistedToDisk();
-        }).forEach(storageEngine -> {
-            storageEngine.stop();
-          });
+
+      Map<String, StorageEngine> persistentStores = 
this.taskStores.entrySet().stream().filter(e -> {
 
 Review comment:
   I noticed you use `taskStores` from the outer scope from CSM. 
   Can we instead use the helper method you have from outer class to get 
non-side-input stores to be safe?

----------------------------------------------------------------
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