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 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522
|
/*-
* See the file LICENSE for redistribution information.
*
* Copyright (c) 2002,2010 Oracle. All rights reserved.
*
* $Id: LastFileReaderTest.java,v 1.76.2.2 2010/01/04 15:30:44 cwl Exp $
*/
package com.sleepycat.je.log;
import java.io.File;
import java.io.IOException;
import java.io.RandomAccessFile;
import java.util.ArrayList;
import java.util.List;
import junit.framework.TestCase;
import com.sleepycat.je.DatabaseException;
import com.sleepycat.je.DbInternal;
import com.sleepycat.je.EnvironmentConfig;
import com.sleepycat.je.config.EnvironmentParams;
import com.sleepycat.je.dbi.DbConfigManager;
import com.sleepycat.je.dbi.EnvironmentImpl;
import com.sleepycat.je.log.entry.SingleItemEntry;
import com.sleepycat.je.txn.TxnAbort;
import com.sleepycat.je.util.BadFileFilter;
import com.sleepycat.je.util.TestUtils;
import com.sleepycat.je.utilint.DbLsn;
import com.sleepycat.je.utilint.Tracer;
public class LastFileReaderTest extends TestCase {
private DbConfigManager configManager;
private FileManager fileManager;
private LogManager logManager;
private File envHome;
private EnvironmentImpl envImpl;
public LastFileReaderTest() {
super();
envHome = new File(System.getProperty(TestUtils.DEST_DIR));
}
public void setUp()
throws DatabaseException, IOException {
TestUtils.removeFiles("Setup", envHome, FileManager.JE_SUFFIX);
TestUtils.removeFiles(envHome, new BadFileFilter());
}
public void tearDown()
throws DatabaseException, IOException {
/*
* Pass false to skip checkpoint, since the file manager may hold an
* open file that we've trashed in the tests, so we don't want to
* write to it here.
*/
try {
envImpl.close(false);
} catch (DatabaseException e) {
}
TestUtils.removeFiles("TearDown", envHome, FileManager.JE_SUFFIX);
TestUtils.removeFiles(envHome, new BadFileFilter());
}
/* Create an environment, using the default log file size. */
private void initEnv()
throws DatabaseException {
initEnv(null);
}
/* Create an environment, specifying the log file size. */
private void initEnv(String logFileSize)
throws DatabaseException {
EnvironmentConfig envConfig = TestUtils.initEnvConfig();
/* Don't run daemons; we do some abrupt shutdowns. */
envConfig.setConfigParam
(EnvironmentParams.ENV_RUN_CLEANER.getName(), "false");
envConfig.setConfigParam
(EnvironmentParams.ENV_RUN_CHECKPOINTER.getName(), "false");
envConfig.setConfigParam
(EnvironmentParams.ENV_RUN_EVICTOR.getName(), "false");
envConfig.setConfigParam
(EnvironmentParams.NODE_MAX.getName(), "6");
envConfig.setConfigParam
(EnvironmentParams.JE_LOGGING_LEVEL.getName(), "CONFIG");
if (logFileSize != null) {
DbInternal.disableParameterValidation(envConfig);
envConfig.setConfigParam
(EnvironmentParams.LOG_FILE_MAX.getName(), logFileSize);
}
/* Disable noisy UtilizationProfile database creation. */
DbInternal.setCreateUP(envConfig, false);
/* Don't checkpoint utilization info for this test. */
DbInternal.setCheckpointUP(envConfig, false);
envConfig.setAllowCreate(true);
envImpl = new EnvironmentImpl(envHome,
envConfig,
null /*sharedCacheEnv*/,
false /*replicationIntended*/);
configManager = envImpl.getConfigManager();
fileManager = envImpl.getFileManager();
logManager = envImpl.getLogManager();
}
/**
* Run with an empty file that has a file header but no log entries.
*/
public void testEmptyAtEnd()
throws Throwable {
initEnv();
/*
* Make a log file with a valid header, but no data.
*/
FileManagerTestUtils.createLogFile(fileManager, envImpl, 100);
fileManager.clear();
LastFileReader reader = new LastFileReader(envImpl, 1000);
assertTrue(reader.readNextEntry());
assertEquals(0, DbLsn.getFileOffset(reader.getLastLsn()));
}
/**
* Run with an empty, 0 length file at the end. This has caused a
* BufferUnderflowException. [#SR 12631]
*/
public void testLastFileEmpty()
throws Throwable {
initEnv("1000");
int numIters = 10;
List<Tracer> testObjs = new ArrayList<Tracer>();
List<Long> testLsns = new ArrayList<Long>();
/*
* Create a log with one or more files. Use only Tracer objects so we
* can iterate through the entire log ... ?
*/
for (int i = 0; i < numIters; i++) {
/* Add a debug record. */
Tracer msg = new Tracer("Hello there, rec " + (i+1));
testObjs.add(msg);
testLsns.add(new Long(msg.log(logManager)));
}
/* Flush the log, files. */
logManager.flush();
fileManager.clear();
int lastFileNum = fileManager.getAllFileNumbers().length - 1;
/*
* Create an extra, totally empty file.
*/
fileManager.syncLogEnd();
fileManager.clear();
String emptyLastFile = fileManager.getFullFileName(lastFileNum+1,
FileManager.JE_SUFFIX);
RandomAccessFile file =
new RandomAccessFile(emptyLastFile, FileManager.FileMode.
READWRITE_MODE.getModeValue());
file.close();
assertTrue(fileManager.getAllFileNumbers().length >= 2);
/*
* Try a LastFileReader. It should give us a end-of-log position in the
* penultimate file.
*/
LastFileReader reader = new LastFileReader(envImpl, 1000);
while (reader.readNextEntry()) {
}
/*
* The reader should be positioned at the last, valid file, skipping
* this 0 length file.
*/
assertEquals("lastValid=" + DbLsn.toString(reader.getLastValidLsn()),
lastFileNum,
DbLsn.getFileNumber(reader.getLastValidLsn()));
assertEquals(lastFileNum, DbLsn.getFileNumber(reader.getEndOfLog()));
}
/**
* Corrupt the file headers of the one and only log file.
*/
public void testBadFileHeader()
throws Throwable {
initEnv();
/*
* Handle a log file that has data and a bad header. First corrupt the
* existing log file. We will not be able to establish log end, but
* won't throw away the file because it has data.
*/
long lastFileNum = fileManager.getLastFileNum().longValue();
String lastFile =
fileManager.getFullFileName(lastFileNum,
FileManager.JE_SUFFIX);
RandomAccessFile file =
new RandomAccessFile(lastFile, FileManager.FileMode.
READWRITE_MODE.getModeValue());
file.seek(15);
file.writeBytes("putting more junk in, mess up header");
file.close();
/*
* We should see an exception on this one, because we made a file that
* looks like it has a bad header and bad data.
*/
try {
LastFileReader reader = new LastFileReader(envImpl, 1000);
fail("Should see exception when creating " + reader);
} catch (DbChecksumException e) {
/* Eat exception, expected. */
}
/*
* Now make a bad file header, but one that is less than the size of a
* file header. This file ought to get moved aside.
*/
file = new RandomAccessFile(lastFile, "rw");
file.getChannel().truncate(0);
file.writeBytes("bad");
file.close();
LastFileReader reader = new LastFileReader(envImpl, 1000);
/* Nothing comes back from reader. */
assertFalse(reader.readNextEntry());
File movedFile = new File(envHome, "00000000.bad");
assertTrue(movedFile.exists());
/* Try a few more times, we ought to keep moving the file. */
file = new RandomAccessFile(lastFile, "rw");
file.getChannel().truncate(0);
file.writeBytes("bad");
file.close();
reader = new LastFileReader(envImpl, 1000);
assertTrue(movedFile.exists());
File movedFile1 = new File(envHome, "00000000.bad.1");
assertTrue(movedFile1.exists());
}
/**
* Run with defaults.
*/
public void testBasic()
throws Throwable {
initEnv();
int numIters = 50;
List<Loggable> testObjs = new ArrayList<Loggable>();
List<Long> testLsns = new ArrayList<Long>();
fillLogFile(numIters, testLsns, testObjs);
LastFileReader reader =
new LastFileReader(envImpl,
configManager.getInt
(EnvironmentParams.LOG_ITERATOR_READ_SIZE));
checkLogEnd(reader, numIters, testLsns, testObjs);
}
/**
* Run with very small read buffer.
*/
public void testSmallBuffers()
throws Throwable {
initEnv();
int numIters = 50;
List<Loggable> testObjs = new ArrayList<Loggable>();
List<Long> testLsns = new ArrayList<Long>();
fillLogFile(numIters, testLsns, testObjs);
LastFileReader reader = new LastFileReader(envImpl, 10);
checkLogEnd(reader, numIters, testLsns, testObjs);
}
/**
* Run with medium buffers.
*/
public void testMedBuffers()
throws Throwable {
initEnv();
int numIters = 50;
List<Loggable> testObjs = new ArrayList<Loggable>();
List<Long> testLsns = new ArrayList<Long>();
fillLogFile(numIters, testLsns, testObjs);
LastFileReader reader = new LastFileReader(envImpl, 100);
checkLogEnd(reader, numIters, testLsns, testObjs);
}
/**
* Put junk at the end of the file.
*/
public void testJunk()
throws Throwable {
initEnv();
int numIters = 50;
List<Loggable> testObjs = new ArrayList<Loggable>();
List<Long> testLsns = new ArrayList<Long>();
/* Write junk into the end of the file. */
fillLogFile(numIters, testLsns, testObjs);
long lastFileNum = fileManager.getLastFileNum().longValue();
String lastFile =
fileManager.getFullFileName(lastFileNum,
FileManager.JE_SUFFIX);
RandomAccessFile file =
new RandomAccessFile(lastFile, FileManager.FileMode.
READWRITE_MODE.getModeValue());
file.seek(file.length());
file.writeBytes("hello, some junk");
file.close();
/* Read. */
LastFileReader reader = new LastFileReader(envImpl, 100);
checkLogEnd(reader, numIters, testLsns, testObjs);
}
/**
* Make a log, then make a few extra files at the end, one empty, one with
* a bad file header.
*/
public void testExtraEmpty()
throws Throwable {
initEnv();
int numIters = 50;
List<Loggable> testObjs = new ArrayList<Loggable>();
List<Long> testLsns = new ArrayList<Long>();
int defaultBufferSize =
configManager.getInt(EnvironmentParams.LOG_ITERATOR_READ_SIZE);
/*
* Make a valid log with data, then put a couple of extra files after
* it. Make the file numbers non-consecutive. We should have three log
* files.
*/
/* Create a log */
fillLogFile(numIters, testLsns, testObjs);
/* First empty log file -- header, no data. */
fileManager.bumpLsn(100000000);
fileManager.bumpLsn(100000000);
FileManagerTestUtils.createLogFile(fileManager, envImpl, 10);
/* Second empty log file -- header, no data. */
fileManager.bumpLsn(100000000);
fileManager.bumpLsn(100000000);
FileManagerTestUtils.createLogFile(fileManager, envImpl, 10);
assertEquals(3, fileManager.getAllFileNumbers().length);
/*
* Corrupt the last empty file and then search for the correct last
* file.
*/
long lastFileNum = fileManager.getLastFileNum().longValue();
String lastFile =
fileManager.getFullFileName(lastFileNum,
FileManager.JE_SUFFIX);
RandomAccessFile file =
new RandomAccessFile(lastFile, FileManager.FileMode.
READWRITE_MODE.getModeValue());
file.getChannel().truncate(10);
file.close();
fileManager.clear();
/*
* Make a reader, read the log. After the reader returns, we should
* only have 2 log files.
*/
LastFileReader reader = new LastFileReader(envImpl,
defaultBufferSize);
checkLogEnd(reader, numIters, testLsns, testObjs);
assertEquals(2, fileManager.getAllFileNumbers().length);
/*
* Corrupt the now "last" empty file and try again. This is actually
* the first empty file we made.
*/
lastFileNum = fileManager.getLastFileNum().longValue();
lastFile = fileManager.getFullFileName(lastFileNum,
FileManager.JE_SUFFIX);
file = new RandomAccessFile(lastFile, FileManager.FileMode.
READWRITE_MODE.getModeValue());
file.getChannel().truncate(10);
file.close();
/*
* Validate that we have the right number of log entries, and only one
* valid log file.
*/
reader = new LastFileReader(envImpl, defaultBufferSize);
checkLogEnd(reader, numIters, testLsns, testObjs);
assertEquals(1, fileManager.getAllFileNumbers().length);
}
/**
* Write a logfile of entries, then read the end.
*/
private void fillLogFile(int numIters, List<Long> testLsns, List<Loggable> testObjs)
throws Throwable {
/*
* Create a log file full of LNs and Debug Records.
*/
for (int i = 0; i < numIters; i++) {
/* Add a debug record. */
Tracer msg = new Tracer("Hello there, rec " + (i+1));
testObjs.add(msg);
testLsns.add(new Long(msg.log(logManager)));
/* Add a txn abort */
TxnAbort abort = new TxnAbort(10L, 200L,
1234567 /* masterNodeId */);
SingleItemEntry entry =
new SingleItemEntry(LogEntryType.LOG_TXN_ABORT, abort);
testObjs.add(abort);
testLsns.add(new Long(logManager.log
(entry,
ReplicationContext.NO_REPLICATE)));
}
/* Flush the log, files. */
logManager.flush();
fileManager.clear();
}
/**
* Use the LastFileReader to check this file, see if the log end is set
* right.
*/
private void checkLogEnd(LastFileReader reader,
int numIters,
List<Long> testLsns,
List<Loggable> testObjs)
throws Throwable {
reader.setTargetType(LogEntryType.LOG_ROOT);
reader.setTargetType(LogEntryType.LOG_TXN_COMMIT);
reader.setTargetType(LogEntryType.LOG_TXN_ABORT);
reader.setTargetType(LogEntryType.LOG_TRACE);
reader.setTargetType(LogEntryType.LOG_IN);
reader.setTargetType(LogEntryType.LOG_LN_TRANSACTIONAL);
/* Now ask the LastFileReader to read it back. */
while (reader.readNextEntry()) {
}
/* Truncate the file. */
reader.setEndOfFile();
/*
* How many entries did the iterator go over? We should see
* numIters * 2 + 7
* (the extra 7 are the root, debug records and checkpoints and file
* header written by recovery.
*/
assertEquals("should have seen this many entries", (numIters * 2) + 7,
reader.getNumRead());
/* Check last used LSN. */
int numLsns = testLsns.size();
long lastLsn = DbLsn.longToLsn(testLsns.get(numLsns - 1));
assertEquals("last LSN", lastLsn, reader.getLastLsn());
/* Check last offset. */
assertEquals("prev offset", DbLsn.getFileOffset(lastLsn),
reader.getPrevOffset());
/* Check next available LSN. */
int lastSize =
testObjs.get(testObjs.size() - 1).getLogSize();
assertEquals("next available",
DbLsn.makeLsn(DbLsn.getFileNumber(lastLsn),
DbLsn.getFileOffset(lastLsn) +
LogEntryHeader.MIN_HEADER_SIZE + lastSize),
reader.getEndOfLog());
/* The log should be truncated to just the right size. */
FileHandle handle = fileManager.getFileHandle(0L);
RandomAccessFile file = handle.getFile();
assertEquals(DbLsn.getFileOffset(reader.getEndOfLog()),
file.getChannel().size());
handle.release();
fileManager.clear();
/* Check the last tracked LSNs. */
assertTrue(reader.getLastSeen(LogEntryType.LOG_ROOT) !=
DbLsn.NULL_LSN);
assertTrue(reader.getLastSeen(LogEntryType.LOG_IN) == DbLsn.NULL_LSN);
assertTrue(reader.getLastSeen(LogEntryType.LOG_LN_TRANSACTIONAL) ==
DbLsn.NULL_LSN);
assertEquals(reader.getLastSeen(LogEntryType.LOG_TRACE),
DbLsn.longToLsn(testLsns.get(numLsns - 2)));
assertEquals(reader.getLastSeen(LogEntryType.LOG_TXN_ABORT),
lastLsn);
}
}
|