keith-turner commented on a change in pull request #1614:
URL: https://github.com/apache/accumulo/pull/1614#discussion_r428058802
##########
File path:
core/src/main/java/org/apache/accumulo/core/clientImpl/bulk/BulkImport.java
##########
@@ -149,6 +150,11 @@ public void load()
if (mappings.isEmpty())
throw new IllegalArgumentException("Attempted to import zero files
from " + srcPath);
+ long tabletMaxSize = conf.getCount(Property.MASTER_BULK_MAX_TABLETS);
+ if (tabletMaxSize > 0 && mappings.keySet().size() > tabletMaxSize)
Review comment:
This check is different than the one in #1560, which ensured a single
file did not go to too many tablets. This is checking that all files do not go
to too many tablets.
----------------------------------------------------------------
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]