Github user joshelser commented on a diff in the pull request:
https://github.com/apache/accumulo/pull/224#discussion_r106811693
--- Diff:
server/tserver/src/main/java/org/apache/accumulo/tserver/TabletServerResourceManager.java
---
@@ -232,7 +234,9 @@ public TabletServerResourceManager(TabletServer
tserver, VolumeManager fs) {
readAheadThreadPool =
createEs(Property.TSERV_READ_AHEAD_MAXCONCURRENT, "tablet read ahead");
defaultReadAheadThreadPool =
createEs(Property.TSERV_METADATA_READ_AHEAD_MAXCONCURRENT, "metadata tablets
read ahead");
- summaryRetrievalPool =
createIdlingEs(Property.TSERV_SUMMARY_RETRIEVAL_THREADS, "summary retriever",
60, TimeUnit.SECONDS);
+ summaryRetrievalPool =
createIdlingEs(Property.TSERV_SUMMARY_RETRIEVAL_THREADS, "summary file
retriever", 60, TimeUnit.SECONDS);
+ summaryRemotePool =
createIdlingEs(Property.TSERV_SUMMARY_REMOTE_THREADS, "summary remote", 60,
TimeUnit.SECONDS);
+ summaryParitionPool =
createIdlingEs(Property.TSERV_SUMMARY_PARTITION_THREADS, "summary partition",
60, TimeUnit.SECONDS);
--- End diff --
s/summaryParitionPool/summaryPartitionPool/
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---