|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.terracotta.async.configs.DefaultAsyncConfig
public class DefaultAsyncConfig
The default async configuration object.
The class can be subclasses to easily support configurations that differ only slightly from the default.
The default configuration has:
| Field Summary | |
|---|---|
static int |
BATCH_SIZE
|
static boolean |
BATCHING_ENABLED
|
static long |
MAX_ALLOWED_FALLBEHIND
|
static int |
MAX_QUEUE_SIZE
|
static int |
RATE_LIMIT
|
static long |
RETRY_ATTEMPT_DELAY
|
static int |
RETRY_ATTEMPTS
|
static boolean |
STEALING_ENABLED
|
static boolean |
SYNCHRONOUS_WRITE
|
static long |
WORK_DELAY
|
| Constructor Summary | |
|---|---|
protected |
DefaultAsyncConfig()
|
| Method Summary | |
|---|---|
int |
getBatchSize()
The number of items to include in each batch when batching is enabled. |
static AsyncConfig |
getInstance()
Return an AsyncConfig instance representing the default configuration. |
long |
getMaxAllowedFallBehind()
The maximum amount of time that a queue is allowed to fall behind on the work that it's processing. |
int |
getMaxQueueSize()
The maximum size of items the Async coordinator can hold. |
int |
getRateLimit()
Sets the maximum number of operations to allow per second when AsyncConfig.isBatchingEnabled() is enabled. |
long |
getRetryAttemptDelay()
Retrieves the number of milliseconds to wait before retrying a failed operation. |
int |
getRetryAttempts()
Retrieves the number of times the processing of an item os retried. |
long |
getWorkDelay()
Returns the minimum amount of time to wait between individual work cycles. |
boolean |
isBatchingEnabled()
Indicates whether to batch items. |
boolean |
isStealingEnabled()
Indicates whether items can be stolen amongst queues or if each queue always has to process its own items |
boolean |
isSynchronousWrite()
Perform all writes to the Terracotta backend in a synchronous fashion, hence increasing reliability but decreasing performance. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
public static final long WORK_DELAY
public static final long MAX_ALLOWED_FALLBEHIND
public static final boolean STEALING_ENABLED
public static final int BATCH_SIZE
public static final boolean BATCHING_ENABLED
public static final boolean SYNCHRONOUS_WRITE
public static final int RETRY_ATTEMPTS
public static final long RETRY_ATTEMPT_DELAY
public static final int RATE_LIMIT
public static final int MAX_QUEUE_SIZE
| Constructor Detail |
|---|
protected DefaultAsyncConfig()
| Method Detail |
|---|
public static AsyncConfig getInstance()
AsyncConfig instance representing the default configuration.
public long getWorkDelay()
AsyncConfig
getWorkDelay in interface AsyncConfigpublic long getMaxAllowedFallBehind()
AsyncConfig
getMaxAllowedFallBehind in interface AsyncConfigpublic boolean isStealingEnabled()
AsyncConfig
isStealingEnabled in interface AsyncConfigtrue when stealing is enabled; or false otherwisepublic int getBatchSize()
AsyncConfig
getBatchSize in interface AsyncConfigpublic boolean isBatchingEnabled()
AsyncConfigtrue, ItemProcessor.process(java.util.Collection)
will be called rather than ItemProcessor.process(Object) being called for individual item. Resources such
as databases can perform more efficiently if updates are batched, thus reducing load.
isBatchingEnabled in interface AsyncConfigtrue if items should be batched; false otherwisepublic boolean isSynchronousWrite()
AsyncConfig
isSynchronousWrite in interface AsyncConfigtrue to enable synchronous writes; or false to perform the write asynchronouslypublic int getRetryAttempts()
AsyncConfig
getRetryAttempts in interface AsyncConfigpublic long getRetryAttemptDelay()
AsyncConfig
getRetryAttemptDelay in interface AsyncConfigpublic int getRateLimit()
AsyncConfigAsyncConfig.isBatchingEnabled() is enabled.
getRateLimit in interface AsyncConfigpublic int getMaxQueueSize()
AsyncConfig2
getMaxQueueSize in interface AsyncConfig2
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||