1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197
|
/*-
* See the file LICENSE for redistribution information.
*
* Copyright (c) 2002,2010 Oracle. All rights reserved.
*
* $Id: SR12641.java,v 1.9.2.2 2010/01/04 15:30:43 cwl Exp $
*/
package com.sleepycat.je.dbi;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.PrintStream;
import junit.framework.TestCase;
import com.sleepycat.bind.tuple.IntegerBinding;
import com.sleepycat.je.Cursor;
import com.sleepycat.je.CursorConfig;
import com.sleepycat.je.Database;
import com.sleepycat.je.DatabaseConfig;
import com.sleepycat.je.DatabaseEntry;
import com.sleepycat.je.Environment;
import com.sleepycat.je.EnvironmentConfig;
import com.sleepycat.je.OperationStatus;
import com.sleepycat.je.config.EnvironmentParams;
import com.sleepycat.je.junit.JUnitThread;
import com.sleepycat.je.log.FileManager;
import com.sleepycat.je.util.TestUtils;
/**
* This reproduces the bug described SR [#12641], also related to SR [#9543].
*
* Note that allthough this is a JUnit test case, it is not run as part of the
* JUnit test suite. It takes a long time, and when it fails it hangs.
* Therefore, it was only used for debugging and is not intended to be a
* regression test.
*
* For some reason the bug was not reproducible with a simple main program,
* which is why a JUnit test was used.
*/
public class SR12641 extends TestCase {
/* Use small NODE_MAX to cause lots of splits. */
private static final int NODE_MAX = 6;
private File envHome;
private Environment env;
private Database db;
private boolean dups;
private boolean writerStopped;
public SR12641()
throws Exception {
envHome = new File(System.getProperty(TestUtils.DEST_DIR));
}
public void setUp()
throws Exception {
TestUtils.removeFiles("Setup", envHome, FileManager.JE_SUFFIX);
}
public void tearDown()
throws Exception {
if (env != null) {
try {
env.close();
} catch (Exception e) {
System.err.println("TearDown: " + e);
}
}
env = null;
db = null;
TestUtils.removeFiles("TearDown", envHome, FileManager.JE_SUFFIX);
}
public void testSplitsWithScansDups()
throws Throwable {
dups = true;
testSplitsWithScans();
}
public void testSplitsWithScans()
throws Throwable {
open();
/* Cause splits in the last BIN. */
JUnitThread writer = new JUnitThread("writer") {
public void testBody() {
try {
DatabaseEntry key = new DatabaseEntry(new byte[1]);
DatabaseEntry data = new DatabaseEntry(new byte[1]);
OperationStatus status;
Cursor cursor = db.openCursor(null, null);
for (int i = 0; i < 100000; i += 1) {
IntegerBinding.intToEntry(i, dups ? data : key);
if (dups) {
status = cursor.putNoDupData(key, data);
} else {
status = cursor.putNoOverwrite(key, data);
}
assertEquals(OperationStatus.SUCCESS, status);
if (i % 5000 == 0) {
System.out.println("Iteration: " + i);
}
}
cursor.close();
writerStopped = true;
} catch (Exception e) {
try {
FileOutputStream os =
new FileOutputStream(new File("./err.txt"));
e.printStackTrace(new PrintStream(os));
os.close();
} catch (IOException ignored) {}
System.exit(1);
}
}
};
/* Move repeatedly from the last BIN to the prior BIN. */
JUnitThread reader = new JUnitThread("reader") {
public void testBody() {
try {
DatabaseEntry key = new DatabaseEntry();
DatabaseEntry data = new DatabaseEntry();
CursorConfig cursorConfig = new CursorConfig();
cursorConfig.setReadUncommitted(true);
Cursor cursor = db.openCursor(null, cursorConfig);
while (!writerStopped) {
cursor.getLast(key, data, null);
for (int i = 0; i <= NODE_MAX; i += 1) {
cursor.getPrev(key, data, null);
}
}
cursor.close();
} catch (Exception e) {
try {
FileOutputStream os =
new FileOutputStream(new File("./err.txt"));
e.printStackTrace(new PrintStream(os));
os.close();
} catch (IOException ignored) {}
System.exit(1);
}
}
};
writer.start();
reader.start();
writer.finishTest();
reader.finishTest();
close();
System.out.println("SUCCESS");
}
private void open()
throws Exception {
EnvironmentConfig envConfig = TestUtils.initEnvConfig();
envConfig.setConfigParam
(EnvironmentParams.NODE_MAX.getName(), String.valueOf(NODE_MAX));
envConfig.setAllowCreate(true);
env = new Environment(envHome, envConfig);
DatabaseConfig dbConfig = new DatabaseConfig();
dbConfig.setAllowCreate(true);
dbConfig.setExclusiveCreate(true);
dbConfig.setSortedDuplicates(dups);
db = env.openDatabase(null, "testDb", dbConfig);
}
private void close()
throws Exception {
db.close();
db = null;
env.close();
env = null;
}
}
|