Class KeyValueBucketRefresher
java.lang.Object
com.couchbase.client.core.config.refresher.KeyValueBucketRefresher
- All Implemented Interfaces:
BucketRefresher
The
KeyValueBucketRefresher
keeps configs up-to-date through the KV service.
The KV refresher works by proactively polling for new configurations against all open, registered buckets. It tries to iterate through all available KV nodes so that even if one or more are not available we'll eventually are able to get a proper, good config to work with.
Once a config is retrieved it is sent to the config manager which then decides if it is going to apply or discard the config.
- Since:
- 1.0.0
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionderegister
(String name) Deregisters a bucket from refreshing (stopping the refresh).void
markTainted
(String name) Marks the bucket as tainted, which will change the behavior of the refresher.void
markUntainted
(String name) Marks the bucket as untainted, which will change the behavior of the refresher.protected Duration
Allows to override the default poller interval in tests to speed them up.Registers a bucket for refreshing.Returns the names of all registered buckets.shutdown()
Permanently shuts down the refresher.
-
Constructor Details
-
KeyValueBucketRefresher
-
-
Method Details
-
pollerInterval
Allows to override the default poller interval in tests to speed them up.- Returns:
- the poller interval as a duration.
-
register
Description copied from interface:BucketRefresher
Registers a bucket for refreshing.- Specified by:
register
in interfaceBucketRefresher
- Parameters:
name
- the name of the bucket.- Returns:
- a
Mono
once complete.
-
deregister
Description copied from interface:BucketRefresher
Deregisters a bucket from refreshing (stopping the refresh).- Specified by:
deregister
in interfaceBucketRefresher
- Parameters:
name
- the name of the bucket.- Returns:
- a
Mono
once complete.
-
markTainted
Description copied from interface:BucketRefresher
Marks the bucket as tainted, which will change the behavior of the refresher.A config is marked as tainted during rebalance, which usually leads to shorter intervals of checking if a new configuration exists (depending of the refresher impl).
- Specified by:
markTainted
in interfaceBucketRefresher
- Parameters:
name
- the name of the bucket.
-
markUntainted
Description copied from interface:BucketRefresher
Marks the bucket as untainted, which will change the behavior of the refresher.A config is marked as tainted during rebalance, which usually leads to shorter intervals of checking if a new configuration exists (depending of the refresher impl).
- Specified by:
markUntainted
in interfaceBucketRefresher
- Parameters:
name
- the name of the bucket.
-
shutdown
Description copied from interface:BucketRefresher
Permanently shuts down the refresher.- Specified by:
shutdown
in interfaceBucketRefresher
- Returns:
- a
Mono
once complete.
-
registered
Description copied from interface:BucketRefresher
Returns the names of all registered buckets.- Specified by:
registered
in interfaceBucketRefresher
- Returns:
- all registered buckets.
-