Class GlobalStateConfigurationBuilder
java.lang.Object
org.infinispan.configuration.global.AbstractGlobalConfigurationBuilder
org.infinispan.configuration.global.GlobalStateConfigurationBuilder
- All Implemented Interfaces:
Builder<GlobalStateConfiguration>
,GlobalConfigurationChildBuilder
public class GlobalStateConfigurationBuilder
extends AbstractGlobalConfigurationBuilder
implements Builder<GlobalStateConfiguration>
GlobalStateConfigurationBuilder. Configures filesystem paths where global state is stored.
- Since:
- 8.1
- Author:
- Tristan Tarrant
-
Method Summary
Modifier and TypeMethodDescriptionconfigurationStorage
(ConfigurationStorage storage) Defines theConfigurationStorage
strategy to use.configurationStorageSupplier
(Supplier<? extends LocalConfigurationStorage> configurationStorageSupplier) Defines the @LocalConfigurationStorage
.create()
Create the configuration beandisable()
enable()
boolean
enabled()
enabled
(boolean enabled) Enables or disables the storage of global state.persistentLocation
(String location) Defines the filesystem path where node-specific persistent data which needs to survive container restarts should be stored.persistentLocation
(String path, String relativeTo) Builder
<?> read
(GlobalStateConfiguration template, Combine combine) Reads the configuration from an already created configuration bean into this builder.sharedPersistentLocation
(String location) Defines the filesystem path where shared persistent state data which needs to survive container restarts should be stored.sharedPersistentLocation
(String path, String relativeTo) temporaryLocation
(String location) Defines the filesystem path where temporary state should be stored.temporaryLocation
(String path, String relativeTo) Defines the action taken when a dangling lock file is found in the persistent global state, signifying an unclean shutdown of the node (usually because of a crash or an external termination).void
validate()
Validate the data in this builder before building the configuration beanMethods inherited from class org.infinispan.configuration.global.AbstractGlobalConfigurationBuilder
addModule, asyncThreadPool, blockingThreadPool, build, clearModules, defaultCacheName, expirationThreadPool, getGlobalConfig, globalState, jmx, listenerThreadPool, metrics, module, modules, nonBlockingThreadPool, persistenceThreadPool, security, serialization, shutdown, site, tracing, transport
-
Method Details
-
attributes
- Specified by:
attributes
in interfaceBuilder<GlobalStateConfiguration>
-
enable
-
disable
-
enabled
Enables or disables the storage of global state. -
enabled
public boolean enabled() -
uncleanShutdownAction
Defines the action taken when a dangling lock file is found in the persistent global state, signifying an unclean shutdown of the node (usually because of a crash or an external termination). -
persistentLocation
Defines the filesystem path where node-specific persistent data which needs to survive container restarts should be stored. This path will be used as the default storage location for file-based cache stores such as the defaultSingleFileStore
as well as the consistent hash for all caches which enables graceful shutdown and restart. Because the data stored in the persistent location is specific to the node that owns it, this path MUST NOT be shared among multiple instances. Defaults to the user.dir system property which usually is where the application was started. This value should be overridden to a more appropriate location. -
persistentLocation
-
temporaryLocation
Defines the filesystem path where temporary state should be stored. Defaults to the value of the java.io.tmpdir system property. -
temporaryLocation
-
configurationStorage
Defines theConfigurationStorage
strategy to use. If usingConfigurationStorage.CUSTOM
, then the actual implementation must be passed by invokingconfigurationStorageSupplier(Supplier)
-
configurationStorageSupplier
public GlobalStateConfigurationBuilder configurationStorageSupplier(Supplier<? extends LocalConfigurationStorage> configurationStorageSupplier) Defines the @LocalConfigurationStorage
. Defaults to @VolatileLocalConfigurationStorage
-
validate
public void validate()Description copied from interface:Builder
Validate the data in this builder before building the configuration bean- Specified by:
validate
in interfaceBuilder<GlobalStateConfiguration>
-
create
Description copied from interface:Builder
Create the configuration bean- Specified by:
create
in interfaceBuilder<GlobalStateConfiguration>
- Returns:
-
read
Description copied from interface:Builder
Reads the configuration from an already created configuration bean into this builder. Returns an appropriate builder to allow fluent configuration- Specified by:
read
in interfaceBuilder<GlobalStateConfiguration>
- Parameters:
template
- the configuration from which to "clone" this config if needed.combine
- the way attributes and children of this instance and the template should be combined.
-