keith-turner opened a new pull request, #5432: URL: https://github.com/apache/accumulo/pull/5432
Code in GroupBalancer was calling `HashBasedTable.columnKeySet().removeAll(aList)`. The Guava HashBasedTable code would iterator over all of its rows and columns and then call contains on the list passed in by GroupBalancer. So this code was doing `ROWS*COLS*LIST_SIZE` operations. Changed the list to a hashset in this PR so now it only does `ROW*COLS` operations. -- 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: notifications-unsubscr...@accumulo.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org