Ajout du xplog
This commit is contained in:
parent
c7c26c0033
commit
5de40d4998
13
lang/fr.json
13
lang/fr.json
@ -139,6 +139,12 @@
|
||||
"BOL.ui.registerInit": "Enregistrer comme Init. de combat",
|
||||
"BOL.ui.initMalus": "Malus d'initiative",
|
||||
"BOL.ui.magicnewrules": "Règles supplémentaires (cf. supplément fan-made Sorcellerie!)",
|
||||
"BOL.ui.other":"Autre",
|
||||
"BOL.ui.career":"Carrière",
|
||||
"BOL.ui.boon":"Avantage",
|
||||
"BOL.ui.flaw":"Désanvatage",
|
||||
"BOL.ui.cost":"Cout XP",
|
||||
"BOL.ui.date":"Date",
|
||||
|
||||
"BOL.ui.isSorcerer": "Carrière de Sorcier ?",
|
||||
"BOL.ui.isAlchemist": "Carrière d'Alchimiste ?",
|
||||
@ -251,6 +257,7 @@
|
||||
"BOL.featureSubtypes.effects": "Effets",
|
||||
"BOL.featureSubtypes.boleffect": "Effet",
|
||||
"BOL.featureSubtypes.horoscope": "Horoscope",
|
||||
"BOL.featureSubtypes.xplog": "Log d'XP",
|
||||
|
||||
"BOL.fightOptionTypes.armor": "Attaque au défaut d'armure",
|
||||
"BOL.fightOptionTypes.intrepid": "Attaque intrépide",
|
||||
@ -581,6 +588,8 @@
|
||||
"BOL.ui.biosigns": "Signes distinctifs",
|
||||
"BOL.ui.biodescription": "Description",
|
||||
"BOL.ui.bionotes": "Notes",
|
||||
"BOL.ui.xplog":"Journal d'XP",
|
||||
"BOL.ui.value":"Valeur",
|
||||
|
||||
"BOL.chat.welcome1": "Bienvenue dans Barbarians of Lemuria (Ludospherik version)",
|
||||
"BOL.chat.welcome2": "Les livres nécessaires pour jouer sont disponibles sur le site de <a href='http://www.ludospherik.fr/content/14-barbarians-of-lemuria'>l'éditeur Ludospherik.</a>",
|
||||
@ -589,6 +598,10 @@
|
||||
"BOL.chat.welcome5": "Consulter l'aide en ligne pour plus d'informations : @UUID[Compendium.bol.aides-de-jeu.97rugQOtiwt8zPfQ]{Aide du Jeu}.",
|
||||
"BOL.chat.welcome6": "Bon jeu en Lemurie !",
|
||||
"BOL.chat.nodamage": "Ne pas appliquer les dommages",
|
||||
"BOL.chat.pcwarning": "Attention ! Aucun personnage n'est relié au joueur !",
|
||||
"BOL.chat.pcwarningmsg": "<b>ATTENTION</b> Le joueur n'est relié à aucun personnage !",
|
||||
"BOL.chat.pcnotlinked": "Le token du personnage joueur n'est pas relié à l'acteur",
|
||||
"BOL.chat.pcnotlinkedmsg": "<b>ATTENTION</b> Le token du personnage joueur n'est pas relié à l'acteur !",
|
||||
|
||||
"BOL.settings.rollArmor": "Effectuer des jets pour les armures",
|
||||
"BOL.settings.rollArmorTooltip": "Effectue un jet de dés pour les armures (valeur fixe si désactivé)",
|
||||
|
@ -27,7 +27,7 @@ export class BoLActorSheet extends ActorSheet {
|
||||
|
||||
function onLoad() {
|
||||
let logoSheet = BoLUtility.getLogoActorSheet()
|
||||
$(".bol-actor-form").css("backgroundImage",`url(${logoSheet})`)
|
||||
$(".bol-actor-form").css("backgroundImage", `url(${logoSheet})`)
|
||||
}
|
||||
// Setup everything onload
|
||||
$(function () { onLoad(); });
|
||||
@ -147,6 +147,7 @@ export class BoLActorSheet extends ActorSheet {
|
||||
formData.fightoptions = this.actor.fightoptions
|
||||
formData.ammos = this.actor.ammos
|
||||
formData.misc = this.actor.misc
|
||||
formData.xplog = this.actor.xplog
|
||||
formData.combat = this.actor.buildCombat()
|
||||
formData.initiativeRank = this.actor.getInitiativeRank()
|
||||
//formData.combatCreature = this.actor.buildCombatCreature()
|
||||
@ -159,8 +160,8 @@ export class BoLActorSheet extends ActorSheet {
|
||||
formData.bougette = this.actor.getBougette()
|
||||
formData.charType = this.actor.getCharType()
|
||||
formData.villainy = this.actor.getVillainy()
|
||||
formData.biography = await TextEditor.enrichHTML(this.object.system.details?.biography || "", {async: true})
|
||||
formData.notes = await TextEditor.enrichHTML(this.object.system.details.notes || "", {async: true})
|
||||
formData.biography = await TextEditor.enrichHTML(this.object.system.details?.biography || "", { async: true })
|
||||
formData.notes = await TextEditor.enrichHTML(this.object.system.details.notes || "", { async: true })
|
||||
formData.isSorcerer = this.actor.isSorcerer()
|
||||
formData.isAlchemist = this.actor.isAlchemist()
|
||||
formData.isAstrologer = this.actor.isAstrologer()
|
||||
@ -248,11 +249,8 @@ export class BoLActorSheet extends ActorSheet {
|
||||
case "attributexp":
|
||||
this.actor.incAttributeXP(dataset.key)
|
||||
break;
|
||||
case "bougette":
|
||||
this.actor.rollBougette()
|
||||
break;
|
||||
case "careerxp":
|
||||
this.actor.incCareerXP( li.data("item-id"))
|
||||
this.actor.incCareerXP(li.data("item-id"))
|
||||
break;
|
||||
case "horoscope-minor":
|
||||
BoLRoll.horoscopeCheck(this.actor, event, "minor")
|
||||
@ -263,6 +261,9 @@ export class BoLActorSheet extends ActorSheet {
|
||||
case "horoscope-major-group":
|
||||
BoLRoll.horoscopeCheck(this.actor, event, "majorgroup")
|
||||
break
|
||||
case "bougette":
|
||||
this.actor.rollBougette()
|
||||
break;
|
||||
|
||||
default: break;
|
||||
}
|
||||
|
@ -204,6 +204,24 @@ export class BoLActor extends Actor {
|
||||
return undefined
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
addXPLog(type, name, cost, value) {
|
||||
let xplog = {
|
||||
name: "XP : "+game.i18n.localize(type), type: "feature",
|
||||
img: "icons/magic/symbols/chevron-elipse-circle-blue.webp",
|
||||
system: {
|
||||
subtype: "xplog", properties: {
|
||||
xptype: type,
|
||||
xpdate: new Date().toLocaleDateString(),
|
||||
xpname: name,
|
||||
xpcost: cost,
|
||||
xpvalue: value
|
||||
}
|
||||
}
|
||||
}
|
||||
this.createEmbeddedDocuments('Item', [xplog])
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
incAttributeXP(key) {
|
||||
let attr = duplicate(this.system.attributes[key])
|
||||
@ -214,6 +232,7 @@ export class BoLActor extends Actor {
|
||||
attr.value += 1
|
||||
xp.spent += nextXP
|
||||
this.update({ [`system.attributes.${key}`]: attr, [`system.xp`]: xp })
|
||||
this.addXPLog("attribute", key, nextXP, attr.value)
|
||||
} else {
|
||||
ui.notifications.warn("Pas assez de points d'expérience !")
|
||||
}
|
||||
@ -230,6 +249,7 @@ export class BoLActor extends Actor {
|
||||
apt.value += 1
|
||||
xp.spent += nextXP
|
||||
this.update({ [`system.aptitudes.${key}`]: apt, [`system.xp`]: xp })
|
||||
this.addXPLog("aptitude", key, nextXP, apt.value)
|
||||
} else {
|
||||
ui.notifications.warn("Pas assez de points d'expérience !")
|
||||
}
|
||||
@ -246,6 +266,7 @@ export class BoLActor extends Actor {
|
||||
xp.spent += nextXP
|
||||
this.update({ [`system.xp`]: xp })
|
||||
this.updateEmbeddedDocuments('Item', [{ _id: career._id, 'system.rank': career.system.rank + 1 }])
|
||||
this.addXPLog("career", career.name, nextXP, career.system.rank+1)
|
||||
} else {
|
||||
ui.notifications.warn("Pas assez de points d'expérience !")
|
||||
}
|
||||
@ -298,6 +319,9 @@ export class BoLActor extends Actor {
|
||||
get boleffects() {
|
||||
return this.items.filter(i => i.type === "feature" && i.system.subtype === "boleffect")
|
||||
}
|
||||
get xplog() {
|
||||
return this.items.filter(i => i.type === "feature" && i.system.subtype === "xplog")
|
||||
}
|
||||
get horoscopes() {
|
||||
return this.items.filter(i => i.type === "feature" && i.system.subtype === "horoscope")
|
||||
}
|
||||
|
@ -15,9 +15,9 @@ import { BoLCombatManager } from "./system/bol-combat.js"
|
||||
import { BoLTokenHud } from "./system/bol-action-hud.js"
|
||||
import { BoLHotbar } from "./system/bol-hotbar.js"
|
||||
import { BoLAdventureGenerator } from "./system/bol-adventure-generator.js"
|
||||
import { BoLCommands} from "./system/bol-commands.js"
|
||||
import { BoLCharacterSummary} from "./system/bol-character-summary.js"
|
||||
import { BoLRoll} from "./controllers/bol-rolls.js"
|
||||
import { BoLCommands } from "./system/bol-commands.js"
|
||||
import { BoLCharacterSummary } from "./system/bol-character-summary.js"
|
||||
import { BoLRoll } from "./controllers/bol-rolls.js"
|
||||
|
||||
/* -------------------------------------------- */
|
||||
Hooks.once('init', async function () {
|
||||
@ -79,8 +79,8 @@ Hooks.once('init', async function () {
|
||||
|
||||
/* -------------------------------------------- */
|
||||
// Register world usage statistics
|
||||
function registerUsageCount( registerKey ) {
|
||||
if ( game.user.isGM ) {
|
||||
function registerUsageCount(registerKey) {
|
||||
if (game.user.isGM) {
|
||||
game.settings.register(registerKey, "world-key", {
|
||||
name: "Unique world key",
|
||||
scope: "world",
|
||||
@ -90,9 +90,9 @@ function registerUsageCount( registerKey ) {
|
||||
});
|
||||
|
||||
let worldKey = game.settings.get(registerKey, "world-key")
|
||||
if ( worldKey == undefined || worldKey == "" ) {
|
||||
if (worldKey == undefined || worldKey == "") {
|
||||
worldKey = randomID(32)
|
||||
game.settings.set(registerKey, "world-key", worldKey )
|
||||
game.settings.set(registerKey, "world-key", worldKey)
|
||||
}
|
||||
// Simple API counter
|
||||
let regURL = `https://www.uberwald.me/fvtt_appcount/count.php?name="${registerKey}"&worldKey="${worldKey}"&version="${game.release.generation}.${game.release.build}"&system="${game.system.id}"&systemversion="${game.system.version}"`
|
||||
@ -115,7 +115,7 @@ function welcomeMessage() {
|
||||
game.i18n.localize("BOL.chat.welcome4") + "</p>" +
|
||||
game.i18n.localize("BOL.chat.welcome5") + "<br>" +
|
||||
game.i18n.localize("BOL.chat.welcome6")
|
||||
} )
|
||||
})
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
@ -126,8 +126,24 @@ Hooks.once('ready', async function () {
|
||||
|
||||
registerUsageCount(game.system.id)
|
||||
|
||||
|
||||
welcomeMessage()
|
||||
|
||||
// User warning
|
||||
if (!game.user.isGM && game.user.character == undefined) {
|
||||
ui.notifications.info(game.i18n.localize("BOL.chat.pcwarning"));
|
||||
ChatMessage.create({
|
||||
content: game.i18n.localize("BOL.chat.pcwarningmsg") + game.user.name,
|
||||
user: game.user._id
|
||||
});
|
||||
}
|
||||
if (!game.user.isGM && game.user.character && !game.user.character.prototypeToken.actorLink) {
|
||||
ui.notifications.info(game.i18n.localize("BOL.chat.pcnotlinked"));
|
||||
ChatMessage.create({
|
||||
content: game.i18n.localize("BOL.chat.pcnotlinkedmsg") + game.user.name,
|
||||
user: game.user._id
|
||||
});
|
||||
}
|
||||
|
||||
})
|
||||
|
||||
|
||||
|
@ -28,7 +28,9 @@ export class BoLItemSheet extends ItemSheet {
|
||||
data.isGM = game.user.isGM;
|
||||
data.itemProperties = this.item.itemProperties;
|
||||
data.description = await TextEditor.enrichHTML(this.object.system.description, { async: true })
|
||||
|
||||
if (data.document.actor) {
|
||||
data.careers = data.document.actor.careers
|
||||
}
|
||||
// Dynamic default data fix/adapt
|
||||
if (itemData.type == "item") {
|
||||
if (!itemData.system.category) {
|
||||
|
@ -31,6 +31,15 @@ BOL.damageMultiplier = {
|
||||
"8": "x8"
|
||||
}
|
||||
|
||||
BOL.listTypes = {
|
||||
"attribute": "BOL.ui.attribute",
|
||||
"aptitude": "BOL.ui.aptitude",
|
||||
"career": "BOL.ui.career",
|
||||
"boon": "BOL.ui.boon",
|
||||
"flaw": "BOL.ui.flaw",
|
||||
"other": "BOL.ui.other"
|
||||
}
|
||||
|
||||
BOL.spellType = {
|
||||
"0": "BOL.spellItem.charm",
|
||||
"1": "BOL.spellItem.circle1",
|
||||
@ -271,6 +280,7 @@ BOL.featureSubtypes = {
|
||||
"fightoption" : "BOL.featureSubtypes.fightOption",
|
||||
"boleffect": "BOL.featureSubtypes.effect",
|
||||
"horoscope": "BOL.featureSubtypes.horoscope",
|
||||
"xplog": "BOL.featureSubtypes.xplog",
|
||||
}
|
||||
|
||||
BOL.fightOptionTypes = {
|
||||
@ -286,7 +296,7 @@ BOL.fightOptionTypes = {
|
||||
|
||||
BOL.itemIcons = {
|
||||
"item": "icons/containers/chest/chest-worn-oak-tan.webp",
|
||||
"capacity": "icons/sundries/scrolls/scroll-plain-tan-red.webp",
|
||||
"feature": "icons/sundries/scrolls/scroll-plain-tan-red.webp",
|
||||
"species": "icons/environment/people/group.webp",
|
||||
"profile": "icons/sundries/documents/blueprint-axe.webp",
|
||||
"path": "icons/sundries/books/book-embossed-gold-red.webp"
|
||||
|
@ -43,6 +43,7 @@ export const preloadHandlebarsTemplates = async function () {
|
||||
"systems/bol/templates/item/parts/properties/feature/fightoption-properties.hbs",
|
||||
"systems/bol/templates/item/parts/properties/item/weapon-vehicle-properties.hbs",
|
||||
"systems/bol/templates/item/parts/properties/feature/horoscope-properties.hbs",
|
||||
"systems/bol/templates/item/parts/properties/feature/xplog-properties.hbs",
|
||||
|
||||
// DIALOGS
|
||||
"systems/bol/templates/chat/rolls/attack-damage-card.hbs",
|
||||
|
@ -1 +1 @@
|
||||
MANIFEST-000124
|
||||
MANIFEST-000164
|
||||
|
@ -1,8 +1,8 @@
|
||||
2024/01/02-23:25:25.177839 7f99f3fff6c0 Recovering log #121
|
||||
2024/01/02-23:25:25.189308 7f99f3fff6c0 Delete type=3 #119
|
||||
2024/01/02-23:25:25.189419 7f99f3fff6c0 Delete type=0 #121
|
||||
2024/01/02-23:34:00.361361 7f9772fef6c0 Level-0 table #127: started
|
||||
2024/01/02-23:34:00.361387 7f9772fef6c0 Level-0 table #127: 0 bytes OK
|
||||
2024/01/02-23:34:00.367523 7f9772fef6c0 Delete type=0 #125
|
||||
2024/01/02-23:34:00.389488 7f9772fef6c0 Manual compaction at level-0 from '!journal!3xJg1rCxnWvEmoxS' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end)
|
||||
2024/01/02-23:34:00.389531 7f9772fef6c0 Manual compaction at level-1 from '!journal!3xJg1rCxnWvEmoxS' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-17:58:00.654494 7f2aeffff6c0 Recovering log #162
|
||||
2024/01/12-17:58:00.703417 7f2aeffff6c0 Delete type=3 #160
|
||||
2024/01/12-17:58:00.703506 7f2aeffff6c0 Delete type=0 #162
|
||||
2024/01/12-18:33:25.126235 7f2aee3ff6c0 Level-0 table #167: started
|
||||
2024/01/12-18:33:25.126295 7f2aee3ff6c0 Level-0 table #167: 0 bytes OK
|
||||
2024/01/12-18:33:25.133198 7f2aee3ff6c0 Delete type=0 #165
|
||||
2024/01/12-18:33:25.139871 7f2aee3ff6c0 Manual compaction at level-0 from '!journal!3xJg1rCxnWvEmoxS' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-18:33:25.139923 7f2aee3ff6c0 Manual compaction at level-1 from '!journal!3xJg1rCxnWvEmoxS' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end)
|
||||
|
@ -1,15 +1,8 @@
|
||||
2023/12/13-08:52:21.682896 7f61367fc6c0 Recovering log #117
|
||||
2023/12/13-08:52:21.693810 7f61367fc6c0 Delete type=3 #115
|
||||
2023/12/13-08:52:21.693981 7f61367fc6c0 Delete type=0 #117
|
||||
2023/12/13-08:53:48.355543 7f6134ff96c0 Level-0 table #122: started
|
||||
2023/12/13-08:53:48.359570 7f6134ff96c0 Level-0 table #122: 17814 bytes OK
|
||||
2023/12/13-08:53:48.366596 7f6134ff96c0 Delete type=0 #120
|
||||
2023/12/13-08:53:48.384645 7f6134ff96c0 Manual compaction at level-0 from '!journal!3xJg1rCxnWvEmoxS' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end)
|
||||
2023/12/13-08:53:48.384691 7f6134ff96c0 Manual compaction at level-1 from '!journal!3xJg1rCxnWvEmoxS' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 111 : 1
|
||||
2023/12/13-08:53:48.384700 7f6134ff96c0 Compacting 1@1 + 1@2 files
|
||||
2023/12/13-08:53:48.389527 7f6134ff96c0 Generated table #123@1: 24 keys, 26928 bytes
|
||||
2023/12/13-08:53:48.389558 7f6134ff96c0 Compacted 1@1 + 1@2 files => 26928 bytes
|
||||
2023/12/13-08:53:48.395755 7f6134ff96c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2023/12/13-08:53:48.395871 7f6134ff96c0 Delete type=2 #62
|
||||
2023/12/13-08:53:48.396062 7f6134ff96c0 Delete type=2 #122
|
||||
2023/12/13-08:53:48.421562 7f6134ff96c0 Manual compaction at level-1 from '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 111 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end)
|
||||
2024/01/11-23:52:22.269402 7f2d849ff6c0 Recovering log #158
|
||||
2024/01/11-23:52:22.279265 7f2d849ff6c0 Delete type=3 #156
|
||||
2024/01/11-23:52:22.279317 7f2d849ff6c0 Delete type=0 #158
|
||||
2024/01/12-17:21:27.002365 7f2aee3ff6c0 Level-0 table #163: started
|
||||
2024/01/12-17:21:27.002416 7f2aee3ff6c0 Level-0 table #163: 0 bytes OK
|
||||
2024/01/12-17:21:27.035659 7f2aee3ff6c0 Delete type=0 #161
|
||||
2024/01/12-17:21:27.068240 7f2aee3ff6c0 Manual compaction at level-0 from '!journal!3xJg1rCxnWvEmoxS' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-17:21:27.068304 7f2aee3ff6c0 Manual compaction at level-1 from '!journal!3xJg1rCxnWvEmoxS' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end)
|
||||
|
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000030
|
||||
MANIFEST-000070
|
||||
|
@ -1,8 +1,8 @@
|
||||
2024/01/02-23:25:25.151493 7f99f37fe6c0 Recovering log #28
|
||||
2024/01/02-23:25:25.161529 7f99f37fe6c0 Delete type=3 #26
|
||||
2024/01/02-23:25:25.161581 7f99f37fe6c0 Delete type=0 #28
|
||||
2024/01/02-23:34:00.375735 7f9772fef6c0 Level-0 table #33: started
|
||||
2024/01/02-23:34:00.375759 7f9772fef6c0 Level-0 table #33: 0 bytes OK
|
||||
2024/01/02-23:34:00.381825 7f9772fef6c0 Delete type=0 #31
|
||||
2024/01/02-23:34:00.389510 7f9772fef6c0 Manual compaction at level-0 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)
|
||||
2024/01/02-23:34:00.389544 7f9772fef6c0 Manual compaction at level-1 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-17:58:00.559279 7f2aeeffd6c0 Recovering log #68
|
||||
2024/01/12-17:58:00.603120 7f2aeeffd6c0 Delete type=3 #66
|
||||
2024/01/12-17:58:00.603243 7f2aeeffd6c0 Delete type=0 #68
|
||||
2024/01/12-18:33:25.082107 7f2aee3ff6c0 Level-0 table #73: started
|
||||
2024/01/12-18:33:25.082159 7f2aee3ff6c0 Level-0 table #73: 0 bytes OK
|
||||
2024/01/12-18:33:25.089101 7f2aee3ff6c0 Delete type=0 #71
|
||||
2024/01/12-18:33:25.111117 7f2aee3ff6c0 Manual compaction at level-0 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-18:33:25.111206 7f2aee3ff6c0 Manual compaction at level-1 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)
|
||||
|
@ -1,8 +1,8 @@
|
||||
2023/12/13-08:52:21.618084 7f61357fa6c0 Recovering log #24
|
||||
2023/12/13-08:52:21.629228 7f61357fa6c0 Delete type=3 #22
|
||||
2023/12/13-08:52:21.629353 7f61357fa6c0 Delete type=0 #24
|
||||
2023/12/13-08:53:48.340876 7f6134ff96c0 Level-0 table #29: started
|
||||
2023/12/13-08:53:48.340949 7f6134ff96c0 Level-0 table #29: 0 bytes OK
|
||||
2023/12/13-08:53:48.348214 7f6134ff96c0 Delete type=0 #27
|
||||
2023/12/13-08:53:48.366756 7f6134ff96c0 Manual compaction at level-0 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)
|
||||
2023/12/13-08:53:48.384659 7f6134ff96c0 Manual compaction at level-1 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)
|
||||
2024/01/11-23:52:22.245022 7f2aef7fe6c0 Recovering log #64
|
||||
2024/01/11-23:52:22.255738 7f2aef7fe6c0 Delete type=3 #62
|
||||
2024/01/11-23:52:22.255808 7f2aef7fe6c0 Delete type=0 #64
|
||||
2024/01/12-17:21:26.552390 7f2aee3ff6c0 Level-0 table #69: started
|
||||
2024/01/12-17:21:26.553565 7f2aee3ff6c0 Level-0 table #69: 0 bytes OK
|
||||
2024/01/12-17:21:26.587319 7f2aee3ff6c0 Delete type=0 #67
|
||||
2024/01/12-17:21:26.658367 7f2aee3ff6c0 Manual compaction at level-0 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-17:21:26.658422 7f2aee3ff6c0 Manual compaction at level-1 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)
|
||||
|
Binary file not shown.
BIN
packs/armors/MANIFEST-000070
Normal file
BIN
packs/armors/MANIFEST-000070
Normal file
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000123
|
||||
MANIFEST-000163
|
||||
|
@ -1,8 +1,8 @@
|
||||
2024/01/02-23:25:25.045777 7f99f37fe6c0 Recovering log #120
|
||||
2024/01/02-23:25:25.055383 7f99f37fe6c0 Delete type=3 #118
|
||||
2024/01/02-23:25:25.055657 7f99f37fe6c0 Delete type=0 #120
|
||||
2024/01/02-23:34:00.303015 7f9772fef6c0 Level-0 table #126: started
|
||||
2024/01/02-23:34:00.303046 7f9772fef6c0 Level-0 table #126: 0 bytes OK
|
||||
2024/01/02-23:34:00.309951 7f9772fef6c0 Delete type=0 #124
|
||||
2024/01/02-23:34:00.316757 7f9772fef6c0 Manual compaction at level-0 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)
|
||||
2024/01/02-23:34:00.323992 7f9772fef6c0 Manual compaction at level-1 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-17:58:00.159080 7f2aeeffd6c0 Recovering log #161
|
||||
2024/01/12-17:58:00.204717 7f2aeeffd6c0 Delete type=3 #159
|
||||
2024/01/12-17:58:00.204803 7f2aeeffd6c0 Delete type=0 #161
|
||||
2024/01/12-18:33:25.003258 7f2aee3ff6c0 Level-0 table #166: started
|
||||
2024/01/12-18:33:25.003305 7f2aee3ff6c0 Level-0 table #166: 0 bytes OK
|
||||
2024/01/12-18:33:25.009363 7f2aee3ff6c0 Delete type=0 #164
|
||||
2024/01/12-18:33:25.027341 7f2aee3ff6c0 Manual compaction at level-0 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-18:33:25.038682 7f2aee3ff6c0 Manual compaction at level-1 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)
|
||||
|
@ -1,15 +1,8 @@
|
||||
2023/12/13-08:52:21.436244 7f61357fa6c0 Recovering log #116
|
||||
2023/12/13-08:52:21.447788 7f61357fa6c0 Delete type=3 #114
|
||||
2023/12/13-08:52:21.447917 7f61357fa6c0 Delete type=0 #116
|
||||
2023/12/13-08:53:48.177402 7f6134ff96c0 Level-0 table #121: started
|
||||
2023/12/13-08:53:48.181304 7f6134ff96c0 Level-0 table #121: 17449 bytes OK
|
||||
2023/12/13-08:53:48.188376 7f6134ff96c0 Delete type=0 #119
|
||||
2023/12/13-08:53:48.198764 7f6134ff96c0 Manual compaction at level-0 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)
|
||||
2023/12/13-08:53:48.198814 7f6134ff96c0 Manual compaction at level-1 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at '!items!zgspy1QKaxdEetEw' @ 118 : 1
|
||||
2023/12/13-08:53:48.198824 7f6134ff96c0 Compacting 1@1 + 1@2 files
|
||||
2023/12/13-08:53:48.203066 7f6134ff96c0 Generated table #122@1: 59 keys, 17449 bytes
|
||||
2023/12/13-08:53:48.203099 7f6134ff96c0 Compacted 1@1 + 1@2 files => 17449 bytes
|
||||
2023/12/13-08:53:48.209650 7f6134ff96c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2023/12/13-08:53:48.209797 7f6134ff96c0 Delete type=2 #5
|
||||
2023/12/13-08:53:48.209998 7f6134ff96c0 Delete type=2 #121
|
||||
2023/12/13-08:53:48.242992 7f6134ff96c0 Manual compaction at level-1 from '!items!zgspy1QKaxdEetEw' @ 118 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)
|
||||
2024/01/11-23:52:22.142717 7f2aef7fe6c0 Recovering log #157
|
||||
2024/01/11-23:52:22.153108 7f2aef7fe6c0 Delete type=3 #155
|
||||
2024/01/11-23:52:22.153152 7f2aef7fe6c0 Delete type=0 #157
|
||||
2024/01/12-17:21:26.236099 7f2aee3ff6c0 Level-0 table #162: started
|
||||
2024/01/12-17:21:26.236153 7f2aee3ff6c0 Level-0 table #162: 0 bytes OK
|
||||
2024/01/12-17:21:26.269940 7f2aee3ff6c0 Delete type=0 #160
|
||||
2024/01/12-17:21:26.270146 7f2aee3ff6c0 Manual compaction at level-0 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-17:21:26.329363 7f2aee3ff6c0 Manual compaction at level-1 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)
|
||||
|
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000123
|
||||
MANIFEST-000163
|
||||
|
@ -1,8 +1,8 @@
|
||||
2024/01/02-23:25:25.058623 7f9a097fa6c0 Recovering log #120
|
||||
2024/01/02-23:25:25.068614 7f9a097fa6c0 Delete type=3 #118
|
||||
2024/01/02-23:25:25.068662 7f9a097fa6c0 Delete type=0 #120
|
||||
2024/01/02-23:34:00.310209 7f9772fef6c0 Level-0 table #126: started
|
||||
2024/01/02-23:34:00.310260 7f9772fef6c0 Level-0 table #126: 0 bytes OK
|
||||
2024/01/02-23:34:00.316663 7f9772fef6c0 Delete type=0 #124
|
||||
2024/01/02-23:34:00.323982 7f9772fef6c0 Manual compaction at level-0 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)
|
||||
2024/01/02-23:34:00.333515 7f9772fef6c0 Manual compaction at level-1 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-17:58:00.207662 7f2d849ff6c0 Recovering log #161
|
||||
2024/01/12-17:58:00.250586 7f2d849ff6c0 Delete type=3 #159
|
||||
2024/01/12-17:58:00.250725 7f2d849ff6c0 Delete type=0 #161
|
||||
2024/01/12-18:33:25.054071 7f2aee3ff6c0 Level-0 table #166: started
|
||||
2024/01/12-18:33:25.054116 7f2aee3ff6c0 Level-0 table #166: 0 bytes OK
|
||||
2024/01/12-18:33:25.061185 7f2aee3ff6c0 Delete type=0 #164
|
||||
2024/01/12-18:33:25.075176 7f2aee3ff6c0 Manual compaction at level-0 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-18:33:25.081858 7f2aee3ff6c0 Manual compaction at level-1 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)
|
||||
|
@ -1,15 +1,8 @@
|
||||
2023/12/13-08:52:21.471174 7f6135ffb6c0 Recovering log #116
|
||||
2023/12/13-08:52:21.481262 7f6135ffb6c0 Delete type=3 #114
|
||||
2023/12/13-08:52:21.481340 7f6135ffb6c0 Delete type=0 #116
|
||||
2023/12/13-08:53:48.210111 7f6134ff96c0 Level-0 table #121: started
|
||||
2023/12/13-08:53:48.213777 7f6134ff96c0 Level-0 table #121: 2253 bytes OK
|
||||
2023/12/13-08:53:48.220546 7f6134ff96c0 Delete type=0 #119
|
||||
2023/12/13-08:53:48.243008 7f6134ff96c0 Manual compaction at level-0 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)
|
||||
2023/12/13-08:53:48.243053 7f6134ff96c0 Manual compaction at level-1 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at '!items!yofwG0YrsL902G77' @ 16 : 1
|
||||
2023/12/13-08:53:48.243061 7f6134ff96c0 Compacting 1@1 + 1@2 files
|
||||
2023/12/13-08:53:48.246547 7f6134ff96c0 Generated table #122@1: 8 keys, 2253 bytes
|
||||
2023/12/13-08:53:48.246574 7f6134ff96c0 Compacted 1@1 + 1@2 files => 2253 bytes
|
||||
2023/12/13-08:53:48.252819 7f6134ff96c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2023/12/13-08:53:48.252934 7f6134ff96c0 Delete type=2 #5
|
||||
2023/12/13-08:53:48.253082 7f6134ff96c0 Delete type=2 #121
|
||||
2023/12/13-08:53:48.292770 7f6134ff96c0 Manual compaction at level-1 from '!items!yofwG0YrsL902G77' @ 16 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)
|
||||
2024/01/11-23:52:22.156402 7f2aeeffd6c0 Recovering log #157
|
||||
2024/01/11-23:52:22.165789 7f2aeeffd6c0 Delete type=3 #155
|
||||
2024/01/11-23:52:22.165838 7f2aeeffd6c0 Delete type=0 #157
|
||||
2024/01/12-17:21:26.379895 7f2aee3ff6c0 Level-0 table #162: started
|
||||
2024/01/12-17:21:26.379934 7f2aee3ff6c0 Level-0 table #162: 0 bytes OK
|
||||
2024/01/12-17:21:26.407918 7f2aee3ff6c0 Delete type=0 #160
|
||||
2024/01/12-17:21:26.472414 7f2aee3ff6c0 Manual compaction at level-0 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-17:21:26.510034 7f2aee3ff6c0 Manual compaction at level-1 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)
|
||||
|
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000123
|
||||
MANIFEST-000163
|
||||
|
@ -1,8 +1,8 @@
|
||||
2024/01/02-23:25:25.085234 7f9a08ff96c0 Recovering log #120
|
||||
2024/01/02-23:25:25.095129 7f9a08ff96c0 Delete type=3 #118
|
||||
2024/01/02-23:25:25.095182 7f9a08ff96c0 Delete type=0 #120
|
||||
2024/01/02-23:34:00.333534 7f9772fef6c0 Level-0 table #126: started
|
||||
2024/01/02-23:34:00.333589 7f9772fef6c0 Level-0 table #126: 0 bytes OK
|
||||
2024/01/02-23:34:00.340506 7f9772fef6c0 Delete type=0 #124
|
||||
2024/01/02-23:34:00.347405 7f9772fef6c0 Manual compaction at level-0 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)
|
||||
2024/01/02-23:34:00.361237 7f9772fef6c0 Manual compaction at level-1 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-17:58:00.301181 7f2aef7fe6c0 Recovering log #161
|
||||
2024/01/12-17:58:00.347103 7f2aef7fe6c0 Delete type=3 #159
|
||||
2024/01/12-17:58:00.347210 7f2aef7fe6c0 Delete type=0 #161
|
||||
2024/01/12-18:33:25.067972 7f2aee3ff6c0 Level-0 table #166: started
|
||||
2024/01/12-18:33:25.068005 7f2aee3ff6c0 Level-0 table #166: 0 bytes OK
|
||||
2024/01/12-18:33:25.074990 7f2aee3ff6c0 Delete type=0 #164
|
||||
2024/01/12-18:33:25.081825 7f2aee3ff6c0 Manual compaction at level-0 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-18:33:25.081885 7f2aee3ff6c0 Manual compaction at level-1 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)
|
||||
|
@ -1,15 +1,8 @@
|
||||
2023/12/13-08:52:21.514750 7f61357fa6c0 Recovering log #116
|
||||
2023/12/13-08:52:21.525064 7f61357fa6c0 Delete type=3 #114
|
||||
2023/12/13-08:52:21.525155 7f61357fa6c0 Delete type=0 #116
|
||||
2023/12/13-08:53:48.232135 7f6134ff96c0 Level-0 table #121: started
|
||||
2023/12/13-08:53:48.236265 7f6134ff96c0 Level-0 table #121: 37626 bytes OK
|
||||
2023/12/13-08:53:48.242838 7f6134ff96c0 Delete type=0 #119
|
||||
2023/12/13-08:53:48.243037 7f6134ff96c0 Manual compaction at level-0 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)
|
||||
2023/12/13-08:53:48.253259 7f6134ff96c0 Manual compaction at level-1 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at '!items!wUUDR1XCrwdFCzIe' @ 53 : 1
|
||||
2023/12/13-08:53:48.253273 7f6134ff96c0 Compacting 1@1 + 1@2 files
|
||||
2023/12/13-08:53:48.258675 7f6134ff96c0 Generated table #122@1: 27 keys, 40640 bytes
|
||||
2023/12/13-08:53:48.258693 7f6134ff96c0 Compacted 1@1 + 1@2 files => 40640 bytes
|
||||
2023/12/13-08:53:48.265674 7f6134ff96c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2023/12/13-08:53:48.265771 7f6134ff96c0 Delete type=2 #5
|
||||
2023/12/13-08:53:48.265917 7f6134ff96c0 Delete type=2 #121
|
||||
2023/12/13-08:53:48.292787 7f6134ff96c0 Manual compaction at level-1 from '!items!wUUDR1XCrwdFCzIe' @ 53 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)
|
||||
2024/01/11-23:52:22.180911 7f2aeffff6c0 Recovering log #157
|
||||
2024/01/11-23:52:22.191351 7f2aeffff6c0 Delete type=3 #155
|
||||
2024/01/11-23:52:22.191473 7f2aeffff6c0 Delete type=0 #157
|
||||
2024/01/12-17:21:26.450798 7f2aee3ff6c0 Level-0 table #162: started
|
||||
2024/01/12-17:21:26.450844 7f2aee3ff6c0 Level-0 table #162: 0 bytes OK
|
||||
2024/01/12-17:21:26.471880 7f2aee3ff6c0 Delete type=0 #160
|
||||
2024/01/12-17:21:26.510014 7f2aee3ff6c0 Manual compaction at level-0 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-17:21:26.510071 7f2aee3ff6c0 Manual compaction at level-1 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)
|
||||
|
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000123
|
||||
MANIFEST-000163
|
||||
|
@ -1,8 +1,8 @@
|
||||
2024/01/02-23:25:25.195583 7f9a08ff96c0 Recovering log #120
|
||||
2024/01/02-23:25:25.205411 7f9a08ff96c0 Delete type=3 #118
|
||||
2024/01/02-23:25:25.205482 7f9a08ff96c0 Delete type=0 #120
|
||||
2024/01/02-23:34:00.403828 7f9772fef6c0 Level-0 table #126: started
|
||||
2024/01/02-23:34:00.403852 7f9772fef6c0 Level-0 table #126: 0 bytes OK
|
||||
2024/01/02-23:34:00.410648 7f9772fef6c0 Delete type=0 #124
|
||||
2024/01/02-23:34:00.417684 7f9772fef6c0 Manual compaction at level-0 from '!scenes!1ZDXKpKixS12xzW3' @ 72057594037927935 : 1 .. '!scenes.tiles!78gEyXvSfBJi9iL1.rJglQmZXB0eRIL8y' @ 0 : 0; will stop at (end)
|
||||
2024/01/02-23:34:00.417728 7f9772fef6c0 Manual compaction at level-1 from '!scenes!1ZDXKpKixS12xzW3' @ 72057594037927935 : 1 .. '!scenes.tiles!78gEyXvSfBJi9iL1.rJglQmZXB0eRIL8y' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-17:58:00.708420 7f2aef7fe6c0 Recovering log #161
|
||||
2024/01/12-17:58:00.758343 7f2aef7fe6c0 Delete type=3 #159
|
||||
2024/01/12-17:58:00.758928 7f2aef7fe6c0 Delete type=0 #161
|
||||
2024/01/12-18:33:25.133341 7f2aee3ff6c0 Level-0 table #166: started
|
||||
2024/01/12-18:33:25.133378 7f2aee3ff6c0 Level-0 table #166: 0 bytes OK
|
||||
2024/01/12-18:33:25.139690 7f2aee3ff6c0 Delete type=0 #164
|
||||
2024/01/12-18:33:25.139886 7f2aee3ff6c0 Manual compaction at level-0 from '!scenes!1ZDXKpKixS12xzW3' @ 72057594037927935 : 1 .. '!scenes.tiles!78gEyXvSfBJi9iL1.rJglQmZXB0eRIL8y' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-18:33:25.139935 7f2aee3ff6c0 Manual compaction at level-1 from '!scenes!1ZDXKpKixS12xzW3' @ 72057594037927935 : 1 .. '!scenes.tiles!78gEyXvSfBJi9iL1.rJglQmZXB0eRIL8y' @ 0 : 0; will stop at (end)
|
||||
|
@ -1,15 +1,8 @@
|
||||
2023/12/13-08:52:21.708212 7f61357fa6c0 Recovering log #116
|
||||
2023/12/13-08:52:21.719348 7f61357fa6c0 Delete type=3 #114
|
||||
2023/12/13-08:52:21.719497 7f61357fa6c0 Delete type=0 #116
|
||||
2023/12/13-08:53:48.366771 7f6134ff96c0 Level-0 table #121: started
|
||||
2023/12/13-08:53:48.377927 7f6134ff96c0 Level-0 table #121: 1212746 bytes OK
|
||||
2023/12/13-08:53:48.384205 7f6134ff96c0 Delete type=0 #119
|
||||
2023/12/13-08:53:48.384673 7f6134ff96c0 Manual compaction at level-0 from '!scenes!1ZDXKpKixS12xzW3' @ 72057594037927935 : 1 .. '!scenes.tiles!78gEyXvSfBJi9iL1.rJglQmZXB0eRIL8y' @ 0 : 0; will stop at (end)
|
||||
2023/12/13-08:53:48.396179 7f6134ff96c0 Manual compaction at level-1 from '!scenes!1ZDXKpKixS12xzW3' @ 72057594037927935 : 1 .. '!scenes.tiles!78gEyXvSfBJi9iL1.rJglQmZXB0eRIL8y' @ 0 : 0; will stop at '!scenes.tiles!78gEyXvSfBJi9iL1.rJglQmZXB0eRIL8y' @ 44 : 1
|
||||
2023/12/13-08:53:48.396189 7f6134ff96c0 Compacting 1@1 + 1@2 files
|
||||
2023/12/13-08:53:48.406257 7f6134ff96c0 Generated table #122@1: 37 keys, 1212746 bytes
|
||||
2023/12/13-08:53:48.406287 7f6134ff96c0 Compacted 1@1 + 1@2 files => 1212746 bytes
|
||||
2023/12/13-08:53:48.413572 7f6134ff96c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2023/12/13-08:53:48.413789 7f6134ff96c0 Delete type=2 #5
|
||||
2023/12/13-08:53:48.414456 7f6134ff96c0 Delete type=2 #121
|
||||
2023/12/13-08:53:48.421585 7f6134ff96c0 Manual compaction at level-1 from '!scenes.tiles!78gEyXvSfBJi9iL1.rJglQmZXB0eRIL8y' @ 44 : 1 .. '!scenes.tiles!78gEyXvSfBJi9iL1.rJglQmZXB0eRIL8y' @ 0 : 0; will stop at (end)
|
||||
2024/01/11-23:52:22.282439 7f2aeffff6c0 Recovering log #157
|
||||
2024/01/11-23:52:22.293099 7f2aeffff6c0 Delete type=3 #155
|
||||
2024/01/11-23:52:22.293221 7f2aeffff6c0 Delete type=0 #157
|
||||
2024/01/12-17:21:26.685395 7f2aee3ff6c0 Level-0 table #162: started
|
||||
2024/01/12-17:21:26.685435 7f2aee3ff6c0 Level-0 table #162: 0 bytes OK
|
||||
2024/01/12-17:21:26.712975 7f2aee3ff6c0 Delete type=0 #160
|
||||
2024/01/12-17:21:26.786099 7f2aee3ff6c0 Manual compaction at level-0 from '!scenes!1ZDXKpKixS12xzW3' @ 72057594037927935 : 1 .. '!scenes.tiles!78gEyXvSfBJi9iL1.rJglQmZXB0eRIL8y' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-17:21:26.786181 7f2aee3ff6c0 Manual compaction at level-1 from '!scenes!1ZDXKpKixS12xzW3' @ 72057594037927935 : 1 .. '!scenes.tiles!78gEyXvSfBJi9iL1.rJglQmZXB0eRIL8y' @ 0 : 0; will stop at (end)
|
||||
|
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000123
|
||||
MANIFEST-000163
|
||||
|
@ -1,8 +1,8 @@
|
||||
2024/01/02-23:25:25.310347 7f9a097fa6c0 Recovering log #120
|
||||
2024/01/02-23:25:25.319646 7f9a097fa6c0 Delete type=3 #118
|
||||
2024/01/02-23:25:25.319693 7f9a097fa6c0 Delete type=0 #120
|
||||
2024/01/02-23:34:00.445149 7f9772fef6c0 Level-0 table #126: started
|
||||
2024/01/02-23:34:00.445172 7f9772fef6c0 Level-0 table #126: 0 bytes OK
|
||||
2024/01/02-23:34:00.451743 7f9772fef6c0 Delete type=0 #124
|
||||
2024/01/02-23:34:00.451918 7f9772fef6c0 Manual compaction at level-0 from '!actors!1QGaindSWLCT4QXD' @ 72057594037927935 : 1 .. '!actors.items!yGlDTCiMiaH4vJTH.mvXGkWoCcRGjUpYV' @ 0 : 0; will stop at (end)
|
||||
2024/01/02-23:34:00.451974 7f9772fef6c0 Manual compaction at level-1 from '!actors!1QGaindSWLCT4QXD' @ 72057594037927935 : 1 .. '!actors.items!yGlDTCiMiaH4vJTH.mvXGkWoCcRGjUpYV' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-17:58:01.104161 7f2d849ff6c0 Recovering log #161
|
||||
2024/01/12-17:58:01.153283 7f2d849ff6c0 Delete type=3 #159
|
||||
2024/01/12-17:58:01.153485 7f2d849ff6c0 Delete type=0 #161
|
||||
2024/01/12-18:33:25.169822 7f2aee3ff6c0 Level-0 table #166: started
|
||||
2024/01/12-18:33:25.169874 7f2aee3ff6c0 Level-0 table #166: 0 bytes OK
|
||||
2024/01/12-18:33:25.176198 7f2aee3ff6c0 Delete type=0 #164
|
||||
2024/01/12-18:33:25.199264 7f2aee3ff6c0 Manual compaction at level-0 from '!actors!1QGaindSWLCT4QXD' @ 72057594037927935 : 1 .. '!actors.items!yGlDTCiMiaH4vJTH.mvXGkWoCcRGjUpYV' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-18:33:25.199362 7f2aee3ff6c0 Manual compaction at level-1 from '!actors!1QGaindSWLCT4QXD' @ 72057594037927935 : 1 .. '!actors.items!yGlDTCiMiaH4vJTH.mvXGkWoCcRGjUpYV' @ 0 : 0; will stop at (end)
|
||||
|
@ -1,15 +1,8 @@
|
||||
2023/12/13-08:52:21.905098 7f6136ffd6c0 Recovering log #116
|
||||
2023/12/13-08:52:21.921828 7f6136ffd6c0 Delete type=3 #114
|
||||
2023/12/13-08:52:21.921979 7f6136ffd6c0 Delete type=0 #116
|
||||
2023/12/13-08:53:48.524634 7f6134ff96c0 Level-0 table #121: started
|
||||
2023/12/13-08:53:48.529685 7f6134ff96c0 Level-0 table #121: 90965 bytes OK
|
||||
2023/12/13-08:53:48.536056 7f6134ff96c0 Delete type=0 #119
|
||||
2023/12/13-08:53:48.536363 7f6134ff96c0 Manual compaction at level-0 from '!actors!1QGaindSWLCT4QXD' @ 72057594037927935 : 1 .. '!actors.items!yGlDTCiMiaH4vJTH.mvXGkWoCcRGjUpYV' @ 0 : 0; will stop at (end)
|
||||
2023/12/13-08:53:48.536410 7f6134ff96c0 Manual compaction at level-1 from '!actors!1QGaindSWLCT4QXD' @ 72057594037927935 : 1 .. '!actors.items!yGlDTCiMiaH4vJTH.mvXGkWoCcRGjUpYV' @ 0 : 0; will stop at '!actors.items!yGlDTCiMiaH4vJTH.mvXGkWoCcRGjUpYV' @ 307 : 1
|
||||
2023/12/13-08:53:48.536421 7f6134ff96c0 Compacting 1@1 + 1@2 files
|
||||
2023/12/13-08:53:48.543445 7f6134ff96c0 Generated table #122@1: 155 keys, 90965 bytes
|
||||
2023/12/13-08:53:48.543490 7f6134ff96c0 Compacted 1@1 + 1@2 files => 90965 bytes
|
||||
2023/12/13-08:53:48.549818 7f6134ff96c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2023/12/13-08:53:48.549934 7f6134ff96c0 Delete type=2 #5
|
||||
2023/12/13-08:53:48.550099 7f6134ff96c0 Delete type=2 #121
|
||||
2023/12/13-08:53:48.550408 7f6134ff96c0 Manual compaction at level-1 from '!actors.items!yGlDTCiMiaH4vJTH.mvXGkWoCcRGjUpYV' @ 307 : 1 .. '!actors.items!yGlDTCiMiaH4vJTH.mvXGkWoCcRGjUpYV' @ 0 : 0; will stop at (end)
|
||||
2024/01/11-23:52:22.387799 7f2aeeffd6c0 Recovering log #157
|
||||
2024/01/11-23:52:22.398078 7f2aeeffd6c0 Delete type=3 #155
|
||||
2024/01/11-23:52:22.398208 7f2aeeffd6c0 Delete type=0 #157
|
||||
2024/01/12-17:21:26.929290 7f2aee3ff6c0 Level-0 table #162: started
|
||||
2024/01/12-17:21:26.929361 7f2aee3ff6c0 Level-0 table #162: 0 bytes OK
|
||||
2024/01/12-17:21:26.964576 7f2aee3ff6c0 Delete type=0 #160
|
||||
2024/01/12-17:21:27.068192 7f2aee3ff6c0 Manual compaction at level-0 from '!actors!1QGaindSWLCT4QXD' @ 72057594037927935 : 1 .. '!actors.items!yGlDTCiMiaH4vJTH.mvXGkWoCcRGjUpYV' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-17:21:27.068263 7f2aee3ff6c0 Manual compaction at level-1 from '!actors!1QGaindSWLCT4QXD' @ 72057594037927935 : 1 .. '!actors.items!yGlDTCiMiaH4vJTH.mvXGkWoCcRGjUpYV' @ 0 : 0; will stop at (end)
|
||||
|
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000122
|
||||
MANIFEST-000162
|
||||
|
@ -1,8 +1,8 @@
|
||||
2024/01/02-23:25:25.296875 7f99f37fe6c0 Recovering log #120
|
||||
2024/01/02-23:25:25.308292 7f99f37fe6c0 Delete type=3 #118
|
||||
2024/01/02-23:25:25.308344 7f99f37fe6c0 Delete type=0 #120
|
||||
2024/01/02-23:34:00.437770 7f9772fef6c0 Level-0 table #125: started
|
||||
2024/01/02-23:34:00.437996 7f9772fef6c0 Level-0 table #125: 0 bytes OK
|
||||
2024/01/02-23:34:00.444921 7f9772fef6c0 Delete type=0 #123
|
||||
2024/01/02-23:34:00.445053 7f9772fef6c0 Manual compaction at level-0 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)
|
||||
2024/01/02-23:34:00.445084 7f9772fef6c0 Manual compaction at level-1 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-17:58:01.054556 7f2aeeffd6c0 Recovering log #160
|
||||
2024/01/12-17:58:01.101242 7f2aeeffd6c0 Delete type=3 #158
|
||||
2024/01/12-17:58:01.101327 7f2aeeffd6c0 Delete type=0 #160
|
||||
2024/01/12-18:33:25.184427 7f2aee3ff6c0 Level-0 table #165: started
|
||||
2024/01/12-18:33:25.184480 7f2aee3ff6c0 Level-0 table #165: 0 bytes OK
|
||||
2024/01/12-18:33:25.191074 7f2aee3ff6c0 Delete type=0 #163
|
||||
2024/01/12-18:33:25.199320 7f2aee3ff6c0 Manual compaction at level-0 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-18:33:25.199403 7f2aee3ff6c0 Manual compaction at level-1 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)
|
||||
|
@ -1,8 +1,8 @@
|
||||
2023/12/13-08:52:21.886820 7f61357fa6c0 Recovering log #116
|
||||
2023/12/13-08:52:21.898896 7f61357fa6c0 Delete type=3 #114
|
||||
2023/12/13-08:52:21.898983 7f61357fa6c0 Delete type=0 #116
|
||||
2023/12/13-08:53:48.517363 7f6134ff96c0 Level-0 table #121: started
|
||||
2023/12/13-08:53:48.517438 7f6134ff96c0 Level-0 table #121: 0 bytes OK
|
||||
2023/12/13-08:53:48.524502 7f6134ff96c0 Delete type=0 #119
|
||||
2023/12/13-08:53:48.536344 7f6134ff96c0 Manual compaction at level-0 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)
|
||||
2023/12/13-08:53:48.550391 7f6134ff96c0 Manual compaction at level-1 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)
|
||||
2024/01/11-23:52:22.375443 7f2aef7fe6c0 Recovering log #156
|
||||
2024/01/11-23:52:22.385423 7f2aef7fe6c0 Delete type=3 #154
|
||||
2024/01/11-23:52:22.385520 7f2aef7fe6c0 Delete type=0 #156
|
||||
2024/01/12-17:21:26.964789 7f2aee3ff6c0 Level-0 table #161: started
|
||||
2024/01/12-17:21:26.964843 7f2aee3ff6c0 Level-0 table #161: 0 bytes OK
|
||||
2024/01/12-17:21:27.002161 7f2aee3ff6c0 Delete type=0 #159
|
||||
2024/01/12-17:21:27.068219 7f2aee3ff6c0 Manual compaction at level-0 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-17:21:27.068283 7f2aee3ff6c0 Manual compaction at level-1 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)
|
||||
|
Binary file not shown.
BIN
packs/effets-exemples/MANIFEST-000162
Normal file
BIN
packs/effets-exemples/MANIFEST-000162
Normal file
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000124
|
||||
MANIFEST-000164
|
||||
|
@ -1,8 +1,8 @@
|
||||
2024/01/02-23:25:25.125818 7f99f3fff6c0 Recovering log #122
|
||||
2024/01/02-23:25:25.136045 7f99f3fff6c0 Delete type=3 #120
|
||||
2024/01/02-23:25:25.136118 7f99f3fff6c0 Delete type=0 #122
|
||||
2024/01/02-23:34:00.354227 7f9772fef6c0 Level-0 table #127: started
|
||||
2024/01/02-23:34:00.354258 7f9772fef6c0 Level-0 table #127: 0 bytes OK
|
||||
2024/01/02-23:34:00.361101 7f9772fef6c0 Delete type=0 #125
|
||||
2024/01/02-23:34:00.361255 7f9772fef6c0 Manual compaction at level-0 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)
|
||||
2024/01/02-23:34:00.361282 7f9772fef6c0 Manual compaction at level-1 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-17:58:00.455820 7f2aeffff6c0 Recovering log #162
|
||||
2024/01/12-17:58:00.511511 7f2aeffff6c0 Delete type=3 #160
|
||||
2024/01/12-17:58:00.511604 7f2aeffff6c0 Delete type=0 #162
|
||||
2024/01/12-18:33:25.096428 7f2aee3ff6c0 Level-0 table #167: started
|
||||
2024/01/12-18:33:25.096474 7f2aee3ff6c0 Level-0 table #167: 0 bytes OK
|
||||
2024/01/12-18:33:25.102831 7f2aee3ff6c0 Delete type=0 #165
|
||||
2024/01/12-18:33:25.111155 7f2aee3ff6c0 Manual compaction at level-0 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-18:33:25.111193 7f2aee3ff6c0 Manual compaction at level-1 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)
|
||||
|
@ -1,8 +1,8 @@
|
||||
2023/12/13-08:52:21.579735 7f61367fc6c0 Recovering log #118
|
||||
2023/12/13-08:52:21.589985 7f61367fc6c0 Delete type=3 #116
|
||||
2023/12/13-08:52:21.590126 7f61367fc6c0 Delete type=0 #118
|
||||
2023/12/13-08:53:48.316033 7f6134ff96c0 Level-0 table #123: started
|
||||
2023/12/13-08:53:48.316078 7f6134ff96c0 Level-0 table #123: 0 bytes OK
|
||||
2023/12/13-08:53:48.322725 7f6134ff96c0 Delete type=0 #121
|
||||
2023/12/13-08:53:48.329736 7f6134ff96c0 Manual compaction at level-0 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)
|
||||
2023/12/13-08:53:48.340858 7f6134ff96c0 Manual compaction at level-1 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)
|
||||
2024/01/11-23:52:22.220063 7f2d849ff6c0 Recovering log #158
|
||||
2024/01/11-23:52:22.229888 7f2d849ff6c0 Delete type=3 #156
|
||||
2024/01/11-23:52:22.230000 7f2d849ff6c0 Delete type=0 #158
|
||||
2024/01/12-17:21:26.616976 7f2aee3ff6c0 Level-0 table #163: started
|
||||
2024/01/12-17:21:26.617027 7f2aee3ff6c0 Level-0 table #163: 0 bytes OK
|
||||
2024/01/12-17:21:26.658165 7f2aee3ff6c0 Delete type=0 #161
|
||||
2024/01/12-17:21:26.658399 7f2aee3ff6c0 Manual compaction at level-0 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-17:21:26.658448 7f2aee3ff6c0 Manual compaction at level-1 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)
|
||||
|
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000122
|
||||
MANIFEST-000162
|
||||
|
@ -1,8 +1,8 @@
|
||||
2024/01/02-23:25:25.256452 7f9a097fa6c0 Recovering log #120
|
||||
2024/01/02-23:25:25.267071 7f9a097fa6c0 Delete type=3 #118
|
||||
2024/01/02-23:25:25.267152 7f9a097fa6c0 Delete type=0 #120
|
||||
2024/01/02-23:34:00.417785 7f9772fef6c0 Level-0 table #125: started
|
||||
2024/01/02-23:34:00.417832 7f9772fef6c0 Level-0 table #125: 0 bytes OK
|
||||
2024/01/02-23:34:00.423865 7f9772fef6c0 Delete type=0 #123
|
||||
2024/01/02-23:34:00.445018 7f9772fef6c0 Manual compaction at level-0 from '!items!4EmWdK1cv7EX0X3E' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)
|
||||
2024/01/02-23:34:00.445059 7f9772fef6c0 Manual compaction at level-1 from '!items!4EmWdK1cv7EX0X3E' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-17:58:00.918780 7f2d849ff6c0 Recovering log #160
|
||||
2024/01/12-17:58:00.957088 7f2d849ff6c0 Delete type=3 #158
|
||||
2024/01/12-17:58:00.957195 7f2d849ff6c0 Delete type=0 #160
|
||||
2024/01/12-18:33:25.147904 7f2aee3ff6c0 Level-0 table #165: started
|
||||
2024/01/12-18:33:25.147965 7f2aee3ff6c0 Level-0 table #165: 0 bytes OK
|
||||
2024/01/12-18:33:25.154391 7f2aee3ff6c0 Delete type=0 #163
|
||||
2024/01/12-18:33:25.169583 7f2aee3ff6c0 Manual compaction at level-0 from '!items!4EmWdK1cv7EX0X3E' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-18:33:25.169641 7f2aee3ff6c0 Manual compaction at level-1 from '!items!4EmWdK1cv7EX0X3E' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)
|
||||
|
@ -1,8 +1,8 @@
|
||||
2023/12/13-08:52:21.820052 7f6135ffb6c0 Recovering log #116
|
||||
2023/12/13-08:52:21.830555 7f6135ffb6c0 Delete type=3 #114
|
||||
2023/12/13-08:52:21.830633 7f6135ffb6c0 Delete type=0 #116
|
||||
2023/12/13-08:53:48.432934 7f6134ff96c0 Level-0 table #121: started
|
||||
2023/12/13-08:53:48.432985 7f6134ff96c0 Level-0 table #121: 0 bytes OK
|
||||
2023/12/13-08:53:48.439201 7f6134ff96c0 Delete type=0 #119
|
||||
2023/12/13-08:53:48.450529 7f6134ff96c0 Manual compaction at level-0 from '!items!4EmWdK1cv7EX0X3E' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)
|
||||
2023/12/13-08:53:48.450589 7f6134ff96c0 Manual compaction at level-1 from '!items!4EmWdK1cv7EX0X3E' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)
|
||||
2024/01/11-23:52:22.335396 7f2aeeffd6c0 Recovering log #156
|
||||
2024/01/11-23:52:22.346449 7f2aeeffd6c0 Delete type=3 #154
|
||||
2024/01/11-23:52:22.346560 7f2aeeffd6c0 Delete type=0 #156
|
||||
2024/01/12-17:21:26.786343 7f2aee3ff6c0 Level-0 table #161: started
|
||||
2024/01/12-17:21:26.790645 7f2aee3ff6c0 Level-0 table #161: 0 bytes OK
|
||||
2024/01/12-17:21:26.827682 7f2aee3ff6c0 Delete type=0 #159
|
||||
2024/01/12-17:21:26.928985 7f2aee3ff6c0 Manual compaction at level-0 from '!items!4EmWdK1cv7EX0X3E' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-17:21:26.929106 7f2aee3ff6c0 Manual compaction at level-1 from '!items!4EmWdK1cv7EX0X3E' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)
|
||||
|
Binary file not shown.
BIN
packs/fightoptions/MANIFEST-000162
Normal file
BIN
packs/fightoptions/MANIFEST-000162
Normal file
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000123
|
||||
MANIFEST-000163
|
||||
|
@ -1,8 +1,8 @@
|
||||
2024/01/02-23:25:25.070627 7f99f3fff6c0 Recovering log #120
|
||||
2024/01/02-23:25:25.081366 7f99f3fff6c0 Delete type=3 #118
|
||||
2024/01/02-23:25:25.081468 7f99f3fff6c0 Delete type=0 #120
|
||||
2024/01/02-23:34:00.316765 7f9772fef6c0 Level-0 table #126: started
|
||||
2024/01/02-23:34:00.316786 7f9772fef6c0 Level-0 table #126: 0 bytes OK
|
||||
2024/01/02-23:34:00.323878 7f9772fef6c0 Delete type=0 #124
|
||||
2024/01/02-23:34:00.333477 7f9772fef6c0 Manual compaction at level-0 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)
|
||||
2024/01/02-23:34:00.340629 7f9772fef6c0 Manual compaction at level-1 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-17:58:00.253802 7f2aeffff6c0 Recovering log #161
|
||||
2024/01/12-17:58:00.296898 7f2aeffff6c0 Delete type=3 #159
|
||||
2024/01/12-17:58:00.297475 7f2aeffff6c0 Delete type=0 #161
|
||||
2024/01/12-18:33:25.061352 7f2aee3ff6c0 Level-0 table #166: started
|
||||
2024/01/12-18:33:25.061404 7f2aee3ff6c0 Level-0 table #166: 0 bytes OK
|
||||
2024/01/12-18:33:25.067829 7f2aee3ff6c0 Delete type=0 #164
|
||||
2024/01/12-18:33:25.075201 7f2aee3ff6c0 Manual compaction at level-0 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-18:33:25.081844 7f2aee3ff6c0 Manual compaction at level-1 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)
|
||||
|
@ -1,15 +1,8 @@
|
||||
2023/12/13-08:52:21.488368 7f6136ffd6c0 Recovering log #116
|
||||
2023/12/13-08:52:21.499883 7f6136ffd6c0 Delete type=3 #114
|
||||
2023/12/13-08:52:21.499977 7f6136ffd6c0 Delete type=0 #116
|
||||
2023/12/13-08:53:48.220808 7f6134ff96c0 Level-0 table #121: started
|
||||
2023/12/13-08:53:48.225559 7f6134ff96c0 Level-0 table #121: 14026 bytes OK
|
||||
2023/12/13-08:53:48.231901 7f6134ff96c0 Delete type=0 #119
|
||||
2023/12/13-08:53:48.243021 7f6134ff96c0 Manual compaction at level-0 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)
|
||||
2023/12/13-08:53:48.266045 7f6134ff96c0 Manual compaction at level-1 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at '!items!znd0K3b7HzYpdehs' @ 86 : 1
|
||||
2023/12/13-08:53:48.266058 7f6134ff96c0 Compacting 1@1 + 1@2 files
|
||||
2023/12/13-08:53:48.270261 7f6134ff96c0 Generated table #122@1: 43 keys, 14026 bytes
|
||||
2023/12/13-08:53:48.270276 7f6134ff96c0 Compacted 1@1 + 1@2 files => 14026 bytes
|
||||
2023/12/13-08:53:48.276872 7f6134ff96c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2023/12/13-08:53:48.277277 7f6134ff96c0 Delete type=2 #5
|
||||
2023/12/13-08:53:48.277935 7f6134ff96c0 Delete type=2 #121
|
||||
2023/12/13-08:53:48.292799 7f6134ff96c0 Manual compaction at level-1 from '!items!znd0K3b7HzYpdehs' @ 86 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)
|
||||
2024/01/11-23:52:22.167689 7f2d849ff6c0 Recovering log #157
|
||||
2024/01/11-23:52:22.178189 7f2d849ff6c0 Delete type=3 #155
|
||||
2024/01/11-23:52:22.178233 7f2d849ff6c0 Delete type=0 #157
|
||||
2024/01/12-17:21:26.408071 7f2aee3ff6c0 Level-0 table #162: started
|
||||
2024/01/12-17:21:26.408107 7f2aee3ff6c0 Level-0 table #162: 0 bytes OK
|
||||
2024/01/12-17:21:26.450569 7f2aee3ff6c0 Delete type=0 #160
|
||||
2024/01/12-17:21:26.472440 7f2aee3ff6c0 Manual compaction at level-0 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-17:21:26.510048 7f2aee3ff6c0 Manual compaction at level-1 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)
|
||||
|
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000123
|
||||
MANIFEST-000163
|
||||
|
@ -1,8 +1,8 @@
|
||||
2024/01/02-23:25:25.243311 7f99f37fe6c0 Recovering log #120
|
||||
2024/01/02-23:25:25.253664 7f99f37fe6c0 Delete type=3 #118
|
||||
2024/01/02-23:25:25.253756 7f99f37fe6c0 Delete type=0 #120
|
||||
2024/01/02-23:34:00.410768 7f9772fef6c0 Level-0 table #126: started
|
||||
2024/01/02-23:34:00.410806 7f9772fef6c0 Level-0 table #126: 0 bytes OK
|
||||
2024/01/02-23:34:00.417588 7f9772fef6c0 Delete type=0 #124
|
||||
2024/01/02-23:34:00.417692 7f9772fef6c0 Manual compaction at level-0 from '!items!1wKT8PUphVwAprIp' @ 72057594037927935 : 1 .. '!items!xR5KdgOQucELl1sn' @ 0 : 0; will stop at (end)
|
||||
2024/01/02-23:34:00.417712 7f9772fef6c0 Manual compaction at level-1 from '!items!1wKT8PUphVwAprIp' @ 72057594037927935 : 1 .. '!items!xR5KdgOQucELl1sn' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-17:58:00.866994 7f2aeeffd6c0 Recovering log #161
|
||||
2024/01/12-17:58:00.914618 7f2aeeffd6c0 Delete type=3 #159
|
||||
2024/01/12-17:58:00.914708 7f2aeeffd6c0 Delete type=0 #161
|
||||
2024/01/12-18:33:25.154621 7f2aee3ff6c0 Level-0 table #166: started
|
||||
2024/01/12-18:33:25.154680 7f2aee3ff6c0 Level-0 table #166: 0 bytes OK
|
||||
2024/01/12-18:33:25.161613 7f2aee3ff6c0 Delete type=0 #164
|
||||
2024/01/12-18:33:25.169596 7f2aee3ff6c0 Manual compaction at level-0 from '!items!1wKT8PUphVwAprIp' @ 72057594037927935 : 1 .. '!items!xR5KdgOQucELl1sn' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-18:33:25.169665 7f2aee3ff6c0 Manual compaction at level-1 from '!items!1wKT8PUphVwAprIp' @ 72057594037927935 : 1 .. '!items!xR5KdgOQucELl1sn' @ 0 : 0; will stop at (end)
|
||||
|
@ -1,15 +1,8 @@
|
||||
2023/12/13-08:52:21.800760 7f6136ffd6c0 Recovering log #116
|
||||
2023/12/13-08:52:21.811539 7f6136ffd6c0 Delete type=3 #114
|
||||
2023/12/13-08:52:21.811627 7f6136ffd6c0 Delete type=0 #116
|
||||
2023/12/13-08:53:48.439347 7f6134ff96c0 Level-0 table #121: started
|
||||
2023/12/13-08:53:48.443250 7f6134ff96c0 Level-0 table #121: 4876 bytes OK
|
||||
2023/12/13-08:53:48.450330 7f6134ff96c0 Delete type=0 #119
|
||||
2023/12/13-08:53:48.450813 7f6134ff96c0 Manual compaction at level-0 from '!items!1wKT8PUphVwAprIp' @ 72057594037927935 : 1 .. '!items!xR5KdgOQucELl1sn' @ 0 : 0; will stop at (end)
|
||||
2023/12/13-08:53:48.472559 7f6134ff96c0 Manual compaction at level-1 from '!items!1wKT8PUphVwAprIp' @ 72057594037927935 : 1 .. '!items!xR5KdgOQucELl1sn' @ 0 : 0; will stop at '!items!xR5KdgOQucELl1sn' @ 48 : 1
|
||||
2023/12/13-08:53:48.472572 7f6134ff96c0 Compacting 1@1 + 1@2 files
|
||||
2023/12/13-08:53:48.476406 7f6134ff96c0 Generated table #122@1: 24 keys, 4876 bytes
|
||||
2023/12/13-08:53:48.476424 7f6134ff96c0 Compacted 1@1 + 1@2 files => 4876 bytes
|
||||
2023/12/13-08:53:48.482848 7f6134ff96c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2023/12/13-08:53:48.482946 7f6134ff96c0 Delete type=2 #5
|
||||
2023/12/13-08:53:48.483072 7f6134ff96c0 Delete type=2 #121
|
||||
2023/12/13-08:53:48.495320 7f6134ff96c0 Manual compaction at level-1 from '!items!xR5KdgOQucELl1sn' @ 48 : 1 .. '!items!xR5KdgOQucELl1sn' @ 0 : 0; will stop at (end)
|
||||
2024/01/11-23:52:22.322553 7f2aef7fe6c0 Recovering log #157
|
||||
2024/01/11-23:52:22.332811 7f2aef7fe6c0 Delete type=3 #155
|
||||
2024/01/11-23:52:22.332913 7f2aef7fe6c0 Delete type=0 #157
|
||||
2024/01/12-17:21:26.827883 7f2aee3ff6c0 Level-0 table #162: started
|
||||
2024/01/12-17:21:26.827940 7f2aee3ff6c0 Level-0 table #162: 0 bytes OK
|
||||
2024/01/12-17:21:26.873780 7f2aee3ff6c0 Delete type=0 #160
|
||||
2024/01/12-17:21:26.929014 7f2aee3ff6c0 Manual compaction at level-0 from '!items!1wKT8PUphVwAprIp' @ 72057594037927935 : 1 .. '!items!xR5KdgOQucELl1sn' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-17:21:26.929127 7f2aee3ff6c0 Manual compaction at level-1 from '!items!1wKT8PUphVwAprIp' @ 72057594037927935 : 1 .. '!items!xR5KdgOQucELl1sn' @ 0 : 0; will stop at (end)
|
||||
|
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000123
|
||||
MANIFEST-000163
|
||||
|
@ -1,8 +1,8 @@
|
||||
2024/01/02-23:25:25.216737 7f99f3fff6c0 Recovering log #121
|
||||
2024/01/02-23:25:25.227818 7f99f3fff6c0 Delete type=3 #119
|
||||
2024/01/02-23:25:25.227918 7f99f3fff6c0 Delete type=0 #121
|
||||
2024/01/02-23:34:00.389639 7f9772fef6c0 Level-0 table #126: started
|
||||
2024/01/02-23:34:00.389663 7f9772fef6c0 Level-0 table #126: 0 bytes OK
|
||||
2024/01/02-23:34:00.397026 7f9772fef6c0 Delete type=0 #124
|
||||
2024/01/02-23:34:00.417658 7f9772fef6c0 Manual compaction at level-0 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end)
|
||||
2024/01/02-23:34:00.417698 7f9772fef6c0 Manual compaction at level-1 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-17:58:00.767444 7f2aeffff6c0 Recovering log #161
|
||||
2024/01/12-17:58:00.817424 7f2aeffff6c0 Delete type=3 #159
|
||||
2024/01/12-17:58:00.817537 7f2aeffff6c0 Delete type=0 #161
|
||||
2024/01/12-18:33:25.118054 7f2aee3ff6c0 Level-0 table #166: started
|
||||
2024/01/12-18:33:25.118116 7f2aee3ff6c0 Level-0 table #166: 0 bytes OK
|
||||
2024/01/12-18:33:25.126051 7f2aee3ff6c0 Delete type=0 #164
|
||||
2024/01/12-18:33:25.139855 7f2aee3ff6c0 Manual compaction at level-0 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-18:33:25.139911 7f2aee3ff6c0 Manual compaction at level-1 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end)
|
||||
|
@ -1,8 +1,8 @@
|
||||
2023/12/13-08:52:21.769087 7f61367fc6c0 Recovering log #117
|
||||
2023/12/13-08:52:21.779871 7f61367fc6c0 Delete type=3 #115
|
||||
2023/12/13-08:52:21.779957 7f61367fc6c0 Delete type=0 #117
|
||||
2023/12/13-08:53:48.414925 7f6134ff96c0 Level-0 table #122: started
|
||||
2023/12/13-08:53:48.414963 7f6134ff96c0 Level-0 table #122: 0 bytes OK
|
||||
2023/12/13-08:53:48.421324 7f6134ff96c0 Delete type=0 #120
|
||||
2023/12/13-08:53:48.432907 7f6134ff96c0 Manual compaction at level-0 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end)
|
||||
2023/12/13-08:53:48.450510 7f6134ff96c0 Manual compaction at level-1 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end)
|
||||
2024/01/11-23:52:22.298669 7f2d849ff6c0 Recovering log #157
|
||||
2024/01/11-23:52:22.307960 7f2d849ff6c0 Delete type=3 #155
|
||||
2024/01/11-23:52:22.308004 7f2d849ff6c0 Delete type=0 #157
|
||||
2024/01/12-17:21:26.713130 7f2aee3ff6c0 Level-0 table #162: started
|
||||
2024/01/12-17:21:26.713181 7f2aee3ff6c0 Level-0 table #162: 0 bytes OK
|
||||
2024/01/12-17:21:26.750594 7f2aee3ff6c0 Delete type=0 #160
|
||||
2024/01/12-17:21:26.786120 7f2aee3ff6c0 Manual compaction at level-0 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-17:21:26.786202 7f2aee3ff6c0 Manual compaction at level-1 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end)
|
||||
|
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000123
|
||||
MANIFEST-000163
|
||||
|
@ -1,8 +1,8 @@
|
||||
2024/01/02-23:25:25.283639 7f9a08ff96c0 Recovering log #120
|
||||
2024/01/02-23:25:25.293591 7f9a08ff96c0 Delete type=3 #118
|
||||
2024/01/02-23:25:25.293900 7f9a08ff96c0 Delete type=0 #120
|
||||
2024/01/02-23:34:00.424011 7f9772fef6c0 Level-0 table #126: started
|
||||
2024/01/02-23:34:00.424053 7f9772fef6c0 Level-0 table #126: 0 bytes OK
|
||||
2024/01/02-23:34:00.431586 7f9772fef6c0 Delete type=0 #124
|
||||
2024/01/02-23:34:00.445029 7f9772fef6c0 Manual compaction at level-0 from '!items!0Yhn3r8AFsKXEKeS' @ 72057594037927935 : 1 .. '!items!xVWrSPiX0Nwccsn6' @ 0 : 0; will stop at (end)
|
||||
2024/01/02-23:34:00.445077 7f9772fef6c0 Manual compaction at level-1 from '!items!0Yhn3r8AFsKXEKeS' @ 72057594037927935 : 1 .. '!items!xVWrSPiX0Nwccsn6' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-17:58:01.005660 7f2aef7fe6c0 Recovering log #161
|
||||
2024/01/12-17:58:01.051467 7f2aef7fe6c0 Delete type=3 #159
|
||||
2024/01/12-17:58:01.051555 7f2aef7fe6c0 Delete type=0 #161
|
||||
2024/01/12-18:33:25.176550 7f2aee3ff6c0 Level-0 table #166: started
|
||||
2024/01/12-18:33:25.176597 7f2aee3ff6c0 Level-0 table #166: 0 bytes OK
|
||||
2024/01/12-18:33:25.184239 7f2aee3ff6c0 Delete type=0 #164
|
||||
2024/01/12-18:33:25.199296 7f2aee3ff6c0 Manual compaction at level-0 from '!items!0Yhn3r8AFsKXEKeS' @ 72057594037927935 : 1 .. '!items!xVWrSPiX0Nwccsn6' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-18:33:25.199383 7f2aee3ff6c0 Manual compaction at level-1 from '!items!0Yhn3r8AFsKXEKeS' @ 72057594037927935 : 1 .. '!items!xVWrSPiX0Nwccsn6' @ 0 : 0; will stop at (end)
|
||||
|
@ -1,15 +1,8 @@
|
||||
2023/12/13-08:52:21.860028 7f61357fa6c0 Recovering log #116
|
||||
2023/12/13-08:52:21.870619 7f61357fa6c0 Delete type=3 #114
|
||||
2023/12/13-08:52:21.870755 7f61357fa6c0 Delete type=0 #116
|
||||
2023/12/13-08:53:48.483180 7f6134ff96c0 Level-0 table #121: started
|
||||
2023/12/13-08:53:48.487831 7f6134ff96c0 Level-0 table #121: 15168 bytes OK
|
||||
2023/12/13-08:53:48.495127 7f6134ff96c0 Delete type=0 #119
|
||||
2023/12/13-08:53:48.495335 7f6134ff96c0 Manual compaction at level-0 from '!items!0Yhn3r8AFsKXEKeS' @ 72057594037927935 : 1 .. '!items!xVWrSPiX0Nwccsn6' @ 0 : 0; will stop at (end)
|
||||
2023/12/13-08:53:48.506743 7f6134ff96c0 Manual compaction at level-1 from '!items!0Yhn3r8AFsKXEKeS' @ 72057594037927935 : 1 .. '!items!xVWrSPiX0Nwccsn6' @ 0 : 0; will stop at '!items!xVWrSPiX0Nwccsn6' @ 84 : 1
|
||||
2023/12/13-08:53:48.506755 7f6134ff96c0 Compacting 1@1 + 1@2 files
|
||||
2023/12/13-08:53:48.510802 7f6134ff96c0 Generated table #122@1: 42 keys, 15168 bytes
|
||||
2023/12/13-08:53:48.510821 7f6134ff96c0 Compacted 1@1 + 1@2 files => 15168 bytes
|
||||
2023/12/13-08:53:48.516830 7f6134ff96c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2023/12/13-08:53:48.517128 7f6134ff96c0 Delete type=2 #5
|
||||
2023/12/13-08:53:48.517261 7f6134ff96c0 Delete type=2 #121
|
||||
2023/12/13-08:53:48.536320 7f6134ff96c0 Manual compaction at level-1 from '!items!xVWrSPiX0Nwccsn6' @ 84 : 1 .. '!items!xVWrSPiX0Nwccsn6' @ 0 : 0; will stop at (end)
|
||||
2024/01/11-23:52:22.362504 7f2aeffff6c0 Recovering log #157
|
||||
2024/01/11-23:52:22.372682 7f2aeffff6c0 Delete type=3 #155
|
||||
2024/01/11-23:52:22.372809 7f2aeffff6c0 Delete type=0 #157
|
||||
2024/01/12-17:21:26.873994 7f2aee3ff6c0 Level-0 table #162: started
|
||||
2024/01/12-17:21:26.874049 7f2aee3ff6c0 Level-0 table #162: 0 bytes OK
|
||||
2024/01/12-17:21:26.908353 7f2aee3ff6c0 Delete type=0 #160
|
||||
2024/01/12-17:21:26.929058 7f2aee3ff6c0 Manual compaction at level-0 from '!items!0Yhn3r8AFsKXEKeS' @ 72057594037927935 : 1 .. '!items!xVWrSPiX0Nwccsn6' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-17:21:26.929149 7f2aee3ff6c0 Manual compaction at level-1 from '!items!0Yhn3r8AFsKXEKeS' @ 72057594037927935 : 1 .. '!items!xVWrSPiX0Nwccsn6' @ 0 : 0; will stop at (end)
|
||||
|
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000123
|
||||
MANIFEST-000163
|
||||
|
@ -1,8 +1,8 @@
|
||||
2024/01/02-23:25:25.098287 7f99f37fe6c0 Recovering log #120
|
||||
2024/01/02-23:25:25.108609 7f99f37fe6c0 Delete type=3 #118
|
||||
2024/01/02-23:25:25.108682 7f99f37fe6c0 Delete type=0 #120
|
||||
2024/01/02-23:34:00.340653 7f9772fef6c0 Level-0 table #126: started
|
||||
2024/01/02-23:34:00.340716 7f9772fef6c0 Level-0 table #126: 0 bytes OK
|
||||
2024/01/02-23:34:00.347187 7f9772fef6c0 Delete type=0 #124
|
||||
2024/01/02-23:34:00.361210 7f9772fef6c0 Manual compaction at level-0 from '!items!2Wtl8xrKf46LMwBF' @ 72057594037927935 : 1 .. '!items!zIlZmEd9WAA473UX' @ 0 : 0; will stop at (end)
|
||||
2024/01/02-23:34:00.361269 7f9772fef6c0 Manual compaction at level-1 from '!items!2Wtl8xrKf46LMwBF' @ 72057594037927935 : 1 .. '!items!zIlZmEd9WAA473UX' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-17:58:00.350497 7f2aeeffd6c0 Recovering log #161
|
||||
2024/01/12-17:58:00.398092 7f2aeeffd6c0 Delete type=3 #159
|
||||
2024/01/12-17:58:00.398186 7f2aeeffd6c0 Delete type=0 #161
|
||||
2024/01/12-18:33:25.075221 7f2aee3ff6c0 Level-0 table #166: started
|
||||
2024/01/12-18:33:25.075272 7f2aee3ff6c0 Level-0 table #166: 0 bytes OK
|
||||
2024/01/12-18:33:25.081688 7f2aee3ff6c0 Delete type=0 #164
|
||||
2024/01/12-18:33:25.081873 7f2aee3ff6c0 Manual compaction at level-0 from '!items!2Wtl8xrKf46LMwBF' @ 72057594037927935 : 1 .. '!items!zIlZmEd9WAA473UX' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-18:33:25.081897 7f2aee3ff6c0 Manual compaction at level-1 from '!items!2Wtl8xrKf46LMwBF' @ 72057594037927935 : 1 .. '!items!zIlZmEd9WAA473UX' @ 0 : 0; will stop at (end)
|
||||
|
@ -1,15 +1,8 @@
|
||||
2023/12/13-08:52:21.537201 7f6136ffd6c0 Recovering log #116
|
||||
2023/12/13-08:52:21.548242 7f6136ffd6c0 Delete type=3 #114
|
||||
2023/12/13-08:52:21.548332 7f6136ffd6c0 Delete type=0 #116
|
||||
2023/12/13-08:53:48.278108 7f6134ff96c0 Level-0 table #121: started
|
||||
2023/12/13-08:53:48.282669 7f6134ff96c0 Level-0 table #121: 22115 bytes OK
|
||||
2023/12/13-08:53:48.292585 7f6134ff96c0 Delete type=0 #119
|
||||
2023/12/13-08:53:48.292811 7f6134ff96c0 Manual compaction at level-0 from '!items!2Wtl8xrKf46LMwBF' @ 72057594037927935 : 1 .. '!items!zIlZmEd9WAA473UX' @ 0 : 0; will stop at (end)
|
||||
2023/12/13-08:53:48.292888 7f6134ff96c0 Manual compaction at level-1 from '!items!2Wtl8xrKf46LMwBF' @ 72057594037927935 : 1 .. '!items!zIlZmEd9WAA473UX' @ 0 : 0; will stop at '!items!zIlZmEd9WAA473UX' @ 44 : 1
|
||||
2023/12/13-08:53:48.292931 7f6134ff96c0 Compacting 1@1 + 1@2 files
|
||||
2023/12/13-08:53:48.297707 7f6134ff96c0 Generated table #122@1: 22 keys, 22115 bytes
|
||||
2023/12/13-08:53:48.297733 7f6134ff96c0 Compacted 1@1 + 1@2 files => 22115 bytes
|
||||
2023/12/13-08:53:48.303930 7f6134ff96c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2023/12/13-08:53:48.304092 7f6134ff96c0 Delete type=2 #5
|
||||
2023/12/13-08:53:48.304300 7f6134ff96c0 Delete type=2 #121
|
||||
2023/12/13-08:53:48.329706 7f6134ff96c0 Manual compaction at level-1 from '!items!zIlZmEd9WAA473UX' @ 44 : 1 .. '!items!zIlZmEd9WAA473UX' @ 0 : 0; will stop at (end)
|
||||
2024/01/11-23:52:22.194499 7f2aef7fe6c0 Recovering log #157
|
||||
2024/01/11-23:52:22.203837 7f2aef7fe6c0 Delete type=3 #155
|
||||
2024/01/11-23:52:22.204020 7f2aef7fe6c0 Delete type=0 #157
|
||||
2024/01/12-17:21:26.472460 7f2aee3ff6c0 Level-0 table #162: started
|
||||
2024/01/12-17:21:26.472510 7f2aee3ff6c0 Level-0 table #162: 0 bytes OK
|
||||
2024/01/12-17:21:26.509780 7f2aee3ff6c0 Delete type=0 #160
|
||||
2024/01/12-17:21:26.510061 7f2aee3ff6c0 Manual compaction at level-0 from '!items!2Wtl8xrKf46LMwBF' @ 72057594037927935 : 1 .. '!items!zIlZmEd9WAA473UX' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-17:21:26.510103 7f2aee3ff6c0 Manual compaction at level-1 from '!items!2Wtl8xrKf46LMwBF' @ 72057594037927935 : 1 .. '!items!zIlZmEd9WAA473UX' @ 0 : 0; will stop at (end)
|
||||
|
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000123
|
||||
MANIFEST-000163
|
||||
|
@ -1,8 +1,8 @@
|
||||
2024/01/02-23:25:25.270595 7f99f3fff6c0 Recovering log #120
|
||||
2024/01/02-23:25:25.280745 7f99f3fff6c0 Delete type=3 #118
|
||||
2024/01/02-23:25:25.280798 7f99f3fff6c0 Delete type=0 #120
|
||||
2024/01/02-23:34:00.431669 7f9772fef6c0 Level-0 table #126: started
|
||||
2024/01/02-23:34:00.431690 7f9772fef6c0 Level-0 table #126: 0 bytes OK
|
||||
2024/01/02-23:34:00.437659 7f9772fef6c0 Delete type=0 #124
|
||||
2024/01/02-23:34:00.445045 7f9772fef6c0 Manual compaction at level-0 from '!items!0a8UFoCOd3D35WBb' @ 72057594037927935 : 1 .. '!items!y9NHZCxKXMZEqcRo' @ 0 : 0; will stop at (end)
|
||||
2024/01/02-23:34:00.445065 7f9772fef6c0 Manual compaction at level-1 from '!items!0a8UFoCOd3D35WBb' @ 72057594037927935 : 1 .. '!items!y9NHZCxKXMZEqcRo' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-17:58:00.962793 7f2aeffff6c0 Recovering log #161
|
||||
2024/01/12-17:58:01.002519 7f2aeffff6c0 Delete type=3 #159
|
||||
2024/01/12-17:58:01.002632 7f2aeffff6c0 Delete type=0 #161
|
||||
2024/01/12-18:33:25.161817 7f2aee3ff6c0 Level-0 table #166: started
|
||||
2024/01/12-18:33:25.161876 7f2aee3ff6c0 Level-0 table #166: 0 bytes OK
|
||||
2024/01/12-18:33:25.169410 7f2aee3ff6c0 Delete type=0 #164
|
||||
2024/01/12-18:33:25.169610 7f2aee3ff6c0 Manual compaction at level-0 from '!items!0a8UFoCOd3D35WBb' @ 72057594037927935 : 1 .. '!items!y9NHZCxKXMZEqcRo' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-18:33:25.169653 7f2aee3ff6c0 Manual compaction at level-1 from '!items!0a8UFoCOd3D35WBb' @ 72057594037927935 : 1 .. '!items!y9NHZCxKXMZEqcRo' @ 0 : 0; will stop at (end)
|
||||
|
@ -1,15 +1,8 @@
|
||||
2023/12/13-08:52:21.837200 7f6136ffd6c0 Recovering log #116
|
||||
2023/12/13-08:52:21.848604 7f6136ffd6c0 Delete type=3 #114
|
||||
2023/12/13-08:52:21.848683 7f6136ffd6c0 Delete type=0 #116
|
||||
2023/12/13-08:53:48.461307 7f6134ff96c0 Level-0 table #121: started
|
||||
2023/12/13-08:53:48.465152 7f6134ff96c0 Level-0 table #121: 12090 bytes OK
|
||||
2023/12/13-08:53:48.472359 7f6134ff96c0 Delete type=0 #119
|
||||
2023/12/13-08:53:48.495306 7f6134ff96c0 Manual compaction at level-0 from '!items!0a8UFoCOd3D35WBb' @ 72057594037927935 : 1 .. '!items!y9NHZCxKXMZEqcRo' @ 0 : 0; will stop at (end)
|
||||
2023/12/13-08:53:48.495352 7f6134ff96c0 Manual compaction at level-1 from '!items!0a8UFoCOd3D35WBb' @ 72057594037927935 : 1 .. '!items!y9NHZCxKXMZEqcRo' @ 0 : 0; will stop at '!items!y9NHZCxKXMZEqcRo' @ 74 : 1
|
||||
2023/12/13-08:53:48.495359 7f6134ff96c0 Compacting 1@1 + 1@2 files
|
||||
2023/12/13-08:53:48.499122 7f6134ff96c0 Generated table #122@1: 37 keys, 12090 bytes
|
||||
2023/12/13-08:53:48.499139 7f6134ff96c0 Compacted 1@1 + 1@2 files => 12090 bytes
|
||||
2023/12/13-08:53:48.506349 7f6134ff96c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2023/12/13-08:53:48.506473 7f6134ff96c0 Delete type=2 #5
|
||||
2023/12/13-08:53:48.506623 7f6134ff96c0 Delete type=2 #121
|
||||
2023/12/13-08:53:48.536298 7f6134ff96c0 Manual compaction at level-1 from '!items!y9NHZCxKXMZEqcRo' @ 74 : 1 .. '!items!y9NHZCxKXMZEqcRo' @ 0 : 0; will stop at (end)
|
||||
2024/01/11-23:52:22.350064 7f2d849ff6c0 Recovering log #157
|
||||
2024/01/11-23:52:22.359752 7f2d849ff6c0 Delete type=3 #155
|
||||
2024/01/11-23:52:22.359890 7f2d849ff6c0 Delete type=0 #157
|
||||
2024/01/12-17:21:26.908520 7f2aee3ff6c0 Level-0 table #162: started
|
||||
2024/01/12-17:21:26.908573 7f2aee3ff6c0 Level-0 table #162: 0 bytes OK
|
||||
2024/01/12-17:21:26.928751 7f2aee3ff6c0 Delete type=0 #160
|
||||
2024/01/12-17:21:26.929086 7f2aee3ff6c0 Manual compaction at level-0 from '!items!0a8UFoCOd3D35WBb' @ 72057594037927935 : 1 .. '!items!y9NHZCxKXMZEqcRo' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-17:21:26.929172 7f2aee3ff6c0 Manual compaction at level-1 from '!items!0a8UFoCOd3D35WBb' @ 72057594037927935 : 1 .. '!items!y9NHZCxKXMZEqcRo' @ 0 : 0; will stop at (end)
|
||||
|
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000123
|
||||
MANIFEST-000163
|
||||
|
@ -1,8 +1,8 @@
|
||||
2024/01/02-23:25:25.111992 7f9a097fa6c0 Recovering log #120
|
||||
2024/01/02-23:25:25.122709 7f9a097fa6c0 Delete type=3 #118
|
||||
2024/01/02-23:25:25.122819 7f9a097fa6c0 Delete type=0 #120
|
||||
2024/01/02-23:34:00.347432 7f9772fef6c0 Level-0 table #126: started
|
||||
2024/01/02-23:34:00.347481 7f9772fef6c0 Level-0 table #126: 0 bytes OK
|
||||
2024/01/02-23:34:00.354128 7f9772fef6c0 Delete type=0 #124
|
||||
2024/01/02-23:34:00.361247 7f9772fef6c0 Manual compaction at level-0 from '!items!3oOvUd7AIqrXzLDl' @ 72057594037927935 : 1 .. '!items!oWexVALVtDXmedMy' @ 0 : 0; will stop at (end)
|
||||
2024/01/02-23:34:00.361276 7f9772fef6c0 Manual compaction at level-1 from '!items!3oOvUd7AIqrXzLDl' @ 72057594037927935 : 1 .. '!items!oWexVALVtDXmedMy' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-17:58:00.400940 7f2d849ff6c0 Recovering log #161
|
||||
2024/01/12-17:58:00.450631 7f2d849ff6c0 Delete type=3 #159
|
||||
2024/01/12-17:58:00.450720 7f2d849ff6c0 Delete type=0 #161
|
||||
2024/01/12-18:33:25.103045 7f2aee3ff6c0 Level-0 table #166: started
|
||||
2024/01/12-18:33:25.103105 7f2aee3ff6c0 Level-0 table #166: 0 bytes OK
|
||||
2024/01/12-18:33:25.110712 7f2aee3ff6c0 Delete type=0 #164
|
||||
2024/01/12-18:33:25.111169 7f2aee3ff6c0 Manual compaction at level-0 from '!items!3oOvUd7AIqrXzLDl' @ 72057594037927935 : 1 .. '!items!oWexVALVtDXmedMy' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-18:33:25.111218 7f2aee3ff6c0 Manual compaction at level-1 from '!items!3oOvUd7AIqrXzLDl' @ 72057594037927935 : 1 .. '!items!oWexVALVtDXmedMy' @ 0 : 0; will stop at (end)
|
||||
|
@ -1,15 +1,8 @@
|
||||
2023/12/13-08:52:21.561253 7f61357fa6c0 Recovering log #116
|
||||
2023/12/13-08:52:21.572876 7f61357fa6c0 Delete type=3 #114
|
||||
2023/12/13-08:52:21.572963 7f61357fa6c0 Delete type=0 #116
|
||||
2023/12/13-08:53:48.304434 7f6134ff96c0 Level-0 table #121: started
|
||||
2023/12/13-08:53:48.308305 7f6134ff96c0 Level-0 table #121: 11187 bytes OK
|
||||
2023/12/13-08:53:48.315883 7f6134ff96c0 Delete type=0 #119
|
||||
2023/12/13-08:53:48.329722 7f6134ff96c0 Manual compaction at level-0 from '!items!3oOvUd7AIqrXzLDl' @ 72057594037927935 : 1 .. '!items!oWexVALVtDXmedMy' @ 0 : 0; will stop at (end)
|
||||
2023/12/13-08:53:48.329779 7f6134ff96c0 Manual compaction at level-1 from '!items!3oOvUd7AIqrXzLDl' @ 72057594037927935 : 1 .. '!items!oWexVALVtDXmedMy' @ 0 : 0; will stop at '!items!oWexVALVtDXmedMy' @ 16 : 1
|
||||
2023/12/13-08:53:48.329787 7f6134ff96c0 Compacting 1@1 + 1@2 files
|
||||
2023/12/13-08:53:48.333882 7f6134ff96c0 Generated table #122@1: 8 keys, 11187 bytes
|
||||
2023/12/13-08:53:48.333898 7f6134ff96c0 Compacted 1@1 + 1@2 files => 11187 bytes
|
||||
2023/12/13-08:53:48.340230 7f6134ff96c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2023/12/13-08:53:48.340407 7f6134ff96c0 Delete type=2 #5
|
||||
2023/12/13-08:53:48.340652 7f6134ff96c0 Delete type=2 #121
|
||||
2023/12/13-08:53:48.348408 7f6134ff96c0 Manual compaction at level-1 from '!items!oWexVALVtDXmedMy' @ 16 : 1 .. '!items!oWexVALVtDXmedMy' @ 0 : 0; will stop at (end)
|
||||
2024/01/11-23:52:22.206620 7f2aeeffd6c0 Recovering log #157
|
||||
2024/01/11-23:52:22.217050 7f2aeeffd6c0 Delete type=3 #155
|
||||
2024/01/11-23:52:22.217094 7f2aeeffd6c0 Delete type=0 #157
|
||||
2024/01/12-17:21:26.587572 7f2aee3ff6c0 Level-0 table #162: started
|
||||
2024/01/12-17:21:26.587634 7f2aee3ff6c0 Level-0 table #162: 0 bytes OK
|
||||
2024/01/12-17:21:26.616823 7f2aee3ff6c0 Delete type=0 #160
|
||||
2024/01/12-17:21:26.658384 7f2aee3ff6c0 Manual compaction at level-0 from '!items!3oOvUd7AIqrXzLDl' @ 72057594037927935 : 1 .. '!items!oWexVALVtDXmedMy' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-17:21:26.658435 7f2aee3ff6c0 Manual compaction at level-1 from '!items!3oOvUd7AIqrXzLDl' @ 72057594037927935 : 1 .. '!items!oWexVALVtDXmedMy' @ 0 : 0; will stop at (end)
|
||||
|
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000123
|
||||
MANIFEST-000163
|
||||
|
@ -1,8 +1,8 @@
|
||||
2024/01/02-23:25:25.230671 7f9a08ff96c0 Recovering log #120
|
||||
2024/01/02-23:25:25.241067 7f9a08ff96c0 Delete type=3 #118
|
||||
2024/01/02-23:25:25.241126 7f9a08ff96c0 Delete type=0 #120
|
||||
2024/01/02-23:34:00.397218 7f9772fef6c0 Level-0 table #126: started
|
||||
2024/01/02-23:34:00.397295 7f9772fef6c0 Level-0 table #126: 0 bytes OK
|
||||
2024/01/02-23:34:00.403731 7f9772fef6c0 Delete type=0 #124
|
||||
2024/01/02-23:34:00.417669 7f9772fef6c0 Manual compaction at level-0 from '!items!2svd3uio8Hp4e5Wy' @ 72057594037927935 : 1 .. '!items!zq5h9kCpo8gK4oIH' @ 0 : 0; will stop at (end)
|
||||
2024/01/02-23:34:00.417704 7f9772fef6c0 Manual compaction at level-1 from '!items!2svd3uio8Hp4e5Wy' @ 72057594037927935 : 1 .. '!items!zq5h9kCpo8gK4oIH' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-17:58:00.821592 7f2aef7fe6c0 Recovering log #161
|
||||
2024/01/12-17:58:00.864278 7f2aef7fe6c0 Delete type=3 #159
|
||||
2024/01/12-17:58:00.864379 7f2aef7fe6c0 Delete type=0 #161
|
||||
2024/01/12-18:33:25.140042 7f2aee3ff6c0 Level-0 table #166: started
|
||||
2024/01/12-18:33:25.140102 7f2aee3ff6c0 Level-0 table #166: 0 bytes OK
|
||||
2024/01/12-18:33:25.147698 7f2aee3ff6c0 Delete type=0 #164
|
||||
2024/01/12-18:33:25.169565 7f2aee3ff6c0 Manual compaction at level-0 from '!items!2svd3uio8Hp4e5Wy' @ 72057594037927935 : 1 .. '!items!zq5h9kCpo8gK4oIH' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-18:33:25.169677 7f2aee3ff6c0 Manual compaction at level-1 from '!items!2svd3uio8Hp4e5Wy' @ 72057594037927935 : 1 .. '!items!zq5h9kCpo8gK4oIH' @ 0 : 0; will stop at (end)
|
||||
|
@ -1,15 +1,8 @@
|
||||
2023/12/13-08:52:21.785005 7f6135ffb6c0 Recovering log #116
|
||||
2023/12/13-08:52:21.795550 7f6135ffb6c0 Delete type=3 #114
|
||||
2023/12/13-08:52:21.795634 7f6135ffb6c0 Delete type=0 #116
|
||||
2023/12/13-08:53:48.421608 7f6134ff96c0 Level-0 table #121: started
|
||||
2023/12/13-08:53:48.425227 7f6134ff96c0 Level-0 table #121: 3359 bytes OK
|
||||
2023/12/13-08:53:48.432714 7f6134ff96c0 Delete type=0 #119
|
||||
2023/12/13-08:53:48.450486 7f6134ff96c0 Manual compaction at level-0 from '!items!2svd3uio8Hp4e5Wy' @ 72057594037927935 : 1 .. '!items!zq5h9kCpo8gK4oIH' @ 0 : 0; will stop at (end)
|
||||
2023/12/13-08:53:48.450848 7f6134ff96c0 Manual compaction at level-1 from '!items!2svd3uio8Hp4e5Wy' @ 72057594037927935 : 1 .. '!items!zq5h9kCpo8gK4oIH' @ 0 : 0; will stop at '!items!zq5h9kCpo8gK4oIH' @ 8 : 1
|
||||
2023/12/13-08:53:48.450860 7f6134ff96c0 Compacting 1@1 + 1@2 files
|
||||
2023/12/13-08:53:48.454645 7f6134ff96c0 Generated table #122@1: 4 keys, 3359 bytes
|
||||
2023/12/13-08:53:48.454673 7f6134ff96c0 Compacted 1@1 + 1@2 files => 3359 bytes
|
||||
2023/12/13-08:53:48.460915 7f6134ff96c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2023/12/13-08:53:48.461042 7f6134ff96c0 Delete type=2 #5
|
||||
2023/12/13-08:53:48.461199 7f6134ff96c0 Delete type=2 #121
|
||||
2023/12/13-08:53:48.495290 7f6134ff96c0 Manual compaction at level-1 from '!items!zq5h9kCpo8gK4oIH' @ 8 : 1 .. '!items!zq5h9kCpo8gK4oIH' @ 0 : 0; will stop at (end)
|
||||
2024/01/11-23:52:22.309750 7f2aeffff6c0 Recovering log #157
|
||||
2024/01/11-23:52:22.320088 7f2aeffff6c0 Delete type=3 #155
|
||||
2024/01/11-23:52:22.320206 7f2aeffff6c0 Delete type=0 #157
|
||||
2024/01/12-17:21:26.750839 7f2aee3ff6c0 Level-0 table #162: started
|
||||
2024/01/12-17:21:26.750910 7f2aee3ff6c0 Level-0 table #162: 0 bytes OK
|
||||
2024/01/12-17:21:26.785858 7f2aee3ff6c0 Delete type=0 #160
|
||||
2024/01/12-17:21:26.786143 7f2aee3ff6c0 Manual compaction at level-0 from '!items!2svd3uio8Hp4e5Wy' @ 72057594037927935 : 1 .. '!items!zq5h9kCpo8gK4oIH' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-17:21:26.786221 7f2aee3ff6c0 Manual compaction at level-1 from '!items!2svd3uio8Hp4e5Wy' @ 72057594037927935 : 1 .. '!items!zq5h9kCpo8gK4oIH' @ 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
Loading…
Reference in New Issue
Block a user