public interface CacheSnapshotService
// obtain a snapshot CacheSnapshotService snapshot = cache.getSnapshotService(); // export the snapshot, every region in the cache will be exported snapshot.save(new File("."), SnapshotFormat.GEMFIRE); // import the snapshot files, updates any existing entries in the cache snapshot.load(new File("."), SnapshotFormat.GEMFIRE);The default behavior is to perform all I/O operations on the node where the snapshot operations are invoked. This will involve either collecting or dispersing data over the network if the cache contains a partitioned region. The snapshot behavior can be changed using
SnapshotOptions
. For example:
CacheSnapshotService snapshot = cache.getSnapshotService(); SnapshotFilter filter = new SnapshotFilter() { public boolean accept(EntryNote that the snapshot does not provide a consistency guarantee. Updates to data during the course of import/export operations could result data inconsistencies.entry) { return true; } }; SnapshotOptions
Cache.getSnapshotService()
,
SnapshotOptions
Modifier and Type | Method and Description |
---|---|
SnapshotOptions<Object,Object> |
createOptions()
Creates a
SnapshotOptions object configured with default
settings. |
void |
load(File[] snapshots,
SnapshotOptions.SnapshotFormat format,
SnapshotOptions<Object,Object> options)
Imports the specified files into the cache by applying user-configured
options.
|
void |
load(File dir,
SnapshotOptions.SnapshotFormat format)
Imports all files in the specified directory into the cache.
|
void |
save(File dir,
SnapshotOptions.SnapshotFormat format)
Exports all regions in the cache to the specified directory.
|
void |
save(File dir,
SnapshotOptions.SnapshotFormat format,
SnapshotOptions<Object,Object> options)
Exports all regions in the cache to the specified directory by applying
user-configured options.
|
SnapshotOptions<Object,Object> createOptions()
SnapshotOptions
object configured with default
settings. The options can be used to configure snapshot behavior.void save(File dir, SnapshotOptions.SnapshotFormat format) throws IOException
dir
- the directory for writing the snapshots, will be created if
necessaryformat
- the snapshot formatIOException
- error writing snapshotvoid save(File dir, SnapshotOptions.SnapshotFormat format, SnapshotOptions<Object,Object> options) throws IOException
dir
- the directory for writing the snapshots, will be created if
necessaryformat
- the snapshot formatoptions
- the snapshot optionsIOException
- error writing snapshotvoid load(File dir, SnapshotOptions.SnapshotFormat format) throws IOException, ClassNotFoundException
Prior to loading data, all regions should have been created and
any necessary serializers (either DataSerializer
or
PdxSerializer
) and Instantiator
s should have been
registered.
dir
- the directory containing the snapshot filesformat
- the snapshot file formatIOException
- Unable to import dataClassNotFoundException
- Unable to import datavoid load(File[] snapshots, SnapshotOptions.SnapshotFormat format, SnapshotOptions<Object,Object> options) throws IOException, ClassNotFoundException
Prior to loading data, all regions should have been created and any
necessary serializers (either DataSerializer
or
PdxSerializer
) and Instantiator
s should have been
registered.
snapshots
- the snapshot filesformat
- the snapshot file formatoptions
- the snapshot optionsIOException
- Unable to import dataClassNotFoundException
- Unable to import dataCopyright © 1997-2017 Pivotal Software, Inc. All rights reserved.