Package com.palantir.atlasdb.spi
Interface KeyValueServiceConfig
-
- All Known Subinterfaces:
KeyValueServiceConfigHelper
public interface KeyValueServiceConfig
Marker interface for various AtlasDb KeyValueService config objects.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description int
concurrentGetRangesThreadPoolSize()
The size of the thread pool used for concurrently running range requests.default int
defaultGetRangesConcurrency()
The maximum number of threads from the pool ofconcurrentGetRangesThreadPoolSize()
to use for a single getRanges request when the user does not explicitly provide a value.Optional<String>
namespace()
String
type()
-
-
-
Method Detail
-
type
String type()
-
concurrentGetRangesThreadPoolSize
int concurrentGetRangesThreadPoolSize()
The size of the thread pool used for concurrently running range requests.
-
defaultGetRangesConcurrency
default int defaultGetRangesConcurrency()
The maximum number of threads from the pool ofconcurrentGetRangesThreadPoolSize()
to use for a single getRanges request when the user does not explicitly provide a value.
-
-