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 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234
|
/*-
* See the file LICENSE for redistribution information.
*
* Copyright (c) 2002,2010 Oracle. All rights reserved.
*
* $Id: TruncateAndRemoveTest.java,v 1.29.2.3 2010/01/04 15:30:42 cwl Exp $
*/
package com.sleepycat.je.cleaner;
import java.io.File;
import java.io.IOException;
import java.util.HashSet;
import java.util.Iterator;
import java.util.Set;
import java.nio.ByteBuffer;
import junit.framework.TestCase;
import com.sleepycat.je.CheckpointConfig;
import com.sleepycat.je.Cursor;
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.LockMode;
import com.sleepycat.je.OperationStatus;
import com.sleepycat.je.Transaction;
import com.sleepycat.je.config.EnvironmentParams;
import com.sleepycat.je.dbi.DatabaseId;
import com.sleepycat.je.dbi.DatabaseImpl;
import com.sleepycat.je.dbi.EnvironmentImpl;
import com.sleepycat.je.junit.JUnitThread;
import com.sleepycat.je.log.DumpFileReader;
import com.sleepycat.je.log.FileManager;
import com.sleepycat.je.log.LogEntryType;
import com.sleepycat.je.log.entry.INLogEntry;
import com.sleepycat.je.log.entry.LNLogEntry;
import com.sleepycat.je.log.entry.LogEntry;
import com.sleepycat.je.util.TestUtils;
import com.sleepycat.je.utilint.DbLsn;
import com.sleepycat.je.utilint.TestHook;
/**
* Test cleaning and utilization counting for database truncate and remove.
*/
public class TruncateAndRemoveTest extends TestCase {
private static final String DB_NAME1 = "foo";
private static final String DB_NAME2 = "bar";
private static final long RECORD_COUNT = 100;
private static final CheckpointConfig FORCE_CHECKPOINT =
new CheckpointConfig();
static {
FORCE_CHECKPOINT.setForce(true);
}
private static final boolean DEBUG = false;
private File envHome;
private Environment env;
private EnvironmentImpl envImpl;
private Database db;
private DatabaseImpl dbImpl;
private JUnitThread junitThread;
private boolean fetchObsoleteSize;
private boolean truncateOrRemoveDone;
private boolean dbEviction;
public TruncateAndRemoveTest() {
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 (junitThread != null) {
while (junitThread.isAlive()) {
junitThread.interrupt();
Thread.yield();
}
junitThread = null;
}
try {
if (env != null) {
env.close();
}
} catch (Throwable e) {
System.out.println("tearDown: " + e);
}
try {
//*
TestUtils.removeLogFiles("tearDown", envHome, true);
TestUtils.removeFiles("tearDown", envHome, FileManager.DEL_SUFFIX);
//*/
} catch (Throwable e) {
System.out.println("tearDown: " + e);
}
db = null;
dbImpl = null;
env = null;
envImpl = null;
envHome = null;
}
/**
* Opens the environment.
*/
private void openEnv(boolean transactional)
throws DatabaseException {
EnvironmentConfig config = TestUtils.initEnvConfig();
config.setTransactional(transactional);
config.setAllowCreate(true);
/* Do not run the daemons since they interfere with LN counting. */
config.setConfigParam
(EnvironmentParams.ENV_RUN_CLEANER.getName(), "false");
config.setConfigParam
(EnvironmentParams.ENV_RUN_EVICTOR.getName(), "false");
config.setConfigParam
(EnvironmentParams.ENV_RUN_CHECKPOINTER.getName(), "false");
config.setConfigParam
(EnvironmentParams.ENV_RUN_INCOMPRESSOR.getName(), "false");
/* Use small nodes to test the post-txn scanning. */
config.setConfigParam
(EnvironmentParams.NODE_MAX.getName(), "10");
config.setConfigParam
(EnvironmentParams.NODE_MAX_DUPTREE.getName(), "10");
/* Use small files to ensure that there is cleaning. */
config.setConfigParam("je.cleaner.minUtilization", "90");
DbInternal.disableParameterValidation(config);
config.setConfigParam("je.log.fileMax", "4000");
/* Obsolete LN size counting is optional per test. */
if (fetchObsoleteSize) {
config.setConfigParam
(EnvironmentParams.CLEANER_FETCH_OBSOLETE_SIZE.getName(),
"true");
}
env = new Environment(envHome, config);
envImpl = DbInternal.envGetEnvironmentImpl(env);
config = env.getConfig();
dbEviction = config.getConfigParam
(EnvironmentParams.ENV_DB_EVICTION.getName()).equals("true");
}
/**
* Opens that database.
*/
private void openDb(Transaction useTxn, String dbName)
throws DatabaseException {
DatabaseConfig dbConfig = new DatabaseConfig();
EnvironmentConfig envConfig = env.getConfig();
dbConfig.setTransactional(envConfig.getTransactional());
dbConfig.setAllowCreate(true);
db = env.openDatabase(useTxn, dbName, dbConfig);
dbImpl = DbInternal.dbGetDatabaseImpl(db);
}
/**
* Closes the database.
*/
private void closeDb()
throws DatabaseException {
if (db != null) {
db.close();
db = null;
dbImpl = null;
}
}
/**
* Closes the environment and database.
*/
private void closeEnv()
throws DatabaseException {
closeDb();
if (env != null) {
env.close();
env = null;
envImpl = null;
}
}
/**
* Test that truncate generates the right number of obsolete LNs.
*/
public void testTruncate()
throws Exception {
openEnv(true);
openDb(null, DB_NAME1);
writeAndCountRecords(null, RECORD_COUNT);
DatabaseImpl saveDb = dbImpl;
DatabaseId saveId = dbImpl.getId();
closeDb();
Transaction txn = env.beginTransaction(null, null);
truncate(txn, true);
ObsoleteCounts beforeCommit = getObsoleteCounts();
txn.commit();
truncateOrRemoveDone = true;
/* Make sure use count is decremented when we commit. */
assertDbInUse(saveDb, false);
openDb(null, DB_NAME1);
saveDb = dbImpl;
closeDb();
assertDbInUse(saveDb, false);
verifyUtilization(beforeCommit,
RECORD_COUNT + // LNs
3, // prev MapLN + deleted MapLN + prev NameLN
15); // 1 root, 2 INs, 12 BINs
closeEnv();
batchCleanAndVerify(saveId);
}
/**
* Test that aborting truncate generates the right number of obsolete LNs.
*/
public void testTruncateAbort()
throws Exception {
openEnv(true);
openDb(null, DB_NAME1);
writeAndCountRecords(null, RECORD_COUNT);
DatabaseImpl saveDb = dbImpl;
closeDb();
Transaction txn = env.beginTransaction(null, null);
truncate(txn, true);
ObsoleteCounts beforeAbort = getObsoleteCounts();
txn.abort();
/* Make sure use count is decremented when we abort. */
assertDbInUse(saveDb, false);
openDb(null, DB_NAME1);
saveDb = dbImpl;
closeDb();
assertDbInUse(saveDb, false);
/*
* The obsolete count should include the records inserted after
* the truncate.
*/
verifyUtilization(beforeAbort,
/* 1 new nameLN, 2 copies of MapLN for new db */
3,
0);
/* Reopen, db should be populated. */
openDb(null, DB_NAME1);
assertEquals(RECORD_COUNT, countRecords(null));
closeEnv();
}
/**
* Test that aborting truncate generates the right number of obsolete LNs.
*/
public void testTruncateRepopulateAbort()
throws Exception {
openEnv(true);
openDb(null, DB_NAME1);
writeAndCountRecords(null, RECORD_COUNT);
closeDb();
Transaction txn = env.beginTransaction(null, null);
truncate(txn, true);
/* populate the database with some more records. */
openDb(txn, DB_NAME1);
writeAndCountRecords(txn, RECORD_COUNT/4);
DatabaseImpl saveDb = dbImpl;
DatabaseId saveId = dbImpl.getId();
closeDb();
ObsoleteCounts beforeAbort = getObsoleteCounts();
txn.abort();
/*
* We set truncateOrRemoveDone to true (meaning that per-DB utilization
* will not be verified) even though the txn was aborted because the
* discarded new DatabaseImpl will not be counted yet includes INs and
* LNs from the operations above.
*/
truncateOrRemoveDone = true;
/* Make sure use count is decremented when we abort. */
assertDbInUse(saveDb, false);
openDb(null, DB_NAME1);
saveDb = dbImpl;
closeDb();
assertDbInUse(saveDb, false);
/*
* The obsolete count should include the records inserted after
* the truncate.
*/
verifyUtilization(beforeAbort,
/* newly inserted LNs, 1 new nameLN,
* 2 copies of MapLN for new db */
(RECORD_COUNT/4) + 3,
5);
/* Reopen, db should be populated. */
openDb(null, DB_NAME1);
assertEquals(RECORD_COUNT, countRecords(null));
closeEnv();
batchCleanAndVerify(saveId);
}
/**
* Test that remove generates the right number of obsolete LNs.
*/
public void testRemove()
throws Exception {
openEnv(true);
openDb(null, DB_NAME1);
writeAndCountRecords(null, RECORD_COUNT);
DatabaseImpl saveDb = dbImpl;
DatabaseId saveId = dbImpl.getId();
closeDb();
Transaction txn = env.beginTransaction(null, null);
env.removeDatabase(txn, DB_NAME1);
ObsoleteCounts beforeCommit = getObsoleteCounts();
txn.commit();
truncateOrRemoveDone = true;
/* Make sure use count is decremented when we commit. */
assertDbInUse(saveDb, false);
verifyUtilization(beforeCommit,
/* LNs + old NameLN, old MapLN, delete MapLN */
RECORD_COUNT + 3,
15);
openDb(null, DB_NAME1);
assertEquals(0, countRecords(null));
closeEnv();
batchCleanAndVerify(saveId);
}
/**
* Test that remove generates the right number of obsolete LNs.
*/
public void testNonTxnalRemove()
throws Exception {
openEnv(false);
openDb(null, DB_NAME1);
writeAndCountRecords(null, RECORD_COUNT);
DatabaseImpl saveDb = dbImpl;
DatabaseId saveId = dbImpl.getId();
closeDb();
ObsoleteCounts beforeOperation = getObsoleteCounts();
env.removeDatabase(null, DB_NAME1);
truncateOrRemoveDone = true;
/* Make sure use count is decremented. */
assertDbInUse(saveDb, false);
verifyUtilization(beforeOperation,
/* LNs + new NameLN, old NameLN, old MapLN, delete
MapLN */
RECORD_COUNT + 4,
15);
openDb(null, DB_NAME1);
assertEquals(0, countRecords(null));
closeEnv();
batchCleanAndVerify(saveId);
}
/**
* Test that aborting remove generates the right number of obsolete LNs.
*/
public void testRemoveAbort()
throws Exception {
/* Create database, populate, remove, abort the remove. */
openEnv(true);
openDb(null, DB_NAME1);
writeAndCountRecords(null, RECORD_COUNT);
DatabaseImpl saveDb = dbImpl;
closeDb();
Transaction txn = env.beginTransaction(null, null);
env.removeDatabase(txn, DB_NAME1);
ObsoleteCounts beforeAbort = getObsoleteCounts();
txn.abort();
/* Make sure use count is decremented when we abort. */
assertDbInUse(saveDb, false);
verifyUtilization(beforeAbort, 0, 0);
/* All records should be there. */
openDb(null, DB_NAME1);
assertEquals(RECORD_COUNT, countRecords(null));
closeEnv();
/*
* Batch clean and then check the record count again, just to make sure
* we don't lose any valid data.
*/
openEnv(true);
while (env.cleanLog() > 0) {
}
CheckpointConfig force = new CheckpointConfig();
force.setForce(true);
env.checkpoint(force);
closeEnv();
openEnv(true);
openDb(null, DB_NAME1);
assertEquals(RECORD_COUNT, countRecords(null));
closeEnv();
}
/**
* The same as testRemoveNotResident but forces fetching of obsolets LNs
* in order to count their sizes accurately.
*/
public void testRemoveNotResidentFetchObsoleteSize()
throws Exception {
fetchObsoleteSize = true;
testRemoveNotResident();
}
/**
* Test that we can properly account for a non-resident database.
*/
public void testRemoveNotResident()
throws Exception {
/* Create a database, populate. */
openEnv(true);
openDb(null, DB_NAME1);
writeAndCountRecords(null, RECORD_COUNT);
DatabaseId saveId = DbInternal.dbGetDatabaseImpl(db).getId();
closeEnv();
/*
* Open the environment and remove the database. The
* database is not resident at all.
*/
openEnv(true);
Transaction txn = env.beginTransaction(null, null);
env.removeDatabase(txn, DB_NAME1);
ObsoleteCounts beforeCommit = getObsoleteCounts();
txn.commit();
truncateOrRemoveDone = true;
verifyUtilization(beforeCommit,
/* LNs + old NameLN, old MapLN, delete MapLN */
RECORD_COUNT + 3,
/* 15 INs for data tree */
15,
true);
/* check record count. */
openDb(null, DB_NAME1);
assertEquals(0, countRecords(null));
closeEnv();
batchCleanAndVerify(saveId);
}
/**
* The same as testRemovePartialResident but forces fetching of obsolets
* LNs in order to count their sizes accurately.
*/
public void testRemovePartialResidentFetchObsoleteSize()
throws Exception {
fetchObsoleteSize = true;
testRemovePartialResident();
}
/**
* Test that we can properly account for partially resident tree.
*/
public void testRemovePartialResident()
throws Exception {
/* Create a database, populate. */
openEnv(true);
openDb(null, DB_NAME1);
writeAndCountRecords(null, RECORD_COUNT);
DatabaseId saveId = DbInternal.dbGetDatabaseImpl(db).getId();
closeEnv();
/*
* Open the environment and remove the database. Pull 1 BIN in.
*/
openEnv(true);
openDb(null, DB_NAME1);
Cursor c = db.openCursor(null, null);
assertEquals(OperationStatus.SUCCESS,
c.getFirst(new DatabaseEntry(), new DatabaseEntry(),
LockMode.DEFAULT));
c.close();
DatabaseImpl saveDb = dbImpl;
closeDb();
Transaction txn = env.beginTransaction(null, null);
env.removeDatabase(txn, DB_NAME1);
ObsoleteCounts beforeCommit = getObsoleteCounts();
txn.commit();
truncateOrRemoveDone = true;
/* Make sure use count is decremented when we commit. */
assertDbInUse(saveDb, false);
verifyUtilization(beforeCommit,
/* LNs + old NameLN, old MapLN, delete MapLN */
RECORD_COUNT + 3,
/* 15 INs for data tree */
15,
true);
/* check record count. */
openDb(null, DB_NAME1);
assertEquals(0, countRecords(null));
closeEnv();
batchCleanAndVerify(saveId);
}
/**
* Tests that a log file is not deleted by the cleaner when it contains
* entries in a database that is pending deletion.
*/
public void testDBPendingDeletion()
throws DatabaseException, InterruptedException {
doDBPendingTest(RECORD_COUNT + 30, false /*deleteAll*/, 5);
}
/**
* Like testDBPendingDeletion but creates a scenario where only a single
* log file is cleaned, and that log file contains only known obsolete
* log entries. This reproduced a bug where we neglected to add pending
* deleted DBs to the cleaner's pending DB set if all entries in the log
* file were known obsoleted. [#13333]
*/
public void testObsoleteLogFile()
throws DatabaseException, InterruptedException {
doDBPendingTest(70, true /*deleteAll*/, 1);
}
private void doDBPendingTest(long recordCount,
boolean deleteAll,
int expectFilesCleaned)
throws DatabaseException, InterruptedException {
/* Create a database, populate, close. */
Set logFiles = new HashSet();
openEnv(true);
openDb(null, DB_NAME1);
writeAndMakeWaste(recordCount, logFiles, deleteAll);
long remainingRecordCount = deleteAll ? 0 : recordCount;
env.checkpoint(FORCE_CHECKPOINT);
ObsoleteCounts obsoleteCounts = getObsoleteCounts();
DatabaseImpl saveDb = dbImpl;
closeDb();
assertTrue(!saveDb.isDeleteFinished());
assertTrue(!saveDb.isDeleted());
assertDbInUse(saveDb, false);
/* Make sure that we wrote a full file's worth of LNs. */
assertTrue(logFiles.size() >= 2);
assertTrue(logFilesExist(logFiles));
/* Remove the database but do not commit yet. */
final Transaction txn = env.beginTransaction(null, null);
env.removeDatabase(txn, DB_NAME1);
/* The obsolete count should be <= 1 (for the NameLN). */
obsoleteCounts = verifyUtilization(obsoleteCounts, 1, 0);
truncateOrRemoveDone = true;
junitThread = new JUnitThread("Committer") {
public void testBody()
throws DatabaseException {
try {
txn.commit();
} catch (Throwable e) {
e.printStackTrace();
}
}
};
/*
* Set a hook to cause the commit to block. The commit is done in a
* separate thread. The commit will set the DB state to pendingDeleted
* and will then wait for the hook to return.
*/
final Object lock = new Object();
saveDb.setPendingDeletedHook(new TestHook() {
public void doHook() {
synchronized (lock) {
try {
lock.notify();
lock.wait();
} catch (InterruptedException e) {
e.printStackTrace();
throw new RuntimeException(e.toString());
}
}
}
public Object getHookValue() {
throw new UnsupportedOperationException();
}
public void doIOHook() throws IOException {
throw new UnsupportedOperationException();
}
public void hookSetup() {
throw new UnsupportedOperationException();
}
});
/* Start the committer thread; expect the pending deleted state. */
synchronized (lock) {
junitThread.start();
lock.wait();
}
assertTrue(!saveDb.isDeleteFinished());
assertTrue(saveDb.isDeleted());
assertDbInUse(saveDb, true);
/* Expect obsolete LNs: NameLN */
obsoleteCounts = verifyUtilization(obsoleteCounts, 1, 0);
/* The DB deletion is pending; the log file should still exist. */
int filesCleaned = env.cleanLog();
assertEquals(expectFilesCleaned, filesCleaned);
assertTrue(filesCleaned > 0);
env.checkpoint(FORCE_CHECKPOINT);
env.checkpoint(FORCE_CHECKPOINT);
assertTrue(logFilesExist(logFiles));
/*
* When the commiter thread finishes, the DB deletion will be
* complete and the DB state will change to deleted.
*/
synchronized (lock) {
lock.notify();
}
try {
junitThread.finishTest();
junitThread = null;
} catch (Throwable e) {
e.printStackTrace();
fail(e.toString());
}
assertTrue(saveDb.isDeleteFinished());
assertTrue(saveDb.isDeleted());
assertDbInUse(saveDb, false);
/* Expect obsolete LNs: recordCount + MapLN + FSLNs (apprx). */
verifyUtilization(obsoleteCounts, remainingRecordCount + 6, 0);
/* The DB deletion is complete; the log file should be deleted. */
env.checkpoint(FORCE_CHECKPOINT);
env.checkpoint(FORCE_CHECKPOINT);
assertTrue(!logFilesExist(logFiles));
}
/*
* The xxxForceTreeWalk tests set the DatabaseImpl
* forceTreeWalkForTruncateAndRemove field to true, which will force a walk
* of the tree to count utilization during truncate/remove, rather than
* using the per-database info. This is used to test the "old technique"
* for counting utilization, which is now used only if the database was
* created prior to log version 6.
*/
public void testTruncateForceTreeWalk()
throws Exception {
DatabaseImpl.forceTreeWalkForTruncateAndRemove = true;
try {
testTruncate();
} finally {
DatabaseImpl.forceTreeWalkForTruncateAndRemove = false;
}
}
public void testTruncateAbortForceTreeWalk()
throws Exception {
DatabaseImpl.forceTreeWalkForTruncateAndRemove = true;
try {
testTruncateAbort();
} finally {
DatabaseImpl.forceTreeWalkForTruncateAndRemove = false;
}
}
public void testTruncateRepopulateAbortForceTreeWalk()
throws Exception {
DatabaseImpl.forceTreeWalkForTruncateAndRemove = true;
try {
testTruncateRepopulateAbort();
} finally {
DatabaseImpl.forceTreeWalkForTruncateAndRemove = false;
}
}
public void testRemoveForceTreeWalk()
throws Exception {
DatabaseImpl.forceTreeWalkForTruncateAndRemove = true;
try {
testRemove();
} finally {
DatabaseImpl.forceTreeWalkForTruncateAndRemove = false;
}
}
public void testNonTxnalRemoveForceTreeWalk()
throws Exception {
DatabaseImpl.forceTreeWalkForTruncateAndRemove = true;
try {
testNonTxnalRemove();
} finally {
DatabaseImpl.forceTreeWalkForTruncateAndRemove = false;
}
}
public void testRemoveAbortForceTreeWalk()
throws Exception {
DatabaseImpl.forceTreeWalkForTruncateAndRemove = true;
try {
testRemoveAbort();
} finally {
DatabaseImpl.forceTreeWalkForTruncateAndRemove = false;
}
}
public void testRemoveNotResidentForceTreeWalk()
throws Exception {
DatabaseImpl.forceTreeWalkForTruncateAndRemove = true;
try {
testRemoveNotResident();
} finally {
DatabaseImpl.forceTreeWalkForTruncateAndRemove = false;
}
}
public void testRemovePartialResidentForceTreeWalk()
throws Exception {
DatabaseImpl.forceTreeWalkForTruncateAndRemove = true;
try {
testRemovePartialResident();
} finally {
DatabaseImpl.forceTreeWalkForTruncateAndRemove = false;
}
}
public void testDBPendingDeletionForceTreeWalk()
throws Exception {
DatabaseImpl.forceTreeWalkForTruncateAndRemove = true;
try {
testDBPendingDeletion();
} finally {
DatabaseImpl.forceTreeWalkForTruncateAndRemove = false;
}
}
public void testObsoleteLogFileForceTreeWalk()
throws Exception {
DatabaseImpl.forceTreeWalkForTruncateAndRemove = true;
try {
testObsoleteLogFile();
} finally {
DatabaseImpl.forceTreeWalkForTruncateAndRemove = false;
}
}
/**
* Tickles a bug that caused NPE during recovery during the sequence:
* delete record, trucate DB, crash (close without checkpoint), and
* recover. [#16515]
*/
public void testDeleteTruncateRecover()
throws DatabaseException {
/* Delete a record. */
openEnv(true);
openDb(null, DB_NAME1);
writeAndCountRecords(null, 1);
closeDb();
/* Truncate DB. */
Transaction txn = env.beginTransaction(null, null);
truncate(txn, false);
txn.commit();
/* Close without checkpoint. */
envImpl.close(false /*doCheckpoint*/);
envImpl = null;
env = null;
/* Recover -- the bug cause NPE here. */
openEnv(true);
closeEnv();
}
private void writeAndCountRecords(Transaction txn, long count)
throws DatabaseException {
for (int i = 1; i <= count; i += 1) {
DatabaseEntry entry = new DatabaseEntry(TestUtils.getTestArray(i));
db.put(txn, entry, entry);
}
/* Insert and delete some records, insert and abort some records. */
DatabaseEntry entry =
new DatabaseEntry(TestUtils.getTestArray((int)count+1));
db.put(txn, entry, entry);
db.delete(txn, entry);
EnvironmentConfig envConfig = env.getConfig();
if (envConfig.getTransactional()) {
entry = new DatabaseEntry(TestUtils.getTestArray(0));
Transaction txn2 = env.beginTransaction(null, null);
db.put(txn2, entry, entry);
txn2.abort();
txn2 = null;
}
assertEquals(count, countRecords(txn));
}
/**
* Writes the specified number of records to db. Check the number of
* records, and return the number of obsolete records. Returns a set of
* the file numbers that are written to.
*
* Makes waste (obsolete records): If doDelete=true, deletes records as
* they are added; otherwise does updates to produce obsolete records
* interleaved with non-obsolete records.
*/
private void writeAndMakeWaste(long count,
Set logFilesWritten,
boolean doDelete)
throws DatabaseException {
Transaction txn = env.beginTransaction(null, null);
Cursor cursor = db.openCursor(txn, null);
for (int i = 0; i < count; i += 1) {
DatabaseEntry entry = new DatabaseEntry(TestUtils.getTestArray(i));
cursor.put(entry, entry);
/* Add log file written. */
long file = CleanerTestUtils.getLogFile(this, cursor);
logFilesWritten.add(new Long(file));
/* Make waste. */
if (!doDelete) {
cursor.put(entry, entry);
cursor.put(entry, entry);
}
}
if (doDelete) {
DatabaseEntry key = new DatabaseEntry();
DatabaseEntry data = new DatabaseEntry();
OperationStatus status;
for (status = cursor.getFirst(key, data, null);
status == OperationStatus.SUCCESS;
status = cursor.getNext(key, data, null)) {
/* Make waste. */
cursor.delete();
/* Add log file written. */
long file = CleanerTestUtils.getLogFile(this, cursor);
logFilesWritten.add(new Long(file));
}
}
cursor.close();
txn.commit();
assertEquals(doDelete ? 0 : count, countRecords(null));
}
/* Truncate database and check the count. */
private void truncate(Transaction useTxn, boolean getCount)
throws DatabaseException {
long nTruncated = env.truncateDatabase(useTxn, DB_NAME1, getCount);
if (getCount) {
assertEquals(RECORD_COUNT, nTruncated);
}
assertEquals(0, countRecords(useTxn));
}
/**
* Returns how many records are in the database.
*/
private int countRecords(Transaction useTxn)
throws DatabaseException {
DatabaseEntry key = new DatabaseEntry();
DatabaseEntry data = new DatabaseEntry();
boolean opened = false;
if (db == null) {
openDb(useTxn, DB_NAME1);
opened = true;
}
Cursor cursor = db.openCursor(useTxn, null);
int count = 0;
try {
OperationStatus status = cursor.getFirst(key, data, null);
while (status == OperationStatus.SUCCESS) {
count += 1;
status = cursor.getNext(key, data, null);
}
} finally {
cursor.close();
}
if (opened) {
closeDb();
}
return count;
}
/**
* Return the total number of obsolete node counts according to the
* UtilizationProfile and UtilizationTracker.
*/
private ObsoleteCounts getObsoleteCounts()
throws DatabaseException {
FileSummary[] files = (FileSummary[])
envImpl.getUtilizationProfile()
.getFileSummaryMap(true)
.values().toArray(new FileSummary[0]);
int lnCount = 0;
int inCount = 0;
int lnSize = 0;
int lnSizeCounted = 0;
for (int i = 0; i < files.length; i += 1) {
lnCount += files[i].obsoleteLNCount;
inCount += files[i].obsoleteINCount;
lnSize += files[i].obsoleteLNSize;
lnSizeCounted += files[i].obsoleteLNSizeCounted;
}
return new ObsoleteCounts(lnCount, inCount, lnSize, lnSizeCounted);
}
private class ObsoleteCounts {
int obsoleteLNs;
int obsoleteINs;
int obsoleteLNSize;
int obsoleteLNSizeCounted;
ObsoleteCounts(int obsoleteLNs,
int obsoleteINs,
int obsoleteLNSize,
int obsoleteLNSizeCounted) {
this.obsoleteLNs = obsoleteLNs;
this.obsoleteINs = obsoleteINs;
this.obsoleteLNSize = obsoleteLNSize;
this.obsoleteLNSizeCounted = obsoleteLNSizeCounted;
}
public String toString() {
return "lns=" + obsoleteLNs + " ins=" + obsoleteINs +
" lnSize=" + obsoleteLNSize +
" lnSizeCounted=" + obsoleteLNSizeCounted;
}
}
private ObsoleteCounts verifyUtilization(ObsoleteCounts prev,
long expectedLNs,
int expectedINs)
throws DatabaseException {
return verifyUtilization(prev, expectedLNs, expectedINs, false);
}
/*
* Check obsolete counts. If the expected IN count is zero, don't
* check the obsolete IN count. Always check the obsolete LN count.
*/
private ObsoleteCounts verifyUtilization(ObsoleteCounts prev,
long expectedLNs,
int expectedINs,
boolean expectNonResident)
throws DatabaseException {
/*
* If we are not forcing a tree walk OR all nodes are resident OR we
* have explicitly configured fetchObsoleteSize, then the size of every
* LN should have been counted.
*/
boolean expectAccurateObsoleteLNSize =
!DatabaseImpl.forceTreeWalkForTruncateAndRemove ||
!expectNonResident ||
fetchObsoleteSize;
ObsoleteCounts now = getObsoleteCounts();
String beforeAndAfter = "before: " + prev + " now: " + now;
if (DEBUG) {
System.out.println(beforeAndAfter);
}
assertEquals(beforeAndAfter, expectedLNs,
now.obsoleteLNs - prev.obsoleteLNs);
if (expectedLNs > 0) {
int size = now.obsoleteLNSize - prev.obsoleteLNSize;
int counted = now.obsoleteLNSizeCounted -
prev.obsoleteLNSizeCounted;
assertTrue(String.valueOf(size), size > 0);
if (expectAccurateObsoleteLNSize) {
assertEquals(beforeAndAfter, counted,
now.obsoleteLNs - prev.obsoleteLNs);
}
}
if (expectedINs > 0) {
assertEquals(beforeAndAfter, expectedINs,
now.obsoleteINs - prev.obsoleteINs);
}
/*
* We pass expectAccurateDbUtilization as false when
* truncateOrRemoveDone, because the database utilization info for that
* database is now gone.
*/
VerifyUtils.verifyUtilization
(envImpl,
true, // expectAccurateObsoleteLNCount
expectAccurateObsoleteLNSize,
!truncateOrRemoveDone); // expectAccurateDbUtilization
return now;
}
/**
* Checks whether a given DB has a non-zero use count. Does nothing if
* je.dbEviction is not enabled, since reference counts are only maintained
* if that config parameter is enabled.
*/
private void assertDbInUse(DatabaseImpl db, boolean inUse) {
if (dbEviction) {
assertEquals(inUse, db.isInUse());
}
}
/**
* Returns true if all files exist, or false if any file is deleted.
*/
private boolean logFilesExist(Set fileNumbers) {
Iterator iter = fileNumbers.iterator();
while (iter.hasNext()) {
long fileNum = ((Long) iter.next()).longValue();
File file = new File
(envHome,
FileManager.getFileName(fileNum, FileManager.JE_SUFFIX));
if (!file.exists()) {
return false;
}
}
return true;
}
/*
* Run batch cleaning and verify that there are no files with these
* log entries.
*/
private void batchCleanAndVerify(DatabaseId dbId)
throws Exception {
/*
* Open the environment, flip the log files to reduce mixing of new
* records and old records and add more records to force the
* utilization level of the removed records down.
*/
openEnv(true);
openDb(null, DB_NAME2);
long lsn = envImpl.forceLogFileFlip();
CheckpointConfig force = new CheckpointConfig();
force.setForce(true);
env.checkpoint(force);
writeAndCountRecords(null, RECORD_COUNT * 3);
env.checkpoint(force);
closeDb();
/* Check log files, there should be entries with this database. */
CheckReader checker = new CheckReader(envImpl, dbId, true);
while (checker.readNextEntry()) {
}
if (DEBUG) {
System.out.println("entries for this db =" + checker.getCount());
}
assertTrue(checker.getCount() > 0);
/* batch clean. */
boolean anyCleaned = false;
while (env.cleanLog() > 0) {
anyCleaned = true;
}
assertTrue(anyCleaned);
if (anyCleaned) {
env.checkpoint(force);
}
/* Check log files, there should be no entries with this database. */
checker = new CheckReader(envImpl, dbId, false);
while (checker.readNextEntry()) {
}
closeEnv();
}
class CheckReader extends DumpFileReader{
private DatabaseId dbId;
private boolean expectEntries;
private int count;
/*
* @param databaseId we're looking for log entries for this database.
* @param expectEntries if false, there should be no log entries
* with this database id. If true, the log should have entries
* with this database id.
*/
CheckReader(EnvironmentImpl envImpl,
DatabaseId dbId,
boolean expectEntries)
throws DatabaseException, IOException {
super(envImpl, 1000, DbLsn.NULL_LSN, DbLsn.NULL_LSN,
null, null, false);
this.dbId = dbId;
this.expectEntries = expectEntries;
}
protected boolean processEntry(ByteBuffer entryBuffer)
throws DatabaseException {
/* Figure out what kind of log entry this is */
byte type = currentEntryHeader.getType();
LogEntryType lastEntryType = LogEntryType.findType(type);
boolean isNode = LogEntryType.isNodeType(type);
/* Read the entry. */
LogEntry entry = lastEntryType.getSharedLogEntry();
entry.readEntry(currentEntryHeader,
entryBuffer,
true); // readFullItem
long lsn = getLastLsn();
if (isNode) {
boolean found = false;
if (entry instanceof INLogEntry) {
INLogEntry inEntry = (INLogEntry) entry;
found = dbId.equals(inEntry.getDbId());
} else {
LNLogEntry lnEntry = (LNLogEntry) entry;
found = dbId.equals(lnEntry.getDbId());
}
if (found) {
if (expectEntries) {
count++;
} else {
StringBuffer sb = new StringBuffer();
entry.dumpEntry(sb, false);
fail("lsn=" + DbLsn.getNoFormatString(lsn) +
" dbId = " + dbId +
" entry= " + sb.toString());
}
}
}
return true;
}
/* Num entries with this database id seen by reader. */
int getCount() {
return count;
}
}
}
|