Commit e920687 1 parent a616266 commit e920687 Copy full SHA for e920687
File tree 1 file changed +4
-4
lines changed
server/manager/src/main/java/org/apache/accumulo/manager/tableOps/bulkVer2
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -215,10 +215,10 @@ private void sendQueued(int threshhold) {
215
215
tabletFiles .values ().stream ().mapToInt (Map ::size ).sum (), tabletFiles .size ());
216
216
}
217
217
218
- // On the server side tablets are processed serially with a write to the metadata table
219
- // done for each tablet. Chunk the work up for a tablet server up so that it can be sent
220
- // over multiple connections allowing it to run in parallel on the server side. This
221
- // allows multiple threads on a single tserver to do metadata writes for this bulk
218
+ // Tablet servers process tablets serially and perform a single metadata table write for each tablet.
219
+ // Break the work into per- tablet chunks so it can be sent over multiple connections
220
+ // to the tserver, allowing each chunk to be run in parallel on the server side.
221
+ // This allows multiple threads on a single tserver to do metadata writes for this bulk
222
222
// import.
223
223
int neededConnections = Math .min (maxConnections , tabletFiles .size ());
224
224
List <Map <TKeyExtent ,Map <String ,MapFileInfo >>> chunks =
You can’t perform that action at this time.
0 commit comments