Github user keith-turner commented on a diff in the pull request:
https://github.com/apache/accumulo/pull/140#discussion_r76880740
--- Diff: core/src/main/java/org/apache/accumulo/core/conf/Property.java ---
@@ -349,7 +349,18 @@
"Memory to provide to batchwriter to replay mutations for
replication"),
TSERV_ASSIGNMENT_MAXCONCURRENT("tserver.assignment.concurrent.max", "2",
PropertyType.COUNT,
"The number of threads available to load tablets. Recoveries are
still performed serially."),
-
+ TSERV_COMPRESSOR_FACTORY("tserver.compressor.factory.class",
"org.apache.accumulo.core.file.rfile.bcfile.codec.CompressorFactory",
PropertyType.CLASSNAME,
+ "Tablet Server configuration for the compressor factory that will be
used when requesting compressors."),
+
TSERV_COMPRESSOR_IN_BUFFER("tserver.compressor.factory.input.buffer.size",
"1K", PropertyType.MEMORY,
+ "Tablet Server configuration for the compressor factory that adjusts
the input buffer size. Zero uses the full compression block size."),
+
TSERV_COMPRESSOR_OUT_BUFFER("tserver.compressor.factory.output.buffer.size",
"1K", PropertyType.MEMORY,
+ "Tablet Server configuration for the compressor factory that adjusts
the output buffer size. Default uses the full compression block size."),
+ TSERV_COMPRESSOR_POOL_IDLE("tserver.compressor.pool.max.idle", "25",
PropertyType.COUNT,
+ "Tablet Server configuration to contrain the maximum number of idle
compressors within the pool"),
+
TSERV_COMPRESSOR_POOL_IDLE_SWEEP_TIME("tserver.compressor.pool.max.idle.sweep.time",
"0ms", PropertyType.TIMEDURATION,
--- End diff --
Would it make sense to drop this config and automatically derive it as a
function of `tserver.compressor.pool.max.idle.time`?
---
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.
---