Compare commits
13 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a53c7ace53 | |||
| efe37b8a96 | |||
| 49423f40f5 | |||
| 9abc2a8b19 | |||
| 9d96ec5543 | |||
| b6a4148829 | |||
| d8c61458ea | |||
| 9453c15d58 | |||
| 76870c27bf | |||
| ef7fe6e2bd | |||
| 4f53d903eb | |||
| c3cf8f176d | |||
| 386cf89d68 |
@@ -0,0 +1,73 @@
|
||||
# AGENTS.md — mgt2-compendium-amiral-denisov
|
||||
|
||||
## First read
|
||||
|
||||
- `.github/copilot-instructions.md` — packs, icons, module.json conventions (this file builds on it, don't repeat it)
|
||||
|
||||
## No package manager / no build
|
||||
|
||||
There is **no** `package.json`, no lockfile, no bundler. JavaScript is plain ESM loaded directly by FoundryVTT. Do not run `npm install` or any build command.
|
||||
|
||||
## Commands
|
||||
|
||||
5 chat commands registered at runtime (not declared in `module.json`):
|
||||
|
||||
| Command | Entrypoint | Dialog |
|
||||
|---|---|---|
|
||||
| `/commerce` | `scripts/commerce.js` | `CommerceDialog` (3 tabs) |
|
||||
| `/pnj` | `scripts/npc.js` | `NpcDialog` (4 tabs) |
|
||||
| `/rencontre` | `scripts/npc.js` | same dialog (tab 2) |
|
||||
| `/mission` | `scripts/npc.js` | same dialog (tab 3) |
|
||||
| `/sector` | `scripts/sector.js` | `SectorMapApp` (IFRAME Traveller Map, clics→chat) |
|
||||
| `/subsector` | `scripts/sector.js` | `SectorMapApp` (IFRAME) |
|
||||
|
||||
Commands are registered via `ChatLogV2.CHAT_COMMANDS` — not Hooks.on("chatMessage") as the copilot-instructions say (that file is stale). See `commerce.js:15` and `npc.js:15` for the actual pattern.
|
||||
|
||||
## Framework quirks
|
||||
|
||||
- **ApplicationV2** + `HandlebarsApplicationMixin` for all dialogs.
|
||||
- Foundry v13/v14 dual code paths: some hooks must handle both jQuery (v13) and DOM (v14) APIs.
|
||||
- Dice rolls: `await new Roll(formula).evaluate()` — always async.
|
||||
- Skill FQN format for `game.i18n`: e.g. `pilot.spacecraft`, `electronics.computers`, `gunner.turret`.
|
||||
|
||||
## Runtime systems (run at `ready` hook, GM only)
|
||||
|
||||
1. **Migration** (`mgt2eMigration.js`): converts legacy item types to mgt2e (armor→armour, equipment→item/augment, computer→hardware, etc.). Tracked via `game.settings` version flag. Forced re-run requires deleting the setting.
|
||||
|
||||
2. **NPC RollTable sync** (`npcRollTableSync.js`): writes D66 tables from `scripts/data/npcTables.js` into the `tables-pnj` compendium pack. Checksums to avoid redundant writes.
|
||||
|
||||
## Testing
|
||||
|
||||
```sh
|
||||
# standalone, no npm needed — install jest globally or use npx
|
||||
npx jest scripts/tests/travellerNpcGenerator.test.js
|
||||
```
|
||||
|
||||
- Single file, 1096 lines, hand-rolled FoundryVTT mocks.
|
||||
- Covers: utilities, lookups, validation, characteristic/skill generation, skill conversion, full NPC gen, ModuleCache, errors, config validation.
|
||||
- No CI test step — you must run manually.
|
||||
- No Jest config file — relies on defaults.
|
||||
|
||||
## Versioning
|
||||
|
||||
- `module.json` → `"version"` is the single source of truth.
|
||||
- Git tag format: `v1.3.0` (CI strips `v`).
|
||||
- No changelog file.
|
||||
|
||||
## CI/CD (Gitea)
|
||||
|
||||
- Only triggers on **`release: [published]`** — not on push/PR.
|
||||
- Builds a zip archive of `module.json + assets/ + packs/ + scripts/ + styles/ + templates/` and uploads to the release.
|
||||
- No test step in CI.
|
||||
|
||||
## Deprecated packs (still on disk, NOT in module.json)
|
||||
|
||||
- `packs/arme/` → superseded by `armes`
|
||||
- `packs/carriere/` → superseded by `carrieres`
|
||||
- `packs/talent-psy/` → superseded by `talents-psioniques`
|
||||
|
||||
Do not re-add them to `module.json`. They remain for historical data recovery only.
|
||||
|
||||
## All content is in French
|
||||
|
||||
Labels, comments, commit messages, UI strings, icon file names, rule references — everything. Check French naming before searching/grepping.
|
||||
@@ -0,0 +1,4 @@
|
||||
module.exports = {
|
||||
testMatch: ['**/scripts/tests/*.test.js'],
|
||||
transform: {},
|
||||
};
|
||||
+102
-22
@@ -1,27 +1,96 @@
|
||||
{
|
||||
"id": "mgt2-compendium-amiral-denisov",
|
||||
"title": "MGT2 - Compendium Amiral Denisov",
|
||||
"version": "1.1.0",
|
||||
"title": "MgT2e - Compendium Amiral Denisov",
|
||||
"version": "1.3.0",
|
||||
"compatibility": {
|
||||
"minimum": "11",
|
||||
"verified": "13"
|
||||
"minimum": "13",
|
||||
"verified": "13",
|
||||
"maximum": "14"
|
||||
},
|
||||
"description": "Module de compendium et d'outils MGT2 pour FoundryVTT écrit par JdR.Ninja.\nInclut les commandes /commerce, /pnj, /rencontre et /mission pour automatiser le commerce, les PNJ rapides, les rencontres et les contrats aléatoires.",
|
||||
"description": "Module de compendium et d'outils Mongoose Traveller 2e pour FoundryVTT écrit par JdR.Ninja.\nInclut les commandes /commerce, /pnj, /rencontre et /mission pour automatiser le commerce, les PNJ rapides, les rencontres et les contrats aléatoires. La fenêtre /pnj inclut un onglet 'PNJ Détaillé' pour la génération de PNJ Traveller selon les règles du générateur officiel, en s'appuyant sur les compétences natives des fiches.",
|
||||
"esmodules": [
|
||||
"scripts/commerce.js",
|
||||
"scripts/npc.js"
|
||||
"scripts/npc.js",
|
||||
"scripts/sector.js",
|
||||
"scripts/utils/travellerNpcUtils.js",
|
||||
"scripts/data/travellerNpcGenerator.js",
|
||||
"scripts/travellerNpcGenerator.js",
|
||||
"scripts/TravellerNpcDialog.js",
|
||||
"scripts/mgt2eMigration.js",
|
||||
"scripts/npcRollTableSync.js",
|
||||
"scripts/mgt2eSkills.js"
|
||||
],
|
||||
"styles": [
|
||||
"styles/commerce.css",
|
||||
"styles/npc.css"
|
||||
"styles/npc.css",
|
||||
"styles/traveller-npc.css"
|
||||
],
|
||||
"packFolders": {
|
||||
"name": "Amiral Denisov",
|
||||
"sorting": "m",
|
||||
"color": "#00435c",
|
||||
"folders": [
|
||||
{
|
||||
"name": "Equipements",
|
||||
"sorting": "a",
|
||||
"color": "#00435c",
|
||||
"packs": [
|
||||
"armures",
|
||||
"objet",
|
||||
"equipement",
|
||||
"ordinateur",
|
||||
"contenant-sac-coffre",
|
||||
"armes"
|
||||
],
|
||||
"folders": []
|
||||
},
|
||||
{
|
||||
"name": "Références",
|
||||
"sorting": "b",
|
||||
"color": "#00435c",
|
||||
"packs": [
|
||||
"competences",
|
||||
"maladie-poison-and-blessure",
|
||||
"espece",
|
||||
"talents-psioniques",
|
||||
"carrieres"
|
||||
],
|
||||
"folders": []
|
||||
},
|
||||
{
|
||||
"name": "PNJ & Items",
|
||||
"sorting": "c",
|
||||
"color": "#00435c",
|
||||
"packs": [
|
||||
"tables-pnj",
|
||||
"pnj",
|
||||
"competences",
|
||||
"maladie-poison-and-blessure",
|
||||
"espece",
|
||||
"talents-psioniques",
|
||||
"carrieres"
|
||||
],
|
||||
"folders": []
|
||||
},
|
||||
{
|
||||
"name": "Journaux",
|
||||
"sorting": "d",
|
||||
"color": "#00435c",
|
||||
"packs": [
|
||||
"journal"
|
||||
],
|
||||
"folders": []
|
||||
}
|
||||
],
|
||||
"packs": []
|
||||
},
|
||||
"packs": [
|
||||
{
|
||||
"name": "armures",
|
||||
"label": "Armures",
|
||||
"path": "packs/armures",
|
||||
"type": "Item",
|
||||
"system": "mgt2",
|
||||
"system": "mgt2e",
|
||||
"ownership": {
|
||||
"PLAYER": "OBSERVER",
|
||||
"ASSISTANT": "OWNER"
|
||||
@@ -29,10 +98,10 @@
|
||||
},
|
||||
{
|
||||
"name": "competences",
|
||||
"label": "Compétences",
|
||||
"label": "Références de compétences",
|
||||
"path": "packs/competences",
|
||||
"type": "Item",
|
||||
"system": "mgt2",
|
||||
"system": "mgt2e",
|
||||
"ownership": {
|
||||
"PLAYER": "OBSERVER",
|
||||
"ASSISTANT": "OWNER"
|
||||
@@ -43,7 +112,7 @@
|
||||
"label": "Maladie, Poison & Blessure",
|
||||
"path": "packs/maladie-poison-and-blessure",
|
||||
"type": "Item",
|
||||
"system": "mgt2",
|
||||
"system": "mgt2e",
|
||||
"ownership": {
|
||||
"PLAYER": "OBSERVER",
|
||||
"ASSISTANT": "OWNER"
|
||||
@@ -54,7 +123,7 @@
|
||||
"label": "Objets",
|
||||
"path": "packs/objet",
|
||||
"type": "Item",
|
||||
"system": "mgt2",
|
||||
"system": "mgt2e",
|
||||
"ownership": {
|
||||
"PLAYER": "OBSERVER",
|
||||
"ASSISTANT": "OWNER"
|
||||
@@ -65,7 +134,7 @@
|
||||
"label": "Équipement",
|
||||
"path": "packs/equipement",
|
||||
"type": "Item",
|
||||
"system": "mgt2",
|
||||
"system": "mgt2e",
|
||||
"ownership": {
|
||||
"PLAYER": "OBSERVER",
|
||||
"ASSISTANT": "OWNER"
|
||||
@@ -76,7 +145,7 @@
|
||||
"label": "Ordinateur",
|
||||
"path": "packs/ordinateur",
|
||||
"type": "Item",
|
||||
"system": "mgt2",
|
||||
"system": "mgt2e",
|
||||
"ownership": {
|
||||
"PLAYER": "OBSERVER",
|
||||
"ASSISTANT": "OWNER"
|
||||
@@ -87,7 +156,7 @@
|
||||
"label": "Contenant (sac, coffre)",
|
||||
"path": "packs/contenant-sac-coffre",
|
||||
"type": "Item",
|
||||
"system": "mgt2",
|
||||
"system": "mgt2e",
|
||||
"ownership": {
|
||||
"PLAYER": "OBSERVER",
|
||||
"ASSISTANT": "OWNER"
|
||||
@@ -98,7 +167,7 @@
|
||||
"label": "Espèce",
|
||||
"path": "packs/espece",
|
||||
"type": "Item",
|
||||
"system": "mgt2",
|
||||
"system": "mgt2e",
|
||||
"ownership": {
|
||||
"PLAYER": "OBSERVER",
|
||||
"ASSISTANT": "OWNER"
|
||||
@@ -106,10 +175,10 @@
|
||||
},
|
||||
{
|
||||
"name": "journal",
|
||||
"label": "Journal Psioniques",
|
||||
"label": "Journal Psioniques",
|
||||
"path": "packs/journal",
|
||||
"type": "JournalEntry",
|
||||
"system": "mgt2",
|
||||
"system": "mgt2e",
|
||||
"ownership": {
|
||||
"PLAYER": "OBSERVER",
|
||||
"ASSISTANT": "OWNER"
|
||||
@@ -120,7 +189,7 @@
|
||||
"label": "Armes",
|
||||
"path": "packs/armes",
|
||||
"type": "Item",
|
||||
"system": "mgt2",
|
||||
"system": "mgt2e",
|
||||
"ownership": {
|
||||
"PLAYER": "OBSERVER",
|
||||
"ASSISTANT": "OWNER"
|
||||
@@ -131,7 +200,7 @@
|
||||
"label": "Talents psioniques",
|
||||
"path": "packs/talents-psioniques",
|
||||
"type": "Item",
|
||||
"system": "mgt2",
|
||||
"system": "mgt2e",
|
||||
"ownership": {
|
||||
"PLAYER": "OBSERVER",
|
||||
"ASSISTANT": "OWNER"
|
||||
@@ -142,7 +211,7 @@
|
||||
"label": "Carrières",
|
||||
"path": "packs/carrieres",
|
||||
"type": "Item",
|
||||
"system": "mgt2",
|
||||
"system": "mgt2e",
|
||||
"ownership": {
|
||||
"PLAYER": "OBSERVER",
|
||||
"ASSISTANT": "OWNER"
|
||||
@@ -153,7 +222,18 @@
|
||||
"label": "Tables PNJ & Rencontres",
|
||||
"path": "packs/tables-pnj",
|
||||
"type": "RollTable",
|
||||
"system": "mgt2",
|
||||
"system": "mgt2e",
|
||||
"ownership": {
|
||||
"PLAYER": "OBSERVER",
|
||||
"ASSISTANT": "OWNER"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "pnj",
|
||||
"label": "PNJs",
|
||||
"path": "packs/pnj",
|
||||
"type": "Actor",
|
||||
"system": "mgt2e",
|
||||
"ownership": {
|
||||
"PLAYER": "OBSERVER",
|
||||
"ASSISTANT": "OWNER"
|
||||
|
||||
@@ -0,0 +1,4 @@
|
||||
{
|
||||
"type": "module",
|
||||
"private": true
|
||||
}
|
||||
Binary file not shown.
Binary file not shown.
+1
-1
@@ -1 +1 @@
|
||||
MANIFEST-000057
|
||||
MANIFEST-000132
|
||||
|
||||
+8
-8
@@ -1,8 +1,8 @@
|
||||
2026/04/14-09:09:27.978364 7fddd97be6c0 Recovering log #53
|
||||
2026/04/14-09:09:28.036731 7fddd97be6c0 Delete type=3 #51
|
||||
2026/04/14-09:09:28.036869 7fddd97be6c0 Delete type=0 #53
|
||||
2026/04/14-09:37:12.068876 7fddca1c26c0 Level-0 table #60: started
|
||||
2026/04/14-09:37:12.068921 7fddca1c26c0 Level-0 table #60: 0 bytes OK
|
||||
2026/04/14-09:37:12.075223 7fddca1c26c0 Delete type=0 #58
|
||||
2026/04/14-09:37:12.095906 7fddca1c26c0 Manual compaction at level-0 from '!folders!673DRfEBYUliGnKJ' @ 72057594037927935 : 1 .. '!items!yoIqL0RQEnzNVJB6' @ 0 : 0; will stop at (end)
|
||||
2026/04/14-09:37:12.096000 7fddca1c26c0 Manual compaction at level-1 from '!folders!673DRfEBYUliGnKJ' @ 72057594037927935 : 1 .. '!items!yoIqL0RQEnzNVJB6' @ 0 : 0; will stop at (end)
|
||||
2026/06/12-20:52:58.023135 7fc410ffe6c0 Recovering log #130
|
||||
2026/06/12-20:52:58.033792 7fc410ffe6c0 Delete type=3 #128
|
||||
2026/06/12-20:52:58.033845 7fc410ffe6c0 Delete type=0 #130
|
||||
2026/06/12-20:53:22.703483 7fc3c11be6c0 Level-0 table #135: started
|
||||
2026/06/12-20:53:22.703533 7fc3c11be6c0 Level-0 table #135: 0 bytes OK
|
||||
2026/06/12-20:53:22.710309 7fc3c11be6c0 Delete type=0 #133
|
||||
2026/06/12-20:53:22.717089 7fc3c11be6c0 Manual compaction at level-0 from '!folders!673DRfEBYUliGnKJ' @ 72057594037927935 : 1 .. '!items!yoIqL0RQEnzNVJB6' @ 0 : 0; will stop at (end)
|
||||
2026/06/12-20:53:22.724385 7fc3c11be6c0 Manual compaction at level-1 from '!folders!673DRfEBYUliGnKJ' @ 72057594037927935 : 1 .. '!items!yoIqL0RQEnzNVJB6' @ 0 : 0; will stop at (end)
|
||||
|
||||
+8
-23
@@ -1,23 +1,8 @@
|
||||
2026/04/09-07:31:00.942216 7f20ecbfc6c0 Recovering log #50
|
||||
2026/04/09-07:31:00.952200 7f20ecbfc6c0 Delete type=0 #50
|
||||
2026/04/09-07:31:00.952272 7f20ecbfc6c0 Delete type=3 #49
|
||||
2026/04/09-23:11:56.221289 7f1e4ffff6c0 Level-0 table #54: started
|
||||
2026/04/09-23:11:56.221324 7f1e4ffff6c0 Level-0 table #54: 0 bytes OK
|
||||
2026/04/09-23:11:56.284030 7f1e4ffff6c0 Delete type=0 #52
|
||||
2026/04/09-23:11:56.464040 7f1e4ffff6c0 Manual compaction at level-0 from '!folders!673DRfEBYUliGnKJ' @ 72057594037927935 : 1 .. '!items!yoIqL0RQEnzNVJB6' @ 0 : 0; will stop at '!items!yoIqL0RQEnzNVJB6' @ 51 : 1
|
||||
2026/04/09-23:11:56.464048 7f1e4ffff6c0 Compacting 3@0 + 0@1 files
|
||||
2026/04/09-23:11:56.489855 7f1e4ffff6c0 Generated table #55@0: 22 keys, 13361 bytes
|
||||
2026/04/09-23:11:56.489882 7f1e4ffff6c0 Compacted 3@0 + 0@1 files => 13361 bytes
|
||||
2026/04/09-23:11:56.553027 7f1e4ffff6c0 compacted to: files[ 0 1 1 0 0 0 0 ]
|
||||
2026/04/09-23:11:56.553148 7f1e4ffff6c0 Delete type=2 #35
|
||||
2026/04/09-23:11:56.553292 7f1e4ffff6c0 Delete type=2 #38
|
||||
2026/04/09-23:11:56.553357 7f1e4ffff6c0 Delete type=2 #45
|
||||
2026/04/09-23:11:56.649265 7f1e4ffff6c0 Manual compaction at level-0 from '!items!yoIqL0RQEnzNVJB6' @ 51 : 1 .. '!items!yoIqL0RQEnzNVJB6' @ 0 : 0; will stop at (end)
|
||||
2026/04/09-23:11:56.821563 7f1e4ffff6c0 Manual compaction at level-1 from '!folders!673DRfEBYUliGnKJ' @ 72057594037927935 : 1 .. '!items!yoIqL0RQEnzNVJB6' @ 0 : 0; will stop at '!items!yoIqL0RQEnzNVJB6' @ 95 : 1
|
||||
2026/04/09-23:11:56.821571 7f1e4ffff6c0 Compacting 1@1 + 1@2 files
|
||||
2026/04/09-23:11:56.851887 7f1e4ffff6c0 Generated table #56@1: 29 keys, 14529 bytes
|
||||
2026/04/09-23:11:56.851915 7f1e4ffff6c0 Compacted 1@1 + 1@2 files => 14529 bytes
|
||||
2026/04/09-23:11:56.904874 7f1e4ffff6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2026/04/09-23:11:56.904997 7f1e4ffff6c0 Delete type=2 #11
|
||||
2026/04/09-23:11:56.905136 7f1e4ffff6c0 Delete type=2 #55
|
||||
2026/04/09-23:11:56.975641 7f1e4ffff6c0 Manual compaction at level-1 from '!items!yoIqL0RQEnzNVJB6' @ 95 : 1 .. '!items!yoIqL0RQEnzNVJB6' @ 0 : 0; will stop at (end)
|
||||
2026/06/12-20:51:44.594732 7fc3c3fff6c0 Recovering log #126
|
||||
2026/06/12-20:51:44.605104 7fc3c3fff6c0 Delete type=3 #124
|
||||
2026/06/12-20:51:44.605163 7fc3c3fff6c0 Delete type=0 #126
|
||||
2026/06/12-20:52:05.597166 7fc3c11be6c0 Level-0 table #131: started
|
||||
2026/06/12-20:52:05.597184 7fc3c11be6c0 Level-0 table #131: 0 bytes OK
|
||||
2026/06/12-20:52:05.604422 7fc3c11be6c0 Delete type=0 #129
|
||||
2026/06/12-20:52:05.618860 7fc3c11be6c0 Manual compaction at level-0 from '!folders!673DRfEBYUliGnKJ' @ 72057594037927935 : 1 .. '!items!yoIqL0RQEnzNVJB6' @ 0 : 0; will stop at (end)
|
||||
2026/06/12-20:52:05.619120 7fc3c11be6c0 Manual compaction at level-1 from '!folders!673DRfEBYUliGnKJ' @ 72057594037927935 : 1 .. '!items!yoIqL0RQEnzNVJB6' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000156
|
||||
MANIFEST-000231
|
||||
|
||||
+8
-8
@@ -1,8 +1,8 @@
|
||||
2026/04/14-09:09:27.370951 7fddd97be6c0 Recovering log #152
|
||||
2026/04/14-09:09:27.434776 7fddd97be6c0 Delete type=3 #150
|
||||
2026/04/14-09:09:27.434901 7fddd97be6c0 Delete type=0 #152
|
||||
2026/04/14-09:37:12.026954 7fddca1c26c0 Level-0 table #159: started
|
||||
2026/04/14-09:37:12.027005 7fddca1c26c0 Level-0 table #159: 0 bytes OK
|
||||
2026/04/14-09:37:12.034241 7fddca1c26c0 Delete type=0 #157
|
||||
2026/04/14-09:37:12.041328 7fddca1c26c0 Manual compaction at level-0 from '!items!8xqChkoKK7i0c9M1' @ 72057594037927935 : 1 .. '!items!wpBopoosZiWXjlKD' @ 0 : 0; will stop at (end)
|
||||
2026/04/14-09:37:12.041399 7fddca1c26c0 Manual compaction at level-1 from '!items!8xqChkoKK7i0c9M1' @ 72057594037927935 : 1 .. '!items!wpBopoosZiWXjlKD' @ 0 : 0; will stop at (end)
|
||||
2026/06/12-20:52:57.899810 7fc3c37fe6c0 Recovering log #229
|
||||
2026/06/12-20:52:57.911135 7fc3c37fe6c0 Delete type=3 #227
|
||||
2026/06/12-20:52:57.911180 7fc3c37fe6c0 Delete type=0 #229
|
||||
2026/06/12-20:53:22.642554 7fc3c11be6c0 Level-0 table #234: started
|
||||
2026/06/12-20:53:22.642590 7fc3c11be6c0 Level-0 table #234: 0 bytes OK
|
||||
2026/06/12-20:53:22.648801 7fc3c11be6c0 Delete type=0 #232
|
||||
2026/06/12-20:53:22.649072 7fc3c11be6c0 Manual compaction at level-0 from '!items!8xqChkoKK7i0c9M1' @ 72057594037927935 : 1 .. '!items!wpBopoosZiWXjlKD' @ 0 : 0; will stop at (end)
|
||||
2026/06/12-20:53:22.649091 7fc3c11be6c0 Manual compaction at level-1 from '!items!8xqChkoKK7i0c9M1' @ 72057594037927935 : 1 .. '!items!wpBopoosZiWXjlKD' @ 0 : 0; will stop at (end)
|
||||
|
||||
+8
-23
@@ -1,23 +1,8 @@
|
||||
2026/04/09-07:31:00.828199 7f20ecbfc6c0 Recovering log #149
|
||||
2026/04/09-07:31:00.838410 7f20ecbfc6c0 Delete type=0 #149
|
||||
2026/04/09-07:31:00.838471 7f20ecbfc6c0 Delete type=3 #148
|
||||
2026/04/09-23:11:55.234068 7f1e4ffff6c0 Level-0 table #153: started
|
||||
2026/04/09-23:11:55.245101 7f1e4ffff6c0 Level-0 table #153: 0 bytes OK
|
||||
2026/04/09-23:11:55.298794 7f1e4ffff6c0 Delete type=0 #151
|
||||
2026/04/09-23:11:55.490694 7f1e4ffff6c0 Manual compaction at level-0 from '!items!8xqChkoKK7i0c9M1' @ 72057594037927935 : 1 .. '!items!wpBopoosZiWXjlKD' @ 0 : 0; will stop at '!items!wpBopoosZiWXjlKD' @ 48 : 1
|
||||
2026/04/09-23:11:55.490705 7f1e4ffff6c0 Compacting 3@0 + 0@1 files
|
||||
2026/04/09-23:11:55.533263 7f1e4ffff6c0 Generated table #154@0: 6 keys, 3346 bytes
|
||||
2026/04/09-23:11:55.533295 7f1e4ffff6c0 Compacted 3@0 + 0@1 files => 3346 bytes
|
||||
2026/04/09-23:11:55.591200 7f1e4ffff6c0 compacted to: files[ 0 1 1 0 0 0 0 ]
|
||||
2026/04/09-23:11:55.591374 7f1e4ffff6c0 Delete type=2 #134
|
||||
2026/04/09-23:11:55.591529 7f1e4ffff6c0 Delete type=2 #137
|
||||
2026/04/09-23:11:55.591571 7f1e4ffff6c0 Delete type=2 #144
|
||||
2026/04/09-23:11:55.689808 7f1e4ffff6c0 Manual compaction at level-0 from '!items!wpBopoosZiWXjlKD' @ 48 : 1 .. '!items!wpBopoosZiWXjlKD' @ 0 : 0; will stop at (end)
|
||||
2026/04/09-23:11:55.770926 7f1e4ffff6c0 Manual compaction at level-1 from '!items!8xqChkoKK7i0c9M1' @ 72057594037927935 : 1 .. '!items!wpBopoosZiWXjlKD' @ 0 : 0; will stop at '!items!wpBopoosZiWXjlKD' @ 60 : 1
|
||||
2026/04/09-23:11:55.770937 7f1e4ffff6c0 Compacting 1@1 + 1@2 files
|
||||
2026/04/09-23:11:55.809869 7f1e4ffff6c0 Generated table #155@1: 6 keys, 3346 bytes
|
||||
2026/04/09-23:11:55.809897 7f1e4ffff6c0 Compacted 1@1 + 1@2 files => 3346 bytes
|
||||
2026/04/09-23:11:55.875143 7f1e4ffff6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2026/04/09-23:11:55.875284 7f1e4ffff6c0 Delete type=2 #48
|
||||
2026/04/09-23:11:55.875433 7f1e4ffff6c0 Delete type=2 #154
|
||||
2026/04/09-23:11:56.005548 7f1e4ffff6c0 Manual compaction at level-1 from '!items!wpBopoosZiWXjlKD' @ 60 : 1 .. '!items!wpBopoosZiWXjlKD' @ 0 : 0; will stop at (end)
|
||||
2026/06/12-20:51:44.470883 7fc3c37fe6c0 Recovering log #225
|
||||
2026/06/12-20:51:44.481326 7fc3c37fe6c0 Delete type=3 #223
|
||||
2026/06/12-20:51:44.481382 7fc3c37fe6c0 Delete type=0 #225
|
||||
2026/06/12-20:52:05.534179 7fc3c11be6c0 Level-0 table #230: started
|
||||
2026/06/12-20:52:05.534214 7fc3c11be6c0 Level-0 table #230: 0 bytes OK
|
||||
2026/06/12-20:52:05.540979 7fc3c11be6c0 Delete type=0 #228
|
||||
2026/06/12-20:52:05.541333 7fc3c11be6c0 Manual compaction at level-0 from '!items!8xqChkoKK7i0c9M1' @ 72057594037927935 : 1 .. '!items!wpBopoosZiWXjlKD' @ 0 : 0; will stop at (end)
|
||||
2026/06/12-20:52:05.562210 7fc3c11be6c0 Manual compaction at level-1 from '!items!8xqChkoKK7i0c9M1' @ 72057594037927935 : 1 .. '!items!wpBopoosZiWXjlKD' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000040
|
||||
MANIFEST-000115
|
||||
|
||||
+8
-8
@@ -1,8 +1,8 @@
|
||||
2026/04/14-09:09:28.118399 7fddd9fbf6c0 Recovering log #36
|
||||
2026/04/14-09:09:28.175883 7fddd9fbf6c0 Delete type=3 #34
|
||||
2026/04/14-09:09:28.175997 7fddd9fbf6c0 Delete type=0 #36
|
||||
2026/04/14-09:37:12.089374 7fddca1c26c0 Level-0 table #43: started
|
||||
2026/04/14-09:37:12.089426 7fddca1c26c0 Level-0 table #43: 0 bytes OK
|
||||
2026/04/14-09:37:12.095733 7fddca1c26c0 Delete type=0 #41
|
||||
2026/04/14-09:37:12.095967 7fddca1c26c0 Manual compaction at level-0 from '!items!57vgsVVCy9MRKM2M' @ 72057594037927935 : 1 .. '!items!vJInnoigCTJzuY2S' @ 0 : 0; will stop at (end)
|
||||
2026/04/14-09:37:12.096017 7fddca1c26c0 Manual compaction at level-1 from '!items!57vgsVVCy9MRKM2M' @ 72057594037927935 : 1 .. '!items!vJInnoigCTJzuY2S' @ 0 : 0; will stop at (end)
|
||||
2026/06/12-20:52:58.051634 7fc410ffe6c0 Recovering log #113
|
||||
2026/06/12-20:52:58.062421 7fc410ffe6c0 Delete type=3 #111
|
||||
2026/06/12-20:52:58.062480 7fc410ffe6c0 Delete type=0 #113
|
||||
2026/06/12-20:53:22.717098 7fc3c11be6c0 Level-0 table #118: started
|
||||
2026/06/12-20:53:22.717122 7fc3c11be6c0 Level-0 table #118: 0 bytes OK
|
||||
2026/06/12-20:53:22.724248 7fc3c11be6c0 Delete type=0 #116
|
||||
2026/06/12-20:53:22.822698 7fc3c11be6c0 Manual compaction at level-0 from '!items!57vgsVVCy9MRKM2M' @ 72057594037927935 : 1 .. '!items!vJInnoigCTJzuY2S' @ 0 : 0; will stop at (end)
|
||||
2026/06/12-20:53:22.829756 7fc3c11be6c0 Manual compaction at level-1 from '!items!57vgsVVCy9MRKM2M' @ 72057594037927935 : 1 .. '!items!vJInnoigCTJzuY2S' @ 0 : 0; will stop at (end)
|
||||
|
||||
+8
-23
@@ -1,23 +1,8 @@
|
||||
2026/04/09-07:31:00.979881 7f20ee3ff6c0 Recovering log #33
|
||||
2026/04/09-07:31:00.989409 7f20ee3ff6c0 Delete type=0 #33
|
||||
2026/04/09-07:31:00.989487 7f20ee3ff6c0 Delete type=3 #32
|
||||
2026/04/09-23:11:57.513730 7f1e4ffff6c0 Level-0 table #37: started
|
||||
2026/04/09-23:11:57.513772 7f1e4ffff6c0 Level-0 table #37: 0 bytes OK
|
||||
2026/04/09-23:11:57.575380 7f1e4ffff6c0 Delete type=0 #35
|
||||
2026/04/09-23:11:57.666141 7f1e4ffff6c0 Manual compaction at level-0 from '!items!57vgsVVCy9MRKM2M' @ 72057594037927935 : 1 .. '!items!vJInnoigCTJzuY2S' @ 0 : 0; will stop at '!items!vJInnoigCTJzuY2S' @ 46 : 1
|
||||
2026/04/09-23:11:57.666147 7f1e4ffff6c0 Compacting 3@0 + 0@1 files
|
||||
2026/04/09-23:11:57.697606 7f1e4ffff6c0 Generated table #38@0: 16 keys, 3810 bytes
|
||||
2026/04/09-23:11:57.697641 7f1e4ffff6c0 Compacted 3@0 + 0@1 files => 3810 bytes
|
||||
2026/04/09-23:11:57.756255 7f1e4ffff6c0 compacted to: files[ 0 1 1 0 0 0 0 ]
|
||||
2026/04/09-23:11:57.756373 7f1e4ffff6c0 Delete type=2 #18
|
||||
2026/04/09-23:11:57.756513 7f1e4ffff6c0 Delete type=2 #21
|
||||
2026/04/09-23:11:57.756574 7f1e4ffff6c0 Delete type=2 #28
|
||||
2026/04/09-23:11:57.875863 7f1e4ffff6c0 Manual compaction at level-0 from '!items!vJInnoigCTJzuY2S' @ 46 : 1 .. '!items!vJInnoigCTJzuY2S' @ 0 : 0; will stop at (end)
|
||||
2026/04/09-23:11:57.944060 7f1e4ffff6c0 Manual compaction at level-1 from '!items!57vgsVVCy9MRKM2M' @ 72057594037927935 : 1 .. '!items!vJInnoigCTJzuY2S' @ 0 : 0; will stop at '!items!vJInnoigCTJzuY2S' @ 78 : 1
|
||||
2026/04/09-23:11:57.944066 7f1e4ffff6c0 Compacting 1@1 + 1@2 files
|
||||
2026/04/09-23:11:57.976628 7f1e4ffff6c0 Generated table #39@1: 16 keys, 3810 bytes
|
||||
2026/04/09-23:11:57.976654 7f1e4ffff6c0 Compacted 1@1 + 1@2 files => 3810 bytes
|
||||
2026/04/09-23:11:58.029512 7f1e4ffff6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2026/04/09-23:11:58.029648 7f1e4ffff6c0 Delete type=2 #10
|
||||
2026/04/09-23:11:58.029805 7f1e4ffff6c0 Delete type=2 #38
|
||||
2026/04/09-23:11:58.156587 7f1e4ffff6c0 Manual compaction at level-1 from '!items!vJInnoigCTJzuY2S' @ 78 : 1 .. '!items!vJInnoigCTJzuY2S' @ 0 : 0; will stop at (end)
|
||||
2026/06/12-20:51:44.625465 7fc3c37fe6c0 Recovering log #109
|
||||
2026/06/12-20:51:44.635539 7fc3c37fe6c0 Delete type=3 #107
|
||||
2026/06/12-20:51:44.635595 7fc3c37fe6c0 Delete type=0 #109
|
||||
2026/06/12-20:52:05.611307 7fc3c11be6c0 Level-0 table #114: started
|
||||
2026/06/12-20:52:05.611325 7fc3c11be6c0 Level-0 table #114: 0 bytes OK
|
||||
2026/06/12-20:52:05.618732 7fc3c11be6c0 Delete type=0 #112
|
||||
2026/06/12-20:52:05.619090 7fc3c11be6c0 Manual compaction at level-0 from '!items!57vgsVVCy9MRKM2M' @ 72057594037927935 : 1 .. '!items!vJInnoigCTJzuY2S' @ 0 : 0; will stop at (end)
|
||||
2026/06/12-20:52:05.619279 7fc3c11be6c0 Manual compaction at level-1 from '!items!57vgsVVCy9MRKM2M' @ 72057594037927935 : 1 .. '!items!vJInnoigCTJzuY2S' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000159
|
||||
MANIFEST-000234
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
2026/04/14-09:09:27.438726 7fddd8fbd6c0 Recovering log #155
|
||||
2026/04/14-09:09:27.499900 7fddd8fbd6c0 Delete type=3 #153
|
||||
2026/04/14-09:09:27.500001 7fddd8fbd6c0 Delete type=0 #155
|
||||
2026/04/14-09:37:12.020541 7fddca1c26c0 Level-0 table #162: started
|
||||
2026/04/14-09:37:12.020592 7fddca1c26c0 Level-0 table #162: 0 bytes OK
|
||||
2026/04/14-09:37:12.026769 7fddca1c26c0 Delete type=0 #160
|
||||
2026/04/14-09:37:12.041308 7fddca1c26c0 Manual compaction at level-0 from '!items!04MdBSzwkYWUMJBC' @ 72057594037927935 : 1 .. '!items!yqjKyTCgpclCuHyK' @ 0 : 0; will stop at (end)
|
||||
2026/04/14-09:37:12.041379 7fddca1c26c0 Manual compaction at level-1 from '!items!04MdBSzwkYWUMJBC' @ 72057594037927935 : 1 .. '!items!yqjKyTCgpclCuHyK' @ 0 : 0; will stop at (end)
|
||||
2026/06/12-20:52:57.913632 7fc410ffe6c0 Recovering log #232
|
||||
2026/06/12-20:52:57.923055 7fc410ffe6c0 Delete type=3 #230
|
||||
2026/06/12-20:52:57.923103 7fc410ffe6c0 Delete type=0 #232
|
||||
2026/06/12-20:53:22.662427 7fc3c11be6c0 Level-0 table #237: started
|
||||
2026/06/12-20:53:22.662456 7fc3c11be6c0 Level-0 table #237: 0 bytes OK
|
||||
2026/06/12-20:53:22.669591 7fc3c11be6c0 Delete type=0 #235
|
||||
2026/06/12-20:53:22.676441 7fc3c11be6c0 Manual compaction at level-0 from '!items!04MdBSzwkYWUMJBC' @ 72057594037927935 : 1 .. '!items!yqjKyTCgpclCuHyK' @ 0 : 0; will stop at (end)
|
||||
2026/06/12-20:53:22.676637 7fc3c11be6c0 Manual compaction at level-1 from '!items!04MdBSzwkYWUMJBC' @ 72057594037927935 : 1 .. '!items!yqjKyTCgpclCuHyK' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,22 +1,8 @@
|
||||
2026/04/09-07:31:00.841062 7f20ee3ff6c0 Recovering log #152
|
||||
2026/04/09-07:31:00.850932 7f20ee3ff6c0 Delete type=0 #152
|
||||
2026/04/09-07:31:00.850998 7f20ee3ff6c0 Delete type=3 #150
|
||||
2026/04/09-23:11:55.298948 7f1e4ffff6c0 Level-0 table #156: started
|
||||
2026/04/09-23:11:55.298983 7f1e4ffff6c0 Level-0 table #156: 0 bytes OK
|
||||
2026/04/09-23:11:55.355717 7f1e4ffff6c0 Delete type=0 #154
|
||||
2026/04/09-23:11:55.591617 7f1e4ffff6c0 Manual compaction at level-0 from '!items!04MdBSzwkYWUMJBC' @ 72057594037927935 : 1 .. '!items!yqjKyTCgpclCuHyK' @ 0 : 0; will stop at '!items!zNLvaapQFfVlfPw5' @ 364 : 0
|
||||
2026/04/09-23:11:55.591623 7f1e4ffff6c0 Compacting 1@0 + 1@1 files
|
||||
2026/04/09-23:11:55.630597 7f1e4ffff6c0 Generated table #157@0: 78 keys, 30738 bytes
|
||||
2026/04/09-23:11:55.630628 7f1e4ffff6c0 Compacted 1@0 + 1@1 files => 30738 bytes
|
||||
2026/04/09-23:11:55.689396 7f1e4ffff6c0 compacted to: files[ 0 1 1 0 0 0 0 ]
|
||||
2026/04/09-23:11:55.689523 7f1e4ffff6c0 Delete type=2 #147
|
||||
2026/04/09-23:11:55.689696 7f1e4ffff6c0 Delete type=2 #151
|
||||
2026/04/09-23:11:55.689818 7f1e4ffff6c0 Manual compaction at level-0 from '!items!zNLvaapQFfVlfPw5' @ 364 : 0 .. '!items!yqjKyTCgpclCuHyK' @ 0 : 0; will stop at (end)
|
||||
2026/04/09-23:11:55.689841 7f1e4ffff6c0 Manual compaction at level-1 from '!items!04MdBSzwkYWUMJBC' @ 72057594037927935 : 1 .. '!items!yqjKyTCgpclCuHyK' @ 0 : 0; will stop at '!items!zNLvaapQFfVlfPw5' @ 364 : 0
|
||||
2026/04/09-23:11:55.689848 7f1e4ffff6c0 Compacting 1@1 + 1@2 files
|
||||
2026/04/09-23:11:55.720254 7f1e4ffff6c0 Generated table #158@1: 39 keys, 29257 bytes
|
||||
2026/04/09-23:11:55.720280 7f1e4ffff6c0 Compacted 1@1 + 1@2 files => 29257 bytes
|
||||
2026/04/09-23:11:55.770532 7f1e4ffff6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2026/04/09-23:11:55.770656 7f1e4ffff6c0 Delete type=2 #52
|
||||
2026/04/09-23:11:55.770823 7f1e4ffff6c0 Delete type=2 #157
|
||||
2026/04/09-23:11:56.005533 7f1e4ffff6c0 Manual compaction at level-1 from '!items!zNLvaapQFfVlfPw5' @ 364 : 0 .. '!items!yqjKyTCgpclCuHyK' @ 0 : 0; will stop at (end)
|
||||
2026/06/12-20:51:44.484787 7fc410ffe6c0 Recovering log #228
|
||||
2026/06/12-20:51:44.494717 7fc410ffe6c0 Delete type=3 #226
|
||||
2026/06/12-20:51:44.494769 7fc410ffe6c0 Delete type=0 #228
|
||||
2026/06/12-20:52:05.541367 7fc3c11be6c0 Level-0 table #233: started
|
||||
2026/06/12-20:52:05.541402 7fc3c11be6c0 Level-0 table #233: 0 bytes OK
|
||||
2026/06/12-20:52:05.548343 7fc3c11be6c0 Delete type=0 #231
|
||||
2026/06/12-20:52:05.562225 7fc3c11be6c0 Manual compaction at level-0 from '!items!04MdBSzwkYWUMJBC' @ 72057594037927935 : 1 .. '!items!yqjKyTCgpclCuHyK' @ 0 : 0; will stop at (end)
|
||||
2026/06/12-20:52:05.562411 7fc3c11be6c0 Manual compaction at level-1 from '!items!04MdBSzwkYWUMJBC' @ 72057594037927935 : 1 .. '!items!yqjKyTCgpclCuHyK' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000096
|
||||
MANIFEST-000168
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
2026/04/14-09:09:27.758609 7fddd97be6c0 Recovering log #94
|
||||
2026/04/14-09:09:27.824657 7fddd97be6c0 Delete type=3 #92
|
||||
2026/04/14-09:09:27.824750 7fddd97be6c0 Delete type=0 #94
|
||||
2026/04/14-09:37:12.054469 7fddca1c26c0 Level-0 table #99: started
|
||||
2026/04/14-09:37:12.054520 7fddca1c26c0 Level-0 table #99: 0 bytes OK
|
||||
2026/04/14-09:37:12.061714 7fddca1c26c0 Delete type=0 #97
|
||||
2026/04/14-09:37:12.068669 7fddca1c26c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
||||
2026/06/12-20:52:57.981469 7fc410ffe6c0 Recovering log #166
|
||||
2026/06/12-20:52:57.992240 7fc410ffe6c0 Delete type=3 #164
|
||||
2026/06/12-20:52:57.992286 7fc410ffe6c0 Delete type=0 #166
|
||||
2026/06/12-20:53:22.676645 7fc3c11be6c0 Level-0 table #171: started
|
||||
2026/06/12-20:53:22.676670 7fc3c11be6c0 Level-0 table #171: 0 bytes OK
|
||||
2026/06/12-20:53:22.683046 7fc3c11be6c0 Delete type=0 #169
|
||||
2026/06/12-20:53:22.703339 7fc3c11be6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
2026/04/09-07:31:00.905329 7f20ed3fd6c0 Recovering log #91
|
||||
2026/04/09-07:31:00.914802 7f20ed3fd6c0 Delete type=0 #91
|
||||
2026/04/09-07:31:00.914843 7f20ed3fd6c0 Delete type=3 #90
|
||||
2026/04/09-23:11:55.355863 7f1e4ffff6c0 Level-0 table #95: started
|
||||
2026/04/09-23:11:55.362963 7f1e4ffff6c0 Level-0 table #95: 0 bytes OK
|
||||
2026/04/09-23:11:55.422939 7f1e4ffff6c0 Delete type=0 #93
|
||||
2026/04/09-23:11:55.689784 7f1e4ffff6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
||||
2026/06/12-20:51:44.553830 7fc3c37fe6c0 Recovering log #162
|
||||
2026/06/12-20:51:44.563465 7fc3c37fe6c0 Delete type=3 #160
|
||||
2026/06/12-20:51:44.563519 7fc3c37fe6c0 Delete type=0 #162
|
||||
2026/06/12-20:52:05.576474 7fc3c11be6c0 Level-0 table #167: started
|
||||
2026/06/12-20:52:05.576496 7fc3c11be6c0 Level-0 table #167: 0 bytes OK
|
||||
2026/06/12-20:52:05.583147 7fc3c11be6c0 Delete type=0 #165
|
||||
2026/06/12-20:52:05.590265 7fc3c11be6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000101
|
||||
MANIFEST-000176
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
2026/04/14-09:09:27.635794 7fddd9fbf6c0 Recovering log #97
|
||||
2026/04/14-09:09:27.685698 7fddd9fbf6c0 Delete type=3 #95
|
||||
2026/04/14-09:09:27.685843 7fddd9fbf6c0 Delete type=0 #97
|
||||
2026/04/14-09:37:12.041593 7fddca1c26c0 Level-0 table #104: started
|
||||
2026/04/14-09:37:12.041649 7fddca1c26c0 Level-0 table #104: 0 bytes OK
|
||||
2026/04/14-09:37:12.047872 7fddca1c26c0 Delete type=0 #102
|
||||
2026/04/14-09:37:12.068624 7fddca1c26c0 Manual compaction at level-0 from '!folders!8swFcTr6RH7BnGiu' @ 72057594037927935 : 1 .. '!items!zRJfxioYBRq4iSBR' @ 0 : 0; will stop at (end)
|
||||
2026/04/14-09:37:12.068703 7fddca1c26c0 Manual compaction at level-1 from '!folders!8swFcTr6RH7BnGiu' @ 72057594037927935 : 1 .. '!items!zRJfxioYBRq4iSBR' @ 0 : 0; will stop at (end)
|
||||
2026/06/12-20:52:57.954396 7fc410ffe6c0 Recovering log #174
|
||||
2026/06/12-20:52:57.964106 7fc410ffe6c0 Delete type=3 #172
|
||||
2026/06/12-20:52:57.964146 7fc410ffe6c0 Delete type=0 #174
|
||||
2026/06/12-20:53:22.669694 7fc3c11be6c0 Level-0 table #179: started
|
||||
2026/06/12-20:53:22.669720 7fc3c11be6c0 Level-0 table #179: 0 bytes OK
|
||||
2026/06/12-20:53:22.676299 7fc3c11be6c0 Delete type=0 #177
|
||||
2026/06/12-20:53:22.676452 7fc3c11be6c0 Manual compaction at level-0 from '!folders!8swFcTr6RH7BnGiu' @ 72057594037927935 : 1 .. '!items!zRJfxioYBRq4iSBR' @ 0 : 0; will stop at (end)
|
||||
2026/06/12-20:53:22.676473 7fc3c11be6c0 Manual compaction at level-1 from '!folders!8swFcTr6RH7BnGiu' @ 72057594037927935 : 1 .. '!items!zRJfxioYBRq4iSBR' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,23 +1,8 @@
|
||||
2026/04/09-07:31:00.880382 7f20ee3ff6c0 Recovering log #94
|
||||
2026/04/09-07:31:00.890560 7f20ee3ff6c0 Delete type=0 #94
|
||||
2026/04/09-07:31:00.890618 7f20ee3ff6c0 Delete type=3 #93
|
||||
2026/04/09-23:11:55.934801 7f1e4ffff6c0 Level-0 table #98: started
|
||||
2026/04/09-23:11:55.934839 7f1e4ffff6c0 Level-0 table #98: 0 bytes OK
|
||||
2026/04/09-23:11:56.005383 7f1e4ffff6c0 Delete type=0 #96
|
||||
2026/04/09-23:11:56.005574 7f1e4ffff6c0 Manual compaction at level-0 from '!folders!8swFcTr6RH7BnGiu' @ 72057594037927935 : 1 .. '!items!zRJfxioYBRq4iSBR' @ 0 : 0; will stop at '!items!zRJfxioYBRq4iSBR' @ 78 : 1
|
||||
2026/04/09-23:11:56.005581 7f1e4ffff6c0 Compacting 3@0 + 0@1 files
|
||||
2026/04/09-23:11:56.031392 7f1e4ffff6c0 Generated table #99@0: 36 keys, 19300 bytes
|
||||
2026/04/09-23:11:56.031419 7f1e4ffff6c0 Compacted 3@0 + 0@1 files => 19300 bytes
|
||||
2026/04/09-23:11:56.099555 7f1e4ffff6c0 compacted to: files[ 0 1 1 0 0 0 0 ]
|
||||
2026/04/09-23:11:56.099688 7f1e4ffff6c0 Delete type=2 #79
|
||||
2026/04/09-23:11:56.099839 7f1e4ffff6c0 Delete type=2 #82
|
||||
2026/04/09-23:11:56.099918 7f1e4ffff6c0 Delete type=2 #89
|
||||
2026/04/09-23:11:56.284189 7f1e4ffff6c0 Manual compaction at level-0 from '!items!zRJfxioYBRq4iSBR' @ 78 : 1 .. '!items!zRJfxioYBRq4iSBR' @ 0 : 0; will stop at (end)
|
||||
2026/04/09-23:11:56.553421 7f1e4ffff6c0 Manual compaction at level-1 from '!folders!8swFcTr6RH7BnGiu' @ 72057594037927935 : 1 .. '!items!zRJfxioYBRq4iSBR' @ 0 : 0; will stop at '!items!zRJfxioYBRq4iSBR' @ 150 : 1
|
||||
2026/04/09-23:11:56.553430 7f1e4ffff6c0 Compacting 1@1 + 1@2 files
|
||||
2026/04/09-23:11:56.584164 7f1e4ffff6c0 Generated table #100@1: 42 keys, 19157 bytes
|
||||
2026/04/09-23:11:56.584191 7f1e4ffff6c0 Compacted 1@1 + 1@2 files => 19157 bytes
|
||||
2026/04/09-23:11:56.648837 7f1e4ffff6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2026/04/09-23:11:56.648989 7f1e4ffff6c0 Delete type=2 #75
|
||||
2026/04/09-23:11:56.649134 7f1e4ffff6c0 Delete type=2 #99
|
||||
2026/04/09-23:11:56.649274 7f1e4ffff6c0 Manual compaction at level-1 from '!items!zRJfxioYBRq4iSBR' @ 150 : 1 .. '!items!zRJfxioYBRq4iSBR' @ 0 : 0; will stop at (end)
|
||||
2026/06/12-20:51:44.524826 7fc3c37fe6c0 Recovering log #170
|
||||
2026/06/12-20:51:44.535451 7fc3c37fe6c0 Delete type=3 #168
|
||||
2026/06/12-20:51:44.535506 7fc3c37fe6c0 Delete type=0 #170
|
||||
2026/06/12-20:52:05.562430 7fc3c11be6c0 Level-0 table #175: started
|
||||
2026/06/12-20:52:05.562454 7fc3c11be6c0 Level-0 table #175: 0 bytes OK
|
||||
2026/06/12-20:52:05.569802 7fc3c11be6c0 Delete type=0 #173
|
||||
2026/06/12-20:52:05.590244 7fc3c11be6c0 Manual compaction at level-0 from '!folders!8swFcTr6RH7BnGiu' @ 72057594037927935 : 1 .. '!items!zRJfxioYBRq4iSBR' @ 0 : 0; will stop at (end)
|
||||
2026/06/12-20:52:05.590432 7fc3c11be6c0 Manual compaction at level-1 from '!folders!8swFcTr6RH7BnGiu' @ 72057594037927935 : 1 .. '!items!zRJfxioYBRq4iSBR' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000096
|
||||
MANIFEST-000168
|
||||
|
||||
+7
-7
@@ -1,7 +1,7 @@
|
||||
2026/04/14-09:09:27.828638 7fddcbfff6c0 Recovering log #94
|
||||
2026/04/14-09:09:27.891453 7fddcbfff6c0 Delete type=3 #92
|
||||
2026/04/14-09:09:27.891583 7fddcbfff6c0 Delete type=0 #94
|
||||
2026/04/14-09:37:12.061903 7fddca1c26c0 Level-0 table #99: started
|
||||
2026/04/14-09:37:12.061955 7fddca1c26c0 Level-0 table #99: 0 bytes OK
|
||||
2026/04/14-09:37:12.068457 7fddca1c26c0 Delete type=0 #97
|
||||
2026/04/14-09:37:12.068687 7fddca1c26c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
||||
2026/06/12-20:52:57.995403 7fc3c37fe6c0 Recovering log #166
|
||||
2026/06/12-20:52:58.005793 7fc3c37fe6c0 Delete type=3 #164
|
||||
2026/06/12-20:52:58.005851 7fc3c37fe6c0 Delete type=0 #166
|
||||
2026/06/12-20:53:22.683153 7fc3c11be6c0 Level-0 table #171: started
|
||||
2026/06/12-20:53:22.683178 7fc3c11be6c0 Level-0 table #171: 0 bytes OK
|
||||
2026/06/12-20:53:22.690078 7fc3c11be6c0 Delete type=0 #169
|
||||
2026/06/12-20:53:22.703354 7fc3c11be6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
2026/04/09-07:31:00.916824 7f20ecbfc6c0 Recovering log #91
|
||||
2026/04/09-07:31:00.927322 7f20ecbfc6c0 Delete type=0 #91
|
||||
2026/04/09-07:31:00.927410 7f20ecbfc6c0 Delete type=3 #90
|
||||
2026/04/09-23:11:55.875522 7f1e4ffff6c0 Level-0 table #95: started
|
||||
2026/04/09-23:11:55.875555 7f1e4ffff6c0 Level-0 table #95: 0 bytes OK
|
||||
2026/04/09-23:11:55.934643 7f1e4ffff6c0 Delete type=0 #93
|
||||
2026/04/09-23:11:56.005560 7f1e4ffff6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
||||
2026/06/12-20:51:44.566595 7fc410ffe6c0 Recovering log #162
|
||||
2026/06/12-20:51:44.577675 7fc410ffe6c0 Delete type=3 #160
|
||||
2026/06/12-20:51:44.577730 7fc410ffe6c0 Delete type=0 #162
|
||||
2026/06/12-20:52:05.583251 7fc3c11be6c0 Level-0 table #167: started
|
||||
2026/06/12-20:52:05.583269 7fc3c11be6c0 Level-0 table #167: 0 bytes OK
|
||||
2026/06/12-20:52:05.590142 7fc3c11be6c0 Delete type=0 #165
|
||||
2026/06/12-20:52:05.590369 7fc3c11be6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000077
|
||||
MANIFEST-000149
|
||||
|
||||
+8
-8
@@ -1,8 +1,8 @@
|
||||
2026/04/14-09:09:27.895712 7fddd8fbd6c0 Recovering log #73
|
||||
2026/04/14-09:09:27.973731 7fddd8fbd6c0 Delete type=3 #71
|
||||
2026/04/14-09:09:27.973870 7fddd8fbd6c0 Delete type=0 #73
|
||||
2026/04/14-09:37:12.075441 7fddca1c26c0 Level-0 table #80: started
|
||||
2026/04/14-09:37:12.075490 7fddca1c26c0 Level-0 table #80: 0 bytes OK
|
||||
2026/04/14-09:37:12.081733 7fddca1c26c0 Delete type=0 #78
|
||||
2026/04/14-09:37:12.095930 7fddca1c26c0 Manual compaction at level-0 from '!journal!26ZqV9BvS47hrLmV' @ 72057594037927935 : 1 .. '!journal.pages!26ZqV9BvS47hrLmV.ZS4936SEQUT9IA8i' @ 0 : 0; will stop at (end)
|
||||
2026/04/14-09:37:12.095983 7fddca1c26c0 Manual compaction at level-1 from '!journal!26ZqV9BvS47hrLmV' @ 72057594037927935 : 1 .. '!journal.pages!26ZqV9BvS47hrLmV.ZS4936SEQUT9IA8i' @ 0 : 0; will stop at (end)
|
||||
2026/06/12-20:52:58.008917 7fc3c3fff6c0 Recovering log #147
|
||||
2026/06/12-20:52:58.019530 7fc3c3fff6c0 Delete type=3 #145
|
||||
2026/06/12-20:52:58.019585 7fc3c3fff6c0 Delete type=0 #147
|
||||
2026/06/12-20:53:22.690192 7fc3c11be6c0 Level-0 table #152: started
|
||||
2026/06/12-20:53:22.690216 7fc3c11be6c0 Level-0 table #152: 0 bytes OK
|
||||
2026/06/12-20:53:22.696652 7fc3c11be6c0 Delete type=0 #150
|
||||
2026/06/12-20:53:22.703367 7fc3c11be6c0 Manual compaction at level-0 from '!journal!26ZqV9BvS47hrLmV' @ 72057594037927935 : 1 .. '!journal.pages!26ZqV9BvS47hrLmV.ZS4936SEQUT9IA8i' @ 0 : 0; will stop at (end)
|
||||
2026/06/12-20:53:22.717074 7fc3c11be6c0 Manual compaction at level-1 from '!journal!26ZqV9BvS47hrLmV' @ 72057594037927935 : 1 .. '!journal.pages!26ZqV9BvS47hrLmV.ZS4936SEQUT9IA8i' @ 0 : 0; will stop at (end)
|
||||
|
||||
+8
-23
@@ -1,23 +1,8 @@
|
||||
2026/04/09-07:31:00.929957 7f20edbfe6c0 Recovering log #70
|
||||
2026/04/09-07:31:00.939549 7f20edbfe6c0 Delete type=0 #70
|
||||
2026/04/09-07:31:00.939612 7f20edbfe6c0 Delete type=3 #69
|
||||
2026/04/09-23:11:56.905232 7f1e4ffff6c0 Level-0 table #74: started
|
||||
2026/04/09-23:11:56.905265 7f1e4ffff6c0 Level-0 table #74: 0 bytes OK
|
||||
2026/04/09-23:11:56.975463 7f1e4ffff6c0 Delete type=0 #72
|
||||
2026/04/09-23:11:56.975665 7f1e4ffff6c0 Manual compaction at level-0 from '!journal!26ZqV9BvS47hrLmV' @ 72057594037927935 : 1 .. '!journal.pages!26ZqV9BvS47hrLmV.ZS4936SEQUT9IA8i' @ 0 : 0; will stop at '!journal.pages!26ZqV9BvS47hrLmV.ZS4936SEQUT9IA8i' @ 8 : 1
|
||||
2026/04/09-23:11:56.975673 7f1e4ffff6c0 Compacting 3@0 + 0@1 files
|
||||
2026/04/09-23:11:57.005759 7f1e4ffff6c0 Generated table #75@0: 2 keys, 2815 bytes
|
||||
2026/04/09-23:11:57.005786 7f1e4ffff6c0 Compacted 3@0 + 0@1 files => 2815 bytes
|
||||
2026/04/09-23:11:57.078432 7f1e4ffff6c0 compacted to: files[ 0 1 1 0 0 0 0 ]
|
||||
2026/04/09-23:11:57.078623 7f1e4ffff6c0 Delete type=2 #55
|
||||
2026/04/09-23:11:57.078774 7f1e4ffff6c0 Delete type=2 #58
|
||||
2026/04/09-23:11:57.078833 7f1e4ffff6c0 Delete type=2 #65
|
||||
2026/04/09-23:11:57.276364 7f1e4ffff6c0 Manual compaction at level-0 from '!journal.pages!26ZqV9BvS47hrLmV.ZS4936SEQUT9IA8i' @ 8 : 1 .. '!journal.pages!26ZqV9BvS47hrLmV.ZS4936SEQUT9IA8i' @ 0 : 0; will stop at (end)
|
||||
2026/04/09-23:11:57.363786 7f1e4ffff6c0 Manual compaction at level-1 from '!journal!26ZqV9BvS47hrLmV' @ 72057594037927935 : 1 .. '!journal.pages!26ZqV9BvS47hrLmV.ZS4936SEQUT9IA8i' @ 0 : 0; will stop at '!journal.pages!26ZqV9BvS47hrLmV.ZS4936SEQUT9IA8i' @ 12 : 1
|
||||
2026/04/09-23:11:57.363793 7f1e4ffff6c0 Compacting 1@1 + 1@2 files
|
||||
2026/04/09-23:11:57.394341 7f1e4ffff6c0 Generated table #76@1: 2 keys, 2815 bytes
|
||||
2026/04/09-23:11:57.394378 7f1e4ffff6c0 Compacted 1@1 + 1@2 files => 2815 bytes
|
||||
2026/04/09-23:11:57.451312 7f1e4ffff6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2026/04/09-23:11:57.451448 7f1e4ffff6c0 Delete type=2 #9
|
||||
2026/04/09-23:11:57.451666 7f1e4ffff6c0 Delete type=2 #75
|
||||
2026/04/09-23:11:57.575520 7f1e4ffff6c0 Manual compaction at level-1 from '!journal.pages!26ZqV9BvS47hrLmV.ZS4936SEQUT9IA8i' @ 12 : 1 .. '!journal.pages!26ZqV9BvS47hrLmV.ZS4936SEQUT9IA8i' @ 0 : 0; will stop at (end)
|
||||
2026/06/12-20:51:44.581216 7fc3c37fe6c0 Recovering log #143
|
||||
2026/06/12-20:51:44.591542 7fc3c37fe6c0 Delete type=3 #141
|
||||
2026/06/12-20:51:44.591593 7fc3c37fe6c0 Delete type=0 #143
|
||||
2026/06/12-20:52:05.590481 7fc3c11be6c0 Level-0 table #148: started
|
||||
2026/06/12-20:52:05.590505 7fc3c11be6c0 Level-0 table #148: 0 bytes OK
|
||||
2026/06/12-20:52:05.597069 7fc3c11be6c0 Delete type=0 #146
|
||||
2026/06/12-20:52:05.618846 7fc3c11be6c0 Manual compaction at level-0 from '!journal!26ZqV9BvS47hrLmV' @ 72057594037927935 : 1 .. '!journal.pages!26ZqV9BvS47hrLmV.ZS4936SEQUT9IA8i' @ 0 : 0; will stop at (end)
|
||||
2026/06/12-20:52:05.619137 7fc3c11be6c0 Manual compaction at level-1 from '!journal!26ZqV9BvS47hrLmV' @ 72057594037927935 : 1 .. '!journal.pages!26ZqV9BvS47hrLmV.ZS4936SEQUT9IA8i' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000101
|
||||
MANIFEST-000176
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
2026/04/14-09:09:27.505383 7fddcbfff6c0 Recovering log #97
|
||||
2026/04/14-09:09:27.573701 7fddcbfff6c0 Delete type=3 #95
|
||||
2026/04/14-09:09:27.573885 7fddcbfff6c0 Delete type=0 #97
|
||||
2026/04/14-09:37:12.013930 7fddca1c26c0 Level-0 table #104: started
|
||||
2026/04/14-09:37:12.014060 7fddca1c26c0 Level-0 table #104: 0 bytes OK
|
||||
2026/04/14-09:37:12.020364 7fddca1c26c0 Delete type=0 #102
|
||||
2026/04/14-09:37:12.041283 7fddca1c26c0 Manual compaction at level-0 from '!items!QHovFMj93BC7bqBu' @ 72057594037927935 : 1 .. '!items!yleVHgRqGoYLvzxT' @ 0 : 0; will stop at (end)
|
||||
2026/04/14-09:37:12.041363 7fddca1c26c0 Manual compaction at level-1 from '!items!QHovFMj93BC7bqBu' @ 72057594037927935 : 1 .. '!items!yleVHgRqGoYLvzxT' @ 0 : 0; will stop at (end)
|
||||
2026/06/12-20:52:57.926432 7fc3c37fe6c0 Recovering log #174
|
||||
2026/06/12-20:52:57.936438 7fc3c37fe6c0 Delete type=3 #172
|
||||
2026/06/12-20:52:57.936485 7fc3c37fe6c0 Delete type=0 #174
|
||||
2026/06/12-20:53:22.649158 7fc3c11be6c0 Level-0 table #179: started
|
||||
2026/06/12-20:53:22.649178 7fc3c11be6c0 Level-0 table #179: 0 bytes OK
|
||||
2026/06/12-20:53:22.655504 7fc3c11be6c0 Delete type=0 #177
|
||||
2026/06/12-20:53:22.676414 7fc3c11be6c0 Manual compaction at level-0 from '!items!QHovFMj93BC7bqBu' @ 72057594037927935 : 1 .. '!items!yleVHgRqGoYLvzxT' @ 0 : 0; will stop at (end)
|
||||
2026/06/12-20:53:22.676616 7fc3c11be6c0 Manual compaction at level-1 from '!items!QHovFMj93BC7bqBu' @ 72057594037927935 : 1 .. '!items!yleVHgRqGoYLvzxT' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,23 +1,8 @@
|
||||
2026/04/09-07:31:00.854245 7f20edbfe6c0 Recovering log #94
|
||||
2026/04/09-07:31:00.865063 7f20edbfe6c0 Delete type=0 #94
|
||||
2026/04/09-07:31:00.865121 7f20edbfe6c0 Delete type=3 #93
|
||||
2026/04/09-23:11:56.099981 7f1e4ffff6c0 Level-0 table #98: started
|
||||
2026/04/09-23:11:56.105569 7f1e4ffff6c0 Level-0 table #98: 0 bytes OK
|
||||
2026/04/09-23:11:56.159882 7f1e4ffff6c0 Delete type=0 #96
|
||||
2026/04/09-23:11:56.284217 7f1e4ffff6c0 Manual compaction at level-0 from '!items!QHovFMj93BC7bqBu' @ 72057594037927935 : 1 .. '!items!yleVHgRqGoYLvzxT' @ 0 : 0; will stop at '!items!yleVHgRqGoYLvzxT' @ 16 : 1
|
||||
2026/04/09-23:11:56.284226 7f1e4ffff6c0 Compacting 3@0 + 0@1 files
|
||||
2026/04/09-23:11:56.306198 7f1e4ffff6c0 Generated table #99@0: 8 keys, 1953 bytes
|
||||
2026/04/09-23:11:56.306252 7f1e4ffff6c0 Compacted 3@0 + 0@1 files => 1953 bytes
|
||||
2026/04/09-23:11:56.365749 7f1e4ffff6c0 compacted to: files[ 0 1 1 0 0 0 0 ]
|
||||
2026/04/09-23:11:56.365864 7f1e4ffff6c0 Delete type=2 #79
|
||||
2026/04/09-23:11:56.366005 7f1e4ffff6c0 Delete type=2 #82
|
||||
2026/04/09-23:11:56.366066 7f1e4ffff6c0 Delete type=2 #89
|
||||
2026/04/09-23:11:56.649232 7f1e4ffff6c0 Manual compaction at level-0 from '!items!yleVHgRqGoYLvzxT' @ 16 : 1 .. '!items!yleVHgRqGoYLvzxT' @ 0 : 0; will stop at (end)
|
||||
2026/04/09-23:11:56.649287 7f1e4ffff6c0 Manual compaction at level-1 from '!items!QHovFMj93BC7bqBu' @ 72057594037927935 : 1 .. '!items!yleVHgRqGoYLvzxT' @ 0 : 0; will stop at '!items!yleVHgRqGoYLvzxT' @ 32 : 1
|
||||
2026/04/09-23:11:56.649293 7f1e4ffff6c0 Compacting 1@1 + 1@2 files
|
||||
2026/04/09-23:11:56.673369 7f1e4ffff6c0 Generated table #100@1: 8 keys, 1953 bytes
|
||||
2026/04/09-23:11:56.673396 7f1e4ffff6c0 Compacted 1@1 + 1@2 files => 1953 bytes
|
||||
2026/04/09-23:11:56.738661 7f1e4ffff6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2026/04/09-23:11:56.738800 7f1e4ffff6c0 Delete type=2 #33
|
||||
2026/04/09-23:11:56.738971 7f1e4ffff6c0 Delete type=2 #99
|
||||
2026/04/09-23:11:56.975609 7f1e4ffff6c0 Manual compaction at level-1 from '!items!yleVHgRqGoYLvzxT' @ 32 : 1 .. '!items!yleVHgRqGoYLvzxT' @ 0 : 0; will stop at (end)
|
||||
2026/06/12-20:51:44.497744 7fc3c3fff6c0 Recovering log #170
|
||||
2026/06/12-20:51:44.508610 7fc3c3fff6c0 Delete type=3 #168
|
||||
2026/06/12-20:51:44.508662 7fc3c3fff6c0 Delete type=0 #170
|
||||
2026/06/12-20:52:05.548467 7fc3c11be6c0 Level-0 table #175: started
|
||||
2026/06/12-20:52:05.548492 7fc3c11be6c0 Level-0 table #175: 0 bytes OK
|
||||
2026/06/12-20:52:05.555571 7fc3c11be6c0 Delete type=0 #173
|
||||
2026/06/12-20:52:05.562235 7fc3c11be6c0 Manual compaction at level-0 from '!items!QHovFMj93BC7bqBu' @ 72057594037927935 : 1 .. '!items!yleVHgRqGoYLvzxT' @ 0 : 0; will stop at (end)
|
||||
2026/06/12-20:52:05.562402 7fc3c11be6c0 Manual compaction at level-1 from '!items!QHovFMj93BC7bqBu' @ 72057594037927935 : 1 .. '!items!yleVHgRqGoYLvzxT' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
Binary file not shown.
+1
-1
@@ -1 +1 @@
|
||||
MANIFEST-000096
|
||||
MANIFEST-000168
|
||||
|
||||
+7
-7
@@ -1,7 +1,7 @@
|
||||
2026/04/14-09:09:27.576965 7fddd97be6c0 Recovering log #94
|
||||
2026/04/14-09:09:27.633055 7fddd97be6c0 Delete type=3 #92
|
||||
2026/04/14-09:09:27.633158 7fddd97be6c0 Delete type=0 #94
|
||||
2026/04/14-09:37:12.034435 7fddca1c26c0 Level-0 table #99: started
|
||||
2026/04/14-09:37:12.034485 7fddca1c26c0 Level-0 table #99: 0 bytes OK
|
||||
2026/04/14-09:37:12.041061 7fddca1c26c0 Delete type=0 #97
|
||||
2026/04/14-09:37:12.041346 7fddca1c26c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
||||
2026/06/12-20:52:57.939847 7fc4117ff6c0 Recovering log #166
|
||||
2026/06/12-20:52:57.951112 7fc4117ff6c0 Delete type=3 #164
|
||||
2026/06/12-20:52:57.951166 7fc4117ff6c0 Delete type=0 #166
|
||||
2026/06/12-20:53:22.655606 7fc3c11be6c0 Level-0 table #171: started
|
||||
2026/06/12-20:53:22.655631 7fc3c11be6c0 Level-0 table #171: 0 bytes OK
|
||||
2026/06/12-20:53:22.662292 7fc3c11be6c0 Delete type=0 #169
|
||||
2026/06/12-20:53:22.676430 7fc3c11be6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
||||
|
||||
+7
-7
@@ -1,7 +1,7 @@
|
||||
2026/04/09-07:31:00.868584 7f20ed3fd6c0 Recovering log #91
|
||||
2026/04/09-07:31:00.878275 7f20ed3fd6c0 Delete type=0 #91
|
||||
2026/04/09-07:31:00.878335 7f20ed3fd6c0 Delete type=3 #90
|
||||
2026/04/09-23:11:55.423085 7f1e4ffff6c0 Level-0 table #95: started
|
||||
2026/04/09-23:11:55.423120 7f1e4ffff6c0 Level-0 table #95: 0 bytes OK
|
||||
2026/04/09-23:11:55.490502 7f1e4ffff6c0 Delete type=0 #93
|
||||
2026/04/09-23:11:55.689798 7f1e4ffff6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
||||
2026/06/12-20:51:44.511682 7fc410ffe6c0 Recovering log #162
|
||||
2026/06/12-20:51:44.521666 7fc410ffe6c0 Delete type=3 #160
|
||||
2026/06/12-20:51:44.521720 7fc410ffe6c0 Delete type=0 #162
|
||||
2026/06/12-20:52:05.555691 7fc3c11be6c0 Level-0 table #167: started
|
||||
2026/06/12-20:52:05.555716 7fc3c11be6c0 Level-0 table #167: 0 bytes OK
|
||||
2026/06/12-20:52:05.562097 7fc3c11be6c0 Delete type=0 #165
|
||||
2026/06/12-20:52:05.562305 7fc3c11be6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000101
|
||||
MANIFEST-000176
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
2026/04/14-09:09:27.691723 7fddd8fbd6c0 Recovering log #97
|
||||
2026/04/14-09:09:27.751300 7fddd8fbd6c0 Delete type=3 #95
|
||||
2026/04/14-09:09:27.751449 7fddd8fbd6c0 Delete type=0 #97
|
||||
2026/04/14-09:37:12.048047 7fddca1c26c0 Level-0 table #104: started
|
||||
2026/04/14-09:37:12.048094 7fddca1c26c0 Level-0 table #104: 0 bytes OK
|
||||
2026/04/14-09:37:12.054263 7fddca1c26c0 Delete type=0 #102
|
||||
2026/04/14-09:37:12.068648 7fddca1c26c0 Manual compaction at level-0 from '!folders!qrqRBmTP6UuS30DF' @ 72057594037927935 : 1 .. '!items!yFvuDyV00NdojxGt' @ 0 : 0; will stop at (end)
|
||||
2026/04/14-09:37:12.068720 7fddca1c26c0 Manual compaction at level-1 from '!folders!qrqRBmTP6UuS30DF' @ 72057594037927935 : 1 .. '!items!yFvuDyV00NdojxGt' @ 0 : 0; will stop at (end)
|
||||
2026/06/12-20:52:57.967451 7fc4117ff6c0 Recovering log #174
|
||||
2026/06/12-20:52:57.978196 7fc4117ff6c0 Delete type=3 #172
|
||||
2026/06/12-20:52:57.978251 7fc4117ff6c0 Delete type=0 #174
|
||||
2026/06/12-20:53:22.696764 7fc3c11be6c0 Level-0 table #179: started
|
||||
2026/06/12-20:53:22.696789 7fc3c11be6c0 Level-0 table #179: 0 bytes OK
|
||||
2026/06/12-20:53:22.703214 7fc3c11be6c0 Delete type=0 #177
|
||||
2026/06/12-20:53:22.703379 7fc3c11be6c0 Manual compaction at level-0 from '!folders!qrqRBmTP6UuS30DF' @ 72057594037927935 : 1 .. '!items!yFvuDyV00NdojxGt' @ 0 : 0; will stop at (end)
|
||||
2026/06/12-20:53:22.710437 7fc3c11be6c0 Manual compaction at level-1 from '!folders!qrqRBmTP6UuS30DF' @ 72057594037927935 : 1 .. '!items!yFvuDyV00NdojxGt' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,23 +1,8 @@
|
||||
2026/04/09-07:31:00.893292 7f20edbfe6c0 Recovering log #94
|
||||
2026/04/09-07:31:00.903184 7f20edbfe6c0 Delete type=0 #94
|
||||
2026/04/09-07:31:00.903229 7f20edbfe6c0 Delete type=3 #93
|
||||
2026/04/09-23:11:56.160046 7f1e4ffff6c0 Level-0 table #98: started
|
||||
2026/04/09-23:11:56.160087 7f1e4ffff6c0 Level-0 table #98: 0 bytes OK
|
||||
2026/04/09-23:11:56.221142 7f1e4ffff6c0 Delete type=0 #96
|
||||
2026/04/09-23:11:56.366148 7f1e4ffff6c0 Manual compaction at level-0 from '!folders!qrqRBmTP6UuS30DF' @ 72057594037927935 : 1 .. '!items!yFvuDyV00NdojxGt' @ 0 : 0; will stop at '!items!yFvuDyV00NdojxGt' @ 28 : 1
|
||||
2026/04/09-23:11:56.366156 7f1e4ffff6c0 Compacting 3@0 + 0@1 files
|
||||
2026/04/09-23:11:56.403336 7f1e4ffff6c0 Generated table #99@0: 13 keys, 5518 bytes
|
||||
2026/04/09-23:11:56.403367 7f1e4ffff6c0 Compacted 3@0 + 0@1 files => 5518 bytes
|
||||
2026/04/09-23:11:56.463634 7f1e4ffff6c0 compacted to: files[ 0 1 1 0 0 0 0 ]
|
||||
2026/04/09-23:11:56.463768 7f1e4ffff6c0 Delete type=2 #79
|
||||
2026/04/09-23:11:56.463912 7f1e4ffff6c0 Delete type=2 #82
|
||||
2026/04/09-23:11:56.463976 7f1e4ffff6c0 Delete type=2 #89
|
||||
2026/04/09-23:11:56.649253 7f1e4ffff6c0 Manual compaction at level-0 from '!items!yFvuDyV00NdojxGt' @ 28 : 1 .. '!items!yFvuDyV00NdojxGt' @ 0 : 0; will stop at (end)
|
||||
2026/04/09-23:11:56.739065 7f1e4ffff6c0 Manual compaction at level-1 from '!folders!qrqRBmTP6UuS30DF' @ 72057594037927935 : 1 .. '!items!yFvuDyV00NdojxGt' @ 0 : 0; will stop at '!items!yFvuDyV00NdojxGt' @ 54 : 1
|
||||
2026/04/09-23:11:56.739073 7f1e4ffff6c0 Compacting 1@1 + 1@2 files
|
||||
2026/04/09-23:11:56.767928 7f1e4ffff6c0 Generated table #100@1: 15 keys, 5685 bytes
|
||||
2026/04/09-23:11:56.767955 7f1e4ffff6c0 Compacted 1@1 + 1@2 files => 5685 bytes
|
||||
2026/04/09-23:11:56.821206 7f1e4ffff6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2026/04/09-23:11:56.821329 7f1e4ffff6c0 Delete type=2 #67
|
||||
2026/04/09-23:11:56.821468 7f1e4ffff6c0 Delete type=2 #99
|
||||
2026/04/09-23:11:56.975628 7f1e4ffff6c0 Manual compaction at level-1 from '!items!yFvuDyV00NdojxGt' @ 54 : 1 .. '!items!yFvuDyV00NdojxGt' @ 0 : 0; will stop at (end)
|
||||
2026/06/12-20:51:44.538990 7fc410ffe6c0 Recovering log #170
|
||||
2026/06/12-20:51:44.550083 7fc410ffe6c0 Delete type=3 #168
|
||||
2026/06/12-20:51:44.550141 7fc410ffe6c0 Delete type=0 #170
|
||||
2026/06/12-20:52:05.569908 7fc3c11be6c0 Level-0 table #175: started
|
||||
2026/06/12-20:52:05.569929 7fc3c11be6c0 Level-0 table #175: 0 bytes OK
|
||||
2026/06/12-20:52:05.576375 7fc3c11be6c0 Delete type=0 #173
|
||||
2026/06/12-20:52:05.590256 7fc3c11be6c0 Manual compaction at level-0 from '!folders!qrqRBmTP6UuS30DF' @ 72057594037927935 : 1 .. '!items!yFvuDyV00NdojxGt' @ 0 : 0; will stop at (end)
|
||||
2026/06/12-20:52:05.590425 7fc3c11be6c0 Manual compaction at level-1 from '!folders!qrqRBmTP6UuS30DF' @ 72057594037927935 : 1 .. '!items!yFvuDyV00NdojxGt' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1 @@
|
||||
MANIFEST-000014
|
||||
@@ -0,0 +1,8 @@
|
||||
2026/06/12-20:52:58.209985 7fc3c3fff6c0 Recovering log #12
|
||||
2026/06/12-20:52:58.222276 7fc3c3fff6c0 Delete type=3 #10
|
||||
2026/06/12-20:52:58.222315 7fc3c3fff6c0 Delete type=0 #12
|
||||
2026/06/12-20:53:22.822733 7fc3c11be6c0 Level-0 table #17: started
|
||||
2026/06/12-20:53:22.822761 7fc3c11be6c0 Level-0 table #17: 0 bytes OK
|
||||
2026/06/12-20:53:22.829641 7fc3c11be6c0 Delete type=0 #15
|
||||
2026/06/12-20:53:22.836426 7fc3c11be6c0 Manual compaction at level-0 from '!actors!DL3zXfXxWMOQhXJY' @ 72057594037927935 : 1 .. '!actors.items!JAHYXFedTxNlGYX8.nmIgA3CQkOSEpCSP' @ 0 : 0; will stop at (end)
|
||||
2026/06/12-20:53:22.960032 7fc3c11be6c0 Manual compaction at level-1 from '!actors!DL3zXfXxWMOQhXJY' @ 72057594037927935 : 1 .. '!actors.items!JAHYXFedTxNlGYX8.nmIgA3CQkOSEpCSP' @ 0 : 0; will stop at (end)
|
||||
@@ -0,0 +1,8 @@
|
||||
2026/06/12-20:51:44.772467 7fc3c37fe6c0 Recovering log #8
|
||||
2026/06/12-20:51:44.784739 7fc3c37fe6c0 Delete type=3 #6
|
||||
2026/06/12-20:51:44.784799 7fc3c37fe6c0 Delete type=0 #8
|
||||
2026/06/12-20:52:05.700099 7fc3c11be6c0 Level-0 table #13: started
|
||||
2026/06/12-20:52:05.700122 7fc3c11be6c0 Level-0 table #13: 0 bytes OK
|
||||
2026/06/12-20:52:05.707051 7fc3c11be6c0 Delete type=0 #11
|
||||
2026/06/12-20:52:05.714022 7fc3c11be6c0 Manual compaction at level-0 from '!actors!DL3zXfXxWMOQhXJY' @ 72057594037927935 : 1 .. '!actors.items!JAHYXFedTxNlGYX8.nmIgA3CQkOSEpCSP' @ 0 : 0; will stop at (end)
|
||||
2026/06/12-20:52:05.714257 7fc3c11be6c0 Manual compaction at level-1 from '!actors!DL3zXfXxWMOQhXJY' @ 72057594037927935 : 1 .. '!actors.items!JAHYXFedTxNlGYX8.nmIgA3CQkOSEpCSP' @ 0 : 0; will stop at (end)
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000002
|
||||
MANIFEST-000291
|
||||
|
||||
+19
-5
@@ -1,5 +1,19 @@
|
||||
2026/04/14-09:09:28.285829 7fddcbfff6c0 Delete type=3 #1
|
||||
2026/04/14-09:37:12.115891 7fddca1c26c0 Level-0 table #5: started
|
||||
2026/04/14-09:37:12.134263 7fddca1c26c0 Level-0 table #5: 442791 bytes OK
|
||||
2026/04/14-09:37:12.141689 7fddca1c26c0 Delete type=0 #3
|
||||
2026/04/14-09:37:12.149394 7fddca1c26c0 Manual compaction at level-0 from '!tables!BbXMbmHKcLJrBCmk' @ 72057594037927935 : 1 .. '!tables.results!xe7x4qufBpzLaEby.zyJ49IY9JAmeIucJ' @ 0 : 0; will stop at (end)
|
||||
2026/06/12-20:52:58.065673 7fc3c3fff6c0 Recovering log #286
|
||||
2026/06/12-20:52:58.076152 7fc3c3fff6c0 Delete type=3 #284
|
||||
2026/06/12-20:52:58.076196 7fc3c3fff6c0 Delete type=0 #286
|
||||
2026/06/12-20:53:22.724394 7fc3c11be6c0 Level-0 table #294: started
|
||||
2026/06/12-20:53:22.813324 7fc3c11be6c0 Level-0 table #294: 5029605 bytes OK
|
||||
2026/06/12-20:53:22.820890 7fc3c11be6c0 Delete type=0 #292
|
||||
2026/06/12-20:53:22.829771 7fc3c11be6c0 Manual compaction at level-0 from '!tables!BbXMbmHKcLJrBCmk' @ 72057594037927935 : 1 .. '!tables.results!xe7x4qufBpzLaEby.zzqLG98O4eFQZHp0' @ 0 : 0; will stop at (end)
|
||||
2026/06/12-20:53:22.836453 7fc3c11be6c0 Manual compaction at level-1 from '!tables!BbXMbmHKcLJrBCmk' @ 72057594037927935 : 1 .. '!tables.results!xe7x4qufBpzLaEby.zzqLG98O4eFQZHp0' @ 0 : 0; will stop at '!tables.results!xe7x4qufBpzLaEby.zzqLG98O4eFQZHp0' @ 1617840 : 1
|
||||
2026/06/12-20:53:22.836460 7fc3c11be6c0 Compacting 1@1 + 3@2 files
|
||||
2026/06/12-20:53:22.873874 7fc3c11be6c0 Generated table #295@1: 10562 keys, 2142429 bytes
|
||||
2026/06/12-20:53:22.924542 7fc3c11be6c0 Generated table #296@1: 16816 keys, 2164017 bytes
|
||||
2026/06/12-20:53:22.944331 7fc3c11be6c0 Generated table #297@1: 5500 keys, 721026 bytes
|
||||
2026/06/12-20:53:22.944361 7fc3c11be6c0 Compacted 1@1 + 3@2 files => 5027472 bytes
|
||||
2026/06/12-20:53:22.951445 7fc3c11be6c0 compacted to: files[ 0 0 3 0 0 0 0 ]
|
||||
2026/06/12-20:53:22.951933 7fc3c11be6c0 Delete type=2 #288
|
||||
2026/06/12-20:53:22.952420 7fc3c11be6c0 Delete type=2 #289
|
||||
2026/06/12-20:53:22.952708 7fc3c11be6c0 Delete type=2 #290
|
||||
2026/06/12-20:53:22.953103 7fc3c11be6c0 Delete type=2 #294
|
||||
2026/06/12-20:53:22.960065 7fc3c11be6c0 Manual compaction at level-1 from '!tables.results!xe7x4qufBpzLaEby.zzqLG98O4eFQZHp0' @ 1617840 : 1 .. '!tables.results!xe7x4qufBpzLaEby.zzqLG98O4eFQZHp0' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -0,0 +1,19 @@
|
||||
2026/06/12-20:51:44.638713 7fc410ffe6c0 Recovering log #279
|
||||
2026/06/12-20:51:44.649235 7fc410ffe6c0 Delete type=3 #277
|
||||
2026/06/12-20:51:44.649296 7fc410ffe6c0 Delete type=0 #279
|
||||
2026/06/12-20:52:05.627084 7fc3c11be6c0 Level-0 table #287: started
|
||||
2026/06/12-20:52:05.691136 7fc3c11be6c0 Level-0 table #287: 4971536 bytes OK
|
||||
2026/06/12-20:52:05.698145 7fc3c11be6c0 Delete type=0 #285
|
||||
2026/06/12-20:52:05.714008 7fc3c11be6c0 Manual compaction at level-0 from '!tables!BbXMbmHKcLJrBCmk' @ 72057594037927935 : 1 .. '!tables.results!xe7x4qufBpzLaEby.zzqLG98O4eFQZHp0' @ 0 : 0; will stop at (end)
|
||||
2026/06/12-20:52:05.714299 7fc3c11be6c0 Manual compaction at level-1 from '!tables!BbXMbmHKcLJrBCmk' @ 72057594037927935 : 1 .. '!tables.results!xe7x4qufBpzLaEby.zzqLG98O4eFQZHp0' @ 0 : 0; will stop at '!tables.results!xe7x4qufBpzLaEby.zzqLG98O4eFQZHp0' @ 1585250 : 1
|
||||
2026/06/12-20:52:05.714307 7fc3c11be6c0 Compacting 1@1 + 3@2 files
|
||||
2026/06/12-20:52:05.744344 7fc3c11be6c0 Generated table #288@1: 10660 keys, 2142130 bytes
|
||||
2026/06/12-20:52:05.781422 7fc3c11be6c0 Generated table #289@1: 16841 keys, 2165292 bytes
|
||||
2026/06/12-20:52:05.794598 7fc3c11be6c0 Generated table #290@1: 5045 keys, 662072 bytes
|
||||
2026/06/12-20:52:05.794618 7fc3c11be6c0 Compacted 1@1 + 3@2 files => 4969494 bytes
|
||||
2026/06/12-20:52:05.801998 7fc3c11be6c0 compacted to: files[ 0 0 3 0 0 0 0 ]
|
||||
2026/06/12-20:52:05.802346 7fc3c11be6c0 Delete type=2 #281
|
||||
2026/06/12-20:52:05.802678 7fc3c11be6c0 Delete type=2 #282
|
||||
2026/06/12-20:52:05.802871 7fc3c11be6c0 Delete type=2 #283
|
||||
2026/06/12-20:52:05.803095 7fc3c11be6c0 Delete type=2 #287
|
||||
2026/06/12-20:52:05.821244 7fc3c11be6c0 Manual compaction at level-1 from '!tables.results!xe7x4qufBpzLaEby.zzqLG98O4eFQZHp0' @ 1585250 : 1 .. '!tables.results!xe7x4qufBpzLaEby.zzqLG98O4eFQZHp0' @ 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