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 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251
|
/*-
* See the file LICENSE for redistribution information.
*
* Copyright (c) 2002,2010 Oracle. All rights reserved.
*
* $Id: BackgroundIOTest.java,v 1.10.2.2 2010/01/04 15:30:42 cwl Exp $
*/
package com.sleepycat.je.cleaner;
import java.io.File;
import java.io.IOException;
import junit.framework.TestCase;
import com.sleepycat.bind.tuple.TupleBase;
import com.sleepycat.bind.tuple.TupleOutput;
import com.sleepycat.je.CheckpointConfig;
import com.sleepycat.je.Database;
import com.sleepycat.je.DatabaseConfig;
import com.sleepycat.je.DatabaseEntry;
import com.sleepycat.je.DatabaseException;
import com.sleepycat.je.DbInternal;
import com.sleepycat.je.Environment;
import com.sleepycat.je.EnvironmentConfig;
import com.sleepycat.je.config.EnvironmentParams;
import com.sleepycat.je.dbi.EnvironmentImpl;
import com.sleepycat.je.latch.LatchSupport;
import com.sleepycat.je.log.FileManager;
import com.sleepycat.je.util.TestUtils;
import com.sleepycat.je.utilint.TestHook;
public class BackgroundIOTest extends TestCase {
final static int FILE_SIZE = 1000000;
private static CheckpointConfig forceConfig;
static {
forceConfig = new CheckpointConfig();
forceConfig.setForce(true);
}
private File envHome;
private Environment env;
private int readLimit;
private int writeLimit;
private int nSleeps;
public BackgroundIOTest() {
envHome = new File(System.getProperty(TestUtils.DEST_DIR));
}
public void setUp()
throws IOException, DatabaseException {
TestUtils.removeLogFiles("Setup", envHome, false);
TestUtils.removeFiles("Setup", envHome, FileManager.DEL_SUFFIX);
}
public void tearDown()
throws IOException, DatabaseException {
if (env != null) {
try {
env.close();
} catch (Throwable e) {
System.out.println("tearDown: " + e);
}
env = null;
}
//*
TestUtils.removeLogFiles("TearDown", envHome, true);
TestUtils.removeFiles("TearDown", envHome, FileManager.DEL_SUFFIX);
//*/
}
public void testBackgroundIO1()
throws DatabaseException, InterruptedException {
openEnv(10, 10);
if (isCkptHighPriority()) {
doTest(93, 113);
} else {
doTest(186, 206);
}
}
public void testBackgroundIO2()
throws DatabaseException, InterruptedException {
openEnv(10, 5);
if (isCkptHighPriority()) {
doTest(93, 113);
} else {
doTest(310, 330);
}
}
public void testBackgroundIO3()
throws DatabaseException, InterruptedException {
openEnv(5, 10);
if (isCkptHighPriority()) {
doTest(167, 187);
} else {
doTest(259, 279);
}
}
public void testBackgroundIO4()
throws DatabaseException, InterruptedException {
openEnv(5, 5);
if (isCkptHighPriority()) {
doTest(167, 187);
} else {
doTest(383, 403);
}
}
private boolean isCkptHighPriority()
throws DatabaseException {
return "true".equals(env.getConfig().getConfigParam
(EnvironmentParams.CHECKPOINTER_HIGH_PRIORITY.getName()));
}
private void openEnv(int readLimit, int writeLimit)
throws DatabaseException {
this.readLimit = readLimit;
this.writeLimit = writeLimit;
EnvironmentConfig envConfig = TestUtils.initEnvConfig();
envConfig.setAllowCreate(true);
envConfig.setConfigParam
(EnvironmentParams.ENV_RUN_CLEANER.getName(), "false");
envConfig.setConfigParam
(EnvironmentParams.ENV_RUN_CHECKPOINTER.getName(), "false");
envConfig.setConfigParam
(EnvironmentParams.ENV_RUN_INCOMPRESSOR.getName(), "false");
envConfig.setConfigParam
(EnvironmentParams.LOG_BUFFER_MAX_SIZE.getName(),
Integer.toString(1024));
envConfig.setConfigParam
(EnvironmentParams.LOG_FILE_MAX.getName(),
Integer.toString(FILE_SIZE));
envConfig.setConfigParam
(EnvironmentParams.CLEANER_MIN_UTILIZATION.getName(), "60");
//*
envConfig.setConfigParam
(EnvironmentParams.ENV_BACKGROUND_READ_LIMIT.getName(),
String.valueOf(readLimit));
envConfig.setConfigParam
(EnvironmentParams.ENV_BACKGROUND_WRITE_LIMIT.getName(),
String.valueOf(writeLimit));
//*/
env = new Environment(envHome, envConfig);
}
private void doTest(int minSleeps, int maxSleeps)
throws DatabaseException, InterruptedException {
EnvironmentImpl envImpl = DbInternal.envGetEnvironmentImpl(env);
envImpl.setBackgroundSleepHook(new TestHook() {
public void doHook() {
nSleeps += 1;
assertEquals(0, LatchSupport.countLatchesHeld());
}
public Object getHookValue() {
throw new UnsupportedOperationException();
}
public void doIOHook() throws IOException {
throw new UnsupportedOperationException();
}
public void hookSetup() {
throw new UnsupportedOperationException();
}
});
DatabaseConfig dbConfig = new DatabaseConfig();
dbConfig.setAllowCreate(true);
dbConfig.setExclusiveCreate(true);
Database db = env.openDatabase(null, "BackgroundIO", dbConfig);
final int nFiles = 3;
final int keySize = 20;
final int dataSize = 10;
final int recSize = keySize + dataSize + 35 /* LN overhead */;
final int nRecords = nFiles * (FILE_SIZE / recSize);
/*
* Insert records first so we will have a sizeable checkpoint. Insert
* interleaved because sequential inserts flush the BINs, and we want
* to defer BIN flushing until the checkpoint.
*/
DatabaseEntry key = new DatabaseEntry();
DatabaseEntry data = new DatabaseEntry(new byte[dataSize]);
for (int i = 0; i <= nRecords; i += 2) {
setKey(key, i, keySize);
db.put(null, key, data);
}
for (int i = 1; i <= nRecords; i += 2) {
setKey(key, i, keySize);
db.put(null, key, data);
}
/* Perform a checkpoint to perform background writes. */
env.checkpoint(forceConfig);
/* Delete records so we will have a sizable cleaning. */
for (int i = 0; i <= nRecords; i += 1) {
setKey(key, i, keySize);
db.delete(null, key);
}
/* Perform cleaning to perform background reading. */
env.checkpoint(forceConfig);
env.cleanLog();
env.checkpoint(forceConfig);
db.close();
env.close();
env = null;
String msg;
msg = "readLimit=" + readLimit +
" writeLimit=" + writeLimit +
" minSleeps=" + minSleeps +
" maxSleeps=" + maxSleeps +
" actualSleeps=" + nSleeps;
//System.out.println(msg);
//*
assertTrue(msg, nSleeps >= minSleeps && nSleeps <= maxSleeps);
//*/
}
/**
* Outputs an integer followed by pad bytes.
*/
private void setKey(DatabaseEntry entry, int val, int len) {
TupleOutput out = new TupleOutput();
out.writeInt(val);
for (int i = 0; i < len - 4; i += 1) {
out.writeByte(0);
}
TupleBase.outputToEntry(out, entry);
}
}
|