blob: e9171b44d728c5c4778cce69fe6c5ef5e2a197a3 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more contributor license
* agreements. See the NOTICE file distributed with this work for additional information regarding
* copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance with the License. You may obtain a
* copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
package org.apache.geode.internal.cache;
import static org.apache.geode.distributed.ConfigurationProperties.LOG_LEVEL;
import static org.apache.geode.distributed.ConfigurationProperties.MCAST_PORT;
import java.io.File;
import java.io.FilenameFilter;
import java.util.HashMap;
import java.util.Map;
import com.examples.snapshot.MyObject;
import com.examples.snapshot.MyPdxSerializer;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.apache.geode.cache.Cache;
import org.apache.geode.cache.CacheFactory;
import org.apache.geode.cache.DiskStore;
import org.apache.geode.cache.Region;
import org.apache.geode.cache.snapshot.RegionGenerator;
import org.apache.geode.cache.snapshot.RegionGenerator.RegionType;
import org.apache.geode.cache.snapshot.RegionGenerator.SerializationType;
public class OfflineSnapshotJUnitTest {
private RegionGenerator rgen;
private Cache cache;
private DiskStore ds;
@Test
public void testExport() throws Exception {
int rcount = 0;
for (final RegionType rt : RegionType.persistentValues()) {
for (final SerializationType st : SerializationType.offlineValues()) {
Region<Integer, MyObject> region =
rgen.createRegion(cache, ds.getName(), rt, "test" + rcount++);
final Map<Integer, MyObject> expected = createExpected(st, 1000);
region.putAll(expected);
removeAndInvalidateKeys(region, expected);
cache.close();
DiskStoreImpl.exportOfflineSnapshot(ds.getName(), new File[] {new File(".")},
new File("."));
SnapshotTestUtil.checkSnapshotEntries(new File("."), expected, ds.getName(),
region.getName());
reset();
}
}
}
private void removeAndInvalidateKeys(Region<Integer, MyObject> region,
Map<Integer, MyObject> expected) {
int removed = 5;
int invalidated = 7;
region.destroy(removed);
region.invalidate(invalidated);
expected.remove(removed);
expected.put(7, null);
}
@Test
public void testLargeFileExport() throws Exception {
int count = 10000;
Region<Integer, MyObject> region =
rgen.createRegion(cache, ds.getName(), RegionType.PARTITION_PERSISTENT, "test");
System.out.println("Creating entries...");
final Map<Integer, MyObject> expected =
createExpected(SerializationType.DATA_SERIALIZABLE, count);
region.putAll(expected);
cache.close();
System.out.println("Recovering entries...");
for (int i = 0; i < 10; i++) {
long start = System.currentTimeMillis();
DiskStoreImpl.exportOfflineSnapshot(ds.getName(), new File[] {new File(".")}, new File("."));
long elapsed = System.currentTimeMillis() - start;
double rate = 1.0 * count / elapsed;
System.out.println("Created snapshot with " + count + " entries in " + elapsed + " ms ("
+ rate + " entries/ms)");
SnapshotTestUtil.checkSnapshotEntries(new File("."), expected, ds.getName(),
region.getName());
}
}
private Map<Integer, MyObject> createExpected(SerializationType type, int count) {
Map<Integer, MyObject> expected = new HashMap<Integer, MyObject>();
for (int i = 0; i < count; i++) {
expected.put(i, rgen.createData(type, i, "The number is " + i));
}
return expected;
}
@Before
public void setUp() throws Exception {
for (File f : new File(".").listFiles(new FilenameFilter() {
@Override
public boolean accept(File dir, String name) {
return name.startsWith("BACKUP") || name.startsWith("snapshot-");
}
})) {
f.delete();
}
reset();
rgen = new RegionGenerator();
}
@After
public void tearDown() throws Exception {
if (!cache.isClosed()) {
cache.close();
}
}
private void reset() {
CacheFactory cf = new CacheFactory().set(MCAST_PORT, "0").set(LOG_LEVEL, "error")
.setPdxSerializer(new MyPdxSerializer()).setPdxPersistent(true);
cache = cf.create();
ds = cache.createDiskStoreFactory().setMaxOplogSize(1).create("snapshotTest");
}
}