LantaoJin commented on a change in pull request #24982: [SPARK-28181][CORE] Add 
a filter interface to KVStore to speed up the entities retrieve
URL: https://github.com/apache/spark/pull/24982#discussion_r298431375
 
 

 ##########
 File path: 
common/kvstore/src/main/java/org/apache/spark/util/kvstore/InMemoryStore.java
 ##########
 @@ -106,6 +106,12 @@ public void delete(Class<?> type, Object naturalKey) {
     return list != null ? list.view() : emptyView();
   }
 
+  @Override
+  public <T> KVStoreView<T> viewWithCondition(Class<T> type, Predicate<T> 
condition) {
+    InstanceList<T> list = inMemoryLists.get(type);
 
 Review comment:
   Do you mean dedup like this?
   ```scala
     @Override
     public <T> KVStoreView<T> view(Class<T> type){
       return viewWithCondition(type, t -> true);
     }
   ```
   It cannot invoke `view` in `viewWithCondition` since `list.view(type)` will 
create much more instances than `list.viewWithCondition` indeed.

----------------------------------------------------------------
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:
[email protected]


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to