This commit is contained in:
@@ -866,12 +866,12 @@ export class BoLActor extends Actor {
|
||||
if (this.system.resources.hp.value <= 0) {
|
||||
if (!prone) {
|
||||
await this.createEmbeddedDocuments("ActiveEffect", [
|
||||
{ name: game.i18n.localize('EFFECT.StatusProne'), icon: 'icons/svg/falling.svg', statuses: 'prone' }
|
||||
{ name: game.i18n.localize('EFFECT.StatusProne'), img: 'icons/svg/falling.svg', statuses: ['prone'] }
|
||||
])
|
||||
}
|
||||
if (this.system.resources.hp.value < -5 && !dead) {
|
||||
await this.createEmbeddedDocuments("ActiveEffect", [
|
||||
{ name: game.i18n.localize('EFFECT.StatusDead'), icon: 'icons/svg/skull.svg', statuses: 'dead' }
|
||||
{ name: game.i18n.localize('EFFECT.StatusDead'), img: 'icons/svg/skull.svg', statuses: ['dead'] }
|
||||
])
|
||||
}
|
||||
ChatMessage.create({
|
||||
|
||||
+42
-42
@@ -413,108 +413,108 @@ BOL.bolEffectModifier = {
|
||||
BOL.statusEffects = [
|
||||
{
|
||||
"id": "dead",
|
||||
"label": "EFFECT.StatusDead",
|
||||
"icon": "icons/svg/skull.svg"
|
||||
"name": "EFFECT.StatusDead",
|
||||
"img": "icons/svg/skull.svg"
|
||||
},
|
||||
{
|
||||
"id": "unconscious",
|
||||
"label": "EFFECT.StatusUnconscious",
|
||||
"icon": "icons/svg/unconscious.svg"
|
||||
"name": "EFFECT.StatusUnconscious",
|
||||
"img": "icons/svg/unconscious.svg"
|
||||
},
|
||||
{
|
||||
"id": "sleep",
|
||||
"label": "EFFECT.StatusAsleep",
|
||||
"icon": "icons/svg/sleep.svg"
|
||||
"name": "EFFECT.StatusAsleep",
|
||||
"img": "icons/svg/sleep.svg"
|
||||
},
|
||||
{
|
||||
"id": "stun",
|
||||
"label": "EFFECT.StatusStunned",
|
||||
"icon": "icons/svg/daze.svg"
|
||||
"name": "EFFECT.StatusStunned",
|
||||
"img": "icons/svg/daze.svg"
|
||||
},
|
||||
{
|
||||
"id": "prone",
|
||||
"label": "EFFECT.StatusProne",
|
||||
"icon": "icons/svg/falling.svg"
|
||||
"name": "EFFECT.StatusProne",
|
||||
"img": "icons/svg/falling.svg"
|
||||
},
|
||||
{
|
||||
"id": "restrain",
|
||||
"label": "EFFECT.StatusRestrained",
|
||||
"icon": "icons/svg/net.svg"
|
||||
"name": "EFFECT.StatusRestrained",
|
||||
"img": "icons/svg/net.svg"
|
||||
},
|
||||
{
|
||||
"id": "paralysis",
|
||||
"label": "EFFECT.StatusParalysis",
|
||||
"icon": "icons/svg/paralysis.svg"
|
||||
"name": "EFFECT.StatusParalysis",
|
||||
"img": "icons/svg/paralysis.svg"
|
||||
},
|
||||
{
|
||||
"id": "fly",
|
||||
"label": "EFFECT.StatusFlying",
|
||||
"icon": "icons/svg/wing.svg"
|
||||
"name": "EFFECT.StatusFlying",
|
||||
"img": "icons/svg/wing.svg"
|
||||
},
|
||||
{
|
||||
"id": "blind",
|
||||
"label": "EFFECT.StatusBlind",
|
||||
"icon": "icons/svg/blind.svg"
|
||||
"name": "EFFECT.StatusBlind",
|
||||
"img": "icons/svg/blind.svg"
|
||||
},
|
||||
{
|
||||
"id": "deaf",
|
||||
"label": "EFFECT.StatusDeaf",
|
||||
"icon": "icons/svg/deaf.svg"
|
||||
"name": "EFFECT.StatusDeaf",
|
||||
"img": "icons/svg/deaf.svg"
|
||||
},
|
||||
{
|
||||
"id": "silence",
|
||||
"label": "EFFECT.StatusSilenced",
|
||||
"icon": "icons/svg/silenced.svg"
|
||||
"name": "EFFECT.StatusSilenced",
|
||||
"img": "icons/svg/silenced.svg"
|
||||
},
|
||||
{
|
||||
"id": "fear",
|
||||
"label": "EFFECT.StatusFear",
|
||||
"icon": "icons/svg/terror.svg"
|
||||
"name": "EFFECT.StatusFear",
|
||||
"img": "icons/svg/terror.svg"
|
||||
},
|
||||
{
|
||||
"id": "burning",
|
||||
"label": "EFFECT.StatusBurning",
|
||||
"icon": "icons/svg/fire.svg"
|
||||
"name": "EFFECT.StatusBurning",
|
||||
"img": "icons/svg/fire.svg"
|
||||
},
|
||||
{
|
||||
"id": "frozen",
|
||||
"label": "EFFECT.StatusFrozen",
|
||||
"icon": "icons/svg/frozen.svg"
|
||||
"name": "EFFECT.StatusFrozen",
|
||||
"img": "icons/svg/frozen.svg"
|
||||
},
|
||||
{
|
||||
"id": "shock",
|
||||
"label": "EFFECT.StatusShocked",
|
||||
"icon": "icons/svg/lightning.svg"
|
||||
"name": "EFFECT.StatusShocked",
|
||||
"img": "icons/svg/lightning.svg"
|
||||
},
|
||||
{
|
||||
"id": "disease",
|
||||
"label": "EFFECT.StatusDisease",
|
||||
"icon": "icons/svg/biohazard.svg"
|
||||
"name": "EFFECT.StatusDisease",
|
||||
"img": "icons/svg/biohazard.svg"
|
||||
},
|
||||
{
|
||||
"id": "poison",
|
||||
"label": "EFFECT.StatusPoison",
|
||||
"icon": "icons/svg/poison.svg"
|
||||
"name": "EFFECT.StatusPoison",
|
||||
"img": "icons/svg/poison.svg"
|
||||
},
|
||||
{
|
||||
"id": "curse",
|
||||
"label": "EFFECT.StatusCursed",
|
||||
"icon": "icons/svg/sun.svg"
|
||||
"name": "EFFECT.StatusCursed",
|
||||
"img": "icons/svg/sun.svg"
|
||||
},
|
||||
{
|
||||
"id": "invisible",
|
||||
"label": "EFFECT.StatusInvisible",
|
||||
"icon": "icons/svg/invisible.svg"
|
||||
"name": "EFFECT.StatusInvisible",
|
||||
"img": "icons/svg/invisible.svg"
|
||||
},
|
||||
{
|
||||
"id": "target",
|
||||
"label": "EFFECT.StatusTarget",
|
||||
"icon": "icons/svg/target.svg"
|
||||
"name": "EFFECT.StatusTarget",
|
||||
"img": "icons/svg/target.svg"
|
||||
},
|
||||
{
|
||||
"id": "eye",
|
||||
"label": "EFFECT.StatusMarked",
|
||||
"icon": "icons/svg/eye.svg"
|
||||
"name": "EFFECT.StatusMarked",
|
||||
"img": "icons/svg/eye.svg"
|
||||
}
|
||||
]
|
||||
|
||||
|
||||
@@ -1 +1 @@
|
||||
MANIFEST-001170
|
||||
MANIFEST-001174
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
2026/04/18-12:41:58.625593 7f421a7fc6c0 Recovering log #1168
|
||||
2026/04/18-12:41:58.643479 7f421a7fc6c0 Delete type=3 #1166
|
||||
2026/04/18-12:41:58.643667 7f421a7fc6c0 Delete type=0 #1168
|
||||
2026/04/18-12:51:29.111368 7f4219ffb6c0 Level-0 table #1173: started
|
||||
2026/04/18-12:51:29.111416 7f4219ffb6c0 Level-0 table #1173: 0 bytes OK
|
||||
2026/04/18-12:51:29.117812 7f4219ffb6c0 Delete type=0 #1171
|
||||
2026/04/18-12:51:29.125558 7f4219ffb6c0 Manual compaction at level-0 from '!journal!6cCdSvQgEHJ1bvX4' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end)
|
||||
2026/04/25-09:10:23.559981 7f57a4fed6c0 Recovering log #1172
|
||||
2026/04/25-09:10:23.569362 7f57a4fed6c0 Delete type=3 #1170
|
||||
2026/04/25-09:10:23.569431 7f57a4fed6c0 Delete type=0 #1172
|
||||
2026/04/25-09:19:41.245909 7f57977fe6c0 Level-0 table #1177: started
|
||||
2026/04/25-09:19:41.245941 7f57977fe6c0 Level-0 table #1177: 0 bytes OK
|
||||
2026/04/25-09:19:41.252023 7f57977fe6c0 Delete type=0 #1175
|
||||
2026/04/25-09:19:41.252145 7f57977fe6c0 Manual compaction at level-0 from '!journal!6cCdSvQgEHJ1bvX4' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
2026/04/15-15:16:22.577548 7f2689bfd6c0 Recovering log #1164
|
||||
2026/04/15-15:16:22.587344 7f2689bfd6c0 Delete type=3 #1162
|
||||
2026/04/15-15:16:22.587417 7f2689bfd6c0 Delete type=0 #1164
|
||||
2026/04/16-18:58:25.396434 7f2688bfb6c0 Level-0 table #1169: started
|
||||
2026/04/16-18:58:25.396459 7f2688bfb6c0 Level-0 table #1169: 0 bytes OK
|
||||
2026/04/16-18:58:25.402613 7f2688bfb6c0 Delete type=0 #1167
|
||||
2026/04/16-18:58:25.408920 7f2688bfb6c0 Manual compaction at level-0 from '!journal!6cCdSvQgEHJ1bvX4' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end)
|
||||
2026/04/18-12:41:58.625593 7f421a7fc6c0 Recovering log #1168
|
||||
2026/04/18-12:41:58.643479 7f421a7fc6c0 Delete type=3 #1166
|
||||
2026/04/18-12:41:58.643667 7f421a7fc6c0 Delete type=0 #1168
|
||||
2026/04/18-12:51:29.111368 7f4219ffb6c0 Level-0 table #1173: started
|
||||
2026/04/18-12:51:29.111416 7f4219ffb6c0 Level-0 table #1173: 0 bytes OK
|
||||
2026/04/18-12:51:29.117812 7f4219ffb6c0 Delete type=0 #1171
|
||||
2026/04/18-12:51:29.125558 7f4219ffb6c0 Manual compaction at level-0 from '!journal!6cCdSvQgEHJ1bvX4' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-001071
|
||||
MANIFEST-001075
|
||||
|
||||
+7
-7
@@ -1,7 +1,7 @@
|
||||
2026/04/18-12:41:58.594299 7f421a7fc6c0 Recovering log #1069
|
||||
2026/04/18-12:41:58.606998 7f421a7fc6c0 Delete type=3 #1067
|
||||
2026/04/18-12:41:58.607187 7f421a7fc6c0 Delete type=0 #1069
|
||||
2026/04/18-12:51:29.097029 7f4219ffb6c0 Level-0 table #1074: started
|
||||
2026/04/18-12:51:29.097052 7f4219ffb6c0 Level-0 table #1074: 0 bytes OK
|
||||
2026/04/18-12:51:29.104587 7f4219ffb6c0 Delete type=0 #1072
|
||||
2026/04/18-12:51:29.125521 7f4219ffb6c0 Manual compaction at level-0 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)
|
||||
2026/04/25-09:10:23.518994 7f57a57ee6c0 Recovering log #1073
|
||||
2026/04/25-09:10:23.543453 7f57a57ee6c0 Delete type=3 #1071
|
||||
2026/04/25-09:10:23.543521 7f57a57ee6c0 Delete type=0 #1073
|
||||
2026/04/25-09:19:41.232702 7f57977fe6c0 Level-0 table #1078: started
|
||||
2026/04/25-09:19:41.232726 7f57977fe6c0 Level-0 table #1078: 0 bytes OK
|
||||
2026/04/25-09:19:41.238815 7f57977fe6c0 Delete type=0 #1076
|
||||
2026/04/25-09:19:41.252124 7f57977fe6c0 Manual compaction at level-0 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
2026/04/15-15:16:22.553524 7f2689bfd6c0 Recovering log #1065
|
||||
2026/04/15-15:16:22.563786 7f2689bfd6c0 Delete type=3 #1063
|
||||
2026/04/15-15:16:22.563854 7f2689bfd6c0 Delete type=0 #1065
|
||||
2026/04/16-18:58:25.384570 7f2688bfb6c0 Level-0 table #1070: started
|
||||
2026/04/16-18:58:25.384597 7f2688bfb6c0 Level-0 table #1070: 0 bytes OK
|
||||
2026/04/16-18:58:25.390459 7f2688bfb6c0 Delete type=0 #1068
|
||||
2026/04/16-18:58:25.408906 7f2688bfb6c0 Manual compaction at level-0 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)
|
||||
2026/04/18-12:41:58.594299 7f421a7fc6c0 Recovering log #1069
|
||||
2026/04/18-12:41:58.606998 7f421a7fc6c0 Delete type=3 #1067
|
||||
2026/04/18-12:41:58.607187 7f421a7fc6c0 Delete type=0 #1069
|
||||
2026/04/18-12:51:29.097029 7f4219ffb6c0 Level-0 table #1074: started
|
||||
2026/04/18-12:51:29.097052 7f4219ffb6c0 Level-0 table #1074: 0 bytes OK
|
||||
2026/04/18-12:51:29.104587 7f4219ffb6c0 Delete type=0 #1072
|
||||
2026/04/18-12:51:29.125521 7f4219ffb6c0 Manual compaction at level-0 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
+1
-1
@@ -1 +1 @@
|
||||
MANIFEST-001165
|
||||
MANIFEST-001169
|
||||
|
||||
+7
-7
@@ -1,7 +1,7 @@
|
||||
2026/04/18-12:41:58.467876 7f421a7fc6c0 Recovering log #1163
|
||||
2026/04/18-12:41:58.480087 7f421a7fc6c0 Delete type=3 #1161
|
||||
2026/04/18-12:41:58.480227 7f421a7fc6c0 Delete type=0 #1163
|
||||
2026/04/18-12:51:29.064204 7f4219ffb6c0 Level-0 table #1168: started
|
||||
2026/04/18-12:51:29.064237 7f4219ffb6c0 Level-0 table #1168: 0 bytes OK
|
||||
2026/04/18-12:51:29.070331 7f4219ffb6c0 Delete type=0 #1166
|
||||
2026/04/18-12:51:29.070529 7f4219ffb6c0 Manual compaction at level-0 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)
|
||||
2026/04/25-09:10:23.415308 7f5797fff6c0 Recovering log #1167
|
||||
2026/04/25-09:10:23.425635 7f5797fff6c0 Delete type=3 #1165
|
||||
2026/04/25-09:10:23.425689 7f5797fff6c0 Delete type=0 #1167
|
||||
2026/04/25-09:19:41.181575 7f57977fe6c0 Level-0 table #1172: started
|
||||
2026/04/25-09:19:41.181598 7f57977fe6c0 Level-0 table #1172: 0 bytes OK
|
||||
2026/04/25-09:19:41.187419 7f57977fe6c0 Delete type=0 #1170
|
||||
2026/04/25-09:19:41.200426 7f57977fe6c0 Manual compaction at level-0 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)
|
||||
|
||||
+7
-7
@@ -1,7 +1,7 @@
|
||||
2026/04/15-15:16:22.453383 7f268a3fe6c0 Recovering log #1159
|
||||
2026/04/15-15:16:22.464015 7f268a3fe6c0 Delete type=3 #1157
|
||||
2026/04/15-15:16:22.464074 7f268a3fe6c0 Delete type=0 #1159
|
||||
2026/04/16-18:58:25.339542 7f2688bfb6c0 Level-0 table #1164: started
|
||||
2026/04/16-18:58:25.339565 7f2688bfb6c0 Level-0 table #1164: 0 bytes OK
|
||||
2026/04/16-18:58:25.345394 7f2688bfb6c0 Delete type=0 #1162
|
||||
2026/04/16-18:58:25.358898 7f2688bfb6c0 Manual compaction at level-0 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)
|
||||
2026/04/18-12:41:58.467876 7f421a7fc6c0 Recovering log #1163
|
||||
2026/04/18-12:41:58.480087 7f421a7fc6c0 Delete type=3 #1161
|
||||
2026/04/18-12:41:58.480227 7f421a7fc6c0 Delete type=0 #1163
|
||||
2026/04/18-12:51:29.064204 7f4219ffb6c0 Level-0 table #1168: started
|
||||
2026/04/18-12:51:29.064237 7f4219ffb6c0 Level-0 table #1168: 0 bytes OK
|
||||
2026/04/18-12:51:29.070331 7f4219ffb6c0 Delete type=0 #1166
|
||||
2026/04/18-12:51:29.070529 7f4219ffb6c0 Manual compaction at level-0 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-001164
|
||||
MANIFEST-001168
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
2026/04/18-12:41:58.484621 7f421b7fe6c0 Recovering log #1162
|
||||
2026/04/18-12:41:58.495420 7f421b7fe6c0 Delete type=3 #1160
|
||||
2026/04/18-12:41:58.495553 7f421b7fe6c0 Delete type=0 #1162
|
||||
2026/04/18-12:51:29.050477 7f4219ffb6c0 Level-0 table #1167: started
|
||||
2026/04/18-12:51:29.050497 7f4219ffb6c0 Level-0 table #1167: 0 bytes OK
|
||||
2026/04/18-12:51:29.057500 7f4219ffb6c0 Delete type=0 #1165
|
||||
2026/04/18-12:51:29.070504 7f4219ffb6c0 Manual compaction at level-0 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)
|
||||
2026/04/25-09:10:23.428677 7f57a5fef6c0 Recovering log #1166
|
||||
2026/04/25-09:10:23.439670 7f57a5fef6c0 Delete type=3 #1164
|
||||
2026/04/25-09:10:23.439740 7f57a5fef6c0 Delete type=0 #1166
|
||||
2026/04/25-09:19:41.194202 7f57977fe6c0 Level-0 table #1171: started
|
||||
2026/04/25-09:19:41.194230 7f57977fe6c0 Level-0 table #1171: 0 bytes OK
|
||||
2026/04/25-09:19:41.200311 7f57977fe6c0 Delete type=0 #1169
|
||||
2026/04/25-09:19:41.200444 7f57977fe6c0 Manual compaction at level-0 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
2026/04/15-15:16:22.466221 7f268abff6c0 Recovering log #1158
|
||||
2026/04/15-15:16:22.475960 7f268abff6c0 Delete type=3 #1156
|
||||
2026/04/15-15:16:22.476018 7f268abff6c0 Delete type=0 #1158
|
||||
2026/04/16-18:58:25.345509 7f2688bfb6c0 Level-0 table #1163: started
|
||||
2026/04/16-18:58:25.345540 7f2688bfb6c0 Level-0 table #1163: 0 bytes OK
|
||||
2026/04/16-18:58:25.351392 7f2688bfb6c0 Delete type=0 #1161
|
||||
2026/04/16-18:58:25.358907 7f2688bfb6c0 Manual compaction at level-0 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)
|
||||
2026/04/18-12:41:58.484621 7f421b7fe6c0 Recovering log #1162
|
||||
2026/04/18-12:41:58.495420 7f421b7fe6c0 Delete type=3 #1160
|
||||
2026/04/18-12:41:58.495553 7f421b7fe6c0 Delete type=0 #1162
|
||||
2026/04/18-12:51:29.050477 7f4219ffb6c0 Level-0 table #1167: started
|
||||
2026/04/18-12:51:29.050497 7f4219ffb6c0 Level-0 table #1167: 0 bytes OK
|
||||
2026/04/18-12:51:29.057500 7f4219ffb6c0 Delete type=0 #1165
|
||||
2026/04/18-12:51:29.070504 7f4219ffb6c0 Manual compaction at level-0 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-001164
|
||||
MANIFEST-001168
|
||||
|
||||
+7
-7
@@ -1,7 +1,7 @@
|
||||
2026/04/18-12:41:58.515857 7f421affd6c0 Recovering log #1162
|
||||
2026/04/18-12:41:58.526774 7f421affd6c0 Delete type=3 #1160
|
||||
2026/04/18-12:41:58.526909 7f421affd6c0 Delete type=0 #1162
|
||||
2026/04/18-12:51:29.043791 7f4219ffb6c0 Level-0 table #1167: started
|
||||
2026/04/18-12:51:29.043833 7f4219ffb6c0 Level-0 table #1167: 0 bytes OK
|
||||
2026/04/18-12:51:29.050399 7f4219ffb6c0 Delete type=0 #1165
|
||||
2026/04/18-12:51:29.070487 7f4219ffb6c0 Manual compaction at level-0 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)
|
||||
2026/04/25-09:10:23.454061 7f57a57ee6c0 Recovering log #1166
|
||||
2026/04/25-09:10:23.463910 7f57a57ee6c0 Delete type=3 #1164
|
||||
2026/04/25-09:10:23.463965 7f57a57ee6c0 Delete type=0 #1166
|
||||
2026/04/25-09:19:41.187521 7f57977fe6c0 Level-0 table #1171: started
|
||||
2026/04/25-09:19:41.187543 7f57977fe6c0 Level-0 table #1171: 0 bytes OK
|
||||
2026/04/25-09:19:41.194114 7f57977fe6c0 Delete type=0 #1169
|
||||
2026/04/25-09:19:41.200436 7f57977fe6c0 Manual compaction at level-0 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
2026/04/15-15:16:22.491753 7f268abff6c0 Recovering log #1158
|
||||
2026/04/15-15:16:22.502125 7f268abff6c0 Delete type=3 #1156
|
||||
2026/04/15-15:16:22.502198 7f268abff6c0 Delete type=0 #1158
|
||||
2026/04/16-18:58:25.351494 7f2688bfb6c0 Level-0 table #1163: started
|
||||
2026/04/16-18:58:25.351525 7f2688bfb6c0 Level-0 table #1163: 0 bytes OK
|
||||
2026/04/16-18:58:25.358768 7f2688bfb6c0 Delete type=0 #1161
|
||||
2026/04/16-18:58:25.358916 7f2688bfb6c0 Manual compaction at level-0 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)
|
||||
2026/04/18-12:41:58.515857 7f421affd6c0 Recovering log #1162
|
||||
2026/04/18-12:41:58.526774 7f421affd6c0 Delete type=3 #1160
|
||||
2026/04/18-12:41:58.526909 7f421affd6c0 Delete type=0 #1162
|
||||
2026/04/18-12:51:29.043791 7f4219ffb6c0 Level-0 table #1167: started
|
||||
2026/04/18-12:51:29.043833 7f4219ffb6c0 Level-0 table #1167: 0 bytes OK
|
||||
2026/04/18-12:51:29.050399 7f4219ffb6c0 Delete type=0 #1165
|
||||
2026/04/18-12:51:29.070487 7f4219ffb6c0 Manual compaction at level-0 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-001162
|
||||
MANIFEST-001166
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
2026/04/18-12:41:58.742695 7f421affd6c0 Recovering log #1160
|
||||
2026/04/18-12:41:58.754264 7f421affd6c0 Delete type=3 #1158
|
||||
2026/04/18-12:41:58.754458 7f421affd6c0 Delete type=0 #1160
|
||||
2026/04/18-12:51:29.159760 7f4219ffb6c0 Level-0 table #1165: started
|
||||
2026/04/18-12:51:29.159794 7f4219ffb6c0 Level-0 table #1165: 0 bytes OK
|
||||
2026/04/18-12:51:29.166069 7f4219ffb6c0 Delete type=0 #1163
|
||||
2026/04/18-12:51:29.180793 7f4219ffb6c0 Manual compaction at level-0 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)
|
||||
2026/04/25-09:10:23.648173 7f57a4fed6c0 Recovering log #1164
|
||||
2026/04/25-09:10:23.657827 7f57a4fed6c0 Delete type=3 #1162
|
||||
2026/04/25-09:10:23.657874 7f57a4fed6c0 Delete type=0 #1164
|
||||
2026/04/25-09:19:41.285408 7f57977fe6c0 Level-0 table #1169: started
|
||||
2026/04/25-09:19:41.285432 7f57977fe6c0 Level-0 table #1169: 0 bytes OK
|
||||
2026/04/25-09:19:41.291927 7f57977fe6c0 Delete type=0 #1167
|
||||
2026/04/25-09:19:41.306082 7f57977fe6c0 Manual compaction at level-0 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
2026/04/15-15:16:22.662031 7f268abff6c0 Recovering log #1156
|
||||
2026/04/15-15:16:22.672181 7f268abff6c0 Delete type=3 #1154
|
||||
2026/04/15-15:16:22.672239 7f268abff6c0 Delete type=0 #1156
|
||||
2026/04/16-18:58:25.414877 7f2688bfb6c0 Level-0 table #1161: started
|
||||
2026/04/16-18:58:25.414902 7f2688bfb6c0 Level-0 table #1161: 0 bytes OK
|
||||
2026/04/16-18:58:25.420767 7f2688bfb6c0 Delete type=0 #1159
|
||||
2026/04/16-18:58:25.434013 7f2688bfb6c0 Manual compaction at level-0 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)
|
||||
2026/04/18-12:41:58.742695 7f421affd6c0 Recovering log #1160
|
||||
2026/04/18-12:41:58.754264 7f421affd6c0 Delete type=3 #1158
|
||||
2026/04/18-12:41:58.754458 7f421affd6c0 Delete type=0 #1160
|
||||
2026/04/18-12:51:29.159760 7f4219ffb6c0 Level-0 table #1165: started
|
||||
2026/04/18-12:51:29.159794 7f4219ffb6c0 Level-0 table #1165: 0 bytes OK
|
||||
2026/04/18-12:51:29.166069 7f4219ffb6c0 Delete type=0 #1163
|
||||
2026/04/18-12:51:29.180793 7f4219ffb6c0 Manual compaction at level-0 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-001165
|
||||
MANIFEST-001169
|
||||
|
||||
+7
-7
@@ -1,7 +1,7 @@
|
||||
2026/04/18-12:41:58.562774 7f421a7fc6c0 Recovering log #1163
|
||||
2026/04/18-12:41:58.573652 7f421a7fc6c0 Delete type=3 #1161
|
||||
2026/04/18-12:41:58.573800 7f421a7fc6c0 Delete type=0 #1163
|
||||
2026/04/18-12:51:29.084486 7f4219ffb6c0 Level-0 table #1168: started
|
||||
2026/04/18-12:51:29.084510 7f4219ffb6c0 Level-0 table #1168: 0 bytes OK
|
||||
2026/04/18-12:51:29.090608 7f4219ffb6c0 Delete type=0 #1166
|
||||
2026/04/18-12:51:29.096960 7f4219ffb6c0 Manual compaction at level-0 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)
|
||||
2026/04/25-09:10:23.492596 7f5797fff6c0 Recovering log #1167
|
||||
2026/04/25-09:10:23.503234 7f5797fff6c0 Delete type=3 #1165
|
||||
2026/04/25-09:10:23.503321 7f5797fff6c0 Delete type=0 #1167
|
||||
2026/04/25-09:19:41.200546 7f57977fe6c0 Level-0 table #1172: started
|
||||
2026/04/25-09:19:41.200584 7f57977fe6c0 Level-0 table #1172: 0 bytes OK
|
||||
2026/04/25-09:19:41.206667 7f57977fe6c0 Delete type=0 #1170
|
||||
2026/04/25-09:19:41.226423 7f57977fe6c0 Manual compaction at level-0 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
2026/04/15-15:16:22.529214 7f2689bfd6c0 Recovering log #1159
|
||||
2026/04/15-15:16:22.539425 7f2689bfd6c0 Delete type=3 #1157
|
||||
2026/04/15-15:16:22.539500 7f2689bfd6c0 Delete type=0 #1159
|
||||
2026/04/16-18:58:25.365459 7f2688bfb6c0 Level-0 table #1164: started
|
||||
2026/04/16-18:58:25.365488 7f2688bfb6c0 Level-0 table #1164: 0 bytes OK
|
||||
2026/04/16-18:58:25.371259 7f2688bfb6c0 Delete type=0 #1162
|
||||
2026/04/16-18:58:25.384444 7f2688bfb6c0 Manual compaction at level-0 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)
|
||||
2026/04/18-12:41:58.562774 7f421a7fc6c0 Recovering log #1163
|
||||
2026/04/18-12:41:58.573652 7f421a7fc6c0 Delete type=3 #1161
|
||||
2026/04/18-12:41:58.573800 7f421a7fc6c0 Delete type=0 #1163
|
||||
2026/04/18-12:51:29.084486 7f4219ffb6c0 Level-0 table #1168: started
|
||||
2026/04/18-12:51:29.084510 7f4219ffb6c0 Level-0 table #1168: 0 bytes OK
|
||||
2026/04/18-12:51:29.090608 7f4219ffb6c0 Delete type=0 #1166
|
||||
2026/04/18-12:51:29.096960 7f4219ffb6c0 Manual compaction at level-0 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-001164
|
||||
MANIFEST-001168
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
2026/04/18-12:41:58.679668 7f421affd6c0 Recovering log #1162
|
||||
2026/04/18-12:41:58.690539 7f421affd6c0 Delete type=3 #1160
|
||||
2026/04/18-12:41:58.690711 7f421affd6c0 Delete type=0 #1162
|
||||
2026/04/18-12:51:29.146181 7f4219ffb6c0 Level-0 table #1167: started
|
||||
2026/04/18-12:51:29.146206 7f4219ffb6c0 Level-0 table #1167: 0 bytes OK
|
||||
2026/04/18-12:51:29.152607 7f4219ffb6c0 Delete type=0 #1165
|
||||
2026/04/18-12:51:29.152803 7f4219ffb6c0 Manual compaction at level-0 from '!items!AoT2c0af4lY6aBsx' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)
|
||||
2026/04/25-09:10:23.598956 7f57a4fed6c0 Recovering log #1166
|
||||
2026/04/25-09:10:23.608303 7f57a4fed6c0 Delete type=3 #1164
|
||||
2026/04/25-09:10:23.608370 7f57a4fed6c0 Delete type=0 #1166
|
||||
2026/04/25-09:19:41.258795 7f57977fe6c0 Level-0 table #1171: started
|
||||
2026/04/25-09:19:41.258824 7f57977fe6c0 Level-0 table #1171: 0 bytes OK
|
||||
2026/04/25-09:19:41.265729 7f57977fe6c0 Delete type=0 #1169
|
||||
2026/04/25-09:19:41.279104 7f57977fe6c0 Manual compaction at level-0 from '!items!AoT2c0af4lY6aBsx' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
2026/04/15-15:16:22.612700 7f268abff6c0 Recovering log #1158
|
||||
2026/04/15-15:16:22.623314 7f268abff6c0 Delete type=3 #1156
|
||||
2026/04/15-15:16:22.623363 7f268abff6c0 Delete type=0 #1158
|
||||
2026/04/16-18:58:25.402687 7f2688bfb6c0 Level-0 table #1163: started
|
||||
2026/04/16-18:58:25.402711 7f2688bfb6c0 Level-0 table #1163: 0 bytes OK
|
||||
2026/04/16-18:58:25.408855 7f2688bfb6c0 Delete type=0 #1161
|
||||
2026/04/16-18:58:25.408963 7f2688bfb6c0 Manual compaction at level-0 from '!items!AoT2c0af4lY6aBsx' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)
|
||||
2026/04/18-12:41:58.679668 7f421affd6c0 Recovering log #1162
|
||||
2026/04/18-12:41:58.690539 7f421affd6c0 Delete type=3 #1160
|
||||
2026/04/18-12:41:58.690711 7f421affd6c0 Delete type=0 #1162
|
||||
2026/04/18-12:51:29.146181 7f4219ffb6c0 Level-0 table #1167: started
|
||||
2026/04/18-12:51:29.146206 7f4219ffb6c0 Level-0 table #1167: 0 bytes OK
|
||||
2026/04/18-12:51:29.152607 7f4219ffb6c0 Delete type=0 #1165
|
||||
2026/04/18-12:51:29.152803 7f4219ffb6c0 Manual compaction at level-0 from '!items!AoT2c0af4lY6aBsx' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000647
|
||||
MANIFEST-000651
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
2026/04/18-12:41:58.694405 7f421b7fe6c0 Recovering log #645
|
||||
2026/04/18-12:41:58.706703 7f421b7fe6c0 Delete type=3 #643
|
||||
2026/04/18-12:41:58.706857 7f421b7fe6c0 Delete type=0 #645
|
||||
2026/04/18-12:51:29.125711 7f4219ffb6c0 Level-0 table #650: started
|
||||
2026/04/18-12:51:29.125752 7f4219ffb6c0 Level-0 table #650: 0 bytes OK
|
||||
2026/04/18-12:51:29.132047 7f4219ffb6c0 Delete type=0 #648
|
||||
2026/04/18-12:51:29.152761 7f4219ffb6c0 Manual compaction at level-0 from '!items!CLRp0k5qV8mD03pW' @ 72057594037927935 : 1 .. '!items!wYEpnhbyYaMkaNdL' @ 0 : 0; will stop at (end)
|
||||
2026/04/25-09:10:23.610604 7f57a5fef6c0 Recovering log #649
|
||||
2026/04/25-09:10:23.620511 7f57a5fef6c0 Delete type=3 #647
|
||||
2026/04/25-09:10:23.620579 7f57a5fef6c0 Delete type=0 #649
|
||||
2026/04/25-09:19:41.265834 7f57977fe6c0 Level-0 table #654: started
|
||||
2026/04/25-09:19:41.265861 7f57977fe6c0 Level-0 table #654: 0 bytes OK
|
||||
2026/04/25-09:19:41.271834 7f57977fe6c0 Delete type=0 #652
|
||||
2026/04/25-09:19:41.279116 7f57977fe6c0 Manual compaction at level-0 from '!items!CLRp0k5qV8mD03pW' @ 72057594037927935 : 1 .. '!items!wYEpnhbyYaMkaNdL' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
2026/04/15-15:16:22.625600 7f26893fc6c0 Recovering log #641
|
||||
2026/04/15-15:16:22.635406 7f26893fc6c0 Delete type=3 #639
|
||||
2026/04/15-15:16:22.635464 7f26893fc6c0 Delete type=0 #641
|
||||
2026/04/16-18:58:25.483026 7f2688bfb6c0 Level-0 table #646: started
|
||||
2026/04/16-18:58:25.483062 7f2688bfb6c0 Level-0 table #646: 0 bytes OK
|
||||
2026/04/16-18:58:25.489090 7f2688bfb6c0 Delete type=0 #644
|
||||
2026/04/16-18:58:25.495672 7f2688bfb6c0 Manual compaction at level-0 from '!items!CLRp0k5qV8mD03pW' @ 72057594037927935 : 1 .. '!items!wYEpnhbyYaMkaNdL' @ 0 : 0; will stop at (end)
|
||||
2026/04/18-12:41:58.694405 7f421b7fe6c0 Recovering log #645
|
||||
2026/04/18-12:41:58.706703 7f421b7fe6c0 Delete type=3 #643
|
||||
2026/04/18-12:41:58.706857 7f421b7fe6c0 Delete type=0 #645
|
||||
2026/04/18-12:51:29.125711 7f4219ffb6c0 Level-0 table #650: started
|
||||
2026/04/18-12:51:29.125752 7f4219ffb6c0 Level-0 table #650: 0 bytes OK
|
||||
2026/04/18-12:51:29.132047 7f4219ffb6c0 Delete type=0 #648
|
||||
2026/04/18-12:51:29.152761 7f4219ffb6c0 Manual compaction at level-0 from '!items!CLRp0k5qV8mD03pW' @ 72057594037927935 : 1 .. '!items!wYEpnhbyYaMkaNdL' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
+1
-1
@@ -1 +1 @@
|
||||
MANIFEST-001165
|
||||
MANIFEST-001169
|
||||
|
||||
+7
-7
@@ -1,7 +1,7 @@
|
||||
2026/04/18-12:41:58.499510 7f421bfff6c0 Recovering log #1163
|
||||
2026/04/18-12:41:58.511396 7f421bfff6c0 Delete type=3 #1161
|
||||
2026/04/18-12:41:58.511530 7f421bfff6c0 Delete type=0 #1163
|
||||
2026/04/18-12:51:29.057755 7f4219ffb6c0 Level-0 table #1168: started
|
||||
2026/04/18-12:51:29.057790 7f4219ffb6c0 Level-0 table #1168: 0 bytes OK
|
||||
2026/04/18-12:51:29.064101 7f4219ffb6c0 Delete type=0 #1166
|
||||
2026/04/18-12:51:29.070517 7f4219ffb6c0 Manual compaction at level-0 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)
|
||||
2026/04/25-09:10:23.441804 7f57a4fed6c0 Recovering log #1167
|
||||
2026/04/25-09:10:23.451168 7f57a4fed6c0 Delete type=3 #1165
|
||||
2026/04/25-09:10:23.451240 7f57a4fed6c0 Delete type=0 #1167
|
||||
2026/04/25-09:19:41.175149 7f57977fe6c0 Level-0 table #1172: started
|
||||
2026/04/25-09:19:41.175236 7f57977fe6c0 Level-0 table #1172: 0 bytes OK
|
||||
2026/04/25-09:19:41.181477 7f57977fe6c0 Delete type=0 #1170
|
||||
2026/04/25-09:19:41.200413 7f57977fe6c0 Manual compaction at level-0 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)
|
||||
|
||||
+7
-7
@@ -1,7 +1,7 @@
|
||||
2026/04/15-15:16:22.478415 7f2689bfd6c0 Recovering log #1159
|
||||
2026/04/15-15:16:22.488840 7f2689bfd6c0 Delete type=3 #1157
|
||||
2026/04/15-15:16:22.488880 7f2689bfd6c0 Delete type=0 #1159
|
||||
2026/04/16-18:58:25.332241 7f2688bfb6c0 Level-0 table #1164: started
|
||||
2026/04/16-18:58:25.332319 7f2688bfb6c0 Level-0 table #1164: 0 bytes OK
|
||||
2026/04/16-18:58:25.339468 7f2688bfb6c0 Delete type=0 #1162
|
||||
2026/04/16-18:58:25.358886 7f2688bfb6c0 Manual compaction at level-0 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)
|
||||
2026/04/18-12:41:58.499510 7f421bfff6c0 Recovering log #1163
|
||||
2026/04/18-12:41:58.511396 7f421bfff6c0 Delete type=3 #1161
|
||||
2026/04/18-12:41:58.511530 7f421bfff6c0 Delete type=0 #1163
|
||||
2026/04/18-12:51:29.057755 7f4219ffb6c0 Level-0 table #1168: started
|
||||
2026/04/18-12:51:29.057790 7f4219ffb6c0 Level-0 table #1168: 0 bytes OK
|
||||
2026/04/18-12:51:29.064101 7f4219ffb6c0 Delete type=0 #1166
|
||||
2026/04/18-12:51:29.070517 7f4219ffb6c0 Manual compaction at level-0 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-001164
|
||||
MANIFEST-001168
|
||||
|
||||
+7
-7
@@ -1,7 +1,7 @@
|
||||
2026/04/18-12:41:58.647922 7f421affd6c0 Recovering log #1162
|
||||
2026/04/18-12:41:58.660294 7f421affd6c0 Delete type=3 #1160
|
||||
2026/04/18-12:41:58.660443 7f421affd6c0 Delete type=0 #1162
|
||||
2026/04/18-12:51:29.117921 7f4219ffb6c0 Level-0 table #1167: started
|
||||
2026/04/18-12:51:29.117948 7f4219ffb6c0 Level-0 table #1167: 0 bytes OK
|
||||
2026/04/18-12:51:29.125231 7f4219ffb6c0 Delete type=0 #1165
|
||||
2026/04/18-12:51:29.125582 7f4219ffb6c0 Manual compaction at level-0 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end)
|
||||
2026/04/25-09:10:23.572412 7f5797fff6c0 Recovering log #1166
|
||||
2026/04/25-09:10:23.582728 7f5797fff6c0 Delete type=3 #1164
|
||||
2026/04/25-09:10:23.582796 7f5797fff6c0 Delete type=0 #1166
|
||||
2026/04/25-09:19:41.238892 7f57977fe6c0 Level-0 table #1171: started
|
||||
2026/04/25-09:19:41.238913 7f57977fe6c0 Level-0 table #1171: 0 bytes OK
|
||||
2026/04/25-09:19:41.245781 7f57977fe6c0 Delete type=0 #1169
|
||||
2026/04/25-09:19:41.252135 7f57977fe6c0 Manual compaction at level-0 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
2026/04/15-15:16:22.589759 7f268abff6c0 Recovering log #1158
|
||||
2026/04/15-15:16:22.599571 7f268abff6c0 Delete type=3 #1156
|
||||
2026/04/15-15:16:22.599636 7f268abff6c0 Delete type=0 #1158
|
||||
2026/04/16-18:58:25.428017 7f2688bfb6c0 Level-0 table #1163: started
|
||||
2026/04/16-18:58:25.428045 7f2688bfb6c0 Level-0 table #1163: 0 bytes OK
|
||||
2026/04/16-18:58:25.433941 7f2688bfb6c0 Delete type=0 #1161
|
||||
2026/04/16-18:58:25.434032 7f2688bfb6c0 Manual compaction at level-0 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end)
|
||||
2026/04/18-12:41:58.647922 7f421affd6c0 Recovering log #1162
|
||||
2026/04/18-12:41:58.660294 7f421affd6c0 Delete type=3 #1160
|
||||
2026/04/18-12:41:58.660443 7f421affd6c0 Delete type=0 #1162
|
||||
2026/04/18-12:51:29.117921 7f4219ffb6c0 Level-0 table #1167: started
|
||||
2026/04/18-12:51:29.117948 7f4219ffb6c0 Level-0 table #1167: 0 bytes OK
|
||||
2026/04/18-12:51:29.125231 7f4219ffb6c0 Delete type=0 #1165
|
||||
2026/04/18-12:51:29.125582 7f4219ffb6c0 Manual compaction at level-0 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-001164
|
||||
MANIFEST-001168
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
2026/04/18-12:41:58.726985 7f421b7fe6c0 Recovering log #1162
|
||||
2026/04/18-12:41:58.738061 7f421b7fe6c0 Delete type=3 #1160
|
||||
2026/04/18-12:41:58.738230 7f421b7fe6c0 Delete type=0 #1162
|
||||
2026/04/18-12:51:29.152892 7f4219ffb6c0 Level-0 table #1167: started
|
||||
2026/04/18-12:51:29.152928 7f4219ffb6c0 Level-0 table #1167: 0 bytes OK
|
||||
2026/04/18-12:51:29.159552 7f4219ffb6c0 Delete type=0 #1165
|
||||
2026/04/18-12:51:29.180766 7f4219ffb6c0 Manual compaction at level-0 from '!items!0Yhn3r8AFsKXEKeS' @ 72057594037927935 : 1 .. '!items!xVWrSPiX0Nwccsn6' @ 0 : 0; will stop at (end)
|
||||
2026/04/25-09:10:23.636027 7f57a5fef6c0 Recovering log #1166
|
||||
2026/04/25-09:10:23.645482 7f57a5fef6c0 Delete type=3 #1164
|
||||
2026/04/25-09:10:23.645550 7f57a5fef6c0 Delete type=0 #1166
|
||||
2026/04/25-09:19:41.279228 7f57977fe6c0 Level-0 table #1171: started
|
||||
2026/04/25-09:19:41.279313 7f57977fe6c0 Level-0 table #1171: 0 bytes OK
|
||||
2026/04/25-09:19:41.285308 7f57977fe6c0 Delete type=0 #1169
|
||||
2026/04/25-09:19:41.306067 7f57977fe6c0 Manual compaction at level-0 from '!items!0Yhn3r8AFsKXEKeS' @ 72057594037927935 : 1 .. '!items!xVWrSPiX0Nwccsn6' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
2026/04/15-15:16:22.649357 7f26893fc6c0 Recovering log #1158
|
||||
2026/04/15-15:16:22.659778 7f26893fc6c0 Delete type=3 #1156
|
||||
2026/04/15-15:16:22.659818 7f26893fc6c0 Delete type=0 #1158
|
||||
2026/04/16-18:58:25.420831 7f2688bfb6c0 Level-0 table #1163: started
|
||||
2026/04/16-18:58:25.420851 7f2688bfb6c0 Level-0 table #1163: 0 bytes OK
|
||||
2026/04/16-18:58:25.427928 7f2688bfb6c0 Delete type=0 #1161
|
||||
2026/04/16-18:58:25.434019 7f2688bfb6c0 Manual compaction at level-0 from '!items!0Yhn3r8AFsKXEKeS' @ 72057594037927935 : 1 .. '!items!xVWrSPiX0Nwccsn6' @ 0 : 0; will stop at (end)
|
||||
2026/04/18-12:41:58.726985 7f421b7fe6c0 Recovering log #1162
|
||||
2026/04/18-12:41:58.738061 7f421b7fe6c0 Delete type=3 #1160
|
||||
2026/04/18-12:41:58.738230 7f421b7fe6c0 Delete type=0 #1162
|
||||
2026/04/18-12:51:29.152892 7f4219ffb6c0 Level-0 table #1167: started
|
||||
2026/04/18-12:51:29.152928 7f4219ffb6c0 Level-0 table #1167: 0 bytes OK
|
||||
2026/04/18-12:51:29.159552 7f4219ffb6c0 Delete type=0 #1165
|
||||
2026/04/18-12:51:29.180766 7f4219ffb6c0 Manual compaction at level-0 from '!items!0Yhn3r8AFsKXEKeS' @ 72057594037927935 : 1 .. '!items!xVWrSPiX0Nwccsn6' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-001164
|
||||
MANIFEST-001168
|
||||
|
||||
+7
-7
@@ -1,7 +1,7 @@
|
||||
2026/04/18-12:41:58.530908 7f421bfff6c0 Recovering log #1162
|
||||
2026/04/18-12:41:58.542409 7f421bfff6c0 Delete type=3 #1160
|
||||
2026/04/18-12:41:58.542546 7f421bfff6c0 Delete type=0 #1162
|
||||
2026/04/18-12:51:29.070666 7f4219ffb6c0 Level-0 table #1167: started
|
||||
2026/04/18-12:51:29.070696 7f4219ffb6c0 Level-0 table #1167: 0 bytes OK
|
||||
2026/04/18-12:51:29.077102 7f4219ffb6c0 Delete type=0 #1165
|
||||
2026/04/18-12:51:29.096941 7f4219ffb6c0 Manual compaction at level-0 from '!items!2Wtl8xrKf46LMwBF' @ 72057594037927935 : 1 .. '!items!zIlZmEd9WAA473UX' @ 0 : 0; will stop at (end)
|
||||
2026/04/25-09:10:23.467830 7f57a4fed6c0 Recovering log #1166
|
||||
2026/04/25-09:10:23.477695 7f57a4fed6c0 Delete type=3 #1164
|
||||
2026/04/25-09:10:23.477770 7f57a4fed6c0 Delete type=0 #1166
|
||||
2026/04/25-09:19:41.213300 7f57977fe6c0 Level-0 table #1171: started
|
||||
2026/04/25-09:19:41.213338 7f57977fe6c0 Level-0 table #1171: 0 bytes OK
|
||||
2026/04/25-09:19:41.220151 7f57977fe6c0 Delete type=0 #1169
|
||||
2026/04/25-09:19:41.226449 7f57977fe6c0 Manual compaction at level-0 from '!items!2Wtl8xrKf46LMwBF' @ 72057594037927935 : 1 .. '!items!zIlZmEd9WAA473UX' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
2026/04/15-15:16:22.504920 7f268a3fe6c0 Recovering log #1158
|
||||
2026/04/15-15:16:22.514899 7f268a3fe6c0 Delete type=3 #1156
|
||||
2026/04/15-15:16:22.514956 7f268a3fe6c0 Delete type=0 #1158
|
||||
2026/04/16-18:58:25.377260 7f2688bfb6c0 Level-0 table #1163: started
|
||||
2026/04/16-18:58:25.377285 7f2688bfb6c0 Level-0 table #1163: 0 bytes OK
|
||||
2026/04/16-18:58:25.384352 7f2688bfb6c0 Delete type=0 #1161
|
||||
2026/04/16-18:58:25.384462 7f2688bfb6c0 Manual compaction at level-0 from '!items!2Wtl8xrKf46LMwBF' @ 72057594037927935 : 1 .. '!items!zIlZmEd9WAA473UX' @ 0 : 0; will stop at (end)
|
||||
2026/04/18-12:41:58.530908 7f421bfff6c0 Recovering log #1162
|
||||
2026/04/18-12:41:58.542409 7f421bfff6c0 Delete type=3 #1160
|
||||
2026/04/18-12:41:58.542546 7f421bfff6c0 Delete type=0 #1162
|
||||
2026/04/18-12:51:29.070666 7f4219ffb6c0 Level-0 table #1167: started
|
||||
2026/04/18-12:51:29.070696 7f4219ffb6c0 Level-0 table #1167: 0 bytes OK
|
||||
2026/04/18-12:51:29.077102 7f4219ffb6c0 Delete type=0 #1165
|
||||
2026/04/18-12:51:29.096941 7f4219ffb6c0 Manual compaction at level-0 from '!items!2Wtl8xrKf46LMwBF' @ 72057594037927935 : 1 .. '!items!zIlZmEd9WAA473UX' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-001164
|
||||
MANIFEST-001168
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
2026/04/18-12:41:58.710807 7f421affd6c0 Recovering log #1162
|
||||
2026/04/18-12:41:58.722230 7f421affd6c0 Delete type=3 #1160
|
||||
2026/04/18-12:41:58.722369 7f421affd6c0 Delete type=0 #1162
|
||||
2026/04/18-12:51:29.132185 7f4219ffb6c0 Level-0 table #1167: started
|
||||
2026/04/18-12:51:29.132228 7f4219ffb6c0 Level-0 table #1167: 0 bytes OK
|
||||
2026/04/18-12:51:29.139472 7f4219ffb6c0 Delete type=0 #1165
|
||||
2026/04/18-12:51:29.152778 7f4219ffb6c0 Manual compaction at level-0 from '!items!0a8UFoCOd3D35WBb' @ 72057594037927935 : 1 .. '!items!y9NHZCxKXMZEqcRo' @ 0 : 0; will stop at (end)
|
||||
2026/04/25-09:10:23.622948 7f57a4fed6c0 Recovering log #1166
|
||||
2026/04/25-09:10:23.633625 7f57a4fed6c0 Delete type=3 #1164
|
||||
2026/04/25-09:10:23.633678 7f57a4fed6c0 Delete type=0 #1166
|
||||
2026/04/25-09:19:41.271934 7f57977fe6c0 Level-0 table #1171: started
|
||||
2026/04/25-09:19:41.271961 7f57977fe6c0 Level-0 table #1171: 0 bytes OK
|
||||
2026/04/25-09:19:41.278981 7f57977fe6c0 Delete type=0 #1169
|
||||
2026/04/25-09:19:41.279126 7f57977fe6c0 Manual compaction at level-0 from '!items!0a8UFoCOd3D35WBb' @ 72057594037927935 : 1 .. '!items!y9NHZCxKXMZEqcRo' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
2026/04/15-15:16:22.637829 7f268abff6c0 Recovering log #1158
|
||||
2026/04/15-15:16:22.647466 7f268abff6c0 Delete type=3 #1156
|
||||
2026/04/15-15:16:22.647530 7f268abff6c0 Delete type=0 #1158
|
||||
2026/04/16-18:58:25.409036 7f2688bfb6c0 Level-0 table #1163: started
|
||||
2026/04/16-18:58:25.409056 7f2688bfb6c0 Level-0 table #1163: 0 bytes OK
|
||||
2026/04/16-18:58:25.414806 7f2688bfb6c0 Delete type=0 #1161
|
||||
2026/04/16-18:58:25.434005 7f2688bfb6c0 Manual compaction at level-0 from '!items!0a8UFoCOd3D35WBb' @ 72057594037927935 : 1 .. '!items!y9NHZCxKXMZEqcRo' @ 0 : 0; will stop at (end)
|
||||
2026/04/18-12:41:58.710807 7f421affd6c0 Recovering log #1162
|
||||
2026/04/18-12:41:58.722230 7f421affd6c0 Delete type=3 #1160
|
||||
2026/04/18-12:41:58.722369 7f421affd6c0 Delete type=0 #1162
|
||||
2026/04/18-12:51:29.132185 7f4219ffb6c0 Level-0 table #1167: started
|
||||
2026/04/18-12:51:29.132228 7f4219ffb6c0 Level-0 table #1167: 0 bytes OK
|
||||
2026/04/18-12:51:29.139472 7f4219ffb6c0 Delete type=0 #1165
|
||||
2026/04/18-12:51:29.152778 7f4219ffb6c0 Manual compaction at level-0 from '!items!0a8UFoCOd3D35WBb' @ 72057594037927935 : 1 .. '!items!y9NHZCxKXMZEqcRo' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
+1
-1
@@ -1 +1 @@
|
||||
MANIFEST-001164
|
||||
MANIFEST-001168
|
||||
|
||||
+7
-7
@@ -1,7 +1,7 @@
|
||||
2026/04/18-12:41:58.546317 7f421b7fe6c0 Recovering log #1162
|
||||
2026/04/18-12:41:58.558957 7f421b7fe6c0 Delete type=3 #1160
|
||||
2026/04/18-12:41:58.559092 7f421b7fe6c0 Delete type=0 #1162
|
||||
2026/04/18-12:51:29.077231 7f4219ffb6c0 Level-0 table #1167: started
|
||||
2026/04/18-12:51:29.077261 7f4219ffb6c0 Level-0 table #1167: 0 bytes OK
|
||||
2026/04/18-12:51:29.084417 7f4219ffb6c0 Delete type=0 #1165
|
||||
2026/04/18-12:51:29.096952 7f4219ffb6c0 Manual compaction at level-0 from '!items!3oOvUd7AIqrXzLDl' @ 72057594037927935 : 1 .. '!items!oWexVALVtDXmedMy' @ 0 : 0; will stop at (end)
|
||||
2026/04/25-09:10:23.480838 7f57a5fef6c0 Recovering log #1166
|
||||
2026/04/25-09:10:23.490276 7f57a5fef6c0 Delete type=3 #1164
|
||||
2026/04/25-09:10:23.490336 7f57a5fef6c0 Delete type=0 #1166
|
||||
2026/04/25-09:19:41.220255 7f57977fe6c0 Level-0 table #1171: started
|
||||
2026/04/25-09:19:41.220295 7f57977fe6c0 Level-0 table #1171: 0 bytes OK
|
||||
2026/04/25-09:19:41.226268 7f57977fe6c0 Delete type=0 #1169
|
||||
2026/04/25-09:19:41.226459 7f57977fe6c0 Manual compaction at level-0 from '!items!3oOvUd7AIqrXzLDl' @ 72057594037927935 : 1 .. '!items!oWexVALVtDXmedMy' @ 0 : 0; will stop at (end)
|
||||
|
||||
+7
-7
@@ -1,7 +1,7 @@
|
||||
2026/04/15-15:16:22.516985 7f26893fc6c0 Recovering log #1158
|
||||
2026/04/15-15:16:22.527377 7f26893fc6c0 Delete type=3 #1156
|
||||
2026/04/15-15:16:22.527439 7f26893fc6c0 Delete type=0 #1158
|
||||
2026/04/16-18:58:25.371331 7f2688bfb6c0 Level-0 table #1163: started
|
||||
2026/04/16-18:58:25.371356 7f2688bfb6c0 Level-0 table #1163: 0 bytes OK
|
||||
2026/04/16-18:58:25.377187 7f2688bfb6c0 Delete type=0 #1161
|
||||
2026/04/16-18:58:25.384454 7f2688bfb6c0 Manual compaction at level-0 from '!items!3oOvUd7AIqrXzLDl' @ 72057594037927935 : 1 .. '!items!oWexVALVtDXmedMy' @ 0 : 0; will stop at (end)
|
||||
2026/04/18-12:41:58.546317 7f421b7fe6c0 Recovering log #1162
|
||||
2026/04/18-12:41:58.558957 7f421b7fe6c0 Delete type=3 #1160
|
||||
2026/04/18-12:41:58.559092 7f421b7fe6c0 Delete type=0 #1162
|
||||
2026/04/18-12:51:29.077231 7f4219ffb6c0 Level-0 table #1167: started
|
||||
2026/04/18-12:51:29.077261 7f4219ffb6c0 Level-0 table #1167: 0 bytes OK
|
||||
2026/04/18-12:51:29.084417 7f4219ffb6c0 Delete type=0 #1165
|
||||
2026/04/18-12:51:29.096952 7f4219ffb6c0 Manual compaction at level-0 from '!items!3oOvUd7AIqrXzLDl' @ 72057594037927935 : 1 .. '!items!oWexVALVtDXmedMy' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-001164
|
||||
MANIFEST-001168
|
||||
|
||||
+7
-7
@@ -1,7 +1,7 @@
|
||||
2026/04/18-12:41:58.664345 7f421bfff6c0 Recovering log #1162
|
||||
2026/04/18-12:41:58.675953 7f421bfff6c0 Delete type=3 #1160
|
||||
2026/04/18-12:41:58.676111 7f421bfff6c0 Delete type=0 #1162
|
||||
2026/04/18-12:51:29.139619 7f4219ffb6c0 Level-0 table #1167: started
|
||||
2026/04/18-12:51:29.139649 7f4219ffb6c0 Level-0 table #1167: 0 bytes OK
|
||||
2026/04/18-12:51:29.146054 7f4219ffb6c0 Delete type=0 #1165
|
||||
2026/04/18-12:51:29.152789 7f4219ffb6c0 Manual compaction at level-0 from '!items!2svd3uio8Hp4e5Wy' @ 72057594037927935 : 1 .. '!items!zq5h9kCpo8gK4oIH' @ 0 : 0; will stop at (end)
|
||||
2026/04/25-09:10:23.585176 7f57a57ee6c0 Recovering log #1166
|
||||
2026/04/25-09:10:23.595981 7f57a57ee6c0 Delete type=3 #1164
|
||||
2026/04/25-09:10:23.596572 7f57a57ee6c0 Delete type=0 #1166
|
||||
2026/04/25-09:19:41.252217 7f57977fe6c0 Level-0 table #1171: started
|
||||
2026/04/25-09:19:41.252257 7f57977fe6c0 Level-0 table #1171: 0 bytes OK
|
||||
2026/04/25-09:19:41.258650 7f57977fe6c0 Delete type=0 #1169
|
||||
2026/04/25-09:19:41.279090 7f57977fe6c0 Manual compaction at level-0 from '!items!2svd3uio8Hp4e5Wy' @ 72057594037927935 : 1 .. '!items!zq5h9kCpo8gK4oIH' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
2026/04/15-15:16:22.601453 7f26893fc6c0 Recovering log #1158
|
||||
2026/04/15-15:16:22.610809 7f26893fc6c0 Delete type=3 #1156
|
||||
2026/04/15-15:16:22.610858 7f26893fc6c0 Delete type=0 #1158
|
||||
2026/04/16-18:58:25.544710 7f2688bfb6c0 Level-0 table #1163: started
|
||||
2026/04/16-18:58:25.544745 7f2688bfb6c0 Level-0 table #1163: 0 bytes OK
|
||||
2026/04/16-18:58:25.551029 7f2688bfb6c0 Delete type=0 #1161
|
||||
2026/04/16-18:58:25.567505 7f2688bfb6c0 Manual compaction at level-0 from '!items!2svd3uio8Hp4e5Wy' @ 72057594037927935 : 1 .. '!items!zq5h9kCpo8gK4oIH' @ 0 : 0; will stop at (end)
|
||||
2026/04/18-12:41:58.664345 7f421bfff6c0 Recovering log #1162
|
||||
2026/04/18-12:41:58.675953 7f421bfff6c0 Delete type=3 #1160
|
||||
2026/04/18-12:41:58.676111 7f421bfff6c0 Delete type=0 #1162
|
||||
2026/04/18-12:51:29.139619 7f4219ffb6c0 Level-0 table #1167: started
|
||||
2026/04/18-12:51:29.139649 7f4219ffb6c0 Level-0 table #1167: 0 bytes OK
|
||||
2026/04/18-12:51:29.146054 7f4219ffb6c0 Delete type=0 #1165
|
||||
2026/04/18-12:51:29.152789 7f4219ffb6c0 Manual compaction at level-0 from '!items!2svd3uio8Hp4e5Wy' @ 72057594037927935 : 1 .. '!items!zq5h9kCpo8gK4oIH' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-001071
|
||||
MANIFEST-001075
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
2026/04/18-12:41:58.610634 7f421b7fe6c0 Recovering log #1069
|
||||
2026/04/18-12:41:58.621708 7f421b7fe6c0 Delete type=3 #1067
|
||||
2026/04/18-12:41:58.621871 7f421b7fe6c0 Delete type=0 #1069
|
||||
2026/04/18-12:51:29.104782 7f4219ffb6c0 Level-0 table #1074: started
|
||||
2026/04/18-12:51:29.104826 7f4219ffb6c0 Level-0 table #1074: 0 bytes OK
|
||||
2026/04/18-12:51:29.111204 7f4219ffb6c0 Delete type=0 #1072
|
||||
2026/04/18-12:51:29.125542 7f4219ffb6c0 Manual compaction at level-0 from '!items!2cqkViQnOYZ4qwU1' @ 72057594037927935 : 1 .. '!items!qcCZxbaV9sucG1XK' @ 0 : 0; will stop at (end)
|
||||
2026/04/25-09:10:23.546215 7f57a5fef6c0 Recovering log #1073
|
||||
2026/04/25-09:10:23.557262 7f57a5fef6c0 Delete type=3 #1071
|
||||
2026/04/25-09:10:23.557345 7f57a5fef6c0 Delete type=0 #1073
|
||||
2026/04/25-09:19:41.226568 7f57977fe6c0 Level-0 table #1078: started
|
||||
2026/04/25-09:19:41.226604 7f57977fe6c0 Level-0 table #1078: 0 bytes OK
|
||||
2026/04/25-09:19:41.232619 7f57977fe6c0 Delete type=0 #1076
|
||||
2026/04/25-09:19:41.252112 7f57977fe6c0 Manual compaction at level-0 from '!items!2cqkViQnOYZ4qwU1' @ 72057594037927935 : 1 .. '!items!qcCZxbaV9sucG1XK' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
2026/04/15-15:16:22.565653 7f26893fc6c0 Recovering log #1065
|
||||
2026/04/15-15:16:22.575545 7f26893fc6c0 Delete type=3 #1063
|
||||
2026/04/15-15:16:22.575608 7f26893fc6c0 Delete type=0 #1065
|
||||
2026/04/16-18:58:25.390531 7f2688bfb6c0 Level-0 table #1070: started
|
||||
2026/04/16-18:58:25.390558 7f2688bfb6c0 Level-0 table #1070: 0 bytes OK
|
||||
2026/04/16-18:58:25.396354 7f2688bfb6c0 Delete type=0 #1068
|
||||
2026/04/16-18:58:25.408913 7f2688bfb6c0 Manual compaction at level-0 from '!items!2cqkViQnOYZ4qwU1' @ 72057594037927935 : 1 .. '!items!qcCZxbaV9sucG1XK' @ 0 : 0; will stop at (end)
|
||||
2026/04/18-12:41:58.610634 7f421b7fe6c0 Recovering log #1069
|
||||
2026/04/18-12:41:58.621708 7f421b7fe6c0 Delete type=3 #1067
|
||||
2026/04/18-12:41:58.621871 7f421b7fe6c0 Delete type=0 #1069
|
||||
2026/04/18-12:51:29.104782 7f4219ffb6c0 Level-0 table #1074: started
|
||||
2026/04/18-12:51:29.104826 7f4219ffb6c0 Level-0 table #1074: 0 bytes OK
|
||||
2026/04/18-12:51:29.111204 7f4219ffb6c0 Delete type=0 #1072
|
||||
2026/04/18-12:51:29.125542 7f4219ffb6c0 Manual compaction at level-0 from '!items!2cqkViQnOYZ4qwU1' @ 72057594037927935 : 1 .. '!items!qcCZxbaV9sucG1XK' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-001077
|
||||
MANIFEST-001081
|
||||
|
||||
+7
-7
@@ -1,7 +1,7 @@
|
||||
2026/04/18-12:41:58.577903 7f421affd6c0 Recovering log #1075
|
||||
2026/04/18-12:41:58.590014 7f421affd6c0 Delete type=3 #1073
|
||||
2026/04/18-12:41:58.590187 7f421affd6c0 Delete type=0 #1075
|
||||
2026/04/18-12:51:29.090793 7f4219ffb6c0 Level-0 table #1080: started
|
||||
2026/04/18-12:51:29.090828 7f4219ffb6c0 Level-0 table #1080: 0 bytes OK
|
||||
2026/04/18-12:51:29.096878 7f4219ffb6c0 Delete type=0 #1078
|
||||
2026/04/18-12:51:29.096968 7f4219ffb6c0 Manual compaction at level-0 from '!items!2xxMC458KXaAgm3T' @ 72057594037927935 : 1 .. '!items!zjOFhNocHjeJZcy4' @ 0 : 0; will stop at (end)
|
||||
2026/04/25-09:10:23.505591 7f57a5fef6c0 Recovering log #1079
|
||||
2026/04/25-09:10:23.515495 7f57a5fef6c0 Delete type=3 #1077
|
||||
2026/04/25-09:10:23.515569 7f57a5fef6c0 Delete type=0 #1079
|
||||
2026/04/25-09:19:41.206807 7f57977fe6c0 Level-0 table #1084: started
|
||||
2026/04/25-09:19:41.206861 7f57977fe6c0 Level-0 table #1084: 0 bytes OK
|
||||
2026/04/25-09:19:41.213141 7f57977fe6c0 Delete type=0 #1082
|
||||
2026/04/25-09:19:41.226436 7f57977fe6c0 Manual compaction at level-0 from '!items!2xxMC458KXaAgm3T' @ 72057594037927935 : 1 .. '!items!zjOFhNocHjeJZcy4' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
2026/04/15-15:16:22.541197 7f26893fc6c0 Recovering log #1071
|
||||
2026/04/15-15:16:22.550792 7f26893fc6c0 Delete type=3 #1069
|
||||
2026/04/15-15:16:22.550856 7f26893fc6c0 Delete type=0 #1071
|
||||
2026/04/16-18:58:25.359070 7f2688bfb6c0 Level-0 table #1076: started
|
||||
2026/04/16-18:58:25.359100 7f2688bfb6c0 Level-0 table #1076: 0 bytes OK
|
||||
2026/04/16-18:58:25.365373 7f2688bfb6c0 Delete type=0 #1074
|
||||
2026/04/16-18:58:25.384434 7f2688bfb6c0 Manual compaction at level-0 from '!items!2xxMC458KXaAgm3T' @ 72057594037927935 : 1 .. '!items!zjOFhNocHjeJZcy4' @ 0 : 0; will stop at (end)
|
||||
2026/04/18-12:41:58.577903 7f421affd6c0 Recovering log #1075
|
||||
2026/04/18-12:41:58.590014 7f421affd6c0 Delete type=3 #1073
|
||||
2026/04/18-12:41:58.590187 7f421affd6c0 Delete type=0 #1075
|
||||
2026/04/18-12:51:29.090793 7f4219ffb6c0 Level-0 table #1080: started
|
||||
2026/04/18-12:51:29.090828 7f4219ffb6c0 Level-0 table #1080: 0 bytes OK
|
||||
2026/04/18-12:51:29.096878 7f4219ffb6c0 Delete type=0 #1078
|
||||
2026/04/18-12:51:29.096968 7f4219ffb6c0 Manual compaction at level-0 from '!items!2xxMC458KXaAgm3T' @ 72057594037927935 : 1 .. '!items!zjOFhNocHjeJZcy4' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
Reference in New Issue
Block a user