Compare commits
5 Commits
1afb1d0769
...
13.1.1
| Author | SHA1 | Date | |
|---|---|---|---|
| a04032e002 | |||
| 896fa512b5 | |||
| e7504d0ecb | |||
| ea6f267f8f | |||
| cfda525f7c |
1
.gitignore
vendored
1
.gitignore
vendored
@@ -1,3 +1,4 @@
|
|||||||
.history/
|
.history/
|
||||||
node_modules/
|
node_modules/
|
||||||
packs/_source/
|
packs/_source/
|
||||||
|
.github/
|
||||||
|
|||||||
@@ -2682,3 +2682,19 @@ ul, li {
|
|||||||
opacity: 0.9;
|
opacity: 0.9;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Fix: item-controls toujours visibles dans le tab combat (armures, boucliers) */
|
||||||
|
.fvtt-yggdrasill .sheet-body[data-tab="combat"] .item.flexrow {
|
||||||
|
flex-wrap: nowrap;
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
|
.item-controls {
|
||||||
|
display: flex !important;
|
||||||
|
visibility: visible !important;
|
||||||
|
opacity: 1 !important;
|
||||||
|
position: static !important;
|
||||||
|
flex: 0 0 auto;
|
||||||
|
align-items: center;
|
||||||
|
gap: 0.25rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
@@ -75,7 +75,7 @@ export default class YggdrasillPersonnageSheet extends YggdrasillActorSheet {
|
|||||||
}
|
}
|
||||||
|
|
||||||
context.optionsBase = {}
|
context.optionsBase = {}
|
||||||
for (let i = 0; i <= 5; i++) {
|
for (let i = 0; i <= 10; i++) {
|
||||||
context.optionsBase[i] = i.toString()
|
context.optionsBase[i] = i.toString()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -93,6 +93,18 @@ export class YggdrasillRollDialog {
|
|||||||
$("#srTotal").text(rollData.srTotal)
|
$("#srTotal").text(rollData.srTotal)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Pour armes : mettre à jour l'effet affiché quand le type d'attaque change
|
||||||
|
if (rollData.mode === "armecc" || rollData.mode === "armetir" || rollData.mode === "armedist") {
|
||||||
|
$("#typeAttack").on("change", () => {
|
||||||
|
rollData.attackDef = rollData.attackDef || {}
|
||||||
|
rollData.attackDef.typeAttack = $("#typeAttack").val()
|
||||||
|
this._updateAttackData(rollData, actor)
|
||||||
|
$("#attackDescr").text(rollData.attackData.description || "")
|
||||||
|
$("#caracName").text(`${rollData.attackData.categName || ""} / ${rollData.attackData.caracName || ""}`)
|
||||||
|
$("#malus").text(rollData.attackData.malus ?? 0)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
// Pour Sejdr: recalculer srTotal quand DM change
|
// Pour Sejdr: recalculer srTotal quand DM change
|
||||||
if (rollData.mode === "sejdr") {
|
if (rollData.mode === "sejdr") {
|
||||||
@@ -223,19 +235,20 @@ export class YggdrasillRollDialog {
|
|||||||
* @private
|
* @private
|
||||||
*/
|
*/
|
||||||
static _updateAttackData(rollData, actor) {
|
static _updateAttackData(rollData, actor) {
|
||||||
const config = game.system.yggdrasill.config
|
|
||||||
const attackType = rollData.attackDef.typeAttack
|
const attackType = rollData.attackDef.typeAttack
|
||||||
const attackMode = config.attackMode?.[attackType]
|
|
||||||
|
let attackData
|
||||||
if (attackMode) {
|
if (rollData.mode === "armecc") {
|
||||||
rollData.attackData = rollData.attackData || {}
|
attackData = actor.getAttaqueData(attackType)
|
||||||
rollData.attackData.categName = attackMode.categName
|
} else {
|
||||||
rollData.attackData.caracName = attackMode.caracName
|
attackData = actor.getTirData(attackType)
|
||||||
rollData.attackData.malus = this._computeValue(attackMode.malus, actor)
|
}
|
||||||
rollData.attackData.bonusdegats = this._computeValue(attackMode.bonusdegats, actor)
|
|
||||||
rollData.attackData.protection = this._computeValue(attackMode.protection, actor)
|
if (attackData) {
|
||||||
rollData.attackData.label = attackMode.label
|
rollData.attackDef = { ...rollData.attackDef, ...attackData }
|
||||||
rollData.attackData.description = attackMode.description
|
rollData.attackData = { ...rollData.attackDef }
|
||||||
|
// Mettre à jour la caractéristique utilisée pour le jet (nbDice)
|
||||||
|
rollData.selectedCarac = attackData.carac
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ export default class ArmureDataModel extends foundry.abstract.TypeDataModel {
|
|||||||
return {
|
return {
|
||||||
categorie: new fields.StringField({ initial: "" }),
|
categorie: new fields.StringField({ initial: "" }),
|
||||||
equipe: new fields.BooleanField({ initial: false }),
|
equipe: new fields.BooleanField({ initial: false }),
|
||||||
protection: new fields.StringField({ initial: "" }),
|
protection: new fields.NumberField({ initial: 0, integer: true }),
|
||||||
enc: new fields.NumberField({ initial: 0, integer: true }),
|
enc: new fields.NumberField({ initial: 0, integer: true }),
|
||||||
valeur: new fields.NumberField({ initial: 0, integer: true }),
|
valeur: new fields.NumberField({ initial: 0, integer: true }),
|
||||||
description: new fields.HTMLField({ initial: "" })
|
description: new fields.HTMLField({ initial: "" })
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ export class YggdrasillActorSheet extends foundry.appv1.sheets.ActorSheet {
|
|||||||
|
|
||||||
return foundry.utils.mergeObject(super.defaultOptions, {
|
return foundry.utils.mergeObject(super.defaultOptions, {
|
||||||
classes: ["yggdrasill", "sheet", "actor"],
|
classes: ["yggdrasill", "sheet", "actor"],
|
||||||
template: "systems/fvtt-yggdrasill/templates/actor-sheet.html",
|
template: "systems/fvtt-yggdrasill/templates/actor-personnage-sheet.hbs",
|
||||||
width: 680,
|
width: 680,
|
||||||
height: 740,
|
height: 740,
|
||||||
tabs: [{ navSelector: ".sheet-tabs", contentSelector: ".sheet-body", initial: "stats" }],
|
tabs: [{ navSelector: ".sheet-tabs", contentSelector: ".sheet-body", initial: "stats" }],
|
||||||
|
|||||||
@@ -597,18 +597,19 @@ export class YggdrasillActor extends Actor {
|
|||||||
let attackData = foundry.utils.duplicate(attackMode[mode]);
|
let attackData = foundry.utils.duplicate(attackMode[mode]);
|
||||||
if ( attackData){
|
if ( attackData){
|
||||||
attackData.mode = mode;
|
attackData.mode = mode;
|
||||||
attackData.carac = foundry.utils.duplicate(this.system.carac[attackData.categName].carac[attackData.caracName]);
|
const categ = this.system.carac[attackData.categName];
|
||||||
|
attackData.carac = foundry.utils.duplicate(categ?.carac[attackData.caracName] ?? {});
|
||||||
if ( attackData.malus != 0) {
|
if ( attackData.malus != 0) {
|
||||||
let malusTab = attackData.malus.split(';');
|
let malusTab = attackData.malus.split(';');
|
||||||
attackData.malus = this.system.carac[attackData.categName].carac[malusTab[0]].value * Number(malusTab[1])
|
attackData.malus = (categ?.carac[malusTab[0]]?.value ?? 0) * Number(malusTab[1]);
|
||||||
}
|
}
|
||||||
if ( attackData.protection != 0) {
|
if ( attackData.protection != 0) {
|
||||||
let malusTab = attackData.protection.split(';');
|
let malusTab = attackData.protection.split(';');
|
||||||
attackData.protection = this.system.carac[attackData.categName].carac[malusTab[0]].value * Number(malusTab[1])
|
attackData.protection = (categ?.carac[malusTab[0]]?.value ?? 0) * Number(malusTab[1]);
|
||||||
}
|
}
|
||||||
if ( attackData.bonusdegats != 0) {
|
if ( attackData.bonusdegats != 0) {
|
||||||
let malusTab = attackData.bonusdegats.split(';');
|
let malusTab = attackData.bonusdegats.split(';');
|
||||||
attackData.bonusdegats = this.system.carac[attackData.categName].carac[malusTab[0]].value * Number(malusTab[1])
|
attackData.bonusdegats = (categ?.carac[malusTab[0]]?.value ?? 0) * Number(malusTab[1]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return attackData;
|
return attackData;
|
||||||
@@ -619,18 +620,19 @@ export class YggdrasillActor extends Actor {
|
|||||||
let attackData = foundry.utils.duplicate( tirMode[mode] );
|
let attackData = foundry.utils.duplicate( tirMode[mode] );
|
||||||
if ( attackData){
|
if ( attackData){
|
||||||
attackData.mode = mode;
|
attackData.mode = mode;
|
||||||
attackData.carac = foundry.utils.duplicate(this.system.carac[attackData.categName].carac[attackData.caracName]);
|
const categ = this.system.carac[attackData.categName];
|
||||||
|
attackData.carac = foundry.utils.duplicate(categ?.carac[attackData.caracName] ?? {});
|
||||||
if ( attackData.malus != 0) {
|
if ( attackData.malus != 0) {
|
||||||
let malusTab = attackData.malus.split(';');
|
let malusTab = attackData.malus.split(';');
|
||||||
attackData.malus = this.system.carac[attackData.categName].carac[malusTab[0]].value * Number(malusTab[1])
|
attackData.malus = (categ?.carac[malusTab[0]]?.value ?? 0) * Number(malusTab[1]);
|
||||||
}
|
}
|
||||||
if ( attackData.protection != 0) {
|
if ( attackData.protection != 0) {
|
||||||
let malusTab = attackData.protection.split(';');
|
let malusTab = attackData.protection.split(';');
|
||||||
attackData.protection = this.system.carac[attackData.categName].carac[malusTab[0]].value * Number(malusTab[1])
|
attackData.protection = (categ?.carac[malusTab[0]]?.value ?? 0) * Number(malusTab[1]);
|
||||||
}
|
}
|
||||||
if ( attackData.bonusdegats != 0) {
|
if ( attackData.bonusdegats != 0) {
|
||||||
let malusTab = attackData.bonusdegats.split(';');
|
let malusTab = attackData.bonusdegats.split(';');
|
||||||
attackData.bonusdegats = this.system.carac[attackData.categName].carac[malusTab[0]].value * Number(malusTab[1])
|
attackData.bonusdegats = (categ?.carac[malusTab[0]]?.value ?? 0) * Number(malusTab[1]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return attackData;
|
return attackData;
|
||||||
@@ -730,13 +732,13 @@ export class YggdrasillActor extends Actor {
|
|||||||
for( let item of this.items) {
|
for( let item of this.items) {
|
||||||
if (item.type == "equipement" || item.type == "armecc"
|
if (item.type == "equipement" || item.type == "armecc"
|
||||||
|| item.type == "armedist" || item.type == "armure" || item.type == "monnaie" || item.type == "bouclier") {
|
|| item.type == "armedist" || item.type == "armure" || item.type == "monnaie" || item.type == "bouclier") {
|
||||||
encTotal += (item.system.enc * item.system.quantite);
|
encTotal += (item.system.enc * (item.system.quantite || 1));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
for( let item of this.items) {
|
for( let item of this.items) {
|
||||||
if (item.type == "bouclier" && item.system.equipe) {
|
if (item.type == "bouclier" && item.system.equipe) {
|
||||||
encTotal -= (item.system.enc * item.system.quantite);
|
encTotal -= (item.system.enc * (item.system.quantite || 1));
|
||||||
encTotal += (item.system.enccomb * item.system.quantite);
|
encTotal += (item.system.enccomb * (item.system.quantite || 1));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return encTotal;
|
return encTotal;
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ export class YggdrasillCombat extends Combat {
|
|||||||
/* -------------------------------------------- */
|
/* -------------------------------------------- */
|
||||||
async rollInitiative(ids, formula = undefined, messageOptions = {} ) {
|
async rollInitiative(ids, formula = undefined, messageOptions = {} ) {
|
||||||
ids = typeof ids === "string" ? [ids] : ids;
|
ids = typeof ids === "string" ? [ids] : ids;
|
||||||
const currentId = this.combatant._id;
|
const currentId = this.combatant?.id;
|
||||||
for (let cId = 0; cId < ids.length; cId++) {
|
for (let cId = 0; cId < ids.length; cId++) {
|
||||||
const c = this.combatants.get(ids[cId]);
|
const c = this.combatants.get(ids[cId]);
|
||||||
let initBonus = c.actor ? c.actor.getInitiativeScore() : 0;
|
let initBonus = c.actor ? c.actor.getInitiativeScore() : 0;
|
||||||
@@ -17,7 +17,7 @@ export class YggdrasillCombat extends Combat {
|
|||||||
}
|
}
|
||||||
if (roll.total <= 0) roll.total = 0;
|
if (roll.total <= 0) roll.total = 0;
|
||||||
//console.log("Compute init for", roll.total);
|
//console.log("Compute init for", roll.total);
|
||||||
let id = c._id || c.id;
|
let id = c.id;
|
||||||
await this.updateEmbeddedDocuments("Combatant", [{ _id: id, initiative: roll.total }]);
|
await this.updateEmbeddedDocuments("Combatant", [{ _id: id, initiative: roll.total }]);
|
||||||
|
|
||||||
// Send a chat message
|
// Send a chat message
|
||||||
@@ -25,9 +25,9 @@ export class YggdrasillCombat extends Combat {
|
|||||||
let messageData = foundry.utils.mergeObject(
|
let messageData = foundry.utils.mergeObject(
|
||||||
{
|
{
|
||||||
speaker: {
|
speaker: {
|
||||||
scene: canvas.scene._id,
|
scene: canvas.scene.id,
|
||||||
actor: c.actor ? c.actor._id : null,
|
actor: c.actor ? c.actor.id : null,
|
||||||
token: c.token._id,
|
token: c.token.id,
|
||||||
alias: c.token.name,
|
alias: c.token.name,
|
||||||
sound: CONFIG.sounds.dice,
|
sound: CONFIG.sounds.dice,
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -137,7 +137,7 @@ Hooks.once("ready", function () {
|
|||||||
ui.notifications.info("Attention ! Vous n'est connecté à aucun personnage");
|
ui.notifications.info("Attention ! Vous n'est connecté à aucun personnage");
|
||||||
ChatMessage.create({
|
ChatMessage.create({
|
||||||
content: "<b>WARNING</b> Le joueur " + game.user.name + " n'est pas connecté à un personnage !",
|
content: "<b>WARNING</b> Le joueur " + game.user.name + " n'est pas connecté à un personnage !",
|
||||||
user: game.user._id
|
user: game.user.id
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ export class YggdrasillUtility {
|
|||||||
static async preloadHandlebarsTemplates() {
|
static async preloadHandlebarsTemplates() {
|
||||||
|
|
||||||
const templatePaths = [
|
const templatePaths = [
|
||||||
'systems/fvtt-yggdrasill/templates/actor-sheet.html',
|
'systems/fvtt-yggdrasill/templates/actor-personnage-sheet.hbs',
|
||||||
'systems/fvtt-yggdrasill/templates/editor-notes-gm.html'
|
'systems/fvtt-yggdrasill/templates/editor-notes-gm.html'
|
||||||
]
|
]
|
||||||
return foundry.applications.handlebars.loadTemplates(templatePaths);
|
return foundry.applications.handlebars.loadTemplates(templatePaths);
|
||||||
@@ -162,7 +162,7 @@ export class YggdrasillUtility {
|
|||||||
|
|
||||||
/* -------------------------------------------- */
|
/* -------------------------------------------- */
|
||||||
static async rollYggdrasill( rollData ) {
|
static async rollYggdrasill( rollData ) {
|
||||||
let sumDice = ( rollData.isEpuise | rollData.isMeurtri) ? 1 : 2;
|
let sumDice = ( rollData.isEpuise || rollData.isMeurtri) ? 1 : 2;
|
||||||
|
|
||||||
// Init stuff
|
// Init stuff
|
||||||
let isCritical = false;
|
let isCritical = false;
|
||||||
@@ -283,7 +283,7 @@ export class YggdrasillUtility {
|
|||||||
|
|
||||||
/* -------------------------------------------- */
|
/* -------------------------------------------- */
|
||||||
static getUsers(filter) {
|
static getUsers(filter) {
|
||||||
return game.users.filter(filter).map(user => user.system._id);
|
return game.users.filter(filter).map(user => user.id);
|
||||||
}
|
}
|
||||||
/* -------------------------------------------- */
|
/* -------------------------------------------- */
|
||||||
static getWhisperRecipients(rollMode, name) {
|
static getWhisperRecipients(rollMode, name) {
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
MANIFEST-000049
|
MANIFEST-000053
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
2026/01/11-22:38:18.324856 7fd4637fe6c0 Recovering log #47
|
2026/01/11-22:42:43.362261 7fd478fff6c0 Recovering log #51
|
||||||
2026/01/11-22:38:18.334440 7fd4637fe6c0 Delete type=3 #45
|
2026/01/11-22:42:43.390767 7fd478fff6c0 Delete type=0 #51
|
||||||
2026/01/11-22:38:18.334494 7fd4637fe6c0 Delete type=0 #47
|
2026/01/11-22:42:43.398607 7fd478fff6c0 Delete type=3 #49
|
||||||
2026/01/11-22:39:21.508921 7fd4627fc6c0 Level-0 table #52: started
|
2026/01/11-22:44:34.484930 7fd4627fc6c0 Level-0 table #56: started
|
||||||
2026/01/11-22:39:21.508963 7fd4627fc6c0 Level-0 table #52: 0 bytes OK
|
2026/01/11-22:44:34.484958 7fd4627fc6c0 Level-0 table #56: 0 bytes OK
|
||||||
2026/01/11-22:39:21.514976 7fd4627fc6c0 Delete type=0 #50
|
2026/01/11-22:44:34.491990 7fd4627fc6c0 Delete type=0 #54
|
||||||
2026/01/11-22:39:21.515163 7fd4627fc6c0 Manual compaction at level-0 from '!items!3VBHojfjdD504ibv' @ 72057594037927935 : 1 .. '!items!x3aMYeKa73GxJ1Ge' @ 0 : 0; will stop at (end)
|
2026/01/11-22:44:34.498603 7fd4627fc6c0 Manual compaction at level-0 from '!items!3VBHojfjdD504ibv' @ 72057594037927935 : 1 .. '!items!x3aMYeKa73GxJ1Ge' @ 0 : 0; will stop at (end)
|
||||||
2026/01/11-22:39:21.515223 7fd4627fc6c0 Manual compaction at level-1 from '!items!3VBHojfjdD504ibv' @ 72057594037927935 : 1 .. '!items!x3aMYeKa73GxJ1Ge' @ 0 : 0; will stop at (end)
|
2026/01/11-22:44:34.498641 7fd4627fc6c0 Manual compaction at level-1 from '!items!3VBHojfjdD504ibv' @ 72057594037927935 : 1 .. '!items!x3aMYeKa73GxJ1Ge' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
2026/01/10-23:11:15.534956 7fd478fff6c0 Recovering log #43
|
2026/01/11-22:38:18.324856 7fd4637fe6c0 Recovering log #47
|
||||||
2026/01/10-23:11:15.588401 7fd478fff6c0 Delete type=3 #41
|
2026/01/11-22:38:18.334440 7fd4637fe6c0 Delete type=3 #45
|
||||||
2026/01/10-23:11:15.588486 7fd478fff6c0 Delete type=0 #43
|
2026/01/11-22:38:18.334494 7fd4637fe6c0 Delete type=0 #47
|
||||||
2026/01/11-22:24:56.958843 7fd4627fc6c0 Level-0 table #48: started
|
2026/01/11-22:39:21.508921 7fd4627fc6c0 Level-0 table #52: started
|
||||||
2026/01/11-22:24:56.958872 7fd4627fc6c0 Level-0 table #48: 0 bytes OK
|
2026/01/11-22:39:21.508963 7fd4627fc6c0 Level-0 table #52: 0 bytes OK
|
||||||
2026/01/11-22:24:57.022608 7fd4627fc6c0 Delete type=0 #46
|
2026/01/11-22:39:21.514976 7fd4627fc6c0 Delete type=0 #50
|
||||||
2026/01/11-22:24:57.022770 7fd4627fc6c0 Manual compaction at level-0 from '!items!3VBHojfjdD504ibv' @ 72057594037927935 : 1 .. '!items!x3aMYeKa73GxJ1Ge' @ 0 : 0; will stop at (end)
|
2026/01/11-22:39:21.515163 7fd4627fc6c0 Manual compaction at level-0 from '!items!3VBHojfjdD504ibv' @ 72057594037927935 : 1 .. '!items!x3aMYeKa73GxJ1Ge' @ 0 : 0; will stop at (end)
|
||||||
2026/01/11-22:24:57.022811 7fd4627fc6c0 Manual compaction at level-1 from '!items!3VBHojfjdD504ibv' @ 72057594037927935 : 1 .. '!items!x3aMYeKa73GxJ1Ge' @ 0 : 0; will stop at (end)
|
2026/01/11-22:39:21.515223 7fd4627fc6c0 Manual compaction at level-1 from '!items!3VBHojfjdD504ibv' @ 72057594037927935 : 1 .. '!items!x3aMYeKa73GxJ1Ge' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-000049
|
MANIFEST-000053
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
2026/01/11-22:38:18.336786 7fd462ffd6c0 Recovering log #47
|
2026/01/11-22:42:43.415431 7fd4637fe6c0 Recovering log #51
|
||||||
2026/01/11-22:38:18.346917 7fd462ffd6c0 Delete type=3 #45
|
2026/01/11-22:42:43.448752 7fd4637fe6c0 Delete type=0 #51
|
||||||
2026/01/11-22:38:18.347006 7fd462ffd6c0 Delete type=0 #47
|
2026/01/11-22:42:43.448972 7fd4637fe6c0 Delete type=3 #49
|
||||||
2026/01/11-22:39:21.528136 7fd4627fc6c0 Level-0 table #52: started
|
2026/01/11-22:44:34.511453 7fd4627fc6c0 Level-0 table #56: started
|
||||||
2026/01/11-22:39:21.528192 7fd4627fc6c0 Level-0 table #52: 0 bytes OK
|
2026/01/11-22:44:34.511476 7fd4627fc6c0 Level-0 table #56: 0 bytes OK
|
||||||
2026/01/11-22:39:21.534692 7fd4627fc6c0 Delete type=0 #50
|
2026/01/11-22:44:34.517400 7fd4627fc6c0 Delete type=0 #54
|
||||||
2026/01/11-22:39:21.541091 7fd4627fc6c0 Manual compaction at level-0 from '!items!4YGPuZ813BWQaNbq' @ 72057594037927935 : 1 .. '!items!qUXBrstsh5Oo8FEx' @ 0 : 0; will stop at (end)
|
2026/01/11-22:44:34.523930 7fd4627fc6c0 Manual compaction at level-0 from '!items!4YGPuZ813BWQaNbq' @ 72057594037927935 : 1 .. '!items!qUXBrstsh5Oo8FEx' @ 0 : 0; will stop at (end)
|
||||||
2026/01/11-22:39:21.541131 7fd4627fc6c0 Manual compaction at level-1 from '!items!4YGPuZ813BWQaNbq' @ 72057594037927935 : 1 .. '!items!qUXBrstsh5Oo8FEx' @ 0 : 0; will stop at (end)
|
2026/01/11-22:44:34.523965 7fd4627fc6c0 Manual compaction at level-1 from '!items!4YGPuZ813BWQaNbq' @ 72057594037927935 : 1 .. '!items!qUXBrstsh5Oo8FEx' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
2026/01/10-23:11:15.590605 7fd4637fe6c0 Recovering log #43
|
2026/01/11-22:38:18.336786 7fd462ffd6c0 Recovering log #47
|
||||||
2026/01/10-23:11:15.651052 7fd4637fe6c0 Delete type=3 #41
|
2026/01/11-22:38:18.346917 7fd462ffd6c0 Delete type=3 #45
|
||||||
2026/01/10-23:11:15.651127 7fd4637fe6c0 Delete type=0 #43
|
2026/01/11-22:38:18.347006 7fd462ffd6c0 Delete type=0 #47
|
||||||
2026/01/11-22:24:57.022896 7fd4627fc6c0 Level-0 table #48: started
|
2026/01/11-22:39:21.528136 7fd4627fc6c0 Level-0 table #52: started
|
||||||
2026/01/11-22:24:57.022927 7fd4627fc6c0 Level-0 table #48: 0 bytes OK
|
2026/01/11-22:39:21.528192 7fd4627fc6c0 Level-0 table #52: 0 bytes OK
|
||||||
2026/01/11-22:24:57.068574 7fd4627fc6c0 Delete type=0 #46
|
2026/01/11-22:39:21.534692 7fd4627fc6c0 Delete type=0 #50
|
||||||
2026/01/11-22:24:57.175347 7fd4627fc6c0 Manual compaction at level-0 from '!items!4YGPuZ813BWQaNbq' @ 72057594037927935 : 1 .. '!items!qUXBrstsh5Oo8FEx' @ 0 : 0; will stop at (end)
|
2026/01/11-22:39:21.541091 7fd4627fc6c0 Manual compaction at level-0 from '!items!4YGPuZ813BWQaNbq' @ 72057594037927935 : 1 .. '!items!qUXBrstsh5Oo8FEx' @ 0 : 0; will stop at (end)
|
||||||
2026/01/11-22:24:57.175395 7fd4627fc6c0 Manual compaction at level-1 from '!items!4YGPuZ813BWQaNbq' @ 72057594037927935 : 1 .. '!items!qUXBrstsh5Oo8FEx' @ 0 : 0; will stop at (end)
|
2026/01/11-22:39:21.541131 7fd4627fc6c0 Manual compaction at level-1 from '!items!4YGPuZ813BWQaNbq' @ 72057594037927935 : 1 .. '!items!qUXBrstsh5Oo8FEx' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-000049
|
MANIFEST-000053
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
2026/01/11-22:38:18.312395 7fd463fff6c0 Recovering log #47
|
2026/01/11-22:42:43.343711 7fd478fff6c0 Recovering log #51
|
||||||
2026/01/11-22:38:18.322989 7fd463fff6c0 Delete type=3 #45
|
2026/01/11-22:42:43.360165 7fd478fff6c0 Delete type=0 #51
|
||||||
2026/01/11-22:38:18.323061 7fd463fff6c0 Delete type=0 #47
|
2026/01/11-22:42:43.360231 7fd478fff6c0 Delete type=3 #49
|
||||||
2026/01/11-22:39:21.501777 7fd4627fc6c0 Level-0 table #52: started
|
2026/01/11-22:44:34.492077 7fd4627fc6c0 Level-0 table #56: started
|
||||||
2026/01/11-22:39:21.501807 7fd4627fc6c0 Level-0 table #52: 0 bytes OK
|
2026/01/11-22:44:34.492100 7fd4627fc6c0 Level-0 table #56: 0 bytes OK
|
||||||
2026/01/11-22:39:21.508771 7fd4627fc6c0 Delete type=0 #50
|
2026/01/11-22:44:34.498484 7fd4627fc6c0 Delete type=0 #54
|
||||||
2026/01/11-22:39:21.515149 7fd4627fc6c0 Manual compaction at level-0 from '!items!4rM9IvDuijsjbAhI' @ 72057594037927935 : 1 .. '!items!swTZ43FJRWkqjR75' @ 0 : 0; will stop at (end)
|
2026/01/11-22:44:34.498613 7fd4627fc6c0 Manual compaction at level-0 from '!items!4rM9IvDuijsjbAhI' @ 72057594037927935 : 1 .. '!items!swTZ43FJRWkqjR75' @ 0 : 0; will stop at (end)
|
||||||
2026/01/11-22:39:21.515211 7fd4627fc6c0 Manual compaction at level-1 from '!items!4rM9IvDuijsjbAhI' @ 72057594037927935 : 1 .. '!items!swTZ43FJRWkqjR75' @ 0 : 0; will stop at (end)
|
2026/01/11-22:44:34.498635 7fd4627fc6c0 Manual compaction at level-1 from '!items!4rM9IvDuijsjbAhI' @ 72057594037927935 : 1 .. '!items!swTZ43FJRWkqjR75' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
2026/01/10-23:11:15.481460 7fd463fff6c0 Recovering log #43
|
2026/01/11-22:38:18.312395 7fd463fff6c0 Recovering log #47
|
||||||
2026/01/10-23:11:15.532751 7fd463fff6c0 Delete type=3 #41
|
2026/01/11-22:38:18.322989 7fd463fff6c0 Delete type=3 #45
|
||||||
2026/01/10-23:11:15.532810 7fd463fff6c0 Delete type=0 #43
|
2026/01/11-22:38:18.323061 7fd463fff6c0 Delete type=0 #47
|
||||||
2026/01/11-22:24:56.893350 7fd4627fc6c0 Level-0 table #48: started
|
2026/01/11-22:39:21.501777 7fd4627fc6c0 Level-0 table #52: started
|
||||||
2026/01/11-22:24:56.893388 7fd4627fc6c0 Level-0 table #48: 0 bytes OK
|
2026/01/11-22:39:21.501807 7fd4627fc6c0 Level-0 table #52: 0 bytes OK
|
||||||
2026/01/11-22:24:56.958710 7fd4627fc6c0 Delete type=0 #46
|
2026/01/11-22:39:21.508771 7fd4627fc6c0 Delete type=0 #50
|
||||||
2026/01/11-22:24:57.022759 7fd4627fc6c0 Manual compaction at level-0 from '!items!4rM9IvDuijsjbAhI' @ 72057594037927935 : 1 .. '!items!swTZ43FJRWkqjR75' @ 0 : 0; will stop at (end)
|
2026/01/11-22:39:21.515149 7fd4627fc6c0 Manual compaction at level-0 from '!items!4rM9IvDuijsjbAhI' @ 72057594037927935 : 1 .. '!items!swTZ43FJRWkqjR75' @ 0 : 0; will stop at (end)
|
||||||
2026/01/11-22:24:57.022800 7fd4627fc6c0 Manual compaction at level-1 from '!items!4rM9IvDuijsjbAhI' @ 72057594037927935 : 1 .. '!items!swTZ43FJRWkqjR75' @ 0 : 0; will stop at (end)
|
2026/01/11-22:39:21.515211 7fd4627fc6c0 Manual compaction at level-1 from '!items!4rM9IvDuijsjbAhI' @ 72057594037927935 : 1 .. '!items!swTZ43FJRWkqjR75' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-000049
|
MANIFEST-000053
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
2026/01/11-22:38:18.238976 7fd4637fe6c0 Recovering log #47
|
2026/01/11-22:42:43.240973 7fd463fff6c0 Recovering log #51
|
||||||
2026/01/11-22:38:18.249505 7fd4637fe6c0 Delete type=3 #45
|
2026/01/11-22:42:43.255834 7fd463fff6c0 Delete type=0 #51
|
||||||
2026/01/11-22:38:18.249563 7fd4637fe6c0 Delete type=0 #47
|
2026/01/11-22:42:43.255892 7fd463fff6c0 Delete type=3 #49
|
||||||
2026/01/11-22:39:21.489412 7fd4627fc6c0 Level-0 table #52: started
|
2026/01/11-22:44:34.459907 7fd4627fc6c0 Level-0 table #56: started
|
||||||
2026/01/11-22:39:21.489449 7fd4627fc6c0 Level-0 table #52: 0 bytes OK
|
2026/01/11-22:44:34.459930 7fd4627fc6c0 Level-0 table #56: 0 bytes OK
|
||||||
2026/01/11-22:39:21.495431 7fd4627fc6c0 Delete type=0 #50
|
2026/01/11-22:44:34.466013 7fd4627fc6c0 Delete type=0 #54
|
||||||
2026/01/11-22:39:21.515115 7fd4627fc6c0 Manual compaction at level-0 from '!items!26CQEICWZs8Gw4Xi' @ 72057594037927935 : 1 .. '!items!ylqZMDyXujUlSorr' @ 0 : 0; will stop at (end)
|
2026/01/11-22:44:34.472607 7fd4627fc6c0 Manual compaction at level-0 from '!items!26CQEICWZs8Gw4Xi' @ 72057594037927935 : 1 .. '!items!ylqZMDyXujUlSorr' @ 0 : 0; will stop at (end)
|
||||||
2026/01/11-22:39:21.515177 7fd4627fc6c0 Manual compaction at level-1 from '!items!26CQEICWZs8Gw4Xi' @ 72057594037927935 : 1 .. '!items!ylqZMDyXujUlSorr' @ 0 : 0; will stop at (end)
|
2026/01/11-22:44:34.472642 7fd4627fc6c0 Manual compaction at level-1 from '!items!26CQEICWZs8Gw4Xi' @ 72057594037927935 : 1 .. '!items!ylqZMDyXujUlSorr' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
2026/01/10-23:11:15.082653 7fd4637fe6c0 Recovering log #43
|
2026/01/11-22:38:18.238976 7fd4637fe6c0 Recovering log #47
|
||||||
2026/01/10-23:11:15.150829 7fd4637fe6c0 Delete type=3 #41
|
2026/01/11-22:38:18.249505 7fd4637fe6c0 Delete type=3 #45
|
||||||
2026/01/10-23:11:15.150897 7fd4637fe6c0 Delete type=0 #43
|
2026/01/11-22:38:18.249563 7fd4637fe6c0 Delete type=0 #47
|
||||||
2026/01/11-22:24:56.587172 7fd4627fc6c0 Level-0 table #48: started
|
2026/01/11-22:39:21.489412 7fd4627fc6c0 Level-0 table #52: started
|
||||||
2026/01/11-22:24:56.587208 7fd4627fc6c0 Level-0 table #48: 0 bytes OK
|
2026/01/11-22:39:21.489449 7fd4627fc6c0 Level-0 table #52: 0 bytes OK
|
||||||
2026/01/11-22:24:56.640280 7fd4627fc6c0 Delete type=0 #46
|
2026/01/11-22:39:21.495431 7fd4627fc6c0 Delete type=0 #50
|
||||||
2026/01/11-22:24:56.769281 7fd4627fc6c0 Manual compaction at level-0 from '!items!26CQEICWZs8Gw4Xi' @ 72057594037927935 : 1 .. '!items!ylqZMDyXujUlSorr' @ 0 : 0; will stop at (end)
|
2026/01/11-22:39:21.515115 7fd4627fc6c0 Manual compaction at level-0 from '!items!26CQEICWZs8Gw4Xi' @ 72057594037927935 : 1 .. '!items!ylqZMDyXujUlSorr' @ 0 : 0; will stop at (end)
|
||||||
2026/01/11-22:24:56.769318 7fd4627fc6c0 Manual compaction at level-1 from '!items!26CQEICWZs8Gw4Xi' @ 72057594037927935 : 1 .. '!items!ylqZMDyXujUlSorr' @ 0 : 0; will stop at (end)
|
2026/01/11-22:39:21.515177 7fd4627fc6c0 Manual compaction at level-1 from '!items!26CQEICWZs8Gw4Xi' @ 72057594037927935 : 1 .. '!items!ylqZMDyXujUlSorr' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-000049
|
MANIFEST-000053
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
2026/01/11-22:38:18.263695 7fd462ffd6c0 Recovering log #47
|
2026/01/11-22:42:43.275614 7fd478fff6c0 Recovering log #51
|
||||||
2026/01/11-22:38:18.273321 7fd462ffd6c0 Delete type=3 #45
|
2026/01/11-22:42:43.291244 7fd478fff6c0 Delete type=0 #51
|
||||||
2026/01/11-22:38:18.273380 7fd462ffd6c0 Delete type=0 #47
|
2026/01/11-22:42:43.291308 7fd478fff6c0 Delete type=3 #49
|
||||||
2026/01/11-22:39:21.475468 7fd4627fc6c0 Level-0 table #52: started
|
2026/01/11-22:44:34.447688 7fd4627fc6c0 Level-0 table #56: started
|
||||||
2026/01/11-22:39:21.475500 7fd4627fc6c0 Level-0 table #52: 0 bytes OK
|
2026/01/11-22:44:34.447757 7fd4627fc6c0 Level-0 table #56: 0 bytes OK
|
||||||
2026/01/11-22:39:21.482505 7fd4627fc6c0 Delete type=0 #50
|
2026/01/11-22:44:34.453835 7fd4627fc6c0 Delete type=0 #54
|
||||||
2026/01/11-22:39:21.489246 7fd4627fc6c0 Manual compaction at level-0 from '!items!RAhkadJOfEnVBLpy' @ 72057594037927935 : 1 .. '!items!mIBiTKqfqiiepeyz' @ 0 : 0; will stop at (end)
|
2026/01/11-22:44:34.472578 7fd4627fc6c0 Manual compaction at level-0 from '!items!RAhkadJOfEnVBLpy' @ 72057594037927935 : 1 .. '!items!mIBiTKqfqiiepeyz' @ 0 : 0; will stop at (end)
|
||||||
2026/01/11-22:39:21.489296 7fd4627fc6c0 Manual compaction at level-1 from '!items!RAhkadJOfEnVBLpy' @ 72057594037927935 : 1 .. '!items!mIBiTKqfqiiepeyz' @ 0 : 0; will stop at (end)
|
2026/01/11-22:44:34.472629 7fd4627fc6c0 Manual compaction at level-1 from '!items!RAhkadJOfEnVBLpy' @ 72057594037927935 : 1 .. '!items!mIBiTKqfqiiepeyz' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
2026/01/10-23:11:15.230349 7fd463fff6c0 Recovering log #43
|
2026/01/11-22:38:18.263695 7fd462ffd6c0 Recovering log #47
|
||||||
2026/01/10-23:11:15.289420 7fd463fff6c0 Delete type=3 #41
|
2026/01/11-22:38:18.273321 7fd462ffd6c0 Delete type=3 #45
|
||||||
2026/01/10-23:11:15.289495 7fd463fff6c0 Delete type=0 #43
|
2026/01/11-22:38:18.273380 7fd462ffd6c0 Delete type=0 #47
|
||||||
2026/01/11-22:24:56.831880 7fd4627fc6c0 Level-0 table #48: started
|
2026/01/11-22:39:21.475468 7fd4627fc6c0 Level-0 table #52: started
|
||||||
2026/01/11-22:24:56.831912 7fd4627fc6c0 Level-0 table #48: 0 bytes OK
|
2026/01/11-22:39:21.475500 7fd4627fc6c0 Level-0 table #52: 0 bytes OK
|
||||||
2026/01/11-22:24:56.893147 7fd4627fc6c0 Delete type=0 #46
|
2026/01/11-22:39:21.482505 7fd4627fc6c0 Delete type=0 #50
|
||||||
2026/01/11-22:24:57.022746 7fd4627fc6c0 Manual compaction at level-0 from '!items!RAhkadJOfEnVBLpy' @ 72057594037927935 : 1 .. '!items!mIBiTKqfqiiepeyz' @ 0 : 0; will stop at (end)
|
2026/01/11-22:39:21.489246 7fd4627fc6c0 Manual compaction at level-0 from '!items!RAhkadJOfEnVBLpy' @ 72057594037927935 : 1 .. '!items!mIBiTKqfqiiepeyz' @ 0 : 0; will stop at (end)
|
||||||
2026/01/11-22:24:57.022788 7fd4627fc6c0 Manual compaction at level-1 from '!items!RAhkadJOfEnVBLpy' @ 72057594037927935 : 1 .. '!items!mIBiTKqfqiiepeyz' @ 0 : 0; will stop at (end)
|
2026/01/11-22:39:21.489296 7fd4627fc6c0 Manual compaction at level-1 from '!items!RAhkadJOfEnVBLpy' @ 72057594037927935 : 1 .. '!items!mIBiTKqfqiiepeyz' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-000049
|
MANIFEST-000053
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
2026/01/11-22:38:18.251489 7fd478fff6c0 Recovering log #47
|
2026/01/11-22:42:43.257983 7fd4637fe6c0 Recovering log #51
|
||||||
2026/01/11-22:38:18.261390 7fd478fff6c0 Delete type=3 #45
|
2026/01/11-22:42:43.273297 7fd4637fe6c0 Delete type=0 #51
|
||||||
2026/01/11-22:38:18.261445 7fd478fff6c0 Delete type=0 #47
|
2026/01/11-22:42:43.273355 7fd4637fe6c0 Delete type=3 #49
|
||||||
2026/01/11-22:39:21.463016 7fd4627fc6c0 Level-0 table #52: started
|
2026/01/11-22:44:34.466106 7fd4627fc6c0 Level-0 table #56: started
|
||||||
2026/01/11-22:39:21.463081 7fd4627fc6c0 Level-0 table #52: 0 bytes OK
|
2026/01/11-22:44:34.466129 7fd4627fc6c0 Level-0 table #56: 0 bytes OK
|
||||||
2026/01/11-22:39:21.469148 7fd4627fc6c0 Delete type=0 #50
|
2026/01/11-22:44:34.472447 7fd4627fc6c0 Delete type=0 #54
|
||||||
2026/01/11-22:39:21.489211 7fd4627fc6c0 Manual compaction at level-0 from '!items!6IqVsJsYPrbxUJZX' @ 72057594037927935 : 1 .. '!items!mJSWXawEGARKlNja' @ 0 : 0; will stop at (end)
|
2026/01/11-22:44:34.472618 7fd4627fc6c0 Manual compaction at level-0 from '!items!6IqVsJsYPrbxUJZX' @ 72057594037927935 : 1 .. '!items!mJSWXawEGARKlNja' @ 0 : 0; will stop at (end)
|
||||||
2026/01/11-22:39:21.489274 7fd4627fc6c0 Manual compaction at level-1 from '!items!6IqVsJsYPrbxUJZX' @ 72057594037927935 : 1 .. '!items!mJSWXawEGARKlNja' @ 0 : 0; will stop at (end)
|
2026/01/11-22:44:34.472649 7fd4627fc6c0 Manual compaction at level-1 from '!items!6IqVsJsYPrbxUJZX' @ 72057594037927935 : 1 .. '!items!mJSWXawEGARKlNja' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
2026/01/10-23:11:15.153190 7fd478fff6c0 Recovering log #43
|
2026/01/11-22:38:18.251489 7fd478fff6c0 Recovering log #47
|
||||||
2026/01/10-23:11:15.227932 7fd478fff6c0 Delete type=3 #41
|
2026/01/11-22:38:18.261390 7fd478fff6c0 Delete type=3 #45
|
||||||
2026/01/10-23:11:15.227994 7fd478fff6c0 Delete type=0 #43
|
2026/01/11-22:38:18.261445 7fd478fff6c0 Delete type=0 #47
|
||||||
2026/01/11-22:24:56.530051 7fd4627fc6c0 Level-0 table #48: started
|
2026/01/11-22:39:21.463016 7fd4627fc6c0 Level-0 table #52: started
|
||||||
2026/01/11-22:24:56.530093 7fd4627fc6c0 Level-0 table #48: 0 bytes OK
|
2026/01/11-22:39:21.463081 7fd4627fc6c0 Level-0 table #52: 0 bytes OK
|
||||||
2026/01/11-22:24:56.587073 7fd4627fc6c0 Delete type=0 #46
|
2026/01/11-22:39:21.469148 7fd4627fc6c0 Delete type=0 #50
|
||||||
2026/01/11-22:24:56.769266 7fd4627fc6c0 Manual compaction at level-0 from '!items!6IqVsJsYPrbxUJZX' @ 72057594037927935 : 1 .. '!items!mJSWXawEGARKlNja' @ 0 : 0; will stop at (end)
|
2026/01/11-22:39:21.489211 7fd4627fc6c0 Manual compaction at level-0 from '!items!6IqVsJsYPrbxUJZX' @ 72057594037927935 : 1 .. '!items!mJSWXawEGARKlNja' @ 0 : 0; will stop at (end)
|
||||||
2026/01/11-22:24:56.769333 7fd4627fc6c0 Manual compaction at level-1 from '!items!6IqVsJsYPrbxUJZX' @ 72057594037927935 : 1 .. '!items!mJSWXawEGARKlNja' @ 0 : 0; will stop at (end)
|
2026/01/11-22:39:21.489274 7fd4627fc6c0 Manual compaction at level-1 from '!items!6IqVsJsYPrbxUJZX' @ 72057594037927935 : 1 .. '!items!mJSWXawEGARKlNja' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-000049
|
MANIFEST-000053
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
2026/01/11-22:38:18.288420 7fd478fff6c0 Recovering log #47
|
2026/01/11-22:42:43.309910 7fd4637fe6c0 Recovering log #51
|
||||||
2026/01/11-22:38:18.298405 7fd478fff6c0 Delete type=3 #45
|
2026/01/11-22:42:43.324839 7fd4637fe6c0 Delete type=0 #51
|
||||||
2026/01/11-22:38:18.298472 7fd478fff6c0 Delete type=0 #47
|
2026/01/11-22:42:43.324904 7fd4637fe6c0 Delete type=3 #49
|
||||||
2026/01/11-22:39:21.469291 7fd4627fc6c0 Level-0 table #52: started
|
2026/01/11-22:44:34.472762 7fd4627fc6c0 Level-0 table #56: started
|
||||||
2026/01/11-22:39:21.469324 7fd4627fc6c0 Level-0 table #52: 0 bytes OK
|
2026/01/11-22:44:34.472789 7fd4627fc6c0 Level-0 table #56: 0 bytes OK
|
||||||
2026/01/11-22:39:21.475328 7fd4627fc6c0 Delete type=0 #50
|
2026/01/11-22:44:34.478766 7fd4627fc6c0 Delete type=0 #54
|
||||||
2026/01/11-22:39:21.489231 7fd4627fc6c0 Manual compaction at level-0 from '!items!1EVz9C1fDUBafPHj' @ 72057594037927935 : 1 .. '!items!wnIXKyfqCWT0r4iT' @ 0 : 0; will stop at (end)
|
2026/01/11-22:44:34.498581 7fd4627fc6c0 Manual compaction at level-0 from '!items!1EVz9C1fDUBafPHj' @ 72057594037927935 : 1 .. '!items!wnIXKyfqCWT0r4iT' @ 0 : 0; will stop at (end)
|
||||||
2026/01/11-22:39:21.489285 7fd4627fc6c0 Manual compaction at level-1 from '!items!1EVz9C1fDUBafPHj' @ 72057594037927935 : 1 .. '!items!wnIXKyfqCWT0r4iT' @ 0 : 0; will stop at (end)
|
2026/01/11-22:44:34.498620 7fd4627fc6c0 Manual compaction at level-1 from '!items!1EVz9C1fDUBafPHj' @ 72057594037927935 : 1 .. '!items!wnIXKyfqCWT0r4iT' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
2026/01/10-23:11:15.350218 7fd4637fe6c0 Recovering log #43
|
2026/01/11-22:38:18.288420 7fd478fff6c0 Recovering log #47
|
||||||
2026/01/10-23:11:15.412029 7fd4637fe6c0 Delete type=3 #41
|
2026/01/11-22:38:18.298405 7fd478fff6c0 Delete type=3 #45
|
||||||
2026/01/10-23:11:15.412130 7fd4637fe6c0 Delete type=0 #43
|
2026/01/11-22:38:18.298472 7fd478fff6c0 Delete type=0 #47
|
||||||
2026/01/11-22:24:56.705345 7fd4627fc6c0 Level-0 table #48: started
|
2026/01/11-22:39:21.469291 7fd4627fc6c0 Level-0 table #52: started
|
||||||
2026/01/11-22:24:56.705375 7fd4627fc6c0 Level-0 table #48: 0 bytes OK
|
2026/01/11-22:39:21.469324 7fd4627fc6c0 Level-0 table #52: 0 bytes OK
|
||||||
2026/01/11-22:24:56.769105 7fd4627fc6c0 Delete type=0 #46
|
2026/01/11-22:39:21.475328 7fd4627fc6c0 Delete type=0 #50
|
||||||
2026/01/11-22:24:56.769305 7fd4627fc6c0 Manual compaction at level-0 from '!items!1EVz9C1fDUBafPHj' @ 72057594037927935 : 1 .. '!items!wnIXKyfqCWT0r4iT' @ 0 : 0; will stop at (end)
|
2026/01/11-22:39:21.489231 7fd4627fc6c0 Manual compaction at level-0 from '!items!1EVz9C1fDUBafPHj' @ 72057594037927935 : 1 .. '!items!wnIXKyfqCWT0r4iT' @ 0 : 0; will stop at (end)
|
||||||
2026/01/11-22:24:56.769351 7fd4627fc6c0 Manual compaction at level-1 from '!items!1EVz9C1fDUBafPHj' @ 72057594037927935 : 1 .. '!items!wnIXKyfqCWT0r4iT' @ 0 : 0; will stop at (end)
|
2026/01/11-22:39:21.489285 7fd4627fc6c0 Manual compaction at level-1 from '!items!1EVz9C1fDUBafPHj' @ 72057594037927935 : 1 .. '!items!wnIXKyfqCWT0r4iT' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-000049
|
MANIFEST-000053
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
2026/01/11-22:38:18.479236 7fd463fff6c0 Recovering log #47
|
2026/01/11-22:42:44.393696 7fd463fff6c0 Recovering log #51
|
||||||
2026/01/11-22:38:18.489180 7fd463fff6c0 Delete type=3 #45
|
2026/01/11-22:42:44.416426 7fd463fff6c0 Delete type=0 #51
|
||||||
2026/01/11-22:38:18.489248 7fd463fff6c0 Delete type=0 #47
|
2026/01/11-22:42:44.416529 7fd463fff6c0 Delete type=3 #49
|
||||||
2026/01/11-22:39:21.573677 7fd4627fc6c0 Level-0 table #52: started
|
2026/01/11-22:44:34.564109 7fd4627fc6c0 Level-0 table #56: started
|
||||||
2026/01/11-22:39:21.573703 7fd4627fc6c0 Level-0 table #52: 0 bytes OK
|
2026/01/11-22:44:34.564140 7fd4627fc6c0 Level-0 table #56: 0 bytes OK
|
||||||
2026/01/11-22:39:21.580176 7fd4627fc6c0 Delete type=0 #50
|
2026/01/11-22:44:34.570255 7fd4627fc6c0 Delete type=0 #54
|
||||||
2026/01/11-22:39:21.593747 7fd4627fc6c0 Manual compaction at level-0 from '!items!0tELaPFZgkeTUeVn' @ 72057594037927935 : 1 .. '!items!zC0kHoqZ9lkQFgI6' @ 0 : 0; will stop at (end)
|
2026/01/11-22:44:34.577526 7fd4627fc6c0 Manual compaction at level-0 from '!items!0tELaPFZgkeTUeVn' @ 72057594037927935 : 1 .. '!items!zC0kHoqZ9lkQFgI6' @ 0 : 0; will stop at (end)
|
||||||
2026/01/11-22:39:21.593789 7fd4627fc6c0 Manual compaction at level-1 from '!items!0tELaPFZgkeTUeVn' @ 72057594037927935 : 1 .. '!items!zC0kHoqZ9lkQFgI6' @ 0 : 0; will stop at (end)
|
2026/01/11-22:44:34.577564 7fd4627fc6c0 Manual compaction at level-1 from '!items!0tELaPFZgkeTUeVn' @ 72057594037927935 : 1 .. '!items!zC0kHoqZ9lkQFgI6' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
2026/01/10-23:11:16.231723 7fd463fff6c0 Recovering log #43
|
2026/01/11-22:38:18.479236 7fd463fff6c0 Recovering log #47
|
||||||
2026/01/10-23:11:16.291894 7fd463fff6c0 Delete type=3 #41
|
2026/01/11-22:38:18.489180 7fd463fff6c0 Delete type=3 #45
|
||||||
2026/01/10-23:11:16.291973 7fd463fff6c0 Delete type=0 #43
|
2026/01/11-22:38:18.489248 7fd463fff6c0 Delete type=0 #47
|
||||||
2026/01/11-22:24:57.500337 7fd4627fc6c0 Level-0 table #48: started
|
2026/01/11-22:39:21.573677 7fd4627fc6c0 Level-0 table #52: started
|
||||||
2026/01/11-22:24:57.500368 7fd4627fc6c0 Level-0 table #48: 0 bytes OK
|
2026/01/11-22:39:21.573703 7fd4627fc6c0 Level-0 table #52: 0 bytes OK
|
||||||
2026/01/11-22:24:57.561031 7fd4627fc6c0 Delete type=0 #46
|
2026/01/11-22:39:21.580176 7fd4627fc6c0 Delete type=0 #50
|
||||||
2026/01/11-22:24:57.624346 7fd4627fc6c0 Manual compaction at level-0 from '!items!0tELaPFZgkeTUeVn' @ 72057594037927935 : 1 .. '!items!zC0kHoqZ9lkQFgI6' @ 0 : 0; will stop at (end)
|
2026/01/11-22:39:21.593747 7fd4627fc6c0 Manual compaction at level-0 from '!items!0tELaPFZgkeTUeVn' @ 72057594037927935 : 1 .. '!items!zC0kHoqZ9lkQFgI6' @ 0 : 0; will stop at (end)
|
||||||
2026/01/11-22:24:57.624388 7fd4627fc6c0 Manual compaction at level-1 from '!items!0tELaPFZgkeTUeVn' @ 72057594037927935 : 1 .. '!items!zC0kHoqZ9lkQFgI6' @ 0 : 0; will stop at (end)
|
2026/01/11-22:39:21.593789 7fd4627fc6c0 Manual compaction at level-1 from '!items!0tELaPFZgkeTUeVn' @ 72057594037927935 : 1 .. '!items!zC0kHoqZ9lkQFgI6' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-000049
|
MANIFEST-000053
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
2026/01/11-22:38:18.300419 7fd462ffd6c0 Recovering log #47
|
2026/01/11-22:42:43.326689 7fd463fff6c0 Recovering log #51
|
||||||
2026/01/11-22:38:18.310203 7fd462ffd6c0 Delete type=3 #45
|
2026/01/11-22:42:43.341778 7fd463fff6c0 Delete type=0 #51
|
||||||
2026/01/11-22:38:18.310271 7fd462ffd6c0 Delete type=0 #47
|
2026/01/11-22:42:43.341831 7fd463fff6c0 Delete type=3 #49
|
||||||
2026/01/11-22:39:21.495581 7fd4627fc6c0 Level-0 table #52: started
|
2026/01/11-22:44:34.478868 7fd4627fc6c0 Level-0 table #56: started
|
||||||
2026/01/11-22:39:21.495613 7fd4627fc6c0 Level-0 table #52: 0 bytes OK
|
2026/01/11-22:44:34.478897 7fd4627fc6c0 Level-0 table #56: 0 bytes OK
|
||||||
2026/01/11-22:39:21.501662 7fd4627fc6c0 Delete type=0 #50
|
2026/01/11-22:44:34.484840 7fd4627fc6c0 Delete type=0 #54
|
||||||
2026/01/11-22:39:21.515134 7fd4627fc6c0 Manual compaction at level-0 from '!items!0EoL2kcGdYiYS8lY' @ 72057594037927935 : 1 .. '!items!xf1RAsIzBXQgbLq2' @ 0 : 0; will stop at (end)
|
2026/01/11-22:44:34.498594 7fd4627fc6c0 Manual compaction at level-0 from '!items!0EoL2kcGdYiYS8lY' @ 72057594037927935 : 1 .. '!items!xf1RAsIzBXQgbLq2' @ 0 : 0; will stop at (end)
|
||||||
2026/01/11-22:39:21.515199 7fd4627fc6c0 Manual compaction at level-1 from '!items!0EoL2kcGdYiYS8lY' @ 72057594037927935 : 1 .. '!items!xf1RAsIzBXQgbLq2' @ 0 : 0; will stop at (end)
|
2026/01/11-22:44:34.498628 7fd4627fc6c0 Manual compaction at level-1 from '!items!0EoL2kcGdYiYS8lY' @ 72057594037927935 : 1 .. '!items!xf1RAsIzBXQgbLq2' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
2026/01/10-23:11:15.414572 7fd462ffd6c0 Recovering log #43
|
2026/01/11-22:38:18.300419 7fd462ffd6c0 Recovering log #47
|
||||||
2026/01/10-23:11:15.478943 7fd462ffd6c0 Delete type=3 #41
|
2026/01/11-22:38:18.310203 7fd462ffd6c0 Delete type=3 #45
|
||||||
2026/01/10-23:11:15.479024 7fd462ffd6c0 Delete type=0 #43
|
2026/01/11-22:38:18.310271 7fd462ffd6c0 Delete type=0 #47
|
||||||
2026/01/11-22:24:56.769456 7fd4627fc6c0 Level-0 table #48: started
|
2026/01/11-22:39:21.495581 7fd4627fc6c0 Level-0 table #52: started
|
||||||
2026/01/11-22:24:56.769503 7fd4627fc6c0 Level-0 table #48: 0 bytes OK
|
2026/01/11-22:39:21.495613 7fd4627fc6c0 Level-0 table #52: 0 bytes OK
|
||||||
2026/01/11-22:24:56.831755 7fd4627fc6c0 Delete type=0 #46
|
2026/01/11-22:39:21.501662 7fd4627fc6c0 Delete type=0 #50
|
||||||
2026/01/11-22:24:57.022732 7fd4627fc6c0 Manual compaction at level-0 from '!items!0EoL2kcGdYiYS8lY' @ 72057594037927935 : 1 .. '!items!xf1RAsIzBXQgbLq2' @ 0 : 0; will stop at (end)
|
2026/01/11-22:39:21.515134 7fd4627fc6c0 Manual compaction at level-0 from '!items!0EoL2kcGdYiYS8lY' @ 72057594037927935 : 1 .. '!items!xf1RAsIzBXQgbLq2' @ 0 : 0; will stop at (end)
|
||||||
2026/01/11-22:24:57.022780 7fd4627fc6c0 Manual compaction at level-1 from '!items!0EoL2kcGdYiYS8lY' @ 72057594037927935 : 1 .. '!items!xf1RAsIzBXQgbLq2' @ 0 : 0; will stop at (end)
|
2026/01/11-22:39:21.515199 7fd4627fc6c0 Manual compaction at level-1 from '!items!0EoL2kcGdYiYS8lY' @ 72057594037927935 : 1 .. '!items!xf1RAsIzBXQgbLq2' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-000049
|
MANIFEST-000053
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
2026/01/11-22:38:18.466539 7fd478fff6c0 Recovering log #47
|
2026/01/11-22:42:44.148711 7fd478fff6c0 Recovering log #51
|
||||||
2026/01/11-22:38:18.476924 7fd478fff6c0 Delete type=3 #45
|
2026/01/11-22:42:44.328978 7fd478fff6c0 Delete type=0 #51
|
||||||
2026/01/11-22:38:18.476983 7fd478fff6c0 Delete type=0 #47
|
2026/01/11-22:42:44.333280 7fd478fff6c0 Delete type=3 #49
|
||||||
2026/01/11-22:39:21.567455 7fd4627fc6c0 Level-0 table #52: started
|
2026/01/11-22:44:34.550589 7fd4627fc6c0 Level-0 table #56: started
|
||||||
2026/01/11-22:39:21.567481 7fd4627fc6c0 Level-0 table #52: 0 bytes OK
|
2026/01/11-22:44:34.550618 7fd4627fc6c0 Level-0 table #56: 0 bytes OK
|
||||||
2026/01/11-22:39:21.573559 7fd4627fc6c0 Delete type=0 #50
|
2026/01/11-22:44:34.557017 7fd4627fc6c0 Delete type=0 #54
|
||||||
2026/01/11-22:39:21.593729 7fd4627fc6c0 Manual compaction at level-0 from '!items!7VeQIQHxvw233Jzt' @ 72057594037927935 : 1 .. '!items!xw2gPhCxDVpkJnxL' @ 0 : 0; will stop at (end)
|
2026/01/11-22:44:34.577498 7fd4627fc6c0 Manual compaction at level-0 from '!items!7VeQIQHxvw233Jzt' @ 72057594037927935 : 1 .. '!items!xw2gPhCxDVpkJnxL' @ 0 : 0; will stop at (end)
|
||||||
2026/01/11-22:39:21.593781 7fd4627fc6c0 Manual compaction at level-1 from '!items!7VeQIQHxvw233Jzt' @ 72057594037927935 : 1 .. '!items!xw2gPhCxDVpkJnxL' @ 0 : 0; will stop at (end)
|
2026/01/11-22:44:34.577548 7fd4627fc6c0 Manual compaction at level-1 from '!items!7VeQIQHxvw233Jzt' @ 72057594037927935 : 1 .. '!items!xw2gPhCxDVpkJnxL' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
2026/01/10-23:11:16.181750 7fd462ffd6c0 Recovering log #43
|
2026/01/11-22:38:18.466539 7fd478fff6c0 Recovering log #47
|
||||||
2026/01/10-23:11:16.229040 7fd462ffd6c0 Delete type=3 #41
|
2026/01/11-22:38:18.476924 7fd478fff6c0 Delete type=3 #45
|
||||||
2026/01/10-23:11:16.229115 7fd462ffd6c0 Delete type=0 #43
|
2026/01/11-22:38:18.476983 7fd478fff6c0 Delete type=0 #47
|
||||||
2026/01/11-22:24:57.561274 7fd4627fc6c0 Level-0 table #48: started
|
2026/01/11-22:39:21.567455 7fd4627fc6c0 Level-0 table #52: started
|
||||||
2026/01/11-22:24:57.561302 7fd4627fc6c0 Level-0 table #48: 0 bytes OK
|
2026/01/11-22:39:21.567481 7fd4627fc6c0 Level-0 table #52: 0 bytes OK
|
||||||
2026/01/11-22:24:57.624170 7fd4627fc6c0 Delete type=0 #46
|
2026/01/11-22:39:21.573559 7fd4627fc6c0 Delete type=0 #50
|
||||||
2026/01/11-22:24:57.624357 7fd4627fc6c0 Manual compaction at level-0 from '!items!7VeQIQHxvw233Jzt' @ 72057594037927935 : 1 .. '!items!xw2gPhCxDVpkJnxL' @ 0 : 0; will stop at (end)
|
2026/01/11-22:39:21.593729 7fd4627fc6c0 Manual compaction at level-0 from '!items!7VeQIQHxvw233Jzt' @ 72057594037927935 : 1 .. '!items!xw2gPhCxDVpkJnxL' @ 0 : 0; will stop at (end)
|
||||||
2026/01/11-22:24:57.624398 7fd4627fc6c0 Manual compaction at level-1 from '!items!7VeQIQHxvw233Jzt' @ 72057594037927935 : 1 .. '!items!xw2gPhCxDVpkJnxL' @ 0 : 0; will stop at (end)
|
2026/01/11-22:39:21.593781 7fd4627fc6c0 Manual compaction at level-1 from '!items!7VeQIQHxvw233Jzt' @ 72057594037927935 : 1 .. '!items!xw2gPhCxDVpkJnxL' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-000049
|
MANIFEST-000053
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
2026/01/11-22:38:18.454793 7fd4637fe6c0 Recovering log #47
|
2026/01/11-22:42:44.042534 7fd462ffd6c0 Recovering log #51
|
||||||
2026/01/11-22:38:18.464425 7fd4637fe6c0 Delete type=3 #45
|
2026/01/11-22:42:44.138306 7fd462ffd6c0 Delete type=0 #51
|
||||||
2026/01/11-22:38:18.464476 7fd4637fe6c0 Delete type=0 #47
|
2026/01/11-22:42:44.141863 7fd462ffd6c0 Delete type=3 #49
|
||||||
2026/01/11-22:39:21.580301 7fd4627fc6c0 Level-0 table #52: started
|
2026/01/11-22:44:34.557135 7fd4627fc6c0 Level-0 table #56: started
|
||||||
2026/01/11-22:39:21.580327 7fd4627fc6c0 Level-0 table #52: 0 bytes OK
|
2026/01/11-22:44:34.557161 7fd4627fc6c0 Level-0 table #56: 0 bytes OK
|
||||||
2026/01/11-22:39:21.587371 7fd4627fc6c0 Delete type=0 #50
|
2026/01/11-22:44:34.563981 7fd4627fc6c0 Delete type=0 #54
|
||||||
2026/01/11-22:39:21.593760 7fd4627fc6c0 Manual compaction at level-0 from '!items!89NwqZV3Qn9xWeO0' @ 72057594037927935 : 1 .. '!items!sH7HaKggOEaBVzn3' @ 0 : 0; will stop at (end)
|
2026/01/11-22:44:34.577513 7fd4627fc6c0 Manual compaction at level-0 from '!items!89NwqZV3Qn9xWeO0' @ 72057594037927935 : 1 .. '!items!sH7HaKggOEaBVzn3' @ 0 : 0; will stop at (end)
|
||||||
2026/01/11-22:39:21.593798 7fd4627fc6c0 Manual compaction at level-1 from '!items!89NwqZV3Qn9xWeO0' @ 72057594037927935 : 1 .. '!items!sH7HaKggOEaBVzn3' @ 0 : 0; will stop at (end)
|
2026/01/11-22:44:34.577556 7fd4627fc6c0 Manual compaction at level-1 from '!items!89NwqZV3Qn9xWeO0' @ 72057594037927935 : 1 .. '!items!sH7HaKggOEaBVzn3' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
2026/01/10-23:11:16.124670 7fd478fff6c0 Recovering log #43
|
2026/01/11-22:38:18.454793 7fd4637fe6c0 Recovering log #47
|
||||||
2026/01/10-23:11:16.179232 7fd478fff6c0 Delete type=3 #41
|
2026/01/11-22:38:18.464425 7fd4637fe6c0 Delete type=3 #45
|
||||||
2026/01/10-23:11:16.179295 7fd478fff6c0 Delete type=0 #43
|
2026/01/11-22:38:18.464476 7fd4637fe6c0 Delete type=0 #47
|
||||||
2026/01/11-22:24:57.381224 7fd4627fc6c0 Level-0 table #48: started
|
2026/01/11-22:39:21.580301 7fd4627fc6c0 Level-0 table #52: started
|
||||||
2026/01/11-22:24:57.381256 7fd4627fc6c0 Level-0 table #48: 0 bytes OK
|
2026/01/11-22:39:21.580327 7fd4627fc6c0 Level-0 table #52: 0 bytes OK
|
||||||
2026/01/11-22:24:57.445557 7fd4627fc6c0 Delete type=0 #46
|
2026/01/11-22:39:21.587371 7fd4627fc6c0 Delete type=0 #50
|
||||||
2026/01/11-22:24:57.624320 7fd4627fc6c0 Manual compaction at level-0 from '!items!89NwqZV3Qn9xWeO0' @ 72057594037927935 : 1 .. '!items!sH7HaKggOEaBVzn3' @ 0 : 0; will stop at (end)
|
2026/01/11-22:39:21.593760 7fd4627fc6c0 Manual compaction at level-0 from '!items!89NwqZV3Qn9xWeO0' @ 72057594037927935 : 1 .. '!items!sH7HaKggOEaBVzn3' @ 0 : 0; will stop at (end)
|
||||||
2026/01/11-22:24:57.624368 7fd4627fc6c0 Manual compaction at level-1 from '!items!89NwqZV3Qn9xWeO0' @ 72057594037927935 : 1 .. '!items!sH7HaKggOEaBVzn3' @ 0 : 0; will stop at (end)
|
2026/01/11-22:39:21.593798 7fd4627fc6c0 Manual compaction at level-1 from '!items!89NwqZV3Qn9xWeO0' @ 72057594037927935 : 1 .. '!items!sH7HaKggOEaBVzn3' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-000049
|
MANIFEST-000053
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
2026/01/11-22:38:18.436067 7fd463fff6c0 Recovering log #47
|
2026/01/11-22:42:43.926477 7fd4637fe6c0 Recovering log #51
|
||||||
2026/01/11-22:38:18.452419 7fd463fff6c0 Delete type=3 #45
|
2026/01/11-22:42:44.002328 7fd4637fe6c0 Delete type=0 #51
|
||||||
2026/01/11-22:38:18.452511 7fd463fff6c0 Delete type=0 #47
|
2026/01/11-22:42:44.005882 7fd4637fe6c0 Delete type=3 #49
|
||||||
2026/01/11-22:39:21.587499 7fd4627fc6c0 Level-0 table #52: started
|
2026/01/11-22:44:34.570403 7fd4627fc6c0 Level-0 table #56: started
|
||||||
2026/01/11-22:39:21.587525 7fd4627fc6c0 Level-0 table #52: 0 bytes OK
|
2026/01/11-22:44:34.570438 7fd4627fc6c0 Level-0 table #56: 0 bytes OK
|
||||||
2026/01/11-22:39:21.593554 7fd4627fc6c0 Delete type=0 #50
|
2026/01/11-22:44:34.577352 7fd4627fc6c0 Delete type=0 #54
|
||||||
2026/01/11-22:39:21.593771 7fd4627fc6c0 Manual compaction at level-0 from '!items!1smXvw2EcuTkytDv' @ 72057594037927935 : 1 .. '!items!yKLS6KQafucspg3R' @ 0 : 0; will stop at (end)
|
2026/01/11-22:44:34.577539 7fd4627fc6c0 Manual compaction at level-0 from '!items!1smXvw2EcuTkytDv' @ 72057594037927935 : 1 .. '!items!yKLS6KQafucspg3R' @ 0 : 0; will stop at (end)
|
||||||
2026/01/11-22:39:21.593806 7fd4627fc6c0 Manual compaction at level-1 from '!items!1smXvw2EcuTkytDv' @ 72057594037927935 : 1 .. '!items!yKLS6KQafucspg3R' @ 0 : 0; will stop at (end)
|
2026/01/11-22:44:34.577572 7fd4627fc6c0 Manual compaction at level-1 from '!items!1smXvw2EcuTkytDv' @ 72057594037927935 : 1 .. '!items!yKLS6KQafucspg3R' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
2026/01/10-23:11:16.068517 7fd463fff6c0 Recovering log #43
|
2026/01/11-22:38:18.436067 7fd463fff6c0 Recovering log #47
|
||||||
2026/01/10-23:11:16.122014 7fd463fff6c0 Delete type=3 #41
|
2026/01/11-22:38:18.452419 7fd463fff6c0 Delete type=3 #45
|
||||||
2026/01/10-23:11:16.122114 7fd463fff6c0 Delete type=0 #43
|
2026/01/11-22:38:18.452511 7fd463fff6c0 Delete type=0 #47
|
||||||
2026/01/11-22:24:57.445670 7fd4627fc6c0 Level-0 table #48: started
|
2026/01/11-22:39:21.587499 7fd4627fc6c0 Level-0 table #52: started
|
||||||
2026/01/11-22:24:57.445695 7fd4627fc6c0 Level-0 table #48: 0 bytes OK
|
2026/01/11-22:39:21.587525 7fd4627fc6c0 Level-0 table #52: 0 bytes OK
|
||||||
2026/01/11-22:24:57.500180 7fd4627fc6c0 Delete type=0 #46
|
2026/01/11-22:39:21.593554 7fd4627fc6c0 Delete type=0 #50
|
||||||
2026/01/11-22:24:57.624334 7fd4627fc6c0 Manual compaction at level-0 from '!items!1smXvw2EcuTkytDv' @ 72057594037927935 : 1 .. '!items!yKLS6KQafucspg3R' @ 0 : 0; will stop at (end)
|
2026/01/11-22:39:21.593771 7fd4627fc6c0 Manual compaction at level-0 from '!items!1smXvw2EcuTkytDv' @ 72057594037927935 : 1 .. '!items!yKLS6KQafucspg3R' @ 0 : 0; will stop at (end)
|
||||||
2026/01/11-22:24:57.624378 7fd4627fc6c0 Manual compaction at level-1 from '!items!1smXvw2EcuTkytDv' @ 72057594037927935 : 1 .. '!items!yKLS6KQafucspg3R' @ 0 : 0; will stop at (end)
|
2026/01/11-22:39:21.593806 7fd4627fc6c0 Manual compaction at level-1 from '!items!1smXvw2EcuTkytDv' @ 72057594037927935 : 1 .. '!items!yKLS6KQafucspg3R' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-000049
|
MANIFEST-000053
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
2026/01/11-22:38:18.424518 7fd478fff6c0 Recovering log #47
|
2026/01/11-22:42:43.831335 7fd478fff6c0 Recovering log #51
|
||||||
2026/01/11-22:38:18.434327 7fd478fff6c0 Delete type=3 #45
|
2026/01/11-22:42:43.907930 7fd478fff6c0 Delete type=0 #51
|
||||||
2026/01/11-22:38:18.434384 7fd478fff6c0 Delete type=0 #47
|
2026/01/11-22:42:43.923805 7fd478fff6c0 Delete type=3 #49
|
||||||
2026/01/11-22:39:21.554078 7fd4627fc6c0 Level-0 table #52: started
|
2026/01/11-22:44:34.544130 7fd4627fc6c0 Level-0 table #56: started
|
||||||
2026/01/11-22:39:21.554103 7fd4627fc6c0 Level-0 table #52: 0 bytes OK
|
2026/01/11-22:44:34.544160 7fd4627fc6c0 Level-0 table #56: 0 bytes OK
|
||||||
2026/01/11-22:39:21.560215 7fd4627fc6c0 Delete type=0 #50
|
2026/01/11-22:44:34.550225 7fd4627fc6c0 Delete type=0 #54
|
||||||
2026/01/11-22:39:21.567302 7fd4627fc6c0 Manual compaction at level-0 from '!items!8lGlSw9Hkqbx1MDE' @ 72057594037927935 : 1 .. '!items!rMGHu9grQeuvSl6n' @ 0 : 0; will stop at (end)
|
2026/01/11-22:44:34.550447 7fd4627fc6c0 Manual compaction at level-0 from '!items!8lGlSw9Hkqbx1MDE' @ 72057594037927935 : 1 .. '!items!rMGHu9grQeuvSl6n' @ 0 : 0; will stop at (end)
|
||||||
2026/01/11-22:39:21.567332 7fd4627fc6c0 Manual compaction at level-1 from '!items!8lGlSw9Hkqbx1MDE' @ 72057594037927935 : 1 .. '!items!rMGHu9grQeuvSl6n' @ 0 : 0; will stop at (end)
|
2026/01/11-22:44:34.550484 7fd4627fc6c0 Manual compaction at level-1 from '!items!8lGlSw9Hkqbx1MDE' @ 72057594037927935 : 1 .. '!items!rMGHu9grQeuvSl6n' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
2026/01/10-23:11:16.006619 7fd462ffd6c0 Recovering log #43
|
2026/01/11-22:38:18.424518 7fd478fff6c0 Recovering log #47
|
||||||
2026/01/10-23:11:16.065683 7fd462ffd6c0 Delete type=3 #41
|
2026/01/11-22:38:18.434327 7fd478fff6c0 Delete type=3 #45
|
||||||
2026/01/10-23:11:16.065784 7fd462ffd6c0 Delete type=0 #43
|
2026/01/11-22:38:18.434384 7fd478fff6c0 Delete type=0 #47
|
||||||
2026/01/11-22:24:57.175509 7fd4627fc6c0 Level-0 table #48: started
|
2026/01/11-22:39:21.554078 7fd4627fc6c0 Level-0 table #52: started
|
||||||
2026/01/11-22:24:57.175543 7fd4627fc6c0 Level-0 table #48: 0 bytes OK
|
2026/01/11-22:39:21.554103 7fd4627fc6c0 Level-0 table #52: 0 bytes OK
|
||||||
2026/01/11-22:24:57.212520 7fd4627fc6c0 Delete type=0 #46
|
2026/01/11-22:39:21.560215 7fd4627fc6c0 Delete type=0 #50
|
||||||
2026/01/11-22:24:57.381058 7fd4627fc6c0 Manual compaction at level-0 from '!items!8lGlSw9Hkqbx1MDE' @ 72057594037927935 : 1 .. '!items!rMGHu9grQeuvSl6n' @ 0 : 0; will stop at (end)
|
2026/01/11-22:39:21.567302 7fd4627fc6c0 Manual compaction at level-0 from '!items!8lGlSw9Hkqbx1MDE' @ 72057594037927935 : 1 .. '!items!rMGHu9grQeuvSl6n' @ 0 : 0; will stop at (end)
|
||||||
2026/01/11-22:24:57.381105 7fd4627fc6c0 Manual compaction at level-1 from '!items!8lGlSw9Hkqbx1MDE' @ 72057594037927935 : 1 .. '!items!rMGHu9grQeuvSl6n' @ 0 : 0; will stop at (end)
|
2026/01/11-22:39:21.567332 7fd4627fc6c0 Manual compaction at level-1 from '!items!8lGlSw9Hkqbx1MDE' @ 72057594037927935 : 1 .. '!items!rMGHu9grQeuvSl6n' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-000049
|
MANIFEST-000053
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
2026/01/11-22:38:18.275122 7fd4637fe6c0 Recovering log #47
|
2026/01/11-22:42:43.293209 7fd463fff6c0 Recovering log #51
|
||||||
2026/01/11-22:38:18.285627 7fd4637fe6c0 Delete type=3 #45
|
2026/01/11-22:42:43.307817 7fd463fff6c0 Delete type=0 #51
|
||||||
2026/01/11-22:38:18.285688 7fd4637fe6c0 Delete type=0 #47
|
2026/01/11-22:42:43.307869 7fd463fff6c0 Delete type=3 #49
|
||||||
2026/01/11-22:39:21.482642 7fd4627fc6c0 Level-0 table #52: started
|
2026/01/11-22:44:34.453930 7fd4627fc6c0 Level-0 table #56: started
|
||||||
2026/01/11-22:39:21.482676 7fd4627fc6c0 Level-0 table #52: 0 bytes OK
|
2026/01/11-22:44:34.453955 7fd4627fc6c0 Level-0 table #56: 0 bytes OK
|
||||||
2026/01/11-22:39:21.489082 7fd4627fc6c0 Delete type=0 #50
|
2026/01/11-22:44:34.459826 7fd4627fc6c0 Delete type=0 #54
|
||||||
2026/01/11-22:39:21.489262 7fd4627fc6c0 Manual compaction at level-0 from '!items!1NgxXWCVuFNQ6pis' @ 72057594037927935 : 1 .. '!items!z0cF4dWHmUAg0KvV' @ 0 : 0; will stop at (end)
|
2026/01/11-22:44:34.472594 7fd4627fc6c0 Manual compaction at level-0 from '!items!1NgxXWCVuFNQ6pis' @ 72057594037927935 : 1 .. '!items!z0cF4dWHmUAg0KvV' @ 0 : 0; will stop at (end)
|
||||||
2026/01/11-22:39:21.489309 7fd4627fc6c0 Manual compaction at level-1 from '!items!1NgxXWCVuFNQ6pis' @ 72057594037927935 : 1 .. '!items!z0cF4dWHmUAg0KvV' @ 0 : 0; will stop at (end)
|
2026/01/11-22:44:34.472636 7fd4627fc6c0 Manual compaction at level-1 from '!items!1NgxXWCVuFNQ6pis' @ 72057594037927935 : 1 .. '!items!z0cF4dWHmUAg0KvV' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
2026/01/10-23:11:15.291602 7fd478fff6c0 Recovering log #43
|
2026/01/11-22:38:18.275122 7fd4637fe6c0 Recovering log #47
|
||||||
2026/01/10-23:11:15.346322 7fd478fff6c0 Delete type=3 #41
|
2026/01/11-22:38:18.285627 7fd4637fe6c0 Delete type=3 #45
|
||||||
2026/01/10-23:11:15.346441 7fd478fff6c0 Delete type=0 #43
|
2026/01/11-22:38:18.285688 7fd4637fe6c0 Delete type=0 #47
|
||||||
2026/01/11-22:24:56.640400 7fd4627fc6c0 Level-0 table #48: started
|
2026/01/11-22:39:21.482642 7fd4627fc6c0 Level-0 table #52: started
|
||||||
2026/01/11-22:24:56.640429 7fd4627fc6c0 Level-0 table #48: 0 bytes OK
|
2026/01/11-22:39:21.482676 7fd4627fc6c0 Level-0 table #52: 0 bytes OK
|
||||||
2026/01/11-22:24:56.705216 7fd4627fc6c0 Delete type=0 #46
|
2026/01/11-22:39:21.489082 7fd4627fc6c0 Delete type=0 #50
|
||||||
2026/01/11-22:24:56.769293 7fd4627fc6c0 Manual compaction at level-0 from '!items!1NgxXWCVuFNQ6pis' @ 72057594037927935 : 1 .. '!items!z0cF4dWHmUAg0KvV' @ 0 : 0; will stop at (end)
|
2026/01/11-22:39:21.489262 7fd4627fc6c0 Manual compaction at level-0 from '!items!1NgxXWCVuFNQ6pis' @ 72057594037927935 : 1 .. '!items!z0cF4dWHmUAg0KvV' @ 0 : 0; will stop at (end)
|
||||||
2026/01/11-22:24:56.769342 7fd4627fc6c0 Manual compaction at level-1 from '!items!1NgxXWCVuFNQ6pis' @ 72057594037927935 : 1 .. '!items!z0cF4dWHmUAg0KvV' @ 0 : 0; will stop at (end)
|
2026/01/11-22:39:21.489309 7fd4627fc6c0 Manual compaction at level-1 from '!items!1NgxXWCVuFNQ6pis' @ 72057594037927935 : 1 .. '!items!z0cF4dWHmUAg0KvV' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-000049
|
MANIFEST-000053
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
2026/01/11-22:38:18.349123 7fd463fff6c0 Recovering log #47
|
2026/01/11-22:42:43.465451 7fd462ffd6c0 Recovering log #51
|
||||||
2026/01/11-22:38:18.359770 7fd463fff6c0 Delete type=3 #45
|
2026/01/11-22:42:43.541574 7fd462ffd6c0 Delete type=0 #51
|
||||||
2026/01/11-22:38:18.359853 7fd463fff6c0 Delete type=0 #47
|
2026/01/11-22:42:43.581049 7fd462ffd6c0 Delete type=3 #49
|
||||||
2026/01/11-22:39:21.521521 7fd4627fc6c0 Level-0 table #52: started
|
2026/01/11-22:44:34.517475 7fd4627fc6c0 Level-0 table #56: started
|
||||||
2026/01/11-22:39:21.521557 7fd4627fc6c0 Level-0 table #52: 0 bytes OK
|
2026/01/11-22:44:34.517496 7fd4627fc6c0 Level-0 table #56: 0 bytes OK
|
||||||
2026/01/11-22:39:21.527972 7fd4627fc6c0 Delete type=0 #50
|
2026/01/11-22:44:34.523734 7fd4627fc6c0 Delete type=0 #54
|
||||||
2026/01/11-22:39:21.541078 7fd4627fc6c0 Manual compaction at level-0 from '!items!1liPVSmnGY35OTxz' @ 72057594037927935 : 1 .. '!items!yvuFuIz4ormI3u3u' @ 0 : 0; will stop at (end)
|
2026/01/11-22:44:34.523940 7fd4627fc6c0 Manual compaction at level-0 from '!items!1liPVSmnGY35OTxz' @ 72057594037927935 : 1 .. '!items!yvuFuIz4ormI3u3u' @ 0 : 0; will stop at (end)
|
||||||
2026/01/11-22:39:21.541123 7fd4627fc6c0 Manual compaction at level-1 from '!items!1liPVSmnGY35OTxz' @ 72057594037927935 : 1 .. '!items!yvuFuIz4ormI3u3u' @ 0 : 0; will stop at (end)
|
2026/01/11-22:44:34.524001 7fd4627fc6c0 Manual compaction at level-1 from '!items!1liPVSmnGY35OTxz' @ 72057594037927935 : 1 .. '!items!yvuFuIz4ormI3u3u' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
2026/01/10-23:11:15.653304 7fd462ffd6c0 Recovering log #43
|
2026/01/11-22:38:18.349123 7fd463fff6c0 Recovering log #47
|
||||||
2026/01/10-23:11:15.706114 7fd462ffd6c0 Delete type=3 #41
|
2026/01/11-22:38:18.359770 7fd463fff6c0 Delete type=3 #45
|
||||||
2026/01/10-23:11:15.706189 7fd462ffd6c0 Delete type=0 #43
|
2026/01/11-22:38:18.359853 7fd463fff6c0 Delete type=0 #47
|
||||||
2026/01/11-22:24:57.068715 7fd4627fc6c0 Level-0 table #48: started
|
2026/01/11-22:39:21.521521 7fd4627fc6c0 Level-0 table #52: started
|
||||||
2026/01/11-22:24:57.068750 7fd4627fc6c0 Level-0 table #48: 0 bytes OK
|
2026/01/11-22:39:21.521557 7fd4627fc6c0 Level-0 table #52: 0 bytes OK
|
||||||
2026/01/11-22:24:57.100804 7fd4627fc6c0 Delete type=0 #46
|
2026/01/11-22:39:21.527972 7fd4627fc6c0 Delete type=0 #50
|
||||||
2026/01/11-22:24:57.175363 7fd4627fc6c0 Manual compaction at level-0 from '!items!1liPVSmnGY35OTxz' @ 72057594037927935 : 1 .. '!items!yvuFuIz4ormI3u3u' @ 0 : 0; will stop at (end)
|
2026/01/11-22:39:21.541078 7fd4627fc6c0 Manual compaction at level-0 from '!items!1liPVSmnGY35OTxz' @ 72057594037927935 : 1 .. '!items!yvuFuIz4ormI3u3u' @ 0 : 0; will stop at (end)
|
||||||
2026/01/11-22:24:57.175405 7fd4627fc6c0 Manual compaction at level-1 from '!items!1liPVSmnGY35OTxz' @ 72057594037927935 : 1 .. '!items!yvuFuIz4ormI3u3u' @ 0 : 0; will stop at (end)
|
2026/01/11-22:39:21.541123 7fd4627fc6c0 Manual compaction at level-1 from '!items!1liPVSmnGY35OTxz' @ 72057594037927935 : 1 .. '!items!yvuFuIz4ormI3u3u' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-000049
|
MANIFEST-000053
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
2026/01/11-22:38:18.411718 7fd4637fe6c0 Recovering log #47
|
2026/01/11-22:42:43.812229 7fd463fff6c0 Recovering log #51
|
||||||
2026/01/11-22:38:18.422280 7fd4637fe6c0 Delete type=3 #45
|
2026/01/11-22:42:43.828789 7fd463fff6c0 Delete type=0 #51
|
||||||
2026/01/11-22:38:18.422346 7fd4637fe6c0 Delete type=0 #47
|
2026/01/11-22:42:43.828860 7fd463fff6c0 Delete type=3 #49
|
||||||
2026/01/11-22:39:21.547934 7fd4627fc6c0 Level-0 table #52: started
|
2026/01/11-22:44:34.530512 7fd4627fc6c0 Level-0 table #56: started
|
||||||
2026/01/11-22:39:21.547959 7fd4627fc6c0 Level-0 table #52: 0 bytes OK
|
2026/01/11-22:44:34.530538 7fd4627fc6c0 Level-0 table #56: 0 bytes OK
|
||||||
2026/01/11-22:39:21.553976 7fd4627fc6c0 Delete type=0 #50
|
2026/01/11-22:44:34.536546 7fd4627fc6c0 Delete type=0 #54
|
||||||
2026/01/11-22:39:21.567290 7fd4627fc6c0 Manual compaction at level-0 from '!items!2bXfwlqnbTGnKeny' @ 72057594037927935 : 1 .. '!items!tPQecgG9jaT3zmDk' @ 0 : 0; will stop at (end)
|
2026/01/11-22:44:34.550423 7fd4627fc6c0 Manual compaction at level-0 from '!items!2bXfwlqnbTGnKeny' @ 72057594037927935 : 1 .. '!items!tPQecgG9jaT3zmDk' @ 0 : 0; will stop at (end)
|
||||||
2026/01/11-22:39:21.567326 7fd4627fc6c0 Manual compaction at level-1 from '!items!2bXfwlqnbTGnKeny' @ 72057594037927935 : 1 .. '!items!tPQecgG9jaT3zmDk' @ 0 : 0; will stop at (end)
|
2026/01/11-22:44:34.550467 7fd4627fc6c0 Manual compaction at level-1 from '!items!2bXfwlqnbTGnKeny' @ 72057594037927935 : 1 .. '!items!tPQecgG9jaT3zmDk' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
2026/01/10-23:11:15.951343 7fd478fff6c0 Recovering log #43
|
2026/01/11-22:38:18.411718 7fd4637fe6c0 Recovering log #47
|
||||||
2026/01/10-23:11:16.004432 7fd478fff6c0 Delete type=3 #41
|
2026/01/11-22:38:18.422280 7fd4637fe6c0 Delete type=3 #45
|
||||||
2026/01/10-23:11:16.004520 7fd478fff6c0 Delete type=0 #43
|
2026/01/11-22:38:18.422346 7fd4637fe6c0 Delete type=0 #47
|
||||||
2026/01/11-22:24:57.212653 7fd4627fc6c0 Level-0 table #48: started
|
2026/01/11-22:39:21.547934 7fd4627fc6c0 Level-0 table #52: started
|
||||||
2026/01/11-22:24:57.212683 7fd4627fc6c0 Level-0 table #48: 0 bytes OK
|
2026/01/11-22:39:21.547959 7fd4627fc6c0 Level-0 table #52: 0 bytes OK
|
||||||
2026/01/11-22:24:57.259051 7fd4627fc6c0 Delete type=0 #46
|
2026/01/11-22:39:21.553976 7fd4627fc6c0 Delete type=0 #50
|
||||||
2026/01/11-22:24:57.381071 7fd4627fc6c0 Manual compaction at level-0 from '!items!2bXfwlqnbTGnKeny' @ 72057594037927935 : 1 .. '!items!tPQecgG9jaT3zmDk' @ 0 : 0; will stop at (end)
|
2026/01/11-22:39:21.567290 7fd4627fc6c0 Manual compaction at level-0 from '!items!2bXfwlqnbTGnKeny' @ 72057594037927935 : 1 .. '!items!tPQecgG9jaT3zmDk' @ 0 : 0; will stop at (end)
|
||||||
2026/01/11-22:24:57.381114 7fd4627fc6c0 Manual compaction at level-1 from '!items!2bXfwlqnbTGnKeny' @ 72057594037927935 : 1 .. '!items!tPQecgG9jaT3zmDk' @ 0 : 0; will stop at (end)
|
2026/01/11-22:39:21.567326 7fd4627fc6c0 Manual compaction at level-1 from '!items!2bXfwlqnbTGnKeny' @ 72057594037927935 : 1 .. '!items!tPQecgG9jaT3zmDk' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-000049
|
MANIFEST-000053
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
2026/01/11-22:38:18.399912 7fd463fff6c0 Recovering log #47
|
2026/01/11-22:42:43.782721 7fd462ffd6c0 Recovering log #51
|
||||||
2026/01/11-22:38:18.409540 7fd463fff6c0 Delete type=3 #45
|
2026/01/11-22:42:43.809378 7fd462ffd6c0 Delete type=0 #51
|
||||||
2026/01/11-22:38:18.409610 7fd463fff6c0 Delete type=0 #47
|
2026/01/11-22:42:43.809439 7fd462ffd6c0 Delete type=3 #49
|
||||||
2026/01/11-22:39:21.541287 7fd4627fc6c0 Level-0 table #52: started
|
2026/01/11-22:44:34.524081 7fd4627fc6c0 Level-0 table #56: started
|
||||||
2026/01/11-22:39:21.541328 7fd4627fc6c0 Level-0 table #52: 0 bytes OK
|
2026/01/11-22:44:34.524114 7fd4627fc6c0 Level-0 table #56: 0 bytes OK
|
||||||
2026/01/11-22:39:21.547815 7fd4627fc6c0 Delete type=0 #50
|
2026/01/11-22:44:34.530390 7fd4627fc6c0 Delete type=0 #54
|
||||||
2026/01/11-22:39:21.567275 7fd4627fc6c0 Manual compaction at level-0 from '!items!1LklBTpkRHN0vgkG' @ 72057594037927935 : 1 .. '!items!wwrc9bTXY8xizVi2' @ 0 : 0; will stop at (end)
|
2026/01/11-22:44:34.550404 7fd4627fc6c0 Manual compaction at level-0 from '!items!1LklBTpkRHN0vgkG' @ 72057594037927935 : 1 .. '!items!wwrc9bTXY8xizVi2' @ 0 : 0; will stop at (end)
|
||||||
2026/01/11-22:39:21.567318 7fd4627fc6c0 Manual compaction at level-1 from '!items!1LklBTpkRHN0vgkG' @ 72057594037927935 : 1 .. '!items!wwrc9bTXY8xizVi2' @ 0 : 0; will stop at (end)
|
2026/01/11-22:44:34.550458 7fd4627fc6c0 Manual compaction at level-1 from '!items!1LklBTpkRHN0vgkG' @ 72057594037927935 : 1 .. '!items!wwrc9bTXY8xizVi2' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
2026/01/10-23:11:15.892174 7fd463fff6c0 Recovering log #43
|
2026/01/11-22:38:18.399912 7fd463fff6c0 Recovering log #47
|
||||||
2026/01/10-23:11:15.948500 7fd463fff6c0 Delete type=3 #41
|
2026/01/11-22:38:18.409540 7fd463fff6c0 Delete type=3 #45
|
||||||
2026/01/10-23:11:15.948574 7fd463fff6c0 Delete type=0 #43
|
2026/01/11-22:38:18.409610 7fd463fff6c0 Delete type=0 #47
|
||||||
2026/01/11-22:24:57.314915 7fd4627fc6c0 Level-0 table #48: started
|
2026/01/11-22:39:21.541287 7fd4627fc6c0 Level-0 table #52: started
|
||||||
2026/01/11-22:24:57.314944 7fd4627fc6c0 Level-0 table #48: 0 bytes OK
|
2026/01/11-22:39:21.541328 7fd4627fc6c0 Level-0 table #52: 0 bytes OK
|
||||||
2026/01/11-22:24:57.380909 7fd4627fc6c0 Delete type=0 #46
|
2026/01/11-22:39:21.547815 7fd4627fc6c0 Delete type=0 #50
|
||||||
2026/01/11-22:24:57.381097 7fd4627fc6c0 Manual compaction at level-0 from '!items!1LklBTpkRHN0vgkG' @ 72057594037927935 : 1 .. '!items!wwrc9bTXY8xizVi2' @ 0 : 0; will stop at (end)
|
2026/01/11-22:39:21.567275 7fd4627fc6c0 Manual compaction at level-0 from '!items!1LklBTpkRHN0vgkG' @ 72057594037927935 : 1 .. '!items!wwrc9bTXY8xizVi2' @ 0 : 0; will stop at (end)
|
||||||
2026/01/11-22:24:57.381124 7fd4627fc6c0 Manual compaction at level-1 from '!items!1LklBTpkRHN0vgkG' @ 72057594037927935 : 1 .. '!items!wwrc9bTXY8xizVi2' @ 0 : 0; will stop at (end)
|
2026/01/11-22:39:21.567318 7fd4627fc6c0 Manual compaction at level-1 from '!items!1LklBTpkRHN0vgkG' @ 72057594037927935 : 1 .. '!items!wwrc9bTXY8xizVi2' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-000049
|
MANIFEST-000053
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
2026/01/11-22:38:18.385453 7fd462ffd6c0 Recovering log #47
|
2026/01/11-22:42:43.764500 7fd478fff6c0 Recovering log #51
|
||||||
2026/01/11-22:38:18.396135 7fd462ffd6c0 Delete type=3 #45
|
2026/01/11-22:42:43.780449 7fd478fff6c0 Delete type=0 #51
|
||||||
2026/01/11-22:38:18.396214 7fd462ffd6c0 Delete type=0 #47
|
2026/01/11-22:42:43.780512 7fd478fff6c0 Delete type=3 #49
|
||||||
2026/01/11-22:39:21.560353 7fd4627fc6c0 Level-0 table #52: started
|
2026/01/11-22:44:34.505025 7fd4627fc6c0 Level-0 table #56: started
|
||||||
2026/01/11-22:39:21.560381 7fd4627fc6c0 Level-0 table #52: 0 bytes OK
|
2026/01/11-22:44:34.505050 7fd4627fc6c0 Level-0 table #56: 0 bytes OK
|
||||||
2026/01/11-22:39:21.567112 7fd4627fc6c0 Delete type=0 #50
|
2026/01/11-22:44:34.511351 7fd4627fc6c0 Delete type=0 #54
|
||||||
2026/01/11-22:39:21.567311 7fd4627fc6c0 Manual compaction at level-0 from '!items!0hZBqEZ1QGm1jHYw' @ 72057594037927935 : 1 .. '!items!tsuOVAHU0W0R6acd' @ 0 : 0; will stop at (end)
|
2026/01/11-22:44:34.523920 7fd4627fc6c0 Manual compaction at level-0 from '!items!0hZBqEZ1QGm1jHYw' @ 72057594037927935 : 1 .. '!items!tsuOVAHU0W0R6acd' @ 0 : 0; will stop at (end)
|
||||||
2026/01/11-22:39:21.567339 7fd4627fc6c0 Manual compaction at level-1 from '!items!0hZBqEZ1QGm1jHYw' @ 72057594037927935 : 1 .. '!items!tsuOVAHU0W0R6acd' @ 0 : 0; will stop at (end)
|
2026/01/11-22:44:34.523958 7fd4627fc6c0 Manual compaction at level-1 from '!items!0hZBqEZ1QGm1jHYw' @ 72057594037927935 : 1 .. '!items!tsuOVAHU0W0R6acd' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
2026/01/10-23:11:15.826691 7fd462ffd6c0 Recovering log #43
|
2026/01/11-22:38:18.385453 7fd462ffd6c0 Recovering log #47
|
||||||
2026/01/10-23:11:15.889653 7fd462ffd6c0 Delete type=3 #41
|
2026/01/11-22:38:18.396135 7fd462ffd6c0 Delete type=3 #45
|
||||||
2026/01/10-23:11:15.889724 7fd462ffd6c0 Delete type=0 #43
|
2026/01/11-22:38:18.396214 7fd462ffd6c0 Delete type=0 #47
|
||||||
2026/01/11-22:24:57.139138 7fd4627fc6c0 Level-0 table #48: started
|
2026/01/11-22:39:21.560353 7fd4627fc6c0 Level-0 table #52: started
|
||||||
2026/01/11-22:24:57.139167 7fd4627fc6c0 Level-0 table #48: 0 bytes OK
|
2026/01/11-22:39:21.560381 7fd4627fc6c0 Level-0 table #52: 0 bytes OK
|
||||||
2026/01/11-22:24:57.175212 7fd4627fc6c0 Delete type=0 #46
|
2026/01/11-22:39:21.567112 7fd4627fc6c0 Delete type=0 #50
|
||||||
2026/01/11-22:24:57.175386 7fd4627fc6c0 Manual compaction at level-0 from '!items!0hZBqEZ1QGm1jHYw' @ 72057594037927935 : 1 .. '!items!tsuOVAHU0W0R6acd' @ 0 : 0; will stop at (end)
|
2026/01/11-22:39:21.567311 7fd4627fc6c0 Manual compaction at level-0 from '!items!0hZBqEZ1QGm1jHYw' @ 72057594037927935 : 1 .. '!items!tsuOVAHU0W0R6acd' @ 0 : 0; will stop at (end)
|
||||||
2026/01/11-22:24:57.175424 7fd4627fc6c0 Manual compaction at level-1 from '!items!0hZBqEZ1QGm1jHYw' @ 72057594037927935 : 1 .. '!items!tsuOVAHU0W0R6acd' @ 0 : 0; will stop at (end)
|
2026/01/11-22:39:21.567339 7fd4627fc6c0 Manual compaction at level-1 from '!items!0hZBqEZ1QGm1jHYw' @ 72057594037927935 : 1 .. '!items!tsuOVAHU0W0R6acd' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user