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
|
# See the file LICENSE for redistribution information.
#
# Copyright (c) 2005, 2013 Oracle and/or its affiliates. All rights reserved.
#
# $Id$
#
# TEST test115
# TEST Test database compaction with user-specified btree sort.
# TEST
# TEST This is essentially test111 with the user-specified sort.
# TEST Populate a database. Remove a high proportion of entries.
# TEST Dump and save contents. Compact the database, dump again,
# TEST and make sure we still have the same contents.
# TEST Add back some entries, delete more entries (this time by
# TEST cursor), dump, compact, and do the before/after check again.
proc test115 { method {nentries 10000} {tnum "115"} args } {
source ./include.tcl
global btvals
global btvalsck
global encrypt
global passwd
if { [is_btree $method] != 1 } {
puts "Skipping test$tnum for method $method."
return
}
# If a page size was specified, find out what it is. Pages
# might not be freed in the case of really large pages (64K)
# but we still want to run this test just to make sure
# nothing funny happens.
set pagesize 0
set pgindex [lsearch -exact $args "-pagesize"]
if { $pgindex != -1 } {
incr pgindex
set pagesize [lindex $args $pgindex]
}
set args [convert_args $method $args]
set encargs ""
set args [split_encargs $args encargs]
set omethod [convert_method $method]
# If we are using an env, then testfile should just be the db name.
# Otherwise it is the test directory and the name.
set txnenv 0
set eindex [lsearch -exact $args "-env"]
if { $eindex == -1 } {
set basename $testdir/test$tnum
set env NULL
set envargs ""
} else {
set basename test$tnum
incr eindex
set env [lindex $args $eindex]
set envargs " -env $env "
set txnenv [is_txnenv $env]
if { $txnenv == 1 } {
append args " -auto_commit "
}
set testdir [get_home $env]
}
puts "Test$tnum:\
($method $args $encargs) Database compaction with user-specified sort."
cleanup $testdir $env
set t1 $testdir/t1
set t2 $testdir/t2
set splitopts { "" "-revsplitoff" }
set txn ""
set checkfunc test093_check
foreach splitopt $splitopts {
set testfile $basename.db
if { $splitopt == "-revsplitoff" } {
set testfile $basename.rev.db
}
set did [open $dict]
puts "\tTest$tnum.a: Create and populate database ($splitopt)."
set db [eval {berkdb_open -create -btcompare test093_cmp1 \
-mode 0644} $splitopt $args $encargs $omethod $testfile]
error_check_good dbopen [is_valid_db $db] TRUE
set count 0
set btvals {}
set btvalsck {}
if { $txnenv == 1 } {
set t [$env txn]
error_check_good txn [is_valid_txn $t $env] TRUE
set txn "-txn $t"
}
while { [gets $did str] != -1 && $count < $nentries } {
set key $str
set str [reverse $str]
set ret [eval \
{$db put} $txn {$key [chop_data $method $str]}]
error_check_good put $ret 0
lappend btvals $key
incr count
}
if { $txnenv == 1 } {
error_check_good txn_commit [$t commit] 0
}
close $did
error_check_good db_sync [$db sync] 0
if { $env != "NULL" } {
set testdir [get_home $env]
set filename $testdir/$testfile
} else {
set filename $testfile
}
set size1 [file size $filename]
set count1 [stat_field $db stat "Page count"]
puts "\tTest$tnum.b: Delete most entries from database."
set did [open $dict]
set count [expr $nentries - 1]
set n 14
# Leave every nth item. Since rrecno renumbers, we
# delete starting at nentries and working down to 0.
if { $txnenv == 1 } {
set t [$env txn]
error_check_good txn [is_valid_txn $t $env] TRUE
set txn "-txn $t"
}
while { [gets $did str] != -1 && $count > 0 } {
set key $str
if { [expr $count % $n] != 0 } {
set ret [eval {$db del} $txn {$key}]
error_check_good del $ret 0
}
incr count -1
}
if { $txnenv == 1 } {
error_check_good t_commit [$t commit] 0
}
close $did
error_check_good db_sync [$db sync] 0
puts "\tTest$tnum.c: Do a dump_file on contents."
if { $txnenv == 1 } {
set t [$env txn]
error_check_good txn [is_valid_txn $t $env] TRUE
set txn "-txn $t"
}
dump_file $db $txn $t1 $checkfunc
if { $txnenv == 1 } {
error_check_good txn_commit [$t commit] 0
}
puts "\tTest$tnum.d: Compact and verify database."
for {set commit 0} {$commit <= $txnenv} {incr commit} {
if { $txnenv == 1 } {
set t [$env txn]
error_check_good txn [is_valid_txn $t $env] TRUE
set txn "-txn $t"
}
if {[catch {eval {$db compact} $txn {-freespace}} ret] } {
error "FAIL: db compact: $ret"
}
if { $txnenv == 1 } {
if { $commit == 0 } {
puts "\tTest$tnum.d: Aborting."
error_check_good txn_abort [$t abort] 0
} else {
puts "\tTest$tnum.d: Committing."
error_check_good txn_commit [$t commit] 0
}
}
error_check_good db_sync [$db sync] 0
if { [catch {eval \
{berkdb dbverify -btcompare test093_cmp1}\
$envargs $encargs {$testfile}} res] } {
puts "FAIL: Verification failed with $res"
}
}
set size2 [file size $filename]
set count2 [stat_field $db stat "Page count"]
error_check_good page_count_reduced [expr $count1 > $count2] 1
# Check for reduction in file size.
#### We should look at the partitioned files #####
if { [is_partitioned $args] == 0 } {
set reduction .95
error_check_good \
file_size [expr [expr $size1 * $reduction] > $size2] 1
}
puts "\tTest$tnum.e: Contents are the same after compaction."
if { $txnenv == 1 } {
set t [$env txn]
error_check_good txn [is_valid_txn $t $env] TRUE
set txn "-txn $t"
}
dump_file $db $txn $t2 $checkfunc
if { $txnenv == 1 } {
error_check_good txn_commit [$t commit] 0
}
error_check_good filecmp [filecmp $t1 $t2] 0
puts "\tTest$tnum.f: Add more entries to database."
set did [open $dict]
if { $txnenv == 1 } {
set t [$env txn]
error_check_good txn [is_valid_txn $t $env] TRUE
set txn "-txn $t"
}
while { [gets $did str] != -1 && $count < $nentries } {
set key $str
set str [reverse $str]
set ret [eval \
{$db put} $txn {$key [chop_data $method $str]}]
error_check_good put $ret 0
lappend btvals $key
incr count
}
if { $txnenv == 1 } {
error_check_good txn_commit [$t commit] 0
}
close $did
error_check_good db_sync [$db sync] 0
set size3 [file size $filename]
set count3 [stat_field $db stat "Page count"]
puts "\tTest$tnum.g: Remove more entries, this time by cursor."
set count 0
if { $txnenv == 1 } {
set t [$env txn]
error_check_good txn [is_valid_txn $t $env] TRUE
set txn "-txn $t"
}
set dbc [eval {$db cursor} $txn]
# Leave every nth item.
for { set dbt [$dbc get -first] } { [llength $dbt] > 0 }\
{ set dbt [$dbc get -next] ; incr count } {
if { [expr $count % $n] != 0 } {
error_check_good dbc_del [$dbc del] 0
}
}
error_check_good cursor_close [$dbc close] 0
if { $txnenv == 1 } {
error_check_good t_commit [$t commit] 0
}
error_check_good db_sync [$db sync] 0
puts "\tTest$tnum.h: Save contents."
if { $txnenv == 1 } {
set t [$env txn]
error_check_good txn [is_valid_txn $t $env] TRUE
set txn "-txn $t"
}
dump_file $db $txn $t1 $checkfunc
if { $txnenv == 1 } {
error_check_good t_commit [$t commit] 0
}
puts "\tTest$tnum.i: Compact and verify database again."
for {set commit 0} {$commit <= $txnenv} {incr commit} {
if { $txnenv == 1 } {
set t [$env txn]
error_check_good txn [is_valid_txn $t $env] TRUE
set txn "-txn $t"
}
if {[catch {eval {$db compact} $txn {-freespace}} ret] } {
error "FAIL: db compact: $ret"
}
# Run compact again in case there were free pages
# in the middle of the file after the first run.
if {[catch {eval {$db compact} $txn {-freespace}} ret] } {
error "FAIL: db compact: $ret"
}
if { $txnenv == 1 } {
if { $commit == 0 } {
puts "\tTest$tnum.d: Aborting."
error_check_good txn_abort [$t abort] 0
} else {
puts "\tTest$tnum.d: Committing."
error_check_good txn_commit [$t commit] 0
}
}
error_check_good db_sync [$db sync] 0
if { [catch {eval \
{berkdb dbverify -btcompare test093_cmp1}\
$envargs $encargs {$testfile}} res] } {
puts "FAIL: Verification failed with $res"
}
}
set size4 [file size $filename]
set count4 [stat_field $db stat "Page count"]
error_check_good page_count_reduced [expr $count3 > $count4] 1
# Check for file size reduction.
#### We should look at the partitioned files #####
if { [is_partitioned $args] == 0 } {
error_check_good\
file_size [expr [expr $size3 * $reduction] > $size4] 1
}
puts "\tTest$tnum.j: Contents are the same after compaction."
if { $txnenv == 1 } {
set t [$env txn]
error_check_good txn [is_valid_txn $t $env] TRUE
set txn "-txn $t"
}
dump_file $db $txn $t2 $checkfunc
if { $txnenv == 1 } {
error_check_good t_commit [$t commit] 0
}
error_check_good filecmp [filecmp $t1 $t2] 0
error_check_good db_close [$db close] 0
if { $env != "NULL" } {
set testdir [get_home $env]
}
cleanup $testdir $env
}
# Clean up so the general verification (without the custom comparator)
# doesn't fail.
set eindex [lsearch -exact $args "-env"]
if { $eindex == -1 } {
set env NULL
} else {
incr eindex
set env [lindex $args $eindex]
set testdir [get_home $env]
}
cleanup $testdir $env
}
|