gjacoby126 commented on code in PR #1559:
URL: https://github.com/apache/phoenix/pull/1559#discussion_r1102960388


##########
phoenix-core/src/main/java/org/apache/phoenix/hbase/index/IndexRegionObserver.java:
##########
@@ -227,7 +228,7 @@ public static class BatchMutateContext {
       // The collection of candidate index mutations that will be applied 
after the data table mutations
       private ListMultimap<HTableInterfaceReference, Pair<Mutation, byte[]>> 
indexUpdates;
       private List<RowLock> rowLocks = 
Lists.newArrayListWithExpectedSize(QueryServicesOptions.DEFAULT_MUTATE_BATCH_SIZE);
-      private HashSet<ImmutableBytesPtr> rowsToLock = new HashSet<>();
+      private Set<ImmutableBytesPtr> rowsToLock = new TreeSet<>();

Review Comment:
   Also, it would be good to put a comment above the TreeSet constructor 
mentioning that it's important that the set be sorted to avoid deadlocks. (Just 
in case someone comes across it later and thinks about making it more 
"efficient" by switching back to HashSet)



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

To unsubscribe, e-mail: issues-unsubscr...@phoenix.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to