|
GemFire 7.0 | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
public interface CacheSnapshotService
Allows a snapshot of cache data to be imported and exported. Each region in the cache will be included in the snapshot (one snapshot file for each region). Example usage:
// 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(Entry entry) {
return true;
}
};
SnapshotOptions
Note that the snapshot does not provide a consistency guarantee. Updates to
data during the course of import/export operations could result data
inconsistencies.
Cache.getSnapshotService(),
SnapshotOptions| Method Summary | |
|---|---|
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. |
| Method Detail |
|---|
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 format
IOException - error writing snapshot
void 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 options
IOException - error writing snapshot
void 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 Instantiators should have been
registered.
dir - the directory containing the snapshot filesformat - the snapshot file format
IOException - Unable to import data
ClassNotFoundException - Unable to import data
void 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 Instantiators should have been
registered.
snapshots - the snapshot filesformat - the snapshot file formatoptions - the snapshot options
IOException - Unable to import data
ClassNotFoundException - Unable to import data
|
GemFire 7.0 | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||