Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 9ad34b4672 | |||
| ae36be975d | |||
| 69eaa8fc66 | |||
| b741cffd96 | |||
| e5296a4bcd | |||
| 9f93849a9d | |||
| 14c7e54b3d | |||
| ce3359b2f0 | |||
| 02bf6cc10a | |||
| dc5a1056b7 |
Binary file not shown.
|
After Width: | Height: | Size: 8.7 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 8.2 KiB |
@@ -41,6 +41,8 @@ export class DarkStarsActorSheet extends ActorSheet {
|
|||||||
perks: this.actor.getPerks( ),
|
perks: this.actor.getPerks( ),
|
||||||
weapons: this.actor.checkAndPrepareEquipments( duplicate(this.actor.getWeapons()) ),
|
weapons: this.actor.checkAndPrepareEquipments( duplicate(this.actor.getWeapons()) ),
|
||||||
ammos: this.actor.checkAndPrepareEquipments( duplicate(this.actor.getAmmos()) ),
|
ammos: this.actor.checkAndPrepareEquipments( duplicate(this.actor.getAmmos()) ),
|
||||||
|
spells: this.actor.checkAndPrepareEquipments( duplicate(this.actor.getSpells()) ),
|
||||||
|
powers: this.actor.checkAndPrepareEquipments( duplicate(this.actor.getPowers()) ),
|
||||||
armors: this.actor.checkAndPrepareEquipments( duplicate(this.actor.getArmors())),
|
armors: this.actor.checkAndPrepareEquipments( duplicate(this.actor.getArmors())),
|
||||||
shields: this.actor.checkAndPrepareEquipments( duplicate(this.actor.getShields())),
|
shields: this.actor.checkAndPrepareEquipments( duplicate(this.actor.getShields())),
|
||||||
equipments: this.actor.checkAndPrepareEquipments(duplicate(this.actor.getEquipmentsOnly()) ),
|
equipments: this.actor.checkAndPrepareEquipments(duplicate(this.actor.getEquipmentsOnly()) ),
|
||||||
|
|||||||
@@ -130,6 +130,16 @@ export class DarkStarsActor extends Actor {
|
|||||||
DarkStarsUtility.sortArrayObjectsByName(comp)
|
DarkStarsUtility.sortArrayObjectsByName(comp)
|
||||||
return comp;
|
return comp;
|
||||||
}
|
}
|
||||||
|
getSpells() {
|
||||||
|
let comp = duplicate(this.items.filter(item => item.type == 'spell') || []);
|
||||||
|
DarkStarsUtility.sortArrayObjectsByName(comp)
|
||||||
|
return comp;
|
||||||
|
}
|
||||||
|
getPowers() {
|
||||||
|
let comp = duplicate(this.items.filter(item => item.type == 'psychic') || []);
|
||||||
|
DarkStarsUtility.sortArrayObjectsByName(comp)
|
||||||
|
return comp;
|
||||||
|
}
|
||||||
getEquippedArmor() {
|
getEquippedArmor() {
|
||||||
let comp = this.items.find(item => item.type == 'armor' && item.system.equipped)
|
let comp = this.items.find(item => item.type == 'armor' && item.system.equipped)
|
||||||
if (comp) {
|
if (comp) {
|
||||||
|
|||||||
@@ -32,7 +32,14 @@ export const DARKSTARS_CONFIG = {
|
|||||||
perktypes: {
|
perktypes: {
|
||||||
"normal": "Normal",
|
"normal": "Normal",
|
||||||
"advanced": "Advanced",
|
"advanced": "Advanced",
|
||||||
"role": "Role"
|
"role": "Role",
|
||||||
|
"job": "Job"
|
||||||
|
},
|
||||||
|
magicTypes: {
|
||||||
|
"lemurian": "Lemurian",
|
||||||
|
"bloodmagic": "Blood Magic Ritual",
|
||||||
|
"ritual": "Ritual",
|
||||||
|
"miracle": "Miracle"
|
||||||
},
|
},
|
||||||
cyberTypes: {
|
cyberTypes: {
|
||||||
"I": "I",
|
"I": "I",
|
||||||
|
|||||||
@@ -8,7 +8,9 @@ export const defaultItemImg = {
|
|||||||
perk: "systems/fvtt-dark-stars/images/icons/perk.webp",
|
perk: "systems/fvtt-dark-stars/images/icons/perk.webp",
|
||||||
ability: "systems/fvtt-dark-stars/images/icons/ability.webp",
|
ability: "systems/fvtt-dark-stars/images/icons/ability.webp",
|
||||||
genetic: "systems/fvtt-dark-stars/images/icons/genetic.webp",
|
genetic: "systems/fvtt-dark-stars/images/icons/genetic.webp",
|
||||||
cyber: "systems/fvtt-dark-stars/images/icons/cyber.webp"
|
cyber: "systems/fvtt-dark-stars/images/icons/cyber.webp",
|
||||||
|
spell: "systems/fvtt-dark-stars/images/icons/magic.webp",
|
||||||
|
psychic: "systems/fvtt-dark-stars/images/icons/psychicpowers.webp",
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -18,6 +18,7 @@ import { DarkStarsItem } from "./dark-stars-item.js";
|
|||||||
import { DarkStarsHotbar } from "./dark-stars-hotbar.js"
|
import { DarkStarsHotbar } from "./dark-stars-hotbar.js"
|
||||||
import { DarkStarsCommands } from "./dark-stars-commands.js"
|
import { DarkStarsCommands } from "./dark-stars-commands.js"
|
||||||
import { DARKSTARS_CONFIG } from "./dark-stars-config.js";
|
import { DARKSTARS_CONFIG } from "./dark-stars-config.js";
|
||||||
|
import { ClassCounter} from "https://www.uberwald.me/fvtt_appcount/count-class-ready.js"
|
||||||
|
|
||||||
/* -------------------------------------------- */
|
/* -------------------------------------------- */
|
||||||
/* Foundry VTT Initialization */
|
/* Foundry VTT Initialization */
|
||||||
@@ -91,15 +92,11 @@ Hooks.once("ready", function () {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
// CSS patch for v9
|
|
||||||
if (game.version) {
|
|
||||||
let sidebar = document.getElementById("sidebar");
|
|
||||||
sidebar.style.width = "min-content";
|
|
||||||
}
|
|
||||||
|
|
||||||
welcomeMessage();
|
welcomeMessage();
|
||||||
DarkStarsUtility.ready()
|
DarkStarsUtility.ready()
|
||||||
DarkStarsCommands.init()
|
DarkStarsCommands.init()
|
||||||
|
ClassCounter.registerUsageCount()
|
||||||
})
|
})
|
||||||
|
|
||||||
/* -------------------------------------------- */
|
/* -------------------------------------------- */
|
||||||
|
|||||||
@@ -0,0 +1,6 @@
|
|||||||
|
[Dolphin]
|
||||||
|
HeaderColumnWidths=301,118,148,122
|
||||||
|
Timestamp=2024,1,26,8,35,29.906
|
||||||
|
Version=4
|
||||||
|
ViewMode=1
|
||||||
|
VisibleRoles=Details_text,Details_size,Details_modificationtime,Details_creationtime,CustomizedDetails
|
||||||
Binary file not shown.
@@ -0,0 +1 @@
|
|||||||
|
MANIFEST-000144
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
2024/01/26-16:45:12.312299 7ff6b6ffd6c0 Recovering log #142
|
||||||
|
2024/01/26-16:45:12.322762 7ff6b6ffd6c0 Delete type=3 #140
|
||||||
|
2024/01/26-16:45:12.322811 7ff6b6ffd6c0 Delete type=0 #142
|
||||||
|
2024/01/26-16:46:20.748825 7ff4363ff6c0 Level-0 table #147: started
|
||||||
|
2024/01/26-16:46:20.748854 7ff4363ff6c0 Level-0 table #147: 0 bytes OK
|
||||||
|
2024/01/26-16:46:20.756106 7ff4363ff6c0 Delete type=0 #145
|
||||||
|
2024/01/26-16:46:20.775694 7ff4363ff6c0 Manual compaction at level-0 from '!folders!MA6uFJMVebGeayIk' @ 72057594037927935 : 1 .. '!items!zhjdppKgrON7wJn7' @ 0 : 0; will stop at (end)
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
2024/01/26-16:44:01.373547 7ff6b77fe6c0 Recovering log #138
|
||||||
|
2024/01/26-16:44:01.382908 7ff6b77fe6c0 Delete type=3 #136
|
||||||
|
2024/01/26-16:44:01.382992 7ff6b77fe6c0 Delete type=0 #138
|
||||||
|
2024/01/26-16:44:52.254620 7ff4363ff6c0 Level-0 table #143: started
|
||||||
|
2024/01/26-16:44:52.254645 7ff4363ff6c0 Level-0 table #143: 0 bytes OK
|
||||||
|
2024/01/26-16:44:52.261346 7ff4363ff6c0 Delete type=0 #141
|
||||||
|
2024/01/26-16:44:52.280720 7ff4363ff6c0 Manual compaction at level-0 from '!folders!MA6uFJMVebGeayIk' @ 72057594037927935 : 1 .. '!items!zhjdppKgrON7wJn7' @ 0 : 0; will stop at (end)
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
+1
-1
@@ -1 +1 @@
|
|||||||
MANIFEST-000118
|
MANIFEST-000191
|
||||||
|
|||||||
+8
-8
@@ -1,8 +1,8 @@
|
|||||||
2023/10/23-23:27:50.391876 7fc51a7fc6c0 Recovering log #116
|
2024/01/26-16:45:12.176273 7ff6b7fff6c0 Recovering log #189
|
||||||
2023/10/23-23:27:50.406730 7fc51a7fc6c0 Delete type=3 #114
|
2024/01/26-16:45:12.186033 7ff6b7fff6c0 Delete type=3 #187
|
||||||
2023/10/23-23:27:50.406904 7fc51a7fc6c0 Delete type=0 #116
|
2024/01/26-16:45:12.186075 7ff6b7fff6c0 Delete type=0 #189
|
||||||
2023/10/24-07:04:13.134268 7fc299bff6c0 Level-0 table #121: started
|
2024/01/26-16:46:20.675233 7ff4363ff6c0 Level-0 table #194: started
|
||||||
2023/10/24-07:04:13.134315 7fc299bff6c0 Level-0 table #121: 0 bytes OK
|
2024/01/26-16:46:20.675253 7ff4363ff6c0 Level-0 table #194: 0 bytes OK
|
||||||
2023/10/24-07:04:13.142035 7fc299bff6c0 Delete type=0 #119
|
2024/01/26-16:46:20.681449 7ff4363ff6c0 Delete type=0 #192
|
||||||
2023/10/24-07:04:13.168857 7fc299bff6c0 Manual compaction at level-0 from '!items!3O3MjRkrmX4HeaPY' @ 72057594037927935 : 1 .. '!items!q9JGWL4y4udYrzvD' @ 0 : 0; will stop at (end)
|
2024/01/26-16:46:20.687750 7ff4363ff6c0 Manual compaction at level-0 from '!items!0JWjCJaD6OOouqTj' @ 72057594037927935 : 1 .. '!items!zzDfuUJpQzzz262R' @ 0 : 0; will stop at (end)
|
||||||
2023/10/24-07:04:13.168941 7fc299bff6c0 Manual compaction at level-1 from '!items!3O3MjRkrmX4HeaPY' @ 72057594037927935 : 1 .. '!items!q9JGWL4y4udYrzvD' @ 0 : 0; will stop at (end)
|
2024/01/26-16:46:20.687788 7ff4363ff6c0 Manual compaction at level-1 from '!items!0JWjCJaD6OOouqTj' @ 72057594037927935 : 1 .. '!items!zzDfuUJpQzzz262R' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
+8
-8
@@ -1,8 +1,8 @@
|
|||||||
2023/10/23-16:21:18.818735 7fc51b7fe6c0 Recovering log #112
|
2024/01/26-16:44:01.246989 7ff6ccbfa6c0 Recovering log #184
|
||||||
2023/10/23-16:21:18.828413 7fc51b7fe6c0 Delete type=3 #110
|
2024/01/26-16:44:01.256586 7ff6ccbfa6c0 Delete type=3 #182
|
||||||
2023/10/23-16:21:18.828468 7fc51b7fe6c0 Delete type=0 #112
|
2024/01/26-16:44:01.256664 7ff6ccbfa6c0 Delete type=0 #184
|
||||||
2023/10/23-16:38:21.235245 7fc299bff6c0 Level-0 table #117: started
|
2024/01/26-16:44:52.188290 7ff4363ff6c0 Level-0 table #190: started
|
||||||
2023/10/23-16:38:21.235287 7fc299bff6c0 Level-0 table #117: 0 bytes OK
|
2024/01/26-16:44:52.188318 7ff4363ff6c0 Level-0 table #190: 0 bytes OK
|
||||||
2023/10/23-16:38:21.288685 7fc299bff6c0 Delete type=0 #115
|
2024/01/26-16:44:52.195202 7ff4363ff6c0 Delete type=0 #188
|
||||||
2023/10/23-16:38:21.402896 7fc299bff6c0 Manual compaction at level-0 from '!items!3O3MjRkrmX4HeaPY' @ 72057594037927935 : 1 .. '!items!q9JGWL4y4udYrzvD' @ 0 : 0; will stop at (end)
|
2024/01/26-16:44:52.201491 7ff4363ff6c0 Manual compaction at level-0 from '!items!0JWjCJaD6OOouqTj' @ 72057594037927935 : 1 .. '!items!zzDfuUJpQzzz262R' @ 0 : 0; will stop at (end)
|
||||||
2023/10/23-16:38:21.445657 7fc299bff6c0 Manual compaction at level-1 from '!items!3O3MjRkrmX4HeaPY' @ 72057594037927935 : 1 .. '!items!q9JGWL4y4udYrzvD' @ 0 : 0; will stop at (end)
|
2024/01/26-16:44:52.201541 7ff4363ff6c0 Manual compaction at level-1 from '!items!0JWjCJaD6OOouqTj' @ 72057594037927935 : 1 .. '!items!zzDfuUJpQzzz262R' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1 @@
|
|||||||
|
MANIFEST-000137
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
2024/01/26-16:45:12.325158 7ff6b7fff6c0 Recovering log #135
|
||||||
|
2024/01/26-16:45:12.335499 7ff6b7fff6c0 Delete type=3 #133
|
||||||
|
2024/01/26-16:45:12.335563 7ff6b7fff6c0 Delete type=0 #135
|
||||||
|
2024/01/26-16:46:20.756265 7ff4363ff6c0 Level-0 table #140: started
|
||||||
|
2024/01/26-16:46:20.756302 7ff4363ff6c0 Level-0 table #140: 0 bytes OK
|
||||||
|
2024/01/26-16:46:20.762494 7ff4363ff6c0 Delete type=0 #138
|
||||||
|
2024/01/26-16:46:20.775705 7ff4363ff6c0 Manual compaction at level-0 from '!folders!47aGmBuk1mHtbFFU' @ 72057594037927935 : 1 .. '!items!zwMpjsE84sk26eej' @ 0 : 0; will stop at (end)
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
2024/01/26-16:44:01.386535 7ff6b6ffd6c0 Recovering log #131
|
||||||
|
2024/01/26-16:44:01.397538 7ff6b6ffd6c0 Delete type=3 #129
|
||||||
|
2024/01/26-16:44:01.397640 7ff6b6ffd6c0 Delete type=0 #131
|
||||||
|
2024/01/26-16:44:52.261471 7ff4363ff6c0 Level-0 table #136: started
|
||||||
|
2024/01/26-16:44:52.261497 7ff4363ff6c0 Level-0 table #136: 0 bytes OK
|
||||||
|
2024/01/26-16:44:52.267579 7ff4363ff6c0 Delete type=0 #134
|
||||||
|
2024/01/26-16:44:52.280736 7ff4363ff6c0 Manual compaction at level-0 from '!folders!47aGmBuk1mHtbFFU' @ 72057594037927935 : 1 .. '!items!zwMpjsE84sk26eej' @ 0 : 0; will stop at (end)
|
||||||
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-000118
|
MANIFEST-000190
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
2023/10/23-23:27:50.461489 7fc51a7fc6c0 Recovering log #116
|
2024/01/26-16:45:12.225313 7ff6b7fff6c0 Recovering log #188
|
||||||
2023/10/23-23:27:50.476262 7fc51a7fc6c0 Delete type=3 #114
|
2024/01/26-16:45:12.234683 7ff6b7fff6c0 Delete type=3 #186
|
||||||
2023/10/23-23:27:50.476363 7fc51a7fc6c0 Delete type=0 #116
|
2024/01/26-16:45:12.234894 7ff6b7fff6c0 Delete type=0 #188
|
||||||
2023/10/24-07:04:13.180225 7fc299bff6c0 Level-0 table #121: started
|
2024/01/26-16:46:20.695766 7ff4363ff6c0 Level-0 table #193: started
|
||||||
2023/10/24-07:04:13.180270 7fc299bff6c0 Level-0 table #121: 0 bytes OK
|
2024/01/26-16:46:20.695812 7ff4363ff6c0 Level-0 table #193: 0 bytes OK
|
||||||
2023/10/24-07:04:13.188564 7fc299bff6c0 Delete type=0 #119
|
2024/01/26-16:46:20.702115 7ff4363ff6c0 Delete type=0 #191
|
||||||
2023/10/24-07:04:13.206576 7fc299bff6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
2024/01/26-16:46:20.715382 7ff4363ff6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
2023/10/23-16:21:18.866233 7fc51b7fe6c0 Recovering log #112
|
2024/01/26-16:44:01.298464 7ff6ccbfa6c0 Recovering log #184
|
||||||
2023/10/23-16:21:18.876627 7fc51b7fe6c0 Delete type=3 #110
|
2024/01/26-16:44:01.307852 7ff6ccbfa6c0 Delete type=3 #182
|
||||||
2023/10/23-16:21:18.876726 7fc51b7fe6c0 Delete type=0 #112
|
2024/01/26-16:44:01.307891 7ff6ccbfa6c0 Delete type=0 #184
|
||||||
2023/10/23-16:38:21.562992 7fc299bff6c0 Level-0 table #117: started
|
2024/01/26-16:44:52.214766 7ff4363ff6c0 Level-0 table #189: started
|
||||||
2023/10/23-16:38:21.563052 7fc299bff6c0 Level-0 table #117: 0 bytes OK
|
2024/01/26-16:44:52.214786 7ff4363ff6c0 Level-0 table #189: 0 bytes OK
|
||||||
2023/10/23-16:38:21.606768 7fc299bff6c0 Delete type=0 #115
|
2024/01/26-16:44:52.221197 7ff4363ff6c0 Delete type=0 #187
|
||||||
2023/10/23-16:38:21.649491 7fc299bff6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
2024/01/26-16:44:52.227824 7ff4363ff6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-000118
|
MANIFEST-000190
|
||||||
|
|||||||
+7
-7
@@ -1,7 +1,7 @@
|
|||||||
2023/10/23-23:27:50.478831 7fc51b7fe6c0 Recovering log #116
|
2024/01/26-16:45:12.236796 7ff6ccbfa6c0 Recovering log #188
|
||||||
2023/10/23-23:27:50.493332 7fc51b7fe6c0 Delete type=3 #114
|
2024/01/26-16:45:12.247179 7ff6ccbfa6c0 Delete type=3 #186
|
||||||
2023/10/23-23:27:50.493444 7fc51b7fe6c0 Delete type=0 #116
|
2024/01/26-16:45:12.247261 7ff6ccbfa6c0 Delete type=0 #188
|
||||||
2023/10/24-07:04:13.169114 7fc299bff6c0 Level-0 table #121: started
|
2024/01/26-16:46:20.708975 7ff4363ff6c0 Level-0 table #193: started
|
||||||
2023/10/24-07:04:13.169161 7fc299bff6c0 Level-0 table #121: 0 bytes OK
|
2024/01/26-16:46:20.709012 7ff4363ff6c0 Level-0 table #193: 0 bytes OK
|
||||||
2023/10/24-07:04:13.180064 7fc299bff6c0 Delete type=0 #119
|
2024/01/26-16:46:20.715289 7ff4363ff6c0 Delete type=0 #191
|
||||||
2023/10/24-07:04:13.206554 7fc299bff6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
2024/01/26-16:46:20.715398 7ff4363ff6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
2023/10/23-16:21:18.878355 7fc51a7fc6c0 Recovering log #112
|
2024/01/26-16:44:01.309674 7ff6b7fff6c0 Recovering log #184
|
||||||
2023/10/23-16:21:18.889689 7fc51a7fc6c0 Delete type=3 #110
|
2024/01/26-16:44:01.320294 7ff6b7fff6c0 Delete type=3 #182
|
||||||
2023/10/23-16:21:18.889751 7fc51a7fc6c0 Delete type=0 #112
|
2024/01/26-16:44:01.320644 7ff6b7fff6c0 Delete type=0 #184
|
||||||
2023/10/23-16:38:21.520237 7fc299bff6c0 Level-0 table #117: started
|
2024/01/26-16:44:52.221291 7ff4363ff6c0 Level-0 table #189: started
|
||||||
2023/10/23-16:38:21.520269 7fc299bff6c0 Level-0 table #117: 0 bytes OK
|
2024/01/26-16:44:52.221313 7ff4363ff6c0 Level-0 table #189: 0 bytes OK
|
||||||
2023/10/23-16:38:21.562758 7fc299bff6c0 Delete type=0 #115
|
2024/01/26-16:44:52.227729 7ff4363ff6c0 Delete type=0 #187
|
||||||
2023/10/23-16:38:21.649457 7fc299bff6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
2024/01/26-16:44:52.227832 7ff4363ff6c0 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.
@@ -1 +1 @@
|
|||||||
MANIFEST-000046
|
MANIFEST-000120
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
2023/10/23-23:27:50.534411 7fc51a7fc6c0 Recovering log #44
|
2024/01/26-16:45:12.272968 7ff6b7fff6c0 Recovering log #118
|
||||||
2023/10/23-23:27:50.547268 7fc51a7fc6c0 Delete type=3 #42
|
2024/01/26-16:45:12.283470 7ff6b7fff6c0 Delete type=3 #116
|
||||||
2023/10/23-23:27:50.547364 7fc51a7fc6c0 Delete type=0 #44
|
2024/01/26-16:45:12.283523 7ff6b7fff6c0 Delete type=0 #118
|
||||||
2023/10/24-07:04:13.206805 7fc299bff6c0 Level-0 table #49: started
|
2024/01/26-16:46:20.735545 7ff4363ff6c0 Level-0 table #123: started
|
||||||
2023/10/24-07:04:13.206870 7fc299bff6c0 Level-0 table #49: 0 bytes OK
|
2024/01/26-16:46:20.735569 7ff4363ff6c0 Level-0 table #123: 0 bytes OK
|
||||||
2023/10/24-07:04:13.213996 7fc299bff6c0 Delete type=0 #47
|
2024/01/26-16:46:20.742205 7ff4363ff6c0 Delete type=0 #121
|
||||||
2023/10/24-07:04:13.214197 7fc299bff6c0 Manual compaction at level-0 from '!items!0JlVJvgxQQWY8lpO' @ 72057594037927935 : 1 .. '!items!zjxV4mcELwbZU8Et' @ 0 : 0; will stop at (end)
|
2024/01/26-16:46:20.748616 7ff4363ff6c0 Manual compaction at level-0 from '!items!0SbSmYdxJSlcNr6x' @ 72057594037927935 : 1 .. '!items!yyCPVVl8vmMOfPcN' @ 0 : 0; will stop at (end)
|
||||||
2023/10/24-07:04:13.214231 7fc299bff6c0 Manual compaction at level-1 from '!items!0JlVJvgxQQWY8lpO' @ 72057594037927935 : 1 .. '!items!zjxV4mcELwbZU8Et' @ 0 : 0; will stop at (end)
|
2024/01/26-16:46:20.748653 7ff4363ff6c0 Manual compaction at level-1 from '!items!0SbSmYdxJSlcNr6x' @ 72057594037927935 : 1 .. '!items!yyCPVVl8vmMOfPcN' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
2023/10/23-16:21:18.916086 7fc51b7fe6c0 Recovering log #40
|
2024/01/26-16:44:01.346924 7ff6ccbfa6c0 Recovering log #113
|
||||||
2023/10/23-16:21:18.926380 7fc51b7fe6c0 Delete type=3 #38
|
2024/01/26-16:44:01.357987 7ff6ccbfa6c0 Delete type=3 #111
|
||||||
2023/10/23-16:21:18.926444 7fc51b7fe6c0 Delete type=0 #40
|
2024/01/26-16:44:01.358062 7ff6ccbfa6c0 Delete type=0 #113
|
||||||
2023/10/23-16:38:21.687516 7fc299bff6c0 Level-0 table #45: started
|
2024/01/26-16:44:52.227918 7ff4363ff6c0 Level-0 table #119: started
|
||||||
2023/10/23-16:38:21.687571 7fc299bff6c0 Level-0 table #45: 0 bytes OK
|
2024/01/26-16:44:52.227939 7ff4363ff6c0 Level-0 table #119: 0 bytes OK
|
||||||
2023/10/23-16:38:21.736925 7fc299bff6c0 Delete type=0 #43
|
2024/01/26-16:44:52.233957 7ff4363ff6c0 Delete type=0 #117
|
||||||
2023/10/23-16:38:21.737272 7fc299bff6c0 Manual compaction at level-0 from '!items!0JlVJvgxQQWY8lpO' @ 72057594037927935 : 1 .. '!items!zjxV4mcELwbZU8Et' @ 0 : 0; will stop at (end)
|
2024/01/26-16:44:52.254451 7ff4363ff6c0 Manual compaction at level-0 from '!items!0SbSmYdxJSlcNr6x' @ 72057594037927935 : 1 .. '!items!yyCPVVl8vmMOfPcN' @ 0 : 0; will stop at (end)
|
||||||
2023/10/23-16:38:21.737344 7fc299bff6c0 Manual compaction at level-1 from '!items!0JlVJvgxQQWY8lpO' @ 72057594037927935 : 1 .. '!items!zjxV4mcELwbZU8Et' @ 0 : 0; will stop at (end)
|
2024/01/26-16:44:52.254483 7ff4363ff6c0 Manual compaction at level-1 from '!items!0SbSmYdxJSlcNr6x' @ 72057594037927935 : 1 .. '!items!yyCPVVl8vmMOfPcN' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1 @@
|
|||||||
|
MANIFEST-000002
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
2024/01/26-16:45:12.310498 7ff6b77fe6c0 Delete type=3 #1
|
||||||
|
2024/01/26-16:46:20.715565 7ff4363ff6c0 Level-0 table #5: started
|
||||||
|
2024/01/26-16:46:20.722812 7ff4363ff6c0 Level-0 table #5: 332133 bytes OK
|
||||||
|
2024/01/26-16:46:20.729100 7ff4363ff6c0 Delete type=0 #3
|
||||||
|
2024/01/26-16:46:20.748593 7ff4363ff6c0 Manual compaction at level-0 from '!folders!La3YsNYFddQnmsba' @ 72057594037927935 : 1 .. '!items!zzDfuUJpQzzz262R' @ 0 : 0; will stop at (end)
|
||||||
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-000118
|
MANIFEST-000191
|
||||||
|
|||||||
+8
-7
@@ -1,7 +1,8 @@
|
|||||||
2023/10/23-23:27:50.410339 7fc51b7fe6c0 Recovering log #116
|
2024/01/26-16:45:12.187737 7ff6ccbfa6c0 Recovering log #189
|
||||||
2023/10/23-23:27:50.422120 7fc51b7fe6c0 Delete type=3 #114
|
2024/01/26-16:45:12.198131 7ff6ccbfa6c0 Delete type=3 #187
|
||||||
2023/10/23-23:27:50.422217 7fc51b7fe6c0 Delete type=0 #116
|
2024/01/26-16:45:12.198196 7ff6ccbfa6c0 Delete type=0 #189
|
||||||
2023/10/24-07:04:13.161070 7fc299bff6c0 Level-0 table #121: started
|
2024/01/26-16:46:20.662928 7ff4363ff6c0 Level-0 table #194: started
|
||||||
2023/10/24-07:04:13.161129 7fc299bff6c0 Level-0 table #121: 0 bytes OK
|
2024/01/26-16:46:20.662962 7ff4363ff6c0 Level-0 table #194: 0 bytes OK
|
||||||
2023/10/24-07:04:13.168664 7fc299bff6c0 Delete type=0 #119
|
2024/01/26-16:46:20.668889 7ff4363ff6c0 Delete type=0 #192
|
||||||
2023/10/24-07:04:13.168925 7fc299bff6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
2024/01/26-16:46:20.675221 7ff4363ff6c0 Manual compaction at level-0 from '!items!05RVU3UcRabogEvL' @ 72057594037927935 : 1 .. '!items!zaxcUsWUZ1vvl0p8' @ 0 : 0; will stop at (end)
|
||||||
|
2024/01/26-16:46:20.687735 7ff4363ff6c0 Manual compaction at level-1 from '!items!05RVU3UcRabogEvL' @ 72057594037927935 : 1 .. '!items!zaxcUsWUZ1vvl0p8' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -1,7 +1,8 @@
|
|||||||
2023/10/23-16:21:18.830319 7fc51a7fc6c0 Recovering log #112
|
2024/01/26-16:44:01.259602 7ff6b7fff6c0 Recovering log #184
|
||||||
2023/10/23-16:21:18.840025 7fc51a7fc6c0 Delete type=3 #110
|
2024/01/26-16:44:01.270578 7ff6b7fff6c0 Delete type=3 #182
|
||||||
2023/10/23-16:21:18.840086 7fc51a7fc6c0 Delete type=0 #112
|
2024/01/26-16:44:01.270617 7ff6b7fff6c0 Delete type=0 #184
|
||||||
2023/10/23-16:38:21.349441 7fc299bff6c0 Level-0 table #117: started
|
2024/01/26-16:44:52.195296 7ff4363ff6c0 Level-0 table #190: started
|
||||||
2023/10/23-16:38:21.349501 7fc299bff6c0 Level-0 table #117: 0 bytes OK
|
2024/01/26-16:44:52.195319 7ff4363ff6c0 Level-0 table #190: 0 bytes OK
|
||||||
2023/10/23-16:38:21.402714 7fc299bff6c0 Delete type=0 #115
|
2024/01/26-16:44:52.201363 7ff4363ff6c0 Delete type=0 #188
|
||||||
2023/10/23-16:38:21.445484 7fc299bff6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
2024/01/26-16:44:52.201512 7ff4363ff6c0 Manual compaction at level-0 from '!items!05RVU3UcRabogEvL' @ 72057594037927935 : 1 .. '!items!zaxcUsWUZ1vvl0p8' @ 0 : 0; will stop at (end)
|
||||||
|
2024/01/26-16:44:52.201534 7ff4363ff6c0 Manual compaction at level-1 from '!items!05RVU3UcRabogEvL' @ 72057594037927935 : 1 .. '!items!zaxcUsWUZ1vvl0p8' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-000002
|
MANIFEST-000067
|
||||||
|
|||||||
+8
-5
@@ -1,5 +1,8 @@
|
|||||||
2023/10/19-11:34:56.763463 7f8105ffb6c0 Delete type=3 #1
|
2024/01/26-16:45:12.285582 7ff6ccbfa6c0 Recovering log #65
|
||||||
2023/10/19-11:42:11.816999 7f7e677006c0 Level-0 table #5: started
|
2024/01/26-16:45:12.295357 7ff6ccbfa6c0 Delete type=3 #63
|
||||||
2023/10/19-11:42:11.817033 7f7e677006c0 Level-0 table #5: 0 bytes OK
|
2024/01/26-16:45:12.295414 7ff6ccbfa6c0 Delete type=0 #65
|
||||||
2023/10/19-11:42:11.824095 7f7e677006c0 Delete type=0 #3
|
2024/01/26-16:46:20.742312 7ff4363ff6c0 Level-0 table #70: started
|
||||||
2023/10/19-11:42:11.824348 7f7e677006c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
2024/01/26-16:46:20.742337 7ff4363ff6c0 Level-0 table #70: 0 bytes OK
|
||||||
|
2024/01/26-16:46:20.748489 7ff4363ff6c0 Delete type=0 #68
|
||||||
|
2024/01/26-16:46:20.748624 7ff4363ff6c0 Manual compaction at level-0 from '!items!56A3sVsiN7KI6a45' @ 72057594037927935 : 1 .. '!items!zJiASbV3QqH2oHb1' @ 0 : 0; will stop at (end)
|
||||||
|
2024/01/26-16:46:20.748645 7ff4363ff6c0 Manual compaction at level-1 from '!items!56A3sVsiN7KI6a45' @ 72057594037927935 : 1 .. '!items!zJiASbV3QqH2oHb1' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -0,0 +1,8 @@
|
|||||||
|
2024/01/26-16:44:01.360668 7ff6b7fff6c0 Recovering log #61
|
||||||
|
2024/01/26-16:44:01.371203 7ff6b7fff6c0 Delete type=3 #59
|
||||||
|
2024/01/26-16:44:01.371247 7ff6b7fff6c0 Delete type=0 #61
|
||||||
|
2024/01/26-16:44:52.248033 7ff4363ff6c0 Level-0 table #66: started
|
||||||
|
2024/01/26-16:44:52.248057 7ff4363ff6c0 Level-0 table #66: 0 bytes OK
|
||||||
|
2024/01/26-16:44:52.254324 7ff4363ff6c0 Delete type=0 #64
|
||||||
|
2024/01/26-16:44:52.254491 7ff4363ff6c0 Manual compaction at level-0 from '!items!56A3sVsiN7KI6a45' @ 72057594037927935 : 1 .. '!items!zJiASbV3QqH2oHb1' @ 0 : 0; will stop at (end)
|
||||||
|
2024/01/26-16:44:52.254513 7ff4363ff6c0 Manual compaction at level-1 from '!items!56A3sVsiN7KI6a45' @ 72057594037927935 : 1 .. '!items!zJiASbV3QqH2oHb1' @ 0 : 0; will stop at (end)
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1 @@
|
|||||||
|
MANIFEST-000157
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
2024/01/26-16:45:12.339363 7ff6ccbfa6c0 Recovering log #155
|
||||||
|
2024/01/26-16:45:12.349148 7ff6ccbfa6c0 Delete type=3 #153
|
||||||
|
2024/01/26-16:45:12.349198 7ff6ccbfa6c0 Delete type=0 #155
|
||||||
|
2024/01/26-16:46:20.762584 7ff4363ff6c0 Level-0 table #160: started
|
||||||
|
2024/01/26-16:46:20.762605 7ff4363ff6c0 Level-0 table #160: 0 bytes OK
|
||||||
|
2024/01/26-16:46:20.769086 7ff4363ff6c0 Delete type=0 #158
|
||||||
|
2024/01/26-16:46:20.775714 7ff4363ff6c0 Manual compaction at level-0 from '!folders!2iZtDz80npHPIwkS' @ 72057594037927935 : 1 .. '!items!zyFR9C1jBTeFzbxg' @ 0 : 0; will stop at (end)
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
2024/01/26-16:44:01.402829 7ff6ccbfa6c0 Recovering log #151
|
||||||
|
2024/01/26-16:44:01.413124 7ff6ccbfa6c0 Delete type=3 #149
|
||||||
|
2024/01/26-16:44:01.413220 7ff6ccbfa6c0 Delete type=0 #151
|
||||||
|
2024/01/26-16:44:52.267682 7ff4363ff6c0 Level-0 table #156: started
|
||||||
|
2024/01/26-16:44:52.267705 7ff4363ff6c0 Level-0 table #156: 0 bytes OK
|
||||||
|
2024/01/26-16:44:52.274231 7ff4363ff6c0 Delete type=0 #154
|
||||||
|
2024/01/26-16:44:52.280751 7ff4363ff6c0 Manual compaction at level-0 from '!folders!2iZtDz80npHPIwkS' @ 72057594037927935 : 1 .. '!items!zyFR9C1jBTeFzbxg' @ 0 : 0; will stop at (end)
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
+1
-1
@@ -1 +1 @@
|
|||||||
MANIFEST-000118
|
MANIFEST-000191
|
||||||
|
|||||||
+8
-8
@@ -1,8 +1,8 @@
|
|||||||
2023/10/23-23:27:50.513819 7fc51bfff6c0 Recovering log #116
|
2024/01/26-16:45:12.261417 7ff6b6ffd6c0 Recovering log #189
|
||||||
2023/10/23-23:27:50.529859 7fc51bfff6c0 Delete type=3 #114
|
2024/01/26-16:45:12.271000 7ff6b6ffd6c0 Delete type=3 #187
|
||||||
2023/10/23-23:27:50.530088 7fc51bfff6c0 Delete type=0 #116
|
2024/01/26-16:45:12.271059 7ff6b6ffd6c0 Delete type=0 #189
|
||||||
2023/10/24-07:04:13.188715 7fc299bff6c0 Level-0 table #121: started
|
2024/01/26-16:46:20.729362 7ff4363ff6c0 Level-0 table #194: started
|
||||||
2023/10/24-07:04:13.188752 7fc299bff6c0 Level-0 table #121: 0 bytes OK
|
2024/01/26-16:46:20.729409 7ff4363ff6c0 Level-0 table #194: 0 bytes OK
|
||||||
2023/10/24-07:04:13.198296 7fc299bff6c0 Delete type=0 #119
|
2024/01/26-16:46:20.735440 7ff4363ff6c0 Delete type=0 #192
|
||||||
2023/10/24-07:04:13.206600 7fc299bff6c0 Manual compaction at level-0 from '!items!0LA7gMBDogO56AZK' @ 72057594037927935 : 1 .. '!items!zwZoHMkWYtMCNx9f' @ 0 : 0; will stop at (end)
|
2024/01/26-16:46:20.748607 7ff4363ff6c0 Manual compaction at level-0 from '!items!0K3CVEKsq67oKiYE' @ 72057594037927935 : 1 .. '!items!zwZoHMkWYtMCNx9f' @ 0 : 0; will stop at (end)
|
||||||
2023/10/24-07:04:13.206646 7fc299bff6c0 Manual compaction at level-1 from '!items!0LA7gMBDogO56AZK' @ 72057594037927935 : 1 .. '!items!zwZoHMkWYtMCNx9f' @ 0 : 0; will stop at (end)
|
2024/01/26-16:46:20.748659 7ff4363ff6c0 Manual compaction at level-1 from '!items!0K3CVEKsq67oKiYE' @ 72057594037927935 : 1 .. '!items!zwZoHMkWYtMCNx9f' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
+8
-8
@@ -1,8 +1,8 @@
|
|||||||
2023/10/23-16:21:18.903797 7fc51affd6c0 Recovering log #112
|
2024/01/26-16:44:01.335406 7ff6b6ffd6c0 Recovering log #184
|
||||||
2023/10/23-16:21:18.914282 7fc51affd6c0 Delete type=3 #110
|
2024/01/26-16:44:01.344619 7ff6b6ffd6c0 Delete type=3 #182
|
||||||
2023/10/23-16:21:18.914341 7fc51affd6c0 Delete type=0 #112
|
2024/01/26-16:44:01.344656 7ff6b6ffd6c0 Delete type=0 #184
|
||||||
2023/10/23-16:38:21.649612 7fc299bff6c0 Level-0 table #117: started
|
2024/01/26-16:44:52.241636 7ff4363ff6c0 Level-0 table #190: started
|
||||||
2023/10/23-16:38:21.649693 7fc299bff6c0 Level-0 table #117: 0 bytes OK
|
2024/01/26-16:44:52.241673 7ff4363ff6c0 Level-0 table #190: 0 bytes OK
|
||||||
2023/10/23-16:38:21.687274 7fc299bff6c0 Delete type=0 #115
|
2024/01/26-16:44:52.247808 7ff4363ff6c0 Delete type=0 #188
|
||||||
2023/10/23-16:38:21.737212 7fc299bff6c0 Manual compaction at level-0 from '!items!0LA7gMBDogO56AZK' @ 72057594037927935 : 1 .. '!items!zwZoHMkWYtMCNx9f' @ 0 : 0; will stop at (end)
|
2024/01/26-16:44:52.254473 7ff4363ff6c0 Manual compaction at level-0 from '!items!0K3CVEKsq67oKiYE' @ 72057594037927935 : 1 .. '!items!zwZoHMkWYtMCNx9f' @ 0 : 0; will stop at (end)
|
||||||
2023/10/23-16:38:21.737295 7fc299bff6c0 Manual compaction at level-1 from '!items!0LA7gMBDogO56AZK' @ 72057594037927935 : 1 .. '!items!zwZoHMkWYtMCNx9f' @ 0 : 0; will stop at (end)
|
2024/01/26-16:44:52.254505 7ff4363ff6c0 Manual compaction at level-1 from '!items!0K3CVEKsq67oKiYE' @ 72057594037927935 : 1 .. '!items!zwZoHMkWYtMCNx9f' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-000118
|
MANIFEST-000190
|
||||||
|
|||||||
+7
-7
@@ -1,7 +1,7 @@
|
|||||||
2023/10/23-23:27:50.426680 7fc51affd6c0 Recovering log #116
|
2024/01/26-16:45:12.200180 7ff6b77fe6c0 Recovering log #188
|
||||||
2023/10/23-23:27:50.441090 7fc51affd6c0 Delete type=3 #114
|
2024/01/26-16:45:12.209905 7ff6b77fe6c0 Delete type=3 #186
|
||||||
2023/10/23-23:27:50.441243 7fc51affd6c0 Delete type=0 #116
|
2024/01/26-16:45:12.209960 7ff6b77fe6c0 Delete type=0 #188
|
||||||
2023/10/24-07:04:13.151969 7fc299bff6c0 Level-0 table #121: started
|
2024/01/26-16:46:20.681529 7ff4363ff6c0 Level-0 table #193: started
|
||||||
2023/10/24-07:04:13.152034 7fc299bff6c0 Level-0 table #121: 0 bytes OK
|
2024/01/26-16:46:20.681551 7ff4363ff6c0 Level-0 table #193: 0 bytes OK
|
||||||
2023/10/24-07:04:13.160843 7fc299bff6c0 Delete type=0 #119
|
2024/01/26-16:46:20.687599 7ff4363ff6c0 Delete type=0 #191
|
||||||
2023/10/24-07:04:13.168906 7fc299bff6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
2024/01/26-16:46:20.687763 7ff4363ff6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
2023/10/23-16:21:18.841422 7fc51bfff6c0 Recovering log #112
|
2024/01/26-16:44:01.272823 7ff6b77fe6c0 Recovering log #184
|
||||||
2023/10/23-16:21:18.851392 7fc51bfff6c0 Delete type=3 #110
|
2024/01/26-16:44:01.282074 7ff6b77fe6c0 Delete type=3 #182
|
||||||
2023/10/23-16:21:18.851494 7fc51bfff6c0 Delete type=0 #112
|
2024/01/26-16:44:01.282112 7ff6b77fe6c0 Delete type=0 #184
|
||||||
2023/10/23-16:38:21.402937 7fc299bff6c0 Level-0 table #117: started
|
2024/01/26-16:44:52.208441 7ff4363ff6c0 Level-0 table #189: started
|
||||||
2023/10/23-16:38:21.402989 7fc299bff6c0 Level-0 table #117: 0 bytes OK
|
2024/01/26-16:44:52.208462 7ff4363ff6c0 Level-0 table #189: 0 bytes OK
|
||||||
2023/10/23-16:38:21.445303 7fc299bff6c0 Delete type=0 #115
|
2024/01/26-16:44:52.214624 7ff4363ff6c0 Delete type=0 #187
|
||||||
2023/10/23-16:38:21.520208 7fc299bff6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
2024/01/26-16:44:52.227817 7ff4363ff6c0 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.
@@ -1 +1 @@
|
|||||||
MANIFEST-000118
|
MANIFEST-000191
|
||||||
|
|||||||
+8
-8
@@ -1,8 +1,8 @@
|
|||||||
2023/10/23-23:27:50.495684 7fc51affd6c0 Recovering log #116
|
2024/01/26-16:45:12.248991 7ff6b77fe6c0 Recovering log #189
|
||||||
2023/10/23-23:27:50.509347 7fc51affd6c0 Delete type=3 #114
|
2024/01/26-16:45:12.258851 7ff6b77fe6c0 Delete type=3 #187
|
||||||
2023/10/23-23:27:50.509455 7fc51affd6c0 Delete type=0 #116
|
2024/01/26-16:45:12.259070 7ff6b77fe6c0 Delete type=0 #189
|
||||||
2023/10/24-07:04:13.198474 7fc299bff6c0 Level-0 table #121: started
|
2024/01/26-16:46:20.702205 7ff4363ff6c0 Level-0 table #194: started
|
||||||
2023/10/24-07:04:13.198516 7fc299bff6c0 Level-0 table #121: 0 bytes OK
|
2024/01/26-16:46:20.702227 7ff4363ff6c0 Level-0 table #194: 0 bytes OK
|
||||||
2023/10/24-07:04:13.206393 7fc299bff6c0 Delete type=0 #119
|
2024/01/26-16:46:20.708847 7ff4363ff6c0 Delete type=0 #192
|
||||||
2023/10/24-07:04:13.206623 7fc299bff6c0 Manual compaction at level-0 from '!items!5YJWuGaagmi1dgbv' @ 72057594037927935 : 1 .. '!items!yo7mOkfbbOogx8na' @ 0 : 0; will stop at (end)
|
2024/01/26-16:46:20.715391 7ff4363ff6c0 Manual compaction at level-0 from '!items!5YJWuGaagmi1dgbv' @ 72057594037927935 : 1 .. '!items!z3j0TW0hqigz6UP5' @ 0 : 0; will stop at (end)
|
||||||
2023/10/24-07:04:13.206665 7fc299bff6c0 Manual compaction at level-1 from '!items!5YJWuGaagmi1dgbv' @ 72057594037927935 : 1 .. '!items!yo7mOkfbbOogx8na' @ 0 : 0; will stop at (end)
|
2024/01/26-16:46:20.715425 7ff4363ff6c0 Manual compaction at level-1 from '!items!5YJWuGaagmi1dgbv' @ 72057594037927935 : 1 .. '!items!z3j0TW0hqigz6UP5' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
2023/10/23-16:21:18.891042 7fc51bfff6c0 Recovering log #112
|
2024/01/26-16:44:01.322558 7ff6b77fe6c0 Recovering log #184
|
||||||
2023/10/23-16:21:18.901616 7fc51bfff6c0 Delete type=3 #110
|
2024/01/26-16:44:01.333054 7ff6b77fe6c0 Delete type=3 #182
|
||||||
2023/10/23-16:21:18.901698 7fc51bfff6c0 Delete type=0 #112
|
2024/01/26-16:44:01.333136 7ff6b77fe6c0 Delete type=0 #184
|
||||||
2023/10/23-16:38:21.606929 7fc299bff6c0 Level-0 table #117: started
|
2024/01/26-16:44:52.234062 7ff4363ff6c0 Level-0 table #190: started
|
||||||
2023/10/23-16:38:21.606959 7fc299bff6c0 Level-0 table #117: 0 bytes OK
|
2024/01/26-16:44:52.234088 7ff4363ff6c0 Level-0 table #190: 0 bytes OK
|
||||||
2023/10/23-16:38:21.649170 7fc299bff6c0 Delete type=0 #115
|
2024/01/26-16:44:52.241500 7ff4363ff6c0 Delete type=0 #188
|
||||||
2023/10/23-16:38:21.649544 7fc299bff6c0 Manual compaction at level-0 from '!items!5YJWuGaagmi1dgbv' @ 72057594037927935 : 1 .. '!items!yo7mOkfbbOogx8na' @ 0 : 0; will stop at (end)
|
2024/01/26-16:44:52.254464 7ff4363ff6c0 Manual compaction at level-0 from '!items!5YJWuGaagmi1dgbv' @ 72057594037927935 : 1 .. '!items!z3j0TW0hqigz6UP5' @ 0 : 0; will stop at (end)
|
||||||
2023/10/23-16:38:21.737175 7fc299bff6c0 Manual compaction at level-1 from '!items!5YJWuGaagmi1dgbv' @ 72057594037927935 : 1 .. '!items!yo7mOkfbbOogx8na' @ 0 : 0; will stop at (end)
|
2024/01/26-16:44:52.254498 7ff4363ff6c0 Manual compaction at level-1 from '!items!5YJWuGaagmi1dgbv' @ 72057594037927935 : 1 .. '!items!z3j0TW0hqigz6UP5' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
Binary file not shown.
@@ -0,0 +1 @@
|
|||||||
|
MANIFEST-000080
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
2024/01/26-16:45:12.352918 7ff6b77fe6c0 Recovering log #78
|
||||||
|
2024/01/26-16:45:12.364063 7ff6b77fe6c0 Delete type=3 #76
|
||||||
|
2024/01/26-16:45:12.364160 7ff6b77fe6c0 Delete type=0 #78
|
||||||
|
2024/01/26-16:46:20.769243 7ff4363ff6c0 Level-0 table #83: started
|
||||||
|
2024/01/26-16:46:20.769284 7ff4363ff6c0 Level-0 table #83: 0 bytes OK
|
||||||
|
2024/01/26-16:46:20.775593 7ff4363ff6c0 Delete type=0 #81
|
||||||
|
2024/01/26-16:46:20.775723 7ff4363ff6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
2024/01/26-16:44:01.418646 7ff6b7fff6c0 Recovering log #74
|
||||||
|
2024/01/26-16:44:01.428162 7ff6b7fff6c0 Delete type=3 #72
|
||||||
|
2024/01/26-16:44:01.428239 7ff6b7fff6c0 Delete type=0 #74
|
||||||
|
2024/01/26-16:44:52.274344 7ff4363ff6c0 Level-0 table #79: started
|
||||||
|
2024/01/26-16:44:52.274375 7ff4363ff6c0 Level-0 table #79: 0 bytes OK
|
||||||
|
2024/01/26-16:44:52.280582 7ff4363ff6c0 Delete type=0 #77
|
||||||
|
2024/01/26-16:44:52.280761 7ff4363ff6c0 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.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user