This commit is contained in:
Binary file not shown.
|
After Width: | Height: | Size: 28 KiB |
+18
-1
@@ -118,7 +118,9 @@
|
||||
padding-right: 1.3rem;
|
||||
background-image: linear-gradient(45deg, transparent 50%, rgba(196, 154, 69, 0.78) 50%), linear-gradient(135deg, rgba(196, 154, 69, 0.78) 50%, transparent 50%), linear-gradient(180deg, rgba(171, 139, 104, 0.04), transparent 60%);
|
||||
background-position: calc(100% - 11px) calc(50% - 2px), calc(100% - 7px) calc(50% - 2px), 0 0;
|
||||
background-size: 4px 4px, 4px 4px, auto;
|
||||
background-size: 4px 4px,
|
||||
4px 4px,
|
||||
auto;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
.application.mgne textarea {
|
||||
@@ -261,6 +263,21 @@
|
||||
#combat .combat-controls .mgne-flee-control:disabled {
|
||||
opacity: 0.5;
|
||||
}
|
||||
#pause > img {
|
||||
content: url("../assets/ui/machine_god_skull.png");
|
||||
animation: none;
|
||||
width: 260px;
|
||||
height: auto;
|
||||
filter: drop-shadow(0 0 18px rgba(0, 0, 0, 0.8));
|
||||
}
|
||||
#pause figcaption {
|
||||
font-family: "CastorTwoMGNE", "Palatino Linotype", serif;
|
||||
font-size: 2rem;
|
||||
font-weight: bold;
|
||||
color: #a67054;
|
||||
text-shadow: 0 0 10px rgba(0, 0, 0, 0.9), 1px 1px 2px #000;
|
||||
letter-spacing: 2px;
|
||||
}
|
||||
.application.mgne .mgne-sheet {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
||||
+55
-9
@@ -19,7 +19,12 @@
|
||||
|
||||
.window-header {
|
||||
background:
|
||||
linear-gradient(90deg, fade(@blood, 40%), fade(@ember, 18%) 25%, transparent 70%),
|
||||
linear-gradient(
|
||||
90deg,
|
||||
fade(@blood, 40%),
|
||||
fade(@ember, 18%) 25%,
|
||||
transparent 70%
|
||||
),
|
||||
linear-gradient(180deg, color-mix(in srgb, @bg-char 80%, black), @bg-void);
|
||||
border-bottom: 1px solid fade(@gold-acid, 35%);
|
||||
color: @bone;
|
||||
@@ -64,7 +69,11 @@
|
||||
.window-content {
|
||||
background:
|
||||
radial-gradient(circle at top left, fade(@ember, 12%), transparent 28%),
|
||||
radial-gradient(circle at top right, fade(@verdigris, 10%), transparent 24%),
|
||||
radial-gradient(
|
||||
circle at top right,
|
||||
fade(@verdigris, 10%),
|
||||
transparent 24%
|
||||
),
|
||||
linear-gradient(180deg, fade(@bg-char, 30%), fade(@bg-void, 28%)),
|
||||
url("@{page-bg-url}") center top / cover no-repeat,
|
||||
linear-gradient(180deg, @bg-char, @bg-void 120%);
|
||||
@@ -107,8 +116,7 @@
|
||||
border: 1px solid fade(@bone, 22%);
|
||||
border-radius: @radius-sm;
|
||||
background:
|
||||
linear-gradient(180deg, fade(@bone, 4%), transparent 60%),
|
||||
@bg-input;
|
||||
linear-gradient(180deg, fade(@bone, 4%), transparent 60%), @bg-input;
|
||||
color: @parchment;
|
||||
padding: 0.4rem 0.52rem;
|
||||
box-shadow: inset 0 1px 0 fade(white, 4%);
|
||||
@@ -116,7 +124,9 @@
|
||||
&:focus {
|
||||
outline: none;
|
||||
border-color: fade(@ember-bright, 70%);
|
||||
box-shadow: 0 0 0 1px fade(@ember-bright, 25%), inset 0 1px 0 fade(white, 6%);
|
||||
box-shadow:
|
||||
0 0 0 1px fade(@ember-bright, 25%),
|
||||
inset 0 1px 0 fade(white, 6%);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -131,7 +141,10 @@
|
||||
calc(100% - 11px) calc(50% - 2px),
|
||||
calc(100% - 7px) calc(50% - 2px),
|
||||
0 0;
|
||||
background-size: 4px 4px, 4px 4px, auto;
|
||||
background-size:
|
||||
4px 4px,
|
||||
4px 4px,
|
||||
auto;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
|
||||
@@ -179,9 +192,18 @@
|
||||
}
|
||||
.editor-content,
|
||||
.ProseMirror {
|
||||
p, li { color: lighten(@parchment, 8%); }
|
||||
h1, h2, h3 { color: @gold-acid; }
|
||||
.is-empty::before { color: fade(@gold-acid, 40%); }
|
||||
p,
|
||||
li {
|
||||
color: lighten(@parchment, 8%);
|
||||
}
|
||||
h1,
|
||||
h2,
|
||||
h3 {
|
||||
color: @gold-acid;
|
||||
}
|
||||
.is-empty::before {
|
||||
color: fade(@gold-acid, 40%);
|
||||
}
|
||||
}
|
||||
.editor-menu button {
|
||||
color: @bone;
|
||||
@@ -254,3 +276,27 @@
|
||||
opacity: 0.5;
|
||||
}
|
||||
}
|
||||
|
||||
// ============================================================
|
||||
// PAUSE OVERLAY — replace default Foundry spinner with system logo
|
||||
// ============================================================
|
||||
#pause {
|
||||
& > img {
|
||||
content: url("../assets/ui/machine_god_skull.png");
|
||||
animation: none;
|
||||
width: 260px;
|
||||
height: auto;
|
||||
filter: drop-shadow(0 0 18px rgba(0, 0, 0, 0.8));
|
||||
}
|
||||
|
||||
figcaption {
|
||||
font-family: @font-display;
|
||||
font-size: 2rem;
|
||||
font-weight: bold;
|
||||
color: @label-ink;
|
||||
text-shadow:
|
||||
0 0 10px rgba(0, 0, 0, 0.9),
|
||||
1px 1px 2px #000;
|
||||
letter-spacing: 2px;
|
||||
}
|
||||
}
|
||||
|
||||
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000044
|
||||
MANIFEST-000049
|
||||
|
||||
+15
-15
@@ -1,15 +1,15 @@
|
||||
2026/05/23-08:39:02.071552 7fb059fef6c0 Recovering log #41
|
||||
2026/05/23-08:39:02.085152 7fb059fef6c0 Delete type=3 #39
|
||||
2026/05/23-08:39:02.085618 7fb059fef6c0 Delete type=0 #41
|
||||
2026/05/23-08:42:47.974188 7fb04b7fe6c0 Level-0 table #47: started
|
||||
2026/05/23-08:42:47.978821 7fb04b7fe6c0 Level-0 table #47: 1354 bytes OK
|
||||
2026/05/23-08:42:47.988393 7fb04b7fe6c0 Delete type=0 #45
|
||||
2026/05/23-08:42:47.997317 7fb04b7fe6c0 Manual compaction at level-0 from '!items!mgne-arm-chainshirt' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at (end)
|
||||
2026/05/23-08:42:48.016276 7fb04b7fe6c0 Manual compaction at level-1 from '!items!mgne-arm-chainshirt' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at '!items!null' @ 74 : 1
|
||||
2026/05/23-08:42:48.016311 7fb04b7fe6c0 Compacting 1@1 + 1@2 files
|
||||
2026/05/23-08:42:48.020556 7fb04b7fe6c0 Generated table #48@1: 1 keys, 685 bytes
|
||||
2026/05/23-08:42:48.020648 7fb04b7fe6c0 Compacted 1@1 + 1@2 files => 685 bytes
|
||||
2026/05/23-08:42:48.028266 7fb04b7fe6c0 compacted to: files[ 0 0 2 0 0 0 0 ]
|
||||
2026/05/23-08:42:48.028596 7fb04b7fe6c0 Delete type=2 #43
|
||||
2026/05/23-08:42:48.028998 7fb04b7fe6c0 Delete type=2 #47
|
||||
2026/05/23-08:42:48.059146 7fb04b7fe6c0 Manual compaction at level-1 from '!items!null' @ 74 : 1 .. '!items!null' @ 0 : 0; will stop at (end)
|
||||
2026/05/23-09:14:18.209175 7fa280fff6c0 Recovering log #46
|
||||
2026/05/23-09:14:18.262682 7fa280fff6c0 Delete type=3 #44
|
||||
2026/05/23-09:14:18.262729 7fa280fff6c0 Delete type=0 #46
|
||||
2026/05/23-09:14:29.462998 7fa2327fc6c0 Level-0 table #52: started
|
||||
2026/05/23-09:14:29.466125 7fa2327fc6c0 Level-0 table #52: 1354 bytes OK
|
||||
2026/05/23-09:14:29.472096 7fa2327fc6c0 Delete type=0 #50
|
||||
2026/05/23-09:14:29.495570 7fa2327fc6c0 Manual compaction at level-0 from '!items!mgne-arm-chainshirt' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at (end)
|
||||
2026/05/23-09:14:29.515804 7fa2327fc6c0 Manual compaction at level-1 from '!items!mgne-arm-chainshirt' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at '!items!null' @ 82 : 1
|
||||
2026/05/23-09:14:29.515812 7fa2327fc6c0 Compacting 1@1 + 1@2 files
|
||||
2026/05/23-09:14:29.518812 7fa2327fc6c0 Generated table #53@1: 1 keys, 685 bytes
|
||||
2026/05/23-09:14:29.518825 7fa2327fc6c0 Compacted 1@1 + 1@2 files => 685 bytes
|
||||
2026/05/23-09:14:29.525255 7fa2327fc6c0 compacted to: files[ 0 0 2 0 0 0 0 ]
|
||||
2026/05/23-09:14:29.525289 7fa2327fc6c0 Delete type=2 #48
|
||||
2026/05/23-09:14:29.525353 7fa2327fc6c0 Delete type=2 #52
|
||||
2026/05/23-09:14:29.531944 7fa2327fc6c0 Manual compaction at level-1 from '!items!null' @ 82 : 1 .. '!items!null' @ 0 : 0; will stop at (end)
|
||||
|
||||
+15
-15
@@ -1,15 +1,15 @@
|
||||
2026/05/22-23:16:00.130878 7fb04bfff6c0 Recovering log #37
|
||||
2026/05/22-23:16:00.140612 7fb04bfff6c0 Delete type=3 #35
|
||||
2026/05/22-23:16:00.140678 7fb04bfff6c0 Delete type=0 #37
|
||||
2026/05/23-00:40:56.642804 7fb04b7fe6c0 Level-0 table #42: started
|
||||
2026/05/23-00:40:56.647145 7fb04b7fe6c0 Level-0 table #42: 1354 bytes OK
|
||||
2026/05/23-00:40:56.653866 7fb04b7fe6c0 Delete type=0 #40
|
||||
2026/05/23-00:40:56.663878 7fb04b7fe6c0 Manual compaction at level-0 from '!items!mgne-arm-chainshirt' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at (end)
|
||||
2026/05/23-00:40:56.674602 7fb04b7fe6c0 Manual compaction at level-1 from '!items!mgne-arm-chainshirt' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at '!items!null' @ 66 : 1
|
||||
2026/05/23-00:40:56.674608 7fb04b7fe6c0 Compacting 1@1 + 1@2 files
|
||||
2026/05/23-00:40:56.678236 7fb04b7fe6c0 Generated table #43@1: 1 keys, 685 bytes
|
||||
2026/05/23-00:40:56.678254 7fb04b7fe6c0 Compacted 1@1 + 1@2 files => 685 bytes
|
||||
2026/05/23-00:40:56.686903 7fb04b7fe6c0 compacted to: files[ 0 0 2 0 0 0 0 ]
|
||||
2026/05/23-00:40:56.686979 7fb04b7fe6c0 Delete type=2 #38
|
||||
2026/05/23-00:40:56.687121 7fb04b7fe6c0 Delete type=2 #42
|
||||
2026/05/23-00:40:56.707355 7fb04b7fe6c0 Manual compaction at level-1 from '!items!null' @ 66 : 1 .. '!items!null' @ 0 : 0; will stop at (end)
|
||||
2026/05/23-08:39:02.071552 7fb059fef6c0 Recovering log #41
|
||||
2026/05/23-08:39:02.085152 7fb059fef6c0 Delete type=3 #39
|
||||
2026/05/23-08:39:02.085618 7fb059fef6c0 Delete type=0 #41
|
||||
2026/05/23-08:42:47.974188 7fb04b7fe6c0 Level-0 table #47: started
|
||||
2026/05/23-08:42:47.978821 7fb04b7fe6c0 Level-0 table #47: 1354 bytes OK
|
||||
2026/05/23-08:42:47.988393 7fb04b7fe6c0 Delete type=0 #45
|
||||
2026/05/23-08:42:47.997317 7fb04b7fe6c0 Manual compaction at level-0 from '!items!mgne-arm-chainshirt' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at (end)
|
||||
2026/05/23-08:42:48.016276 7fb04b7fe6c0 Manual compaction at level-1 from '!items!mgne-arm-chainshirt' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at '!items!null' @ 74 : 1
|
||||
2026/05/23-08:42:48.016311 7fb04b7fe6c0 Compacting 1@1 + 1@2 files
|
||||
2026/05/23-08:42:48.020556 7fb04b7fe6c0 Generated table #48@1: 1 keys, 685 bytes
|
||||
2026/05/23-08:42:48.020648 7fb04b7fe6c0 Compacted 1@1 + 1@2 files => 685 bytes
|
||||
2026/05/23-08:42:48.028266 7fb04b7fe6c0 compacted to: files[ 0 0 2 0 0 0 0 ]
|
||||
2026/05/23-08:42:48.028596 7fb04b7fe6c0 Delete type=2 #43
|
||||
2026/05/23-08:42:48.028998 7fb04b7fe6c0 Delete type=2 #47
|
||||
2026/05/23-08:42:48.059146 7fb04b7fe6c0 Manual compaction at level-1 from '!items!null' @ 74 : 1 .. '!items!null' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000044
|
||||
MANIFEST-000049
|
||||
|
||||
+15
-15
@@ -1,15 +1,15 @@
|
||||
2026/05/23-08:39:02.020811 7fb058fed6c0 Recovering log #41
|
||||
2026/05/23-08:39:02.034588 7fb058fed6c0 Delete type=3 #39
|
||||
2026/05/23-08:39:02.034799 7fb058fed6c0 Delete type=0 #41
|
||||
2026/05/23-08:42:47.861136 7fb04b7fe6c0 Level-0 table #47: started
|
||||
2026/05/23-08:42:47.866967 7fb04b7fe6c0 Level-0 table #47: 4899 bytes OK
|
||||
2026/05/23-08:42:47.875441 7fb04b7fe6c0 Delete type=0 #45
|
||||
2026/05/23-08:42:47.890448 7fb04b7fe6c0 Manual compaction at level-0 from '!actors!mgne-comp-beguiled-noble' @ 72057594037927935 : 1 .. '!actors!null' @ 0 : 0; will stop at (end)
|
||||
2026/05/23-08:42:47.890591 7fb04b7fe6c0 Manual compaction at level-1 from '!actors!mgne-comp-beguiled-noble' @ 72057594037927935 : 1 .. '!actors!null' @ 0 : 0; will stop at '!actors!null' @ 38 : 1
|
||||
2026/05/23-08:42:47.890614 7fb04b7fe6c0 Compacting 1@1 + 1@2 files
|
||||
2026/05/23-08:42:47.895073 7fb04b7fe6c0 Generated table #48@1: 1 keys, 1984 bytes
|
||||
2026/05/23-08:42:47.895150 7fb04b7fe6c0 Compacted 1@1 + 1@2 files => 1984 bytes
|
||||
2026/05/23-08:42:47.902755 7fb04b7fe6c0 compacted to: files[ 0 0 2 0 0 0 0 ]
|
||||
2026/05/23-08:42:47.903327 7fb04b7fe6c0 Delete type=2 #43
|
||||
2026/05/23-08:42:47.903735 7fb04b7fe6c0 Delete type=2 #47
|
||||
2026/05/23-08:42:47.946588 7fb04b7fe6c0 Manual compaction at level-1 from '!actors!null' @ 38 : 1 .. '!actors!null' @ 0 : 0; will stop at (end)
|
||||
2026/05/23-09:14:18.096663 7fa232ffd6c0 Recovering log #46
|
||||
2026/05/23-09:14:18.146739 7fa232ffd6c0 Delete type=3 #44
|
||||
2026/05/23-09:14:18.146790 7fa232ffd6c0 Delete type=0 #46
|
||||
2026/05/23-09:14:29.432393 7fa2327fc6c0 Level-0 table #52: started
|
||||
2026/05/23-09:14:29.435530 7fa2327fc6c0 Level-0 table #52: 4899 bytes OK
|
||||
2026/05/23-09:14:29.442217 7fa2327fc6c0 Delete type=0 #50
|
||||
2026/05/23-09:14:29.462989 7fa2327fc6c0 Manual compaction at level-0 from '!actors!mgne-comp-beguiled-noble' @ 72057594037927935 : 1 .. '!actors!null' @ 0 : 0; will stop at (end)
|
||||
2026/05/23-09:14:29.472221 7fa2327fc6c0 Manual compaction at level-1 from '!actors!mgne-comp-beguiled-noble' @ 72057594037927935 : 1 .. '!actors!null' @ 0 : 0; will stop at '!actors!null' @ 42 : 1
|
||||
2026/05/23-09:14:29.472226 7fa2327fc6c0 Compacting 1@1 + 1@2 files
|
||||
2026/05/23-09:14:29.476438 7fa2327fc6c0 Generated table #53@1: 1 keys, 1984 bytes
|
||||
2026/05/23-09:14:29.476452 7fa2327fc6c0 Compacted 1@1 + 1@2 files => 1984 bytes
|
||||
2026/05/23-09:14:29.482663 7fa2327fc6c0 compacted to: files[ 0 0 2 0 0 0 0 ]
|
||||
2026/05/23-09:14:29.482714 7fa2327fc6c0 Delete type=2 #48
|
||||
2026/05/23-09:14:29.482815 7fa2327fc6c0 Delete type=2 #52
|
||||
2026/05/23-09:14:29.495583 7fa2327fc6c0 Manual compaction at level-1 from '!actors!null' @ 42 : 1 .. '!actors!null' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,15 +1,15 @@
|
||||
2026/05/22-23:16:00.102725 7fb0597ee6c0 Recovering log #37
|
||||
2026/05/22-23:16:00.113026 7fb0597ee6c0 Delete type=3 #35
|
||||
2026/05/22-23:16:00.113082 7fb0597ee6c0 Delete type=0 #37
|
||||
2026/05/23-00:40:56.621116 7fb04b7fe6c0 Level-0 table #42: started
|
||||
2026/05/23-00:40:56.626059 7fb04b7fe6c0 Level-0 table #42: 4899 bytes OK
|
||||
2026/05/23-00:40:56.632556 7fb04b7fe6c0 Delete type=0 #40
|
||||
2026/05/23-00:40:56.663861 7fb04b7fe6c0 Manual compaction at level-0 from '!actors!mgne-comp-beguiled-noble' @ 72057594037927935 : 1 .. '!actors!null' @ 0 : 0; will stop at (end)
|
||||
2026/05/23-00:40:56.663903 7fb04b7fe6c0 Manual compaction at level-1 from '!actors!mgne-comp-beguiled-noble' @ 72057594037927935 : 1 .. '!actors!null' @ 0 : 0; will stop at '!actors!null' @ 34 : 1
|
||||
2026/05/23-00:40:56.663907 7fb04b7fe6c0 Compacting 1@1 + 1@2 files
|
||||
2026/05/23-00:40:56.667251 7fb04b7fe6c0 Generated table #43@1: 1 keys, 1984 bytes
|
||||
2026/05/23-00:40:56.667275 7fb04b7fe6c0 Compacted 1@1 + 1@2 files => 1984 bytes
|
||||
2026/05/23-00:40:56.674103 7fb04b7fe6c0 compacted to: files[ 0 0 2 0 0 0 0 ]
|
||||
2026/05/23-00:40:56.674353 7fb04b7fe6c0 Delete type=2 #38
|
||||
2026/05/23-00:40:56.674510 7fb04b7fe6c0 Delete type=2 #42
|
||||
2026/05/23-00:40:56.697306 7fb04b7fe6c0 Manual compaction at level-1 from '!actors!null' @ 34 : 1 .. '!actors!null' @ 0 : 0; will stop at (end)
|
||||
2026/05/23-08:39:02.020811 7fb058fed6c0 Recovering log #41
|
||||
2026/05/23-08:39:02.034588 7fb058fed6c0 Delete type=3 #39
|
||||
2026/05/23-08:39:02.034799 7fb058fed6c0 Delete type=0 #41
|
||||
2026/05/23-08:42:47.861136 7fb04b7fe6c0 Level-0 table #47: started
|
||||
2026/05/23-08:42:47.866967 7fb04b7fe6c0 Level-0 table #47: 4899 bytes OK
|
||||
2026/05/23-08:42:47.875441 7fb04b7fe6c0 Delete type=0 #45
|
||||
2026/05/23-08:42:47.890448 7fb04b7fe6c0 Manual compaction at level-0 from '!actors!mgne-comp-beguiled-noble' @ 72057594037927935 : 1 .. '!actors!null' @ 0 : 0; will stop at (end)
|
||||
2026/05/23-08:42:47.890591 7fb04b7fe6c0 Manual compaction at level-1 from '!actors!mgne-comp-beguiled-noble' @ 72057594037927935 : 1 .. '!actors!null' @ 0 : 0; will stop at '!actors!null' @ 38 : 1
|
||||
2026/05/23-08:42:47.890614 7fb04b7fe6c0 Compacting 1@1 + 1@2 files
|
||||
2026/05/23-08:42:47.895073 7fb04b7fe6c0 Generated table #48@1: 1 keys, 1984 bytes
|
||||
2026/05/23-08:42:47.895150 7fb04b7fe6c0 Compacted 1@1 + 1@2 files => 1984 bytes
|
||||
2026/05/23-08:42:47.902755 7fb04b7fe6c0 compacted to: files[ 0 0 2 0 0 0 0 ]
|
||||
2026/05/23-08:42:47.903327 7fb04b7fe6c0 Delete type=2 #43
|
||||
2026/05/23-08:42:47.903735 7fb04b7fe6c0 Delete type=2 #47
|
||||
2026/05/23-08:42:47.946588 7fb04b7fe6c0 Manual compaction at level-1 from '!actors!null' @ 38 : 1 .. '!actors!null' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000044
|
||||
MANIFEST-000049
|
||||
|
||||
+15
-15
@@ -1,15 +1,15 @@
|
||||
2026/05/23-08:39:01.993483 7fb0597ee6c0 Recovering log #41
|
||||
2026/05/23-08:39:02.008888 7fb0597ee6c0 Delete type=3 #39
|
||||
2026/05/23-08:39:02.009121 7fb0597ee6c0 Delete type=0 #41
|
||||
2026/05/23-08:42:47.845110 7fb04b7fe6c0 Level-0 table #47: started
|
||||
2026/05/23-08:42:47.852176 7fb04b7fe6c0 Level-0 table #47: 10404 bytes OK
|
||||
2026/05/23-08:42:47.860739 7fb04b7fe6c0 Delete type=0 #45
|
||||
2026/05/23-08:42:47.890409 7fb04b7fe6c0 Manual compaction at level-0 from '!items!mgne-feat-11' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at (end)
|
||||
2026/05/23-08:42:47.932141 7fb04b7fe6c0 Manual compaction at level-1 from '!items!mgne-feat-11' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at '!items!null' @ 326 : 1
|
||||
2026/05/23-08:42:47.932174 7fb04b7fe6c0 Compacting 1@1 + 1@2 files
|
||||
2026/05/23-08:42:47.936922 7fb04b7fe6c0 Generated table #48@1: 1 keys, 728 bytes
|
||||
2026/05/23-08:42:47.937033 7fb04b7fe6c0 Compacted 1@1 + 1@2 files => 728 bytes
|
||||
2026/05/23-08:42:47.945460 7fb04b7fe6c0 compacted to: files[ 0 0 2 0 0 0 0 ]
|
||||
2026/05/23-08:42:47.945901 7fb04b7fe6c0 Delete type=2 #43
|
||||
2026/05/23-08:42:47.946350 7fb04b7fe6c0 Delete type=2 #47
|
||||
2026/05/23-08:42:47.947124 7fb04b7fe6c0 Manual compaction at level-1 from '!items!null' @ 326 : 1 .. '!items!null' @ 0 : 0; will stop at (end)
|
||||
2026/05/23-09:14:18.046490 7fa280fff6c0 Recovering log #46
|
||||
2026/05/23-09:14:18.094345 7fa280fff6c0 Delete type=3 #44
|
||||
2026/05/23-09:14:18.094380 7fa280fff6c0 Delete type=0 #46
|
||||
2026/05/23-09:14:29.422029 7fa2327fc6c0 Level-0 table #52: started
|
||||
2026/05/23-09:14:29.425999 7fa2327fc6c0 Level-0 table #52: 10404 bytes OK
|
||||
2026/05/23-09:14:29.432298 7fa2327fc6c0 Delete type=0 #50
|
||||
2026/05/23-09:14:29.442387 7fa2327fc6c0 Manual compaction at level-0 from '!items!mgne-feat-11' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at (end)
|
||||
2026/05/23-09:14:29.442490 7fa2327fc6c0 Manual compaction at level-1 from '!items!mgne-feat-11' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at '!items!null' @ 362 : 1
|
||||
2026/05/23-09:14:29.442501 7fa2327fc6c0 Compacting 1@1 + 1@2 files
|
||||
2026/05/23-09:14:29.446332 7fa2327fc6c0 Generated table #53@1: 1 keys, 728 bytes
|
||||
2026/05/23-09:14:29.446350 7fa2327fc6c0 Compacted 1@1 + 1@2 files => 728 bytes
|
||||
2026/05/23-09:14:29.452219 7fa2327fc6c0 compacted to: files[ 0 0 2 0 0 0 0 ]
|
||||
2026/05/23-09:14:29.452435 7fa2327fc6c0 Delete type=2 #48
|
||||
2026/05/23-09:14:29.452537 7fa2327fc6c0 Delete type=2 #52
|
||||
2026/05/23-09:14:29.472198 7fa2327fc6c0 Manual compaction at level-1 from '!items!null' @ 362 : 1 .. '!items!null' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,15 +1,15 @@
|
||||
2026/05/22-23:16:00.088732 7fb058fed6c0 Recovering log #37
|
||||
2026/05/22-23:16:00.097993 7fb058fed6c0 Delete type=3 #35
|
||||
2026/05/22-23:16:00.098029 7fb058fed6c0 Delete type=0 #37
|
||||
2026/05/23-00:40:56.654001 7fb04b7fe6c0 Level-0 table #42: started
|
||||
2026/05/23-00:40:56.657365 7fb04b7fe6c0 Level-0 table #42: 10404 bytes OK
|
||||
2026/05/23-00:40:56.663780 7fb04b7fe6c0 Delete type=0 #40
|
||||
2026/05/23-00:40:56.674587 7fb04b7fe6c0 Manual compaction at level-0 from '!items!mgne-feat-11' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at (end)
|
||||
2026/05/23-00:40:56.697319 7fb04b7fe6c0 Manual compaction at level-1 from '!items!mgne-feat-11' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at '!items!null' @ 290 : 1
|
||||
2026/05/23-00:40:56.697323 7fb04b7fe6c0 Compacting 1@1 + 1@2 files
|
||||
2026/05/23-00:40:56.700728 7fb04b7fe6c0 Generated table #43@1: 1 keys, 728 bytes
|
||||
2026/05/23-00:40:56.700761 7fb04b7fe6c0 Compacted 1@1 + 1@2 files => 728 bytes
|
||||
2026/05/23-00:40:56.707096 7fb04b7fe6c0 compacted to: files[ 0 0 2 0 0 0 0 ]
|
||||
2026/05/23-00:40:56.707214 7fb04b7fe6c0 Delete type=2 #38
|
||||
2026/05/23-00:40:56.707310 7fb04b7fe6c0 Delete type=2 #42
|
||||
2026/05/23-00:40:56.717606 7fb04b7fe6c0 Manual compaction at level-1 from '!items!null' @ 290 : 1 .. '!items!null' @ 0 : 0; will stop at (end)
|
||||
2026/05/23-08:39:01.993483 7fb0597ee6c0 Recovering log #41
|
||||
2026/05/23-08:39:02.008888 7fb0597ee6c0 Delete type=3 #39
|
||||
2026/05/23-08:39:02.009121 7fb0597ee6c0 Delete type=0 #41
|
||||
2026/05/23-08:42:47.845110 7fb04b7fe6c0 Level-0 table #47: started
|
||||
2026/05/23-08:42:47.852176 7fb04b7fe6c0 Level-0 table #47: 10404 bytes OK
|
||||
2026/05/23-08:42:47.860739 7fb04b7fe6c0 Delete type=0 #45
|
||||
2026/05/23-08:42:47.890409 7fb04b7fe6c0 Manual compaction at level-0 from '!items!mgne-feat-11' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at (end)
|
||||
2026/05/23-08:42:47.932141 7fb04b7fe6c0 Manual compaction at level-1 from '!items!mgne-feat-11' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at '!items!null' @ 326 : 1
|
||||
2026/05/23-08:42:47.932174 7fb04b7fe6c0 Compacting 1@1 + 1@2 files
|
||||
2026/05/23-08:42:47.936922 7fb04b7fe6c0 Generated table #48@1: 1 keys, 728 bytes
|
||||
2026/05/23-08:42:47.937033 7fb04b7fe6c0 Compacted 1@1 + 1@2 files => 728 bytes
|
||||
2026/05/23-08:42:47.945460 7fb04b7fe6c0 compacted to: files[ 0 0 2 0 0 0 0 ]
|
||||
2026/05/23-08:42:47.945901 7fb04b7fe6c0 Delete type=2 #43
|
||||
2026/05/23-08:42:47.946350 7fb04b7fe6c0 Delete type=2 #47
|
||||
2026/05/23-08:42:47.947124 7fb04b7fe6c0 Manual compaction at level-1 from '!items!null' @ 326 : 1 .. '!items!null' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000046
|
||||
MANIFEST-000051
|
||||
|
||||
+15
-15
@@ -1,15 +1,15 @@
|
||||
2026/05/23-08:39:02.096363 7fb058fed6c0 Recovering log #43
|
||||
2026/05/23-08:39:02.110780 7fb058fed6c0 Delete type=3 #41
|
||||
2026/05/23-08:39:02.110962 7fb058fed6c0 Delete type=0 #43
|
||||
2026/05/23-08:42:47.957308 7fb04b7fe6c0 Level-0 table #49: started
|
||||
2026/05/23-08:42:47.965185 7fb04b7fe6c0 Level-0 table #49: 36427 bytes OK
|
||||
2026/05/23-08:42:47.973709 7fb04b7fe6c0 Delete type=0 #47
|
||||
2026/05/23-08:42:47.997266 7fb04b7fe6c0 Manual compaction at level-0 from '!tables!mgne-tbl-armor' @ 72057594037927935 : 1 .. '!tables.results!zJoz3QSaL4FJ8W0g' @ 0 : 0; will stop at (end)
|
||||
2026/05/23-08:42:47.997540 7fb04b7fe6c0 Manual compaction at level-1 from '!tables!mgne-tbl-armor' @ 72057594037927935 : 1 .. '!tables.results!zJoz3QSaL4FJ8W0g' @ 0 : 0; will stop at '!tables.results!zxz8aOYe1rfUsXfG' @ 3496 : 0
|
||||
2026/05/23-08:42:47.997565 7fb04b7fe6c0 Compacting 1@1 + 1@2 files
|
||||
2026/05/23-08:42:48.006520 7fb04b7fe6c0 Generated table #50@1: 436 keys, 40644 bytes
|
||||
2026/05/23-08:42:48.006615 7fb04b7fe6c0 Compacted 1@1 + 1@2 files => 40644 bytes
|
||||
2026/05/23-08:42:48.015030 7fb04b7fe6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2026/05/23-08:42:48.015433 7fb04b7fe6c0 Delete type=2 #45
|
||||
2026/05/23-08:42:48.015956 7fb04b7fe6c0 Delete type=2 #49
|
||||
2026/05/23-08:42:48.059083 7fb04b7fe6c0 Manual compaction at level-1 from '!tables.results!zxz8aOYe1rfUsXfG' @ 3496 : 0 .. '!tables.results!zJoz3QSaL4FJ8W0g' @ 0 : 0; will stop at (end)
|
||||
2026/05/23-09:14:18.265405 7fa233fff6c0 Recovering log #48
|
||||
2026/05/23-09:14:18.326477 7fa233fff6c0 Delete type=3 #46
|
||||
2026/05/23-09:14:18.326527 7fa233fff6c0 Delete type=0 #48
|
||||
2026/05/23-09:14:29.505997 7fa2327fc6c0 Level-0 table #54: started
|
||||
2026/05/23-09:14:29.509927 7fa2327fc6c0 Level-0 table #54: 36675 bytes OK
|
||||
2026/05/23-09:14:29.515715 7fa2327fc6c0 Delete type=0 #52
|
||||
2026/05/23-09:14:29.531937 7fa2327fc6c0 Manual compaction at level-0 from '!tables!mgne-tbl-armor' @ 72057594037927935 : 1 .. '!tables.results!zwMaXqqGkMK185le' @ 0 : 0; will stop at (end)
|
||||
2026/05/23-09:14:29.542535 7fa2327fc6c0 Manual compaction at level-1 from '!tables!mgne-tbl-armor' @ 72057594037927935 : 1 .. '!tables.results!zwMaXqqGkMK185le' @ 0 : 0; will stop at '!tables.results!zwMaXqqGkMK185le' @ 3951 : 1
|
||||
2026/05/23-09:14:29.542540 7fa2327fc6c0 Compacting 1@1 + 1@2 files
|
||||
2026/05/23-09:14:29.545905 7fa2327fc6c0 Generated table #55@1: 436 keys, 40186 bytes
|
||||
2026/05/23-09:14:29.545911 7fa2327fc6c0 Compacted 1@1 + 1@2 files => 40186 bytes
|
||||
2026/05/23-09:14:29.552396 7fa2327fc6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2026/05/23-09:14:29.552418 7fa2327fc6c0 Delete type=2 #50
|
||||
2026/05/23-09:14:29.552455 7fa2327fc6c0 Delete type=2 #54
|
||||
2026/05/23-09:14:29.558584 7fa2327fc6c0 Manual compaction at level-1 from '!tables.results!zwMaXqqGkMK185le' @ 3951 : 1 .. '!tables.results!zwMaXqqGkMK185le' @ 0 : 0; will stop at (end)
|
||||
|
||||
+15
-15
@@ -1,15 +1,15 @@
|
||||
2026/05/22-23:16:00.142864 7fb059fef6c0 Recovering log #38
|
||||
2026/05/22-23:16:00.152440 7fb059fef6c0 Delete type=3 #36
|
||||
2026/05/22-23:16:00.152474 7fb059fef6c0 Delete type=0 #38
|
||||
2026/05/23-00:40:56.707364 7fb04b7fe6c0 Level-0 table #44: started
|
||||
2026/05/23-00:40:56.710586 7fb04b7fe6c0 Level-0 table #44: 36225 bytes OK
|
||||
2026/05/23-00:40:56.717497 7fb04b7fe6c0 Delete type=0 #42
|
||||
2026/05/23-00:40:56.724196 7fb04b7fe6c0 Manual compaction at level-0 from '!tables!mgne-tbl-armor' @ 72057594037927935 : 1 .. '!tables.results!zxz8aOYe1rfUsXfG' @ 0 : 0; will stop at (end)
|
||||
2026/05/23-00:40:56.743395 7fb04b7fe6c0 Manual compaction at level-1 from '!tables!mgne-tbl-armor' @ 72057594037927935 : 1 .. '!tables.results!zxz8aOYe1rfUsXfG' @ 0 : 0; will stop at '!tables.results!zxz8aOYe1rfUsXfG' @ 3136 : 1
|
||||
2026/05/23-00:40:56.743406 7fb04b7fe6c0 Compacting 1@1 + 1@2 files
|
||||
2026/05/23-00:40:56.747706 7fb04b7fe6c0 Generated table #45@1: 436 keys, 40336 bytes
|
||||
2026/05/23-00:40:56.747718 7fb04b7fe6c0 Compacted 1@1 + 1@2 files => 40336 bytes
|
||||
2026/05/23-00:40:56.754998 7fb04b7fe6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2026/05/23-00:40:56.755053 7fb04b7fe6c0 Delete type=2 #40
|
||||
2026/05/23-00:40:56.755135 7fb04b7fe6c0 Delete type=2 #44
|
||||
2026/05/23-00:40:56.755198 7fb04b7fe6c0 Manual compaction at level-1 from '!tables.results!zxz8aOYe1rfUsXfG' @ 3136 : 1 .. '!tables.results!zxz8aOYe1rfUsXfG' @ 0 : 0; will stop at (end)
|
||||
2026/05/23-08:39:02.096363 7fb058fed6c0 Recovering log #43
|
||||
2026/05/23-08:39:02.110780 7fb058fed6c0 Delete type=3 #41
|
||||
2026/05/23-08:39:02.110962 7fb058fed6c0 Delete type=0 #43
|
||||
2026/05/23-08:42:47.957308 7fb04b7fe6c0 Level-0 table #49: started
|
||||
2026/05/23-08:42:47.965185 7fb04b7fe6c0 Level-0 table #49: 36427 bytes OK
|
||||
2026/05/23-08:42:47.973709 7fb04b7fe6c0 Delete type=0 #47
|
||||
2026/05/23-08:42:47.997266 7fb04b7fe6c0 Manual compaction at level-0 from '!tables!mgne-tbl-armor' @ 72057594037927935 : 1 .. '!tables.results!zJoz3QSaL4FJ8W0g' @ 0 : 0; will stop at (end)
|
||||
2026/05/23-08:42:47.997540 7fb04b7fe6c0 Manual compaction at level-1 from '!tables!mgne-tbl-armor' @ 72057594037927935 : 1 .. '!tables.results!zJoz3QSaL4FJ8W0g' @ 0 : 0; will stop at '!tables.results!zxz8aOYe1rfUsXfG' @ 3496 : 0
|
||||
2026/05/23-08:42:47.997565 7fb04b7fe6c0 Compacting 1@1 + 1@2 files
|
||||
2026/05/23-08:42:48.006520 7fb04b7fe6c0 Generated table #50@1: 436 keys, 40644 bytes
|
||||
2026/05/23-08:42:48.006615 7fb04b7fe6c0 Compacted 1@1 + 1@2 files => 40644 bytes
|
||||
2026/05/23-08:42:48.015030 7fb04b7fe6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2026/05/23-08:42:48.015433 7fb04b7fe6c0 Delete type=2 #45
|
||||
2026/05/23-08:42:48.015956 7fb04b7fe6c0 Delete type=2 #49
|
||||
2026/05/23-08:42:48.059083 7fb04b7fe6c0 Manual compaction at level-1 from '!tables.results!zxz8aOYe1rfUsXfG' @ 3496 : 0 .. '!tables.results!zJoz3QSaL4FJ8W0g' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000044
|
||||
MANIFEST-000049
|
||||
|
||||
@@ -1,15 +1,15 @@
|
||||
2026/05/23-08:39:01.965876 7fb058fed6c0 Recovering log #41
|
||||
2026/05/23-08:39:01.980863 7fb058fed6c0 Delete type=3 #39
|
||||
2026/05/23-08:39:01.981110 7fb058fed6c0 Delete type=0 #41
|
||||
2026/05/23-08:42:47.824361 7fb04b7fe6c0 Level-0 table #47: started
|
||||
2026/05/23-08:42:47.833284 7fb04b7fe6c0 Level-0 table #47: 7117 bytes OK
|
||||
2026/05/23-08:42:47.844689 7fb04b7fe6c0 Delete type=0 #45
|
||||
2026/05/23-08:42:47.890347 7fb04b7fe6c0 Manual compaction at level-0 from '!items!mgne-res-accelerate' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at (end)
|
||||
2026/05/23-08:42:47.903963 7fb04b7fe6c0 Manual compaction at level-1 from '!items!mgne-res-accelerate' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at '!items!null' @ 182 : 1
|
||||
2026/05/23-08:42:47.903996 7fb04b7fe6c0 Compacting 1@1 + 1@2 files
|
||||
2026/05/23-08:42:47.908345 7fb04b7fe6c0 Generated table #48@1: 1 keys, 910 bytes
|
||||
2026/05/23-08:42:47.908426 7fb04b7fe6c0 Compacted 1@1 + 1@2 files => 910 bytes
|
||||
2026/05/23-08:42:47.917015 7fb04b7fe6c0 compacted to: files[ 0 0 2 0 0 0 0 ]
|
||||
2026/05/23-08:42:47.917368 7fb04b7fe6c0 Delete type=2 #43
|
||||
2026/05/23-08:42:47.917768 7fb04b7fe6c0 Delete type=2 #47
|
||||
2026/05/23-08:42:47.946653 7fb04b7fe6c0 Manual compaction at level-1 from '!items!null' @ 182 : 1 .. '!items!null' @ 0 : 0; will stop at (end)
|
||||
2026/05/23-09:14:17.972244 7fa233fff6c0 Recovering log #46
|
||||
2026/05/23-09:14:18.043435 7fa233fff6c0 Delete type=3 #44
|
||||
2026/05/23-09:14:18.043484 7fa233fff6c0 Delete type=0 #46
|
||||
2026/05/23-09:14:29.403449 7fa2327fc6c0 Level-0 table #52: started
|
||||
2026/05/23-09:14:29.407852 7fa2327fc6c0 Level-0 table #52: 7117 bytes OK
|
||||
2026/05/23-09:14:29.415465 7fa2327fc6c0 Delete type=0 #50
|
||||
2026/05/23-09:14:29.442366 7fa2327fc6c0 Manual compaction at level-0 from '!items!mgne-res-accelerate' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at (end)
|
||||
2026/05/23-09:14:29.452607 7fa2327fc6c0 Manual compaction at level-1 from '!items!mgne-res-accelerate' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at '!items!null' @ 202 : 1
|
||||
2026/05/23-09:14:29.452614 7fa2327fc6c0 Compacting 1@1 + 1@2 files
|
||||
2026/05/23-09:14:29.455643 7fa2327fc6c0 Generated table #53@1: 1 keys, 910 bytes
|
||||
2026/05/23-09:14:29.455657 7fa2327fc6c0 Compacted 1@1 + 1@2 files => 910 bytes
|
||||
2026/05/23-09:14:29.462788 7fa2327fc6c0 compacted to: files[ 0 0 2 0 0 0 0 ]
|
||||
2026/05/23-09:14:29.462843 7fa2327fc6c0 Delete type=2 #48
|
||||
2026/05/23-09:14:29.462930 7fa2327fc6c0 Delete type=2 #52
|
||||
2026/05/23-09:14:29.472208 7fa2327fc6c0 Manual compaction at level-1 from '!items!null' @ 202 : 1 .. '!items!null' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,15 +1,15 @@
|
||||
2026/05/22-23:16:00.073959 7fb04bfff6c0 Recovering log #37
|
||||
2026/05/22-23:16:00.084734 7fb04bfff6c0 Delete type=3 #35
|
||||
2026/05/22-23:16:00.084795 7fb04bfff6c0 Delete type=0 #37
|
||||
2026/05/23-00:40:56.632712 7fb04b7fe6c0 Level-0 table #42: started
|
||||
2026/05/23-00:40:56.636231 7fb04b7fe6c0 Level-0 table #42: 7117 bytes OK
|
||||
2026/05/23-00:40:56.642660 7fb04b7fe6c0 Delete type=0 #40
|
||||
2026/05/23-00:40:56.663871 7fb04b7fe6c0 Manual compaction at level-0 from '!items!mgne-res-accelerate' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at (end)
|
||||
2026/05/23-00:40:56.687211 7fb04b7fe6c0 Manual compaction at level-1 from '!items!mgne-res-accelerate' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at '!items!null' @ 162 : 1
|
||||
2026/05/23-00:40:56.687221 7fb04b7fe6c0 Compacting 1@1 + 1@2 files
|
||||
2026/05/23-00:40:56.690620 7fb04b7fe6c0 Generated table #43@1: 1 keys, 910 bytes
|
||||
2026/05/23-00:40:56.690650 7fb04b7fe6c0 Compacted 1@1 + 1@2 files => 910 bytes
|
||||
2026/05/23-00:40:56.697098 7fb04b7fe6c0 compacted to: files[ 0 0 2 0 0 0 0 ]
|
||||
2026/05/23-00:40:56.697173 7fb04b7fe6c0 Delete type=2 #38
|
||||
2026/05/23-00:40:56.697261 7fb04b7fe6c0 Delete type=2 #42
|
||||
2026/05/23-00:40:56.717596 7fb04b7fe6c0 Manual compaction at level-1 from '!items!null' @ 162 : 1 .. '!items!null' @ 0 : 0; will stop at (end)
|
||||
2026/05/23-08:39:01.965876 7fb058fed6c0 Recovering log #41
|
||||
2026/05/23-08:39:01.980863 7fb058fed6c0 Delete type=3 #39
|
||||
2026/05/23-08:39:01.981110 7fb058fed6c0 Delete type=0 #41
|
||||
2026/05/23-08:42:47.824361 7fb04b7fe6c0 Level-0 table #47: started
|
||||
2026/05/23-08:42:47.833284 7fb04b7fe6c0 Level-0 table #47: 7117 bytes OK
|
||||
2026/05/23-08:42:47.844689 7fb04b7fe6c0 Delete type=0 #45
|
||||
2026/05/23-08:42:47.890347 7fb04b7fe6c0 Manual compaction at level-0 from '!items!mgne-res-accelerate' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at (end)
|
||||
2026/05/23-08:42:47.903963 7fb04b7fe6c0 Manual compaction at level-1 from '!items!mgne-res-accelerate' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at '!items!null' @ 182 : 1
|
||||
2026/05/23-08:42:47.903996 7fb04b7fe6c0 Compacting 1@1 + 1@2 files
|
||||
2026/05/23-08:42:47.908345 7fb04b7fe6c0 Generated table #48@1: 1 keys, 910 bytes
|
||||
2026/05/23-08:42:47.908426 7fb04b7fe6c0 Compacted 1@1 + 1@2 files => 910 bytes
|
||||
2026/05/23-08:42:47.917015 7fb04b7fe6c0 compacted to: files[ 0 0 2 0 0 0 0 ]
|
||||
2026/05/23-08:42:47.917368 7fb04b7fe6c0 Delete type=2 #43
|
||||
2026/05/23-08:42:47.917768 7fb04b7fe6c0 Delete type=2 #47
|
||||
2026/05/23-08:42:47.946653 7fb04b7fe6c0 Manual compaction at level-1 from '!items!null' @ 182 : 1 .. '!items!null' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000044
|
||||
MANIFEST-000049
|
||||
|
||||
+15
-15
@@ -1,15 +1,15 @@
|
||||
2026/05/23-08:39:02.046509 7fb058fed6c0 Recovering log #41
|
||||
2026/05/23-08:39:02.061764 7fb058fed6c0 Delete type=3 #39
|
||||
2026/05/23-08:39:02.061947 7fb058fed6c0 Delete type=0 #41
|
||||
2026/05/23-08:42:47.875902 7fb04b7fe6c0 Level-0 table #47: started
|
||||
2026/05/23-08:42:47.880995 7fb04b7fe6c0 Level-0 table #47: 1965 bytes OK
|
||||
2026/05/23-08:42:47.889814 7fb04b7fe6c0 Delete type=0 #45
|
||||
2026/05/23-08:42:47.890538 7fb04b7fe6c0 Manual compaction at level-0 from '!items!mgne-wpn-club' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at (end)
|
||||
2026/05/23-08:42:47.918010 7fb04b7fe6c0 Manual compaction at level-1 from '!items!mgne-wpn-club' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at '!items!null' @ 110 : 1
|
||||
2026/05/23-08:42:47.918042 7fb04b7fe6c0 Compacting 1@1 + 1@2 files
|
||||
2026/05/23-08:42:47.923207 7fb04b7fe6c0 Generated table #48@1: 1 keys, 626 bytes
|
||||
2026/05/23-08:42:47.923291 7fb04b7fe6c0 Compacted 1@1 + 1@2 files => 626 bytes
|
||||
2026/05/23-08:42:47.931259 7fb04b7fe6c0 compacted to: files[ 0 0 2 0 0 0 0 ]
|
||||
2026/05/23-08:42:47.931577 7fb04b7fe6c0 Delete type=2 #43
|
||||
2026/05/23-08:42:47.931935 7fb04b7fe6c0 Delete type=2 #47
|
||||
2026/05/23-08:42:47.946721 7fb04b7fe6c0 Manual compaction at level-1 from '!items!null' @ 110 : 1 .. '!items!null' @ 0 : 0; will stop at (end)
|
||||
2026/05/23-09:14:18.149804 7fa232ffd6c0 Recovering log #46
|
||||
2026/05/23-09:14:18.206384 7fa232ffd6c0 Delete type=3 #44
|
||||
2026/05/23-09:14:18.206431 7fa232ffd6c0 Delete type=0 #46
|
||||
2026/05/23-09:14:29.495692 7fa2327fc6c0 Level-0 table #52: started
|
||||
2026/05/23-09:14:29.499223 7fa2327fc6c0 Level-0 table #52: 1965 bytes OK
|
||||
2026/05/23-09:14:29.505900 7fa2327fc6c0 Delete type=0 #50
|
||||
2026/05/23-09:14:29.531922 7fa2327fc6c0 Manual compaction at level-0 from '!items!mgne-wpn-club' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at (end)
|
||||
2026/05/23-09:14:29.531955 7fa2327fc6c0 Manual compaction at level-1 from '!items!mgne-wpn-club' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at '!items!null' @ 122 : 1
|
||||
2026/05/23-09:14:29.531958 7fa2327fc6c0 Compacting 1@1 + 1@2 files
|
||||
2026/05/23-09:14:29.535486 7fa2327fc6c0 Generated table #53@1: 1 keys, 626 bytes
|
||||
2026/05/23-09:14:29.535507 7fa2327fc6c0 Compacted 1@1 + 1@2 files => 626 bytes
|
||||
2026/05/23-09:14:29.542419 7fa2327fc6c0 compacted to: files[ 0 0 2 0 0 0 0 ]
|
||||
2026/05/23-09:14:29.542458 7fa2327fc6c0 Delete type=2 #48
|
||||
2026/05/23-09:14:29.542504 7fa2327fc6c0 Delete type=2 #52
|
||||
2026/05/23-09:14:29.558566 7fa2327fc6c0 Manual compaction at level-1 from '!items!null' @ 122 : 1 .. '!items!null' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,15 +1,15 @@
|
||||
2026/05/22-23:16:00.118275 7fb058fed6c0 Recovering log #37
|
||||
2026/05/22-23:16:00.128502 7fb058fed6c0 Delete type=3 #35
|
||||
2026/05/22-23:16:00.128547 7fb058fed6c0 Delete type=0 #37
|
||||
2026/05/23-00:40:56.724203 7fb04b7fe6c0 Level-0 table #42: started
|
||||
2026/05/23-00:40:56.727216 7fb04b7fe6c0 Level-0 table #42: 1965 bytes OK
|
||||
2026/05/23-00:40:56.733795 7fb04b7fe6c0 Delete type=0 #40
|
||||
2026/05/23-00:40:56.755185 7fb04b7fe6c0 Manual compaction at level-0 from '!items!mgne-wpn-club' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at (end)
|
||||
2026/05/23-00:40:56.771176 7fb04b7fe6c0 Manual compaction at level-1 from '!items!mgne-wpn-club' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at '!items!null' @ 98 : 1
|
||||
2026/05/23-00:40:56.771180 7fb04b7fe6c0 Compacting 1@1 + 1@2 files
|
||||
2026/05/23-00:40:56.774447 7fb04b7fe6c0 Generated table #43@1: 1 keys, 626 bytes
|
||||
2026/05/23-00:40:56.774457 7fb04b7fe6c0 Compacted 1@1 + 1@2 files => 626 bytes
|
||||
2026/05/23-00:40:56.780345 7fb04b7fe6c0 compacted to: files[ 0 0 2 0 0 0 0 ]
|
||||
2026/05/23-00:40:56.780395 7fb04b7fe6c0 Delete type=2 #38
|
||||
2026/05/23-00:40:56.780500 7fb04b7fe6c0 Delete type=2 #42
|
||||
2026/05/23-00:40:56.787369 7fb04b7fe6c0 Manual compaction at level-1 from '!items!null' @ 98 : 1 .. '!items!null' @ 0 : 0; will stop at (end)
|
||||
2026/05/23-08:39:02.046509 7fb058fed6c0 Recovering log #41
|
||||
2026/05/23-08:39:02.061764 7fb058fed6c0 Delete type=3 #39
|
||||
2026/05/23-08:39:02.061947 7fb058fed6c0 Delete type=0 #41
|
||||
2026/05/23-08:42:47.875902 7fb04b7fe6c0 Level-0 table #47: started
|
||||
2026/05/23-08:42:47.880995 7fb04b7fe6c0 Level-0 table #47: 1965 bytes OK
|
||||
2026/05/23-08:42:47.889814 7fb04b7fe6c0 Delete type=0 #45
|
||||
2026/05/23-08:42:47.890538 7fb04b7fe6c0 Manual compaction at level-0 from '!items!mgne-wpn-club' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at (end)
|
||||
2026/05/23-08:42:47.918010 7fb04b7fe6c0 Manual compaction at level-1 from '!items!mgne-wpn-club' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at '!items!null' @ 110 : 1
|
||||
2026/05/23-08:42:47.918042 7fb04b7fe6c0 Compacting 1@1 + 1@2 files
|
||||
2026/05/23-08:42:47.923207 7fb04b7fe6c0 Generated table #48@1: 1 keys, 626 bytes
|
||||
2026/05/23-08:42:47.923291 7fb04b7fe6c0 Compacted 1@1 + 1@2 files => 626 bytes
|
||||
2026/05/23-08:42:47.931259 7fb04b7fe6c0 compacted to: files[ 0 0 2 0 0 0 0 ]
|
||||
2026/05/23-08:42:47.931577 7fb04b7fe6c0 Delete type=2 #43
|
||||
2026/05/23-08:42:47.931935 7fb04b7fe6c0 Delete type=2 #47
|
||||
2026/05/23-08:42:47.946721 7fb04b7fe6c0 Manual compaction at level-1 from '!items!null' @ 110 : 1 .. '!items!null' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user