Class BucketSettings
- java.lang.Object
-
- com.couchbase.client.java.manager.bucket.BucketSettings
-
public class BucketSettings extends Object
Represents all properties of a Couchbase Server Bucket.The
BucketSettings
interact with the bucket management APIs:BucketManager
,ReactiveBucketManager
andAsyncBucketManager
, which can be obtained throughCluster.buckets()
,ReactiveCluster.buckets()
andAsyncCluster.buckets()
.
-
-
Constructor Summary
Constructors Constructor Description BucketSettings(CoreBucketSettings internal)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description BucketType
bucketType()
Returns the bucket type.BucketSettings
bucketType(BucketType bucketType)
Configures theBucketType
.CompressionMode
compressionMode()
Returns theCompressionMode
used for the bucket.BucketSettings
compressionMode(CompressionMode compressionMode)
Sets the compression mode on the bucket.ConflictResolutionType
conflictResolutionType()
Returns the conflict resolution mode in use.BucketSettings
conflictResolutionType(ConflictResolutionType conflictResolutionType)
Configures the conflict resolution mode for the bucket.static BucketSettings
create(String name)
CreatesBucketSettings
with the bucket name and all default properties.EjectionPolicy
ejectionPolicy()
Deprecated.Please useevictionPolicy
instead.BucketSettings
ejectionPolicy(EjectionPolicy ejectionPolicy)
Deprecated.Please useevictionPolicy
instead.EvictionPolicyType
evictionPolicy()
Returns the eviction policy used on the bucket.BucketSettings
evictionPolicy(EvictionPolicyType evictionPolicy)
Allows to configure a customEvictionPolicyType
as the eviction policy.boolean
flushEnabled()
Returns true if flush is enabled on the bucket.BucketSettings
flushEnabled(boolean flushEnabled)
Allows enabling flush on the bucket.boolean
healthy()
Returns true if the bucket is identified as healthy by the cluster manager.Duration
maxExpiry()
Returns the maximum expiry (time-to-live) for all documents in the bucket.BucketSettings
maxExpiry(Duration maxExpiry)
Specifies the maximum expiry (time-to-live) for all documents in the bucket.int
maxTTL()
Deprecated.please usemaxExpiry()
instead.BucketSettings
maxTTL(int maxTTL)
Deprecated.please usemaxExpiry(Duration)
instead.DurabilityLevel
minimumDurabilityLevel()
Returns the minimum durability level set for the bucket.BucketSettings
minimumDurabilityLevel(DurabilityLevel durabilityLevel)
Configures a custom minimumDurabilityLevel
for this bucket.String
name()
Returns the name of the bucket.int
numReplicas()
Returns the configured number of replicas.BucketSettings
numReplicas(int numReplicas)
Sets the number of replica copies for the bucket.long
ramQuotaMB()
Returns the bucket RAM quota in megabytes.BucketSettings
ramQuotaMB(long ramQuotaMB)
Sets the ram quota in MB for this bucket.boolean
replicaIndexes()
Returns the number of replica indexes configured.BucketSettings
replicaIndexes(boolean replicaIndexes)
Sets the number of replica indexes on the bucket.StorageBackend
storageBackend()
Returns the storage backend for the bucket.BucketSettings
storageBackend(StorageBackend storageBackend)
Configures aStorageBackend
for this bucket.CoreBucketSettings
toCore()
String
toString()
-
-
-
Constructor Detail
-
BucketSettings
@Internal public BucketSettings(CoreBucketSettings internal)
-
-
Method Detail
-
create
public static BucketSettings create(String name)
CreatesBucketSettings
with the bucket name and all default properties.- Parameters:
name
- the name of the bucket.- Returns:
- the
BucketSettings
with all its defaults set.
-
name
public String name()
Returns the name of the bucket.
-
flushEnabled
public boolean flushEnabled()
Returns true if flush is enabled on the bucket.
-
ramQuotaMB
public long ramQuotaMB()
Returns the bucket RAM quota in megabytes.
-
numReplicas
public int numReplicas()
Returns the configured number of replicas.
-
replicaIndexes
public boolean replicaIndexes()
Returns the number of replica indexes configured.
-
minimumDurabilityLevel
public DurabilityLevel minimumDurabilityLevel()
Returns the minimum durability level set for the bucket.Note that if the bucket does not support it, and by default, it is set to
DurabilityLevel.NONE
.- Returns:
- the minimum durability level for that bucket.
-
maxExpiry
public Duration maxExpiry()
Returns the maximum expiry (time-to-live) for all documents in the bucket.
-
compressionMode
public CompressionMode compressionMode()
Returns theCompressionMode
used for the bucket.
-
bucketType
public BucketType bucketType()
Returns the bucket type.
-
conflictResolutionType
public ConflictResolutionType conflictResolutionType()
Returns the conflict resolution mode in use.
-
storageBackend
public StorageBackend storageBackend()
Returns the storage backend for the bucket.
-
evictionPolicy
public EvictionPolicyType evictionPolicy()
Returns the eviction policy used on the bucket.
-
healthy
@Internal public boolean healthy()
Returns true if the bucket is identified as healthy by the cluster manager.
-
flushEnabled
public BucketSettings flushEnabled(boolean flushEnabled)
Allows enabling flush on the bucket.- Parameters:
flushEnabled
- if flush should be enabled (not recommended for production!).- Returns:
- this
BucketSettings
instance for chaining purposes.
-
ramQuotaMB
public BucketSettings ramQuotaMB(long ramQuotaMB)
Sets the ram quota in MB for this bucket.- Parameters:
ramQuotaMB
- the bucket quota in megabytes.- Returns:
- this
BucketSettings
instance for chaining purposes.
-
numReplicas
public BucketSettings numReplicas(int numReplicas)
Sets the number of replica copies for the bucket.- Parameters:
numReplicas
- the number of replicas.- Returns:
- this
BucketSettings
instance for chaining purposes.
-
replicaIndexes
public BucketSettings replicaIndexes(boolean replicaIndexes)
Sets the number of replica indexes on the bucket.- Parameters:
replicaIndexes
- the number of replica indexes.- Returns:
- this
BucketSettings
instance for chaining purposes.
-
maxExpiry
public BucketSettings maxExpiry(Duration maxExpiry)
Specifies the maximum expiry (time-to-live) for all documents in the bucket.- Parameters:
maxExpiry
- the maximum expiry.- Returns:
- this
BucketSettings
instance for chaining purposes.
-
compressionMode
public BucketSettings compressionMode(CompressionMode compressionMode)
Sets the compression mode on the bucket.- Parameters:
compressionMode
- the compression mode to use.- Returns:
- this
BucketSettings
instance for chaining purposes.
-
bucketType
public BucketSettings bucketType(BucketType bucketType)
Configures theBucketType
.- Parameters:
bucketType
- the type of the bucket.- Returns:
- this
BucketSettings
instance for chaining purposes.
-
conflictResolutionType
public BucketSettings conflictResolutionType(ConflictResolutionType conflictResolutionType)
Configures the conflict resolution mode for the bucket.- Parameters:
conflictResolutionType
- the type of conflict resolution to use.- Returns:
- this
BucketSettings
instance for chaining purposes.
-
evictionPolicy
public BucketSettings evictionPolicy(EvictionPolicyType evictionPolicy)
Allows to configure a customEvictionPolicyType
as the eviction policy.Eviction automatically removes older data from RAM to create space for new data if you reach your bucket quota. How eviction behaves in detail depends on the
BucketType
chosen - please consult the server documentation for more information on the subject.- Parameters:
evictionPolicy
- (nullable) policy to use, or null for default policy for theBucketType
.- Returns:
- this
BucketSettings
instance for chaining purposes.
-
minimumDurabilityLevel
public BucketSettings minimumDurabilityLevel(DurabilityLevel durabilityLevel)
Configures a custom minimumDurabilityLevel
for this bucket.For
BucketType.COUCHBASE
, all durability levels are available. ForBucketType.EPHEMERAL
onlyDurabilityLevel.NONE
andDurabilityLevel.MAJORITY
are available. The durability level is not supported on memcached buckets (please use ephemeral buckets instead).- Parameters:
durabilityLevel
- the minimum level to use for all KV operations.- Returns:
- this
BucketSettings
instance for chaining purposes.
-
storageBackend
public BucketSettings storageBackend(StorageBackend storageBackend)
Configures aStorageBackend
for this bucket.Note that
StorageBackend.MAGMA
is only supported in 7.0 if developer preview is enabled. It is recommended to be used only with Server 7.1 and later.Also, if a
BucketType
is chosen that does not have a storage backend attached (i.e.BucketType.MEMCACHED
orBucketType.EPHEMERAL
), then this property is ignored.- Parameters:
storageBackend
- the backend to use.- Returns:
- this
BucketSettings
instance for chaining purposes.
-
maxTTL
@Deprecated public int maxTTL()
Deprecated.please usemaxExpiry()
instead.Returns the maximum expiry (time-to-live) for all documents in the bucket in seconds.
-
maxTTL
@Deprecated public BucketSettings maxTTL(int maxTTL)
Deprecated.please usemaxExpiry(Duration)
instead.Specifies the maximum expiry (time-to-live) for all documents in the bucket in seconds.- Parameters:
maxTTL
- the maximum expiry in seconds.- Returns:
- this
BucketSettings
for chaining purposes.
-
ejectionPolicy
@Deprecated public EjectionPolicy ejectionPolicy()
Deprecated.Please useevictionPolicy
instead.
-
ejectionPolicy
@Deprecated public BucketSettings ejectionPolicy(EjectionPolicy ejectionPolicy)
Deprecated.Please useevictionPolicy
instead.- Parameters:
ejectionPolicy
- (nullable) policy to use, or null for default policy for the bucket type.
-
toCore
@Internal public CoreBucketSettings toCore()
-
-