Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
215a8a1a45 | ||
|
|
1b24d0223a | ||
|
|
33d4c26619 | ||
|
|
cc81acce5b | ||
|
|
c56903c8e4 | ||
|
|
d27d580d8c | ||
|
|
967383f5b3 |
@@ -59,5 +59,5 @@ jobs:
|
||||
version: ${{github.event.release.tag_name}}
|
||||
manifest: "https://www.uberwald.me/gitea/public/bol/releases/download/latest/system.json"
|
||||
notes: "https://www.uberwald.me/gitea/${{gitea.repository}}/releases/download/${{github.event.release.tag_name}}/bol.zip"
|
||||
compatibility-minimum: "13"
|
||||
compatibility-minimum: "14"
|
||||
compatibility-verified: "14"
|
||||
|
||||
@@ -0,0 +1,51 @@
|
||||
# BoL — FoundryVTT Game System
|
||||
|
||||
FoundryVTT game system for Barbarians of Lemuria (French edition, Ludospherik). System id `bol`. Compatible Foundry v13–v14.
|
||||
|
||||
## Commands
|
||||
|
||||
| Command | Action |
|
||||
|---------|--------|
|
||||
| `npm run css` | Compile LESS → `css/bol.css` (one-shot) |
|
||||
| `npm run watch` / `npm start` | Watch `styles/**/*.less`, recompile on change |
|
||||
|
||||
No test or lint scripts exist.
|
||||
|
||||
## Entry Point & Architecture
|
||||
|
||||
`module/bol.js` — wires everything in `Hooks.once('init', ...)` and `Hooks.once('ready', ...)`.
|
||||
|
||||
| Path | Role |
|
||||
|------|------|
|
||||
| `module/bol.js` | System init, sheet/data model registration, socket setup |
|
||||
| `module/system/config.js` | `BOL` constants, `System.debugMode` flag |
|
||||
| `module/system/bol-utility.js` | Static helpers, settings (`bol` namespace), socket handler (`system.bol`) |
|
||||
| `module/controllers/bol-rolls.js` | All roll logic — `BoLRoll` static methods |
|
||||
| `module/models/` | DataModel classes (`.mjs`) for Actor/Item types |
|
||||
| `module/applications/sheets/` | **AppV2 sheets** (`ActorSheetV2`/`ItemSheetV2` + `HandlebarsApplicationMixin`) |
|
||||
| `styles/` | LESS sources → compiled to `css/bol.css` |
|
||||
| `templates/` | Handlebars `.hbs` partials |
|
||||
| `lang/` | `fr.json`, `en.json`, `de.json`, `es.json` |
|
||||
|
||||
## Key Conventions
|
||||
|
||||
- **AppV2 sheets** — base classes are `foundry.applications.sheets.ActorSheetV2` / `ItemSheetV2` mixed with `HandlebarsApplicationMixin`. Do NOT use `foundry.appv1.sheets.*`.
|
||||
- **`game.bol`** — system exposes `BoLActor`, `BoLItem`, `BoLRoll`, `BoLUtility`, `Macros`, `BOL` config, `models`, `sheets` on this namespace after init.
|
||||
- **i18n prefix** — all keys start with `BOL.`; use `game.i18n.localize("BOL.xxx")`.
|
||||
- **FR-first** — `fr.json` is most complete. EN compendium translation requires [Babele](https://gitlab.com/riccisi/foundryvtt-babele) module. A warning fires at startup if EN is selected without Babele.
|
||||
- **`System.debugMode = true`** in `module/system/config.js:8` — set to `false` before release.
|
||||
- **LESS only** — never edit `css/bol.css` directly. Edit `.less` files under `styles/`, recompile with `npm run css`.
|
||||
- **Data models** — `template.json` defines schema via `Actor.types` (character, encounter, horde, vehicle) and `Item.types` (item, feature). All data lives under `.system`.
|
||||
- **Sheet partials** — registered in `module/system/templates.js`. Add new partials there.
|
||||
- **Static classes** — `BoLRoll` and `BoLUtility` are purely static; never instantiate.
|
||||
- **`template.json.SAVED`** in root is the data model reference; the actual `template.json` may need regeneration.
|
||||
- **`package.json` and lockfile are in `.gitignore`** — npm is dev-only for LESS compilation. Not needed to run the system in Foundry.
|
||||
- **`{{formInput}}` for HTML fields** — always use `{{formInput fieldDef enriched=x value=y name="system.path" toggled=isEditable}}` for `HTMLField` in AppV2 sheets. Never use raw `<prose-mirror>` elements; they break form submission.
|
||||
- **Tab switching** — use CSS-only toggle (no `this.render()`) to preserve ProseMirror editor state. See `base-item-sheet.mjs` pattern.
|
||||
|
||||
## CI & Release
|
||||
|
||||
- CI triggers **only on release publish** (`.gitea/workflows/main.yml`).
|
||||
- Release zips: `system.json template.json README.md LICENSE assets/ compendiums/ css/ fonts/ images/ lang/ module/ packs/ styles/ templates/ ui/`.
|
||||
- Version/URL manifest/download are substituted in `system.json` during CI.
|
||||
- Published to Foundry package registry via `foundryvtt-publish-package-action`.
|
||||
+25
-11
@@ -1512,6 +1512,21 @@ h2.bad {
|
||||
.bol-welcome-card .welcome-body a {
|
||||
color: darkred;
|
||||
}
|
||||
.bol-welcome-card .welcome-body .welcome-premium {
|
||||
margin-top: 6px;
|
||||
padding: 6px 10px;
|
||||
font-size: 0.8rem;
|
||||
color: #191813;
|
||||
background: linear-gradient(135deg, #fdf7e6, #f6e8c8);
|
||||
border: 1px solid #c9a227;
|
||||
border-left: 4px solid #c9a227;
|
||||
border-radius: 3px;
|
||||
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
|
||||
}
|
||||
.bol-welcome-card .welcome-body .welcome-premium a {
|
||||
color: #7a5c00;
|
||||
font-weight: bold;
|
||||
}
|
||||
.bol-welcome-card .welcome-footer {
|
||||
margin-top: 8px;
|
||||
padding: 4px 10px;
|
||||
@@ -1522,15 +1537,6 @@ h2.bad {
|
||||
border-radius: 4px;
|
||||
letter-spacing: 0.5px;
|
||||
}
|
||||
.bol-welcome-card .welcome-warning {
|
||||
margin-top: 6px;
|
||||
padding: 4px 8px;
|
||||
font-size: 0.8rem;
|
||||
color: #7a0000;
|
||||
background: #fff3f3;
|
||||
border: 1px solid #e57373;
|
||||
border-radius: 3px;
|
||||
}
|
||||
/* Component Styles */
|
||||
/* ----------------------------------------- */
|
||||
/* Common Sheet Styles */
|
||||
@@ -1538,8 +1544,16 @@ h2.bad {
|
||||
body.system-bol img#logo {
|
||||
content: url("/systems/bol/ui/logo2.webp");
|
||||
}
|
||||
.journal-page-content {
|
||||
/* Reserved for future use */
|
||||
.journal-page-content,
|
||||
.journal-page-content p,
|
||||
.journal-page-content div,
|
||||
.journal-page-content span {
|
||||
color: #191813 !important;
|
||||
}
|
||||
.sheet.journal-entry prose-mirror.journal-page-content,
|
||||
prose-mirror.journal-page-content {
|
||||
background-color: white;
|
||||
background: white;
|
||||
}
|
||||
.bol.dialog > section.window-content {
|
||||
background: white;
|
||||
|
||||
+2
-1
@@ -469,7 +469,8 @@
|
||||
"BOL.chat.welcome4": "Im Discord findet ihr Support für die FoundryVTT-Implementierung dieses Systems: https://discord.gg/pPSDNJk",
|
||||
"BOL.chat.welcome5": "Auf ein gutes Spiel in Lemuria!",
|
||||
"BOL.chat.welcome6": "",
|
||||
"BOL.chat.bolRulebookMessage": "Don't miss the full Rulebook module (including Sagas) available at : https://www.ludospherik-editions.com/en_gb/ !",
|
||||
"BOL.chat.bolRulebookMessage": "Don't miss the premium Rulebook module (including Sagas), available on the Foundry website : <a href='https://foundryvtt.com/packages/bol-rulebook' target='_blank'>https://foundryvtt.com/packages/bol-rulebook</a>",
|
||||
"BOL.chat.bolChroniclesMessage": "Discover the premium Chronicles of Lemuria module (vol. 1), available on the Foundry website : <a href='https://foundryvtt.com/packages/bol-chronicles-1' target='_blank'>https://foundryvtt.com/packages/bol-chronicles-1</a>",
|
||||
|
||||
"BOL.settings.rollArmor": "Roll for armor",
|
||||
"BOL.settings.rollArmorTooltip": "Roll for armor value, fixed value if unchecked",
|
||||
|
||||
+2
-1
@@ -545,7 +545,8 @@
|
||||
"BOL.chat.criticalbuttonjournal": "Legendary/Heroic Success",
|
||||
"BOL.chat.nodamage": "Do not apply damages",
|
||||
"BOL.chat.armorRoll": "Armor roll",
|
||||
"BOL.chat.bolRulebookMessage": "Don't miss the full Rulebook module (including Sagas) available at : https://www.ludospherik-editions.com/en_gb/ !",
|
||||
"BOL.chat.bolRulebookMessage": "Don't miss the premium Rulebook module (including Sagas), available on the Foundry website : <a href='https://foundryvtt.com/packages/bol-rulebook' target='_blank'>https://foundryvtt.com/packages/bol-rulebook</a>",
|
||||
"BOL.chat.bolChroniclesMessage": "Discover the premium Chronicles of Lemuria module (vol. 1), available on the Foundry website : <a href='https://foundryvtt.com/packages/bol-chronicles-1' target='_blank'>https://foundryvtt.com/packages/bol-chronicles-1</a>",
|
||||
|
||||
"BOL.dialog.soeasy": "So easy (+4)",
|
||||
"BOL.dialog.soeasy3": "So easy (+3)",
|
||||
|
||||
+2
-1
@@ -535,7 +535,8 @@
|
||||
"BOL.chat.criticalinfo": "¡Esto es un éxito Asombroso o Legendario! Escoge tus opciones y efectos",
|
||||
"BOL.chat.criticalbuttonjournal": "Éxito Asombroso/Legendario",
|
||||
"BOL.chat.armorRoll": "Tirada de Armadura",
|
||||
"BOL.chat.bolRulebookMessage": "Don't miss the full Rulebook module (including Sagas) available at : https://www.ludospherik-editions.com/en_gb/ !",
|
||||
"BOL.chat.bolRulebookMessage": "Don't miss the premium Rulebook module (including Sagas), available on the Foundry website : <a href='https://foundryvtt.com/packages/bol-rulebook' target='_blank'>https://foundryvtt.com/packages/bol-rulebook</a>",
|
||||
"BOL.chat.bolChroniclesMessage": "Discover the premium Chronicles of Lemuria module (vol. 1), available on the Foundry website : <a href='https://foundryvtt.com/packages/bol-chronicles-1' target='_blank'>https://foundryvtt.com/packages/bol-chronicles-1</a>",
|
||||
|
||||
"BOL.dialog.soeasy": "Demasiado fácil (+4)",
|
||||
"BOL.dialog.veryeasy": "Muy fácil (+2)",
|
||||
|
||||
+2
-1
@@ -571,7 +571,8 @@
|
||||
"BOL.chat.criticalinfo": "C'est un succès Héroïque ! Choisissez vos options et effets !",
|
||||
"BOL.chat.criticallegendaryinfo": "C'est un succès Légendaire ! Choisissez vos options et effets !",
|
||||
"BOL.chat.criticalbuttonjournal": "Succès Héroïque/Légendaire",
|
||||
"BOL.chat.bolRulebookMessage": "N'oubliez pas le module complet du Livre de Règle et des Sagas disponible ici : https://www.ludospherik-editions.com !",
|
||||
"BOL.chat.bolRulebookMessage": "N'oubliez pas le module premium du Livre de Règle et des Sagas, disponible sur le site Foundry : <a href='https://foundryvtt.com/packages/bol-rulebook' target='_blank'>https://foundryvtt.com/packages/bol-rulebook</a>",
|
||||
"BOL.chat.bolChroniclesMessage": "Découvrez le module premium des Chroniques de Lémurie (vol. 1), disponible sur le site Foundry : <a href='https://foundryvtt.com/packages/bol-chronicles-1' target='_blank'>https://foundryvtt.com/packages/bol-chronicles-1</a>",
|
||||
"BOL.chat.losshp": "{name} a perdu {lossHP} points de Vitalité. Si il se repose quelques minutes, il peut récupérer {recupHP} points de Vitalité.",
|
||||
"BOL.chat.applyrecup": "Récupérer pendant quelques minutes (+{recupHP} Vitalité)",
|
||||
"BOL.chat.inforecup": "{name} vient de récupérer {recupHP} points de Vitalité après quelques minutes de repos.",
|
||||
|
||||
@@ -866,12 +866,12 @@ export class BoLActor extends Actor {
|
||||
if (this.system.resources.hp.value <= 0) {
|
||||
if (!prone) {
|
||||
await this.createEmbeddedDocuments("ActiveEffect", [
|
||||
{ name: game.i18n.localize('EFFECT.StatusProne'), icon: 'icons/svg/falling.svg', statuses: 'prone' }
|
||||
{ name: game.i18n.localize('EFFECT.StatusProne'), img: 'icons/svg/falling.svg', statuses: ['prone'] }
|
||||
])
|
||||
}
|
||||
if (this.system.resources.hp.value < -5 && !dead) {
|
||||
await this.createEmbeddedDocuments("ActiveEffect", [
|
||||
{ name: game.i18n.localize('EFFECT.StatusDead'), icon: 'icons/svg/skull.svg', statuses: 'dead' }
|
||||
{ name: game.i18n.localize('EFFECT.StatusDead'), img: 'icons/svg/skull.svg', statuses: ['dead'] }
|
||||
])
|
||||
}
|
||||
ChatMessage.create({
|
||||
|
||||
@@ -49,6 +49,7 @@ export default class BoLBaseActorSheet extends HandlebarsApplicationMixin(foundr
|
||||
return {
|
||||
actor,
|
||||
system: actor.system,
|
||||
systemFields: actor.system.schema.fields,
|
||||
config: game.bol.config,
|
||||
isGM: game.user.isGM,
|
||||
isEditable: this.isEditable,
|
||||
@@ -112,7 +113,8 @@ export default class BoLBaseActorSheet extends HandlebarsApplicationMixin(foundr
|
||||
link.addEventListener("click", (event) => {
|
||||
event.preventDefault()
|
||||
this.tabGroups[group] = tab
|
||||
this.render()
|
||||
nav.querySelectorAll("[data-tab]").forEach(l => l.classList.toggle("active", l.dataset.tab === tab))
|
||||
this.element.querySelectorAll(`[data-group="${group}"][data-tab]`).forEach(c => c.classList.toggle("active", c.dataset.tab === tab))
|
||||
})
|
||||
})
|
||||
|
||||
|
||||
+9
-7
@@ -101,24 +101,26 @@ Hooks.once('init', async function () {
|
||||
// Register hooks
|
||||
registerHooks()
|
||||
|
||||
if (typeof Babele !== 'undefined') {
|
||||
Babele.get().setSystemTranslationsDir("compendiums");
|
||||
}
|
||||
|
||||
});
|
||||
|
||||
/* -------------------------------------------- */
|
||||
Hooks.once("babele.init", (babele) => {
|
||||
console.log("Initializing Babele translations")
|
||||
babele.setSystemTranslationsDir("compendiums");
|
||||
});
|
||||
|
||||
|
||||
/* -------------------------------------------- */
|
||||
async function welcomeMessage() {
|
||||
const noRulebook = !game.modules.find(m => m.id === "bol-rulebook")
|
||||
const noRulebook = !game.modules.get("bol-rulebook")?.active
|
||||
const noChronicles = !game.modules.get("bol-chronicles-1")?.active
|
||||
const content = await foundry.applications.handlebars.renderTemplate(
|
||||
"systems/bol/templates/chat/chat-welcome.hbs",
|
||||
{ noRulebook }
|
||||
{ noRulebook, noChronicles }
|
||||
)
|
||||
ChatMessage.create({ user: game.user.id, whisper: [game.user.id], content })
|
||||
|
||||
if (game.user.isGM && game.i18n.lang == 'en' && !game.modules.find(m => m.id == "babele")) {
|
||||
if (game.user.isGM && game.i18n.lang == 'en' && !game.modules.get("babele")?.active) {
|
||||
ChatMessage.create({
|
||||
user: game.user.id,
|
||||
whisper: [game.user.id],
|
||||
|
||||
+42
-42
@@ -413,108 +413,108 @@ BOL.bolEffectModifier = {
|
||||
BOL.statusEffects = [
|
||||
{
|
||||
"id": "dead",
|
||||
"label": "EFFECT.StatusDead",
|
||||
"icon": "icons/svg/skull.svg"
|
||||
"name": "EFFECT.StatusDead",
|
||||
"img": "icons/svg/skull.svg"
|
||||
},
|
||||
{
|
||||
"id": "unconscious",
|
||||
"label": "EFFECT.StatusUnconscious",
|
||||
"icon": "icons/svg/unconscious.svg"
|
||||
"name": "EFFECT.StatusUnconscious",
|
||||
"img": "icons/svg/unconscious.svg"
|
||||
},
|
||||
{
|
||||
"id": "sleep",
|
||||
"label": "EFFECT.StatusAsleep",
|
||||
"icon": "icons/svg/sleep.svg"
|
||||
"name": "EFFECT.StatusAsleep",
|
||||
"img": "icons/svg/sleep.svg"
|
||||
},
|
||||
{
|
||||
"id": "stun",
|
||||
"label": "EFFECT.StatusStunned",
|
||||
"icon": "icons/svg/daze.svg"
|
||||
"name": "EFFECT.StatusStunned",
|
||||
"img": "icons/svg/daze.svg"
|
||||
},
|
||||
{
|
||||
"id": "prone",
|
||||
"label": "EFFECT.StatusProne",
|
||||
"icon": "icons/svg/falling.svg"
|
||||
"name": "EFFECT.StatusProne",
|
||||
"img": "icons/svg/falling.svg"
|
||||
},
|
||||
{
|
||||
"id": "restrain",
|
||||
"label": "EFFECT.StatusRestrained",
|
||||
"icon": "icons/svg/net.svg"
|
||||
"name": "EFFECT.StatusRestrained",
|
||||
"img": "icons/svg/net.svg"
|
||||
},
|
||||
{
|
||||
"id": "paralysis",
|
||||
"label": "EFFECT.StatusParalysis",
|
||||
"icon": "icons/svg/paralysis.svg"
|
||||
"name": "EFFECT.StatusParalysis",
|
||||
"img": "icons/svg/paralysis.svg"
|
||||
},
|
||||
{
|
||||
"id": "fly",
|
||||
"label": "EFFECT.StatusFlying",
|
||||
"icon": "icons/svg/wing.svg"
|
||||
"name": "EFFECT.StatusFlying",
|
||||
"img": "icons/svg/wing.svg"
|
||||
},
|
||||
{
|
||||
"id": "blind",
|
||||
"label": "EFFECT.StatusBlind",
|
||||
"icon": "icons/svg/blind.svg"
|
||||
"name": "EFFECT.StatusBlind",
|
||||
"img": "icons/svg/blind.svg"
|
||||
},
|
||||
{
|
||||
"id": "deaf",
|
||||
"label": "EFFECT.StatusDeaf",
|
||||
"icon": "icons/svg/deaf.svg"
|
||||
"name": "EFFECT.StatusDeaf",
|
||||
"img": "icons/svg/deaf.svg"
|
||||
},
|
||||
{
|
||||
"id": "silence",
|
||||
"label": "EFFECT.StatusSilenced",
|
||||
"icon": "icons/svg/silenced.svg"
|
||||
"name": "EFFECT.StatusSilenced",
|
||||
"img": "icons/svg/silenced.svg"
|
||||
},
|
||||
{
|
||||
"id": "fear",
|
||||
"label": "EFFECT.StatusFear",
|
||||
"icon": "icons/svg/terror.svg"
|
||||
"name": "EFFECT.StatusFear",
|
||||
"img": "icons/svg/terror.svg"
|
||||
},
|
||||
{
|
||||
"id": "burning",
|
||||
"label": "EFFECT.StatusBurning",
|
||||
"icon": "icons/svg/fire.svg"
|
||||
"name": "EFFECT.StatusBurning",
|
||||
"img": "icons/svg/fire.svg"
|
||||
},
|
||||
{
|
||||
"id": "frozen",
|
||||
"label": "EFFECT.StatusFrozen",
|
||||
"icon": "icons/svg/frozen.svg"
|
||||
"name": "EFFECT.StatusFrozen",
|
||||
"img": "icons/svg/frozen.svg"
|
||||
},
|
||||
{
|
||||
"id": "shock",
|
||||
"label": "EFFECT.StatusShocked",
|
||||
"icon": "icons/svg/lightning.svg"
|
||||
"name": "EFFECT.StatusShocked",
|
||||
"img": "icons/svg/lightning.svg"
|
||||
},
|
||||
{
|
||||
"id": "disease",
|
||||
"label": "EFFECT.StatusDisease",
|
||||
"icon": "icons/svg/biohazard.svg"
|
||||
"name": "EFFECT.StatusDisease",
|
||||
"img": "icons/svg/biohazard.svg"
|
||||
},
|
||||
{
|
||||
"id": "poison",
|
||||
"label": "EFFECT.StatusPoison",
|
||||
"icon": "icons/svg/poison.svg"
|
||||
"name": "EFFECT.StatusPoison",
|
||||
"img": "icons/svg/poison.svg"
|
||||
},
|
||||
{
|
||||
"id": "curse",
|
||||
"label": "EFFECT.StatusCursed",
|
||||
"icon": "icons/svg/sun.svg"
|
||||
"name": "EFFECT.StatusCursed",
|
||||
"img": "icons/svg/sun.svg"
|
||||
},
|
||||
{
|
||||
"id": "invisible",
|
||||
"label": "EFFECT.StatusInvisible",
|
||||
"icon": "icons/svg/invisible.svg"
|
||||
"name": "EFFECT.StatusInvisible",
|
||||
"img": "icons/svg/invisible.svg"
|
||||
},
|
||||
{
|
||||
"id": "target",
|
||||
"label": "EFFECT.StatusTarget",
|
||||
"icon": "icons/svg/target.svg"
|
||||
"name": "EFFECT.StatusTarget",
|
||||
"img": "icons/svg/target.svg"
|
||||
},
|
||||
{
|
||||
"id": "eye",
|
||||
"label": "EFFECT.StatusMarked",
|
||||
"icon": "icons/svg/eye.svg"
|
||||
"name": "EFFECT.StatusMarked",
|
||||
"img": "icons/svg/eye.svg"
|
||||
}
|
||||
]
|
||||
|
||||
|
||||
@@ -1 +1 @@
|
||||
MANIFEST-001170
|
||||
MANIFEST-001233
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
2026/04/18-12:41:58.625593 7f421a7fc6c0 Recovering log #1168
|
||||
2026/04/18-12:41:58.643479 7f421a7fc6c0 Delete type=3 #1166
|
||||
2026/04/18-12:41:58.643667 7f421a7fc6c0 Delete type=0 #1168
|
||||
2026/04/18-12:51:29.111368 7f4219ffb6c0 Level-0 table #1173: started
|
||||
2026/04/18-12:51:29.111416 7f4219ffb6c0 Level-0 table #1173: 0 bytes OK
|
||||
2026/04/18-12:51:29.117812 7f4219ffb6c0 Delete type=0 #1171
|
||||
2026/04/18-12:51:29.125558 7f4219ffb6c0 Manual compaction at level-0 from '!journal!6cCdSvQgEHJ1bvX4' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end)
|
||||
2026/08/03-06:19:48.779385 7f0fa7fff6c0 Recovering log #1231
|
||||
2026/08/03-06:19:48.790078 7f0fa7fff6c0 Delete type=3 #1229
|
||||
2026/08/03-06:19:48.790149 7f0fa7fff6c0 Delete type=0 #1231
|
||||
2026/08/03-06:38:26.831982 7f0fa6ffd6c0 Level-0 table #1236: started
|
||||
2026/08/03-06:38:26.832007 7f0fa6ffd6c0 Level-0 table #1236: 0 bytes OK
|
||||
2026/08/03-06:38:26.838786 7f0fa6ffd6c0 Delete type=0 #1234
|
||||
2026/08/03-06:38:26.853917 7f0fa6ffd6c0 Manual compaction at level-0 from '!journal!6cCdSvQgEHJ1bvX4' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
2026/04/15-15:16:22.577548 7f2689bfd6c0 Recovering log #1164
|
||||
2026/04/15-15:16:22.587344 7f2689bfd6c0 Delete type=3 #1162
|
||||
2026/04/15-15:16:22.587417 7f2689bfd6c0 Delete type=0 #1164
|
||||
2026/04/16-18:58:25.396434 7f2688bfb6c0 Level-0 table #1169: started
|
||||
2026/04/16-18:58:25.396459 7f2688bfb6c0 Level-0 table #1169: 0 bytes OK
|
||||
2026/04/16-18:58:25.402613 7f2688bfb6c0 Delete type=0 #1167
|
||||
2026/04/16-18:58:25.408920 7f2688bfb6c0 Manual compaction at level-0 from '!journal!6cCdSvQgEHJ1bvX4' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end)
|
||||
2026/08/03-05:42:23.756827 7f0ff4ffe6c0 Recovering log #1227
|
||||
2026/08/03-05:42:23.787896 7f0ff4ffe6c0 Delete type=3 #1225
|
||||
2026/08/03-05:42:23.787958 7f0ff4ffe6c0 Delete type=0 #1227
|
||||
2026/08/03-06:19:13.177131 7f0fa6ffd6c0 Level-0 table #1232: started
|
||||
2026/08/03-06:19:13.177159 7f0fa6ffd6c0 Level-0 table #1232: 0 bytes OK
|
||||
2026/08/03-06:19:13.184606 7f0fa6ffd6c0 Delete type=0 #1230
|
||||
2026/08/03-06:19:13.191444 7f0fa6ffd6c0 Manual compaction at level-0 from '!journal!6cCdSvQgEHJ1bvX4' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-001071
|
||||
MANIFEST-001134
|
||||
|
||||
+7
-7
@@ -1,7 +1,7 @@
|
||||
2026/04/18-12:41:58.594299 7f421a7fc6c0 Recovering log #1069
|
||||
2026/04/18-12:41:58.606998 7f421a7fc6c0 Delete type=3 #1067
|
||||
2026/04/18-12:41:58.607187 7f421a7fc6c0 Delete type=0 #1069
|
||||
2026/04/18-12:51:29.097029 7f4219ffb6c0 Level-0 table #1074: started
|
||||
2026/04/18-12:51:29.097052 7f4219ffb6c0 Level-0 table #1074: 0 bytes OK
|
||||
2026/04/18-12:51:29.104587 7f4219ffb6c0 Delete type=0 #1072
|
||||
2026/04/18-12:51:29.125521 7f4219ffb6c0 Manual compaction at level-0 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)
|
||||
2026/08/03-06:19:48.750852 7f0ff57ff6c0 Recovering log #1132
|
||||
2026/08/03-06:19:48.761758 7f0ff57ff6c0 Delete type=3 #1130
|
||||
2026/08/03-06:19:48.761842 7f0ff57ff6c0 Delete type=0 #1132
|
||||
2026/08/03-06:38:26.817856 7f0fa6ffd6c0 Level-0 table #1137: started
|
||||
2026/08/03-06:38:26.817889 7f0fa6ffd6c0 Level-0 table #1137: 0 bytes OK
|
||||
2026/08/03-06:38:26.824151 7f0fa6ffd6c0 Delete type=0 #1135
|
||||
2026/08/03-06:38:26.824513 7f0fa6ffd6c0 Manual compaction at level-0 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
2026/04/15-15:16:22.553524 7f2689bfd6c0 Recovering log #1065
|
||||
2026/04/15-15:16:22.563786 7f2689bfd6c0 Delete type=3 #1063
|
||||
2026/04/15-15:16:22.563854 7f2689bfd6c0 Delete type=0 #1065
|
||||
2026/04/16-18:58:25.384570 7f2688bfb6c0 Level-0 table #1070: started
|
||||
2026/04/16-18:58:25.384597 7f2688bfb6c0 Level-0 table #1070: 0 bytes OK
|
||||
2026/04/16-18:58:25.390459 7f2688bfb6c0 Delete type=0 #1068
|
||||
2026/04/16-18:58:25.408906 7f2688bfb6c0 Manual compaction at level-0 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)
|
||||
2026/08/03-05:42:23.674797 7f0fa7fff6c0 Recovering log #1128
|
||||
2026/08/03-05:42:23.703359 7f0fa7fff6c0 Delete type=3 #1126
|
||||
2026/08/03-05:42:23.703453 7f0fa7fff6c0 Delete type=0 #1128
|
||||
2026/08/03-06:19:13.162949 7f0fa6ffd6c0 Level-0 table #1133: started
|
||||
2026/08/03-06:19:13.162995 7f0fa6ffd6c0 Level-0 table #1133: 0 bytes OK
|
||||
2026/08/03-06:19:13.170299 7f0fa6ffd6c0 Delete type=0 #1131
|
||||
2026/08/03-06:19:13.184757 7f0fa6ffd6c0 Manual compaction at level-0 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
Binary file not shown.
+1
-1
@@ -1 +1 @@
|
||||
MANIFEST-001165
|
||||
MANIFEST-001228
|
||||
|
||||
+7
-7
@@ -1,7 +1,7 @@
|
||||
2026/04/18-12:41:58.467876 7f421a7fc6c0 Recovering log #1163
|
||||
2026/04/18-12:41:58.480087 7f421a7fc6c0 Delete type=3 #1161
|
||||
2026/04/18-12:41:58.480227 7f421a7fc6c0 Delete type=0 #1163
|
||||
2026/04/18-12:51:29.064204 7f4219ffb6c0 Level-0 table #1168: started
|
||||
2026/04/18-12:51:29.064237 7f4219ffb6c0 Level-0 table #1168: 0 bytes OK
|
||||
2026/04/18-12:51:29.070331 7f4219ffb6c0 Delete type=0 #1166
|
||||
2026/04/18-12:51:29.070529 7f4219ffb6c0 Manual compaction at level-0 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)
|
||||
2026/08/03-06:19:48.636406 7f0ff4ffe6c0 Recovering log #1226
|
||||
2026/08/03-06:19:48.647892 7f0ff4ffe6c0 Delete type=3 #1224
|
||||
2026/08/03-06:19:48.647974 7f0ff4ffe6c0 Delete type=0 #1226
|
||||
2026/08/03-06:38:26.769280 7f0fa6ffd6c0 Level-0 table #1231: started
|
||||
2026/08/03-06:38:26.769359 7f0fa6ffd6c0 Level-0 table #1231: 0 bytes OK
|
||||
2026/08/03-06:38:26.776073 7f0fa6ffd6c0 Delete type=0 #1229
|
||||
2026/08/03-06:38:26.797077 7f0fa6ffd6c0 Manual compaction at level-0 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)
|
||||
|
||||
+7
-7
@@ -1,7 +1,7 @@
|
||||
2026/04/15-15:16:22.453383 7f268a3fe6c0 Recovering log #1159
|
||||
2026/04/15-15:16:22.464015 7f268a3fe6c0 Delete type=3 #1157
|
||||
2026/04/15-15:16:22.464074 7f268a3fe6c0 Delete type=0 #1159
|
||||
2026/04/16-18:58:25.339542 7f2688bfb6c0 Level-0 table #1164: started
|
||||
2026/04/16-18:58:25.339565 7f2688bfb6c0 Level-0 table #1164: 0 bytes OK
|
||||
2026/04/16-18:58:25.345394 7f2688bfb6c0 Delete type=0 #1162
|
||||
2026/04/16-18:58:25.358898 7f2688bfb6c0 Manual compaction at level-0 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)
|
||||
2026/08/03-05:42:23.425060 7f0fa7fff6c0 Recovering log #1222
|
||||
2026/08/03-05:42:23.456278 7f0fa7fff6c0 Delete type=3 #1220
|
||||
2026/08/03-05:42:23.456346 7f0fa7fff6c0 Delete type=0 #1222
|
||||
2026/08/03-06:19:13.105722 7f0fa6ffd6c0 Level-0 table #1227: started
|
||||
2026/08/03-06:19:13.105794 7f0fa6ffd6c0 Level-0 table #1227: 0 bytes OK
|
||||
2026/08/03-06:19:13.112554 7f0fa6ffd6c0 Delete type=0 #1225
|
||||
2026/08/03-06:19:13.133354 7f0fa6ffd6c0 Manual compaction at level-0 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-001164
|
||||
MANIFEST-001227
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
2026/04/18-12:41:58.484621 7f421b7fe6c0 Recovering log #1162
|
||||
2026/04/18-12:41:58.495420 7f421b7fe6c0 Delete type=3 #1160
|
||||
2026/04/18-12:41:58.495553 7f421b7fe6c0 Delete type=0 #1162
|
||||
2026/04/18-12:51:29.050477 7f4219ffb6c0 Level-0 table #1167: started
|
||||
2026/04/18-12:51:29.050497 7f4219ffb6c0 Level-0 table #1167: 0 bytes OK
|
||||
2026/04/18-12:51:29.057500 7f4219ffb6c0 Delete type=0 #1165
|
||||
2026/04/18-12:51:29.070504 7f4219ffb6c0 Manual compaction at level-0 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)
|
||||
2026/08/03-06:19:48.651558 7f0ff57ff6c0 Recovering log #1225
|
||||
2026/08/03-06:19:48.662260 7f0ff57ff6c0 Delete type=3 #1223
|
||||
2026/08/03-06:19:48.662354 7f0ff57ff6c0 Delete type=0 #1225
|
||||
2026/08/03-06:38:26.782903 7f0fa6ffd6c0 Level-0 table #1230: started
|
||||
2026/08/03-06:38:26.782939 7f0fa6ffd6c0 Level-0 table #1230: 0 bytes OK
|
||||
2026/08/03-06:38:26.790042 7f0fa6ffd6c0 Delete type=0 #1228
|
||||
2026/08/03-06:38:26.797110 7f0fa6ffd6c0 Manual compaction at level-0 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
2026/04/15-15:16:22.466221 7f268abff6c0 Recovering log #1158
|
||||
2026/04/15-15:16:22.475960 7f268abff6c0 Delete type=3 #1156
|
||||
2026/04/15-15:16:22.476018 7f268abff6c0 Delete type=0 #1158
|
||||
2026/04/16-18:58:25.345509 7f2688bfb6c0 Level-0 table #1163: started
|
||||
2026/04/16-18:58:25.345540 7f2688bfb6c0 Level-0 table #1163: 0 bytes OK
|
||||
2026/04/16-18:58:25.351392 7f2688bfb6c0 Delete type=0 #1161
|
||||
2026/04/16-18:58:25.358907 7f2688bfb6c0 Manual compaction at level-0 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)
|
||||
2026/08/03-05:42:23.460746 7f0fa77fe6c0 Recovering log #1221
|
||||
2026/08/03-05:42:23.486451 7f0fa77fe6c0 Delete type=3 #1219
|
||||
2026/08/03-05:42:23.486511 7f0fa77fe6c0 Delete type=0 #1221
|
||||
2026/08/03-06:19:13.112716 7f0fa6ffd6c0 Level-0 table #1226: started
|
||||
2026/08/03-06:19:13.112749 7f0fa6ffd6c0 Level-0 table #1226: 0 bytes OK
|
||||
2026/08/03-06:19:13.119007 7f0fa6ffd6c0 Delete type=0 #1224
|
||||
2026/08/03-06:19:13.133376 7f0fa6ffd6c0 Manual compaction at level-0 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-001164
|
||||
MANIFEST-001227
|
||||
|
||||
+7
-7
@@ -1,7 +1,7 @@
|
||||
2026/04/18-12:41:58.515857 7f421affd6c0 Recovering log #1162
|
||||
2026/04/18-12:41:58.526774 7f421affd6c0 Delete type=3 #1160
|
||||
2026/04/18-12:41:58.526909 7f421affd6c0 Delete type=0 #1162
|
||||
2026/04/18-12:51:29.043791 7f4219ffb6c0 Level-0 table #1167: started
|
||||
2026/04/18-12:51:29.043833 7f4219ffb6c0 Level-0 table #1167: 0 bytes OK
|
||||
2026/04/18-12:51:29.050399 7f4219ffb6c0 Delete type=0 #1165
|
||||
2026/04/18-12:51:29.070487 7f4219ffb6c0 Manual compaction at level-0 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)
|
||||
2026/08/03-06:19:48.681657 7f0ff4ffe6c0 Recovering log #1225
|
||||
2026/08/03-06:19:48.692268 7f0ff4ffe6c0 Delete type=3 #1223
|
||||
2026/08/03-06:19:48.692351 7f0ff4ffe6c0 Delete type=0 #1225
|
||||
2026/08/03-06:38:26.790164 7f0fa6ffd6c0 Level-0 table #1230: started
|
||||
2026/08/03-06:38:26.790190 7f0fa6ffd6c0 Level-0 table #1230: 0 bytes OK
|
||||
2026/08/03-06:38:26.796894 7f0fa6ffd6c0 Delete type=0 #1228
|
||||
2026/08/03-06:38:26.797197 7f0fa6ffd6c0 Manual compaction at level-0 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
2026/04/15-15:16:22.491753 7f268abff6c0 Recovering log #1158
|
||||
2026/04/15-15:16:22.502125 7f268abff6c0 Delete type=3 #1156
|
||||
2026/04/15-15:16:22.502198 7f268abff6c0 Delete type=0 #1158
|
||||
2026/04/16-18:58:25.351494 7f2688bfb6c0 Level-0 table #1163: started
|
||||
2026/04/16-18:58:25.351525 7f2688bfb6c0 Level-0 table #1163: 0 bytes OK
|
||||
2026/04/16-18:58:25.358768 7f2688bfb6c0 Delete type=0 #1161
|
||||
2026/04/16-18:58:25.358916 7f2688bfb6c0 Manual compaction at level-0 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)
|
||||
2026/08/03-05:42:23.515629 7f0fa77fe6c0 Recovering log #1221
|
||||
2026/08/03-05:42:23.541236 7f0fa77fe6c0 Delete type=3 #1219
|
||||
2026/08/03-05:42:23.541308 7f0fa77fe6c0 Delete type=0 #1221
|
||||
2026/08/03-06:19:13.126577 7f0fa6ffd6c0 Level-0 table #1226: started
|
||||
2026/08/03-06:19:13.126609 7f0fa6ffd6c0 Level-0 table #1226: 0 bytes OK
|
||||
2026/08/03-06:19:13.133180 7f0fa6ffd6c0 Delete type=0 #1224
|
||||
2026/08/03-06:19:13.133414 7f0fa6ffd6c0 Manual compaction at level-0 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-001162
|
||||
MANIFEST-001225
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
2026/04/18-12:41:58.742695 7f421affd6c0 Recovering log #1160
|
||||
2026/04/18-12:41:58.754264 7f421affd6c0 Delete type=3 #1158
|
||||
2026/04/18-12:41:58.754458 7f421affd6c0 Delete type=0 #1160
|
||||
2026/04/18-12:51:29.159760 7f4219ffb6c0 Level-0 table #1165: started
|
||||
2026/04/18-12:51:29.159794 7f4219ffb6c0 Level-0 table #1165: 0 bytes OK
|
||||
2026/04/18-12:51:29.166069 7f4219ffb6c0 Delete type=0 #1163
|
||||
2026/04/18-12:51:29.180793 7f4219ffb6c0 Manual compaction at level-0 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)
|
||||
2026/08/03-06:19:48.879803 7f0ff57ff6c0 Recovering log #1223
|
||||
2026/08/03-06:19:48.890084 7f0ff57ff6c0 Delete type=3 #1221
|
||||
2026/08/03-06:19:48.890177 7f0ff57ff6c0 Delete type=0 #1223
|
||||
2026/08/03-06:38:26.891447 7f0fa6ffd6c0 Level-0 table #1228: started
|
||||
2026/08/03-06:38:26.891477 7f0fa6ffd6c0 Level-0 table #1228: 0 bytes OK
|
||||
2026/08/03-06:38:26.898218 7f0fa6ffd6c0 Delete type=0 #1226
|
||||
2026/08/03-06:38:26.913139 7f0fa6ffd6c0 Manual compaction at level-0 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
2026/04/15-15:16:22.662031 7f268abff6c0 Recovering log #1156
|
||||
2026/04/15-15:16:22.672181 7f268abff6c0 Delete type=3 #1154
|
||||
2026/04/15-15:16:22.672239 7f268abff6c0 Delete type=0 #1156
|
||||
2026/04/16-18:58:25.414877 7f2688bfb6c0 Level-0 table #1161: started
|
||||
2026/04/16-18:58:25.414902 7f2688bfb6c0 Level-0 table #1161: 0 bytes OK
|
||||
2026/04/16-18:58:25.420767 7f2688bfb6c0 Delete type=0 #1159
|
||||
2026/04/16-18:58:25.434013 7f2688bfb6c0 Manual compaction at level-0 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)
|
||||
2026/08/03-05:42:23.971932 7f0fa7fff6c0 Recovering log #1219
|
||||
2026/08/03-05:42:24.003012 7f0fa7fff6c0 Delete type=3 #1217
|
||||
2026/08/03-05:42:24.003097 7f0fa7fff6c0 Delete type=0 #1219
|
||||
2026/08/03-06:19:13.219392 7f0fa6ffd6c0 Level-0 table #1224: started
|
||||
2026/08/03-06:19:13.219417 7f0fa6ffd6c0 Level-0 table #1224: 0 bytes OK
|
||||
2026/08/03-06:19:13.225913 7f0fa6ffd6c0 Delete type=0 #1222
|
||||
2026/08/03-06:19:13.239931 7f0fa6ffd6c0 Manual compaction at level-0 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-001165
|
||||
MANIFEST-001228
|
||||
|
||||
+7
-7
@@ -1,7 +1,7 @@
|
||||
2026/04/18-12:41:58.562774 7f421a7fc6c0 Recovering log #1163
|
||||
2026/04/18-12:41:58.573652 7f421a7fc6c0 Delete type=3 #1161
|
||||
2026/04/18-12:41:58.573800 7f421a7fc6c0 Delete type=0 #1163
|
||||
2026/04/18-12:51:29.084486 7f4219ffb6c0 Level-0 table #1168: started
|
||||
2026/04/18-12:51:29.084510 7f4219ffb6c0 Level-0 table #1168: 0 bytes OK
|
||||
2026/04/18-12:51:29.090608 7f4219ffb6c0 Delete type=0 #1166
|
||||
2026/04/18-12:51:29.096960 7f4219ffb6c0 Manual compaction at level-0 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)
|
||||
2026/08/03-06:19:48.722782 7f0ff57ff6c0 Recovering log #1226
|
||||
2026/08/03-06:19:48.732938 7f0ff57ff6c0 Delete type=3 #1224
|
||||
2026/08/03-06:19:48.733013 7f0ff57ff6c0 Delete type=0 #1226
|
||||
2026/08/03-06:38:26.811182 7f0fa6ffd6c0 Level-0 table #1231: started
|
||||
2026/08/03-06:38:26.811213 7f0fa6ffd6c0 Level-0 table #1231: 0 bytes OK
|
||||
2026/08/03-06:38:26.817698 7f0fa6ffd6c0 Delete type=0 #1229
|
||||
2026/08/03-06:38:26.824339 7f0fa6ffd6c0 Manual compaction at level-0 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
2026/04/15-15:16:22.529214 7f2689bfd6c0 Recovering log #1159
|
||||
2026/04/15-15:16:22.539425 7f2689bfd6c0 Delete type=3 #1157
|
||||
2026/04/15-15:16:22.539500 7f2689bfd6c0 Delete type=0 #1159
|
||||
2026/04/16-18:58:25.365459 7f2688bfb6c0 Level-0 table #1164: started
|
||||
2026/04/16-18:58:25.365488 7f2688bfb6c0 Level-0 table #1164: 0 bytes OK
|
||||
2026/04/16-18:58:25.371259 7f2688bfb6c0 Delete type=0 #1162
|
||||
2026/04/16-18:58:25.384444 7f2688bfb6c0 Manual compaction at level-0 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)
|
||||
2026/08/03-05:42:23.605916 7f0fa7fff6c0 Recovering log #1222
|
||||
2026/08/03-05:42:23.631047 7f0fa7fff6c0 Delete type=3 #1220
|
||||
2026/08/03-05:42:23.631116 7f0fa7fff6c0 Delete type=0 #1222
|
||||
2026/08/03-06:19:13.148540 7f0fa6ffd6c0 Level-0 table #1227: started
|
||||
2026/08/03-06:19:13.148573 7f0fa6ffd6c0 Level-0 table #1227: 0 bytes OK
|
||||
2026/08/03-06:19:13.155217 7f0fa6ffd6c0 Delete type=0 #1225
|
||||
2026/08/03-06:19:13.162717 7f0fa6ffd6c0 Manual compaction at level-0 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-001164
|
||||
MANIFEST-001227
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
2026/04/18-12:41:58.679668 7f421affd6c0 Recovering log #1162
|
||||
2026/04/18-12:41:58.690539 7f421affd6c0 Delete type=3 #1160
|
||||
2026/04/18-12:41:58.690711 7f421affd6c0 Delete type=0 #1162
|
||||
2026/04/18-12:51:29.146181 7f4219ffb6c0 Level-0 table #1167: started
|
||||
2026/04/18-12:51:29.146206 7f4219ffb6c0 Level-0 table #1167: 0 bytes OK
|
||||
2026/04/18-12:51:29.152607 7f4219ffb6c0 Delete type=0 #1165
|
||||
2026/04/18-12:51:29.152803 7f4219ffb6c0 Manual compaction at level-0 from '!items!AoT2c0af4lY6aBsx' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)
|
||||
2026/08/03-06:19:48.822051 7f0fa7fff6c0 Recovering log #1225
|
||||
2026/08/03-06:19:48.832528 7f0fa7fff6c0 Delete type=3 #1223
|
||||
2026/08/03-06:19:48.832595 7f0fa7fff6c0 Delete type=0 #1225
|
||||
2026/08/03-06:38:26.861128 7f0fa6ffd6c0 Level-0 table #1230: started
|
||||
2026/08/03-06:38:26.861152 7f0fa6ffd6c0 Level-0 table #1230: 0 bytes OK
|
||||
2026/08/03-06:38:26.869011 7f0fa6ffd6c0 Delete type=0 #1228
|
||||
2026/08/03-06:38:26.883307 7f0fa6ffd6c0 Manual compaction at level-0 from '!items!AoT2c0af4lY6aBsx' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
2026/04/15-15:16:22.612700 7f268abff6c0 Recovering log #1158
|
||||
2026/04/15-15:16:22.623314 7f268abff6c0 Delete type=3 #1156
|
||||
2026/04/15-15:16:22.623363 7f268abff6c0 Delete type=0 #1158
|
||||
2026/04/16-18:58:25.402687 7f2688bfb6c0 Level-0 table #1163: started
|
||||
2026/04/16-18:58:25.402711 7f2688bfb6c0 Level-0 table #1163: 0 bytes OK
|
||||
2026/04/16-18:58:25.408855 7f2688bfb6c0 Delete type=0 #1161
|
||||
2026/04/16-18:58:25.408963 7f2688bfb6c0 Manual compaction at level-0 from '!items!AoT2c0af4lY6aBsx' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)
|
||||
2026/08/03-05:42:23.855691 7f0fa7fff6c0 Recovering log #1221
|
||||
2026/08/03-05:42:23.883917 7f0fa7fff6c0 Delete type=3 #1219
|
||||
2026/08/03-05:42:23.884004 7f0fa7fff6c0 Delete type=0 #1221
|
||||
2026/08/03-06:19:13.198502 7f0fa6ffd6c0 Level-0 table #1226: started
|
||||
2026/08/03-06:19:13.198527 7f0fa6ffd6c0 Level-0 table #1226: 0 bytes OK
|
||||
2026/08/03-06:19:13.205386 7f0fa6ffd6c0 Delete type=0 #1224
|
||||
2026/08/03-06:19:13.219368 7f0fa6ffd6c0 Manual compaction at level-0 from '!items!AoT2c0af4lY6aBsx' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000647
|
||||
MANIFEST-000710
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
2026/04/18-12:41:58.694405 7f421b7fe6c0 Recovering log #645
|
||||
2026/04/18-12:41:58.706703 7f421b7fe6c0 Delete type=3 #643
|
||||
2026/04/18-12:41:58.706857 7f421b7fe6c0 Delete type=0 #645
|
||||
2026/04/18-12:51:29.125711 7f4219ffb6c0 Level-0 table #650: started
|
||||
2026/04/18-12:51:29.125752 7f4219ffb6c0 Level-0 table #650: 0 bytes OK
|
||||
2026/04/18-12:51:29.132047 7f4219ffb6c0 Delete type=0 #648
|
||||
2026/04/18-12:51:29.152761 7f4219ffb6c0 Manual compaction at level-0 from '!items!CLRp0k5qV8mD03pW' @ 72057594037927935 : 1 .. '!items!wYEpnhbyYaMkaNdL' @ 0 : 0; will stop at (end)
|
||||
2026/08/03-06:19:48.835817 7f0ff57ff6c0 Recovering log #708
|
||||
2026/08/03-06:19:48.845651 7f0ff57ff6c0 Delete type=3 #706
|
||||
2026/08/03-06:19:48.845733 7f0ff57ff6c0 Delete type=0 #708
|
||||
2026/08/03-06:38:26.869191 7f0fa6ffd6c0 Level-0 table #713: started
|
||||
2026/08/03-06:38:26.869223 7f0fa6ffd6c0 Level-0 table #713: 0 bytes OK
|
||||
2026/08/03-06:38:26.875780 7f0fa6ffd6c0 Delete type=0 #711
|
||||
2026/08/03-06:38:26.883321 7f0fa6ffd6c0 Manual compaction at level-0 from '!items!CLRp0k5qV8mD03pW' @ 72057594037927935 : 1 .. '!items!wYEpnhbyYaMkaNdL' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
2026/04/15-15:16:22.625600 7f26893fc6c0 Recovering log #641
|
||||
2026/04/15-15:16:22.635406 7f26893fc6c0 Delete type=3 #639
|
||||
2026/04/15-15:16:22.635464 7f26893fc6c0 Delete type=0 #641
|
||||
2026/04/16-18:58:25.483026 7f2688bfb6c0 Level-0 table #646: started
|
||||
2026/04/16-18:58:25.483062 7f2688bfb6c0 Level-0 table #646: 0 bytes OK
|
||||
2026/04/16-18:58:25.489090 7f2688bfb6c0 Delete type=0 #644
|
||||
2026/04/16-18:58:25.495672 7f2688bfb6c0 Manual compaction at level-0 from '!items!CLRp0k5qV8mD03pW' @ 72057594037927935 : 1 .. '!items!wYEpnhbyYaMkaNdL' @ 0 : 0; will stop at (end)
|
||||
2026/08/03-05:42:23.887819 7f0ff57ff6c0 Recovering log #704
|
||||
2026/08/03-05:42:23.911535 7f0ff57ff6c0 Delete type=3 #702
|
||||
2026/08/03-05:42:23.911621 7f0ff57ff6c0 Delete type=0 #704
|
||||
2026/08/03-06:19:13.205536 7f0fa6ffd6c0 Level-0 table #709: started
|
||||
2026/08/03-06:19:13.205564 7f0fa6ffd6c0 Level-0 table #709: 0 bytes OK
|
||||
2026/08/03-06:19:13.211940 7f0fa6ffd6c0 Delete type=0 #707
|
||||
2026/08/03-06:19:13.219382 7f0fa6ffd6c0 Manual compaction at level-0 from '!items!CLRp0k5qV8mD03pW' @ 72057594037927935 : 1 .. '!items!wYEpnhbyYaMkaNdL' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
Binary file not shown.
+1
-1
@@ -1 +1 @@
|
||||
MANIFEST-001165
|
||||
MANIFEST-001228
|
||||
|
||||
+7
-7
@@ -1,7 +1,7 @@
|
||||
2026/04/18-12:41:58.499510 7f421bfff6c0 Recovering log #1163
|
||||
2026/04/18-12:41:58.511396 7f421bfff6c0 Delete type=3 #1161
|
||||
2026/04/18-12:41:58.511530 7f421bfff6c0 Delete type=0 #1163
|
||||
2026/04/18-12:51:29.057755 7f4219ffb6c0 Level-0 table #1168: started
|
||||
2026/04/18-12:51:29.057790 7f4219ffb6c0 Level-0 table #1168: 0 bytes OK
|
||||
2026/04/18-12:51:29.064101 7f4219ffb6c0 Delete type=0 #1166
|
||||
2026/04/18-12:51:29.070517 7f4219ffb6c0 Manual compaction at level-0 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)
|
||||
2026/08/03-06:19:48.667201 7f0fa7fff6c0 Recovering log #1226
|
||||
2026/08/03-06:19:48.678016 7f0fa7fff6c0 Delete type=3 #1224
|
||||
2026/08/03-06:19:48.678104 7f0fa7fff6c0 Delete type=0 #1226
|
||||
2026/08/03-06:38:26.776208 7f0fa6ffd6c0 Level-0 table #1231: started
|
||||
2026/08/03-06:38:26.776233 7f0fa6ffd6c0 Level-0 table #1231: 0 bytes OK
|
||||
2026/08/03-06:38:26.782751 7f0fa6ffd6c0 Delete type=0 #1229
|
||||
2026/08/03-06:38:26.797096 7f0fa6ffd6c0 Manual compaction at level-0 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)
|
||||
|
||||
+7
-7
@@ -1,7 +1,7 @@
|
||||
2026/04/15-15:16:22.478415 7f2689bfd6c0 Recovering log #1159
|
||||
2026/04/15-15:16:22.488840 7f2689bfd6c0 Delete type=3 #1157
|
||||
2026/04/15-15:16:22.488880 7f2689bfd6c0 Delete type=0 #1159
|
||||
2026/04/16-18:58:25.332241 7f2688bfb6c0 Level-0 table #1164: started
|
||||
2026/04/16-18:58:25.332319 7f2688bfb6c0 Level-0 table #1164: 0 bytes OK
|
||||
2026/04/16-18:58:25.339468 7f2688bfb6c0 Delete type=0 #1162
|
||||
2026/04/16-18:58:25.358886 7f2688bfb6c0 Manual compaction at level-0 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)
|
||||
2026/08/03-05:42:23.489449 7f0fa7fff6c0 Recovering log #1222
|
||||
2026/08/03-05:42:23.512550 7f0fa7fff6c0 Delete type=3 #1220
|
||||
2026/08/03-05:42:23.512605 7f0fa7fff6c0 Delete type=0 #1222
|
||||
2026/08/03-06:19:13.119144 7f0fa6ffd6c0 Level-0 table #1227: started
|
||||
2026/08/03-06:19:13.119176 7f0fa6ffd6c0 Level-0 table #1227: 0 bytes OK
|
||||
2026/08/03-06:19:13.126416 7f0fa6ffd6c0 Delete type=0 #1225
|
||||
2026/08/03-06:19:13.133390 7f0fa6ffd6c0 Manual compaction at level-0 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-001164
|
||||
MANIFEST-001227
|
||||
|
||||
+7
-7
@@ -1,7 +1,7 @@
|
||||
2026/04/18-12:41:58.647922 7f421affd6c0 Recovering log #1162
|
||||
2026/04/18-12:41:58.660294 7f421affd6c0 Delete type=3 #1160
|
||||
2026/04/18-12:41:58.660443 7f421affd6c0 Delete type=0 #1162
|
||||
2026/04/18-12:51:29.117921 7f4219ffb6c0 Level-0 table #1167: started
|
||||
2026/04/18-12:51:29.117948 7f4219ffb6c0 Level-0 table #1167: 0 bytes OK
|
||||
2026/04/18-12:51:29.125231 7f4219ffb6c0 Delete type=0 #1165
|
||||
2026/04/18-12:51:29.125582 7f4219ffb6c0 Manual compaction at level-0 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end)
|
||||
2026/08/03-06:19:48.794414 7f0ff57ff6c0 Recovering log #1225
|
||||
2026/08/03-06:19:48.805180 7f0ff57ff6c0 Delete type=3 #1223
|
||||
2026/08/03-06:19:48.805252 7f0ff57ff6c0 Delete type=0 #1225
|
||||
2026/08/03-06:38:26.838922 7f0fa6ffd6c0 Level-0 table #1230: started
|
||||
2026/08/03-06:38:26.838945 7f0fa6ffd6c0 Level-0 table #1230: 0 bytes OK
|
||||
2026/08/03-06:38:26.846070 7f0fa6ffd6c0 Delete type=0 #1228
|
||||
2026/08/03-06:38:26.853929 7f0fa6ffd6c0 Manual compaction at level-0 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
2026/04/15-15:16:22.589759 7f268abff6c0 Recovering log #1158
|
||||
2026/04/15-15:16:22.599571 7f268abff6c0 Delete type=3 #1156
|
||||
2026/04/15-15:16:22.599636 7f268abff6c0 Delete type=0 #1158
|
||||
2026/04/16-18:58:25.428017 7f2688bfb6c0 Level-0 table #1163: started
|
||||
2026/04/16-18:58:25.428045 7f2688bfb6c0 Level-0 table #1163: 0 bytes OK
|
||||
2026/04/16-18:58:25.433941 7f2688bfb6c0 Delete type=0 #1161
|
||||
2026/04/16-18:58:25.434032 7f2688bfb6c0 Manual compaction at level-0 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end)
|
||||
2026/08/03-05:42:23.792000 7f0fa7fff6c0 Recovering log #1221
|
||||
2026/08/03-05:42:23.819679 7f0fa7fff6c0 Delete type=3 #1219
|
||||
2026/08/03-05:42:23.819773 7f0fa7fff6c0 Delete type=0 #1221
|
||||
2026/08/03-06:19:13.184774 7f0fa6ffd6c0 Level-0 table #1226: started
|
||||
2026/08/03-06:19:13.184798 7f0fa6ffd6c0 Level-0 table #1226: 0 bytes OK
|
||||
2026/08/03-06:19:13.191255 7f0fa6ffd6c0 Delete type=0 #1224
|
||||
2026/08/03-06:19:13.198489 7f0fa6ffd6c0 Manual compaction at level-0 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
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