@remnic/bench 9.3.690 → 9.3.692

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.js +4 -9
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -1160,12 +1160,7 @@ function createAdapterFactory(mode) {
1160
1160
  await waitForAllBenchCoreReplay();
1161
1161
  const orchestrator = state.orchestrator;
1162
1162
  orchestrator.abortDeferredInit();
1163
- if (orchestrator.qmdMaintenanceTimer) {
1164
- clearTimeout(orchestrator.qmdMaintenanceTimer);
1165
- }
1166
- orchestrator.qmdMaintenanceTimer = null;
1167
- orchestrator.qmdMaintenancePending = false;
1168
- orchestrator.qmdMaintenanceInFlight = false;
1163
+ orchestrator.maintenanceScheduler?.dispose();
1169
1164
  await Promise.race([
1170
1165
  orchestrator.deferredReady.catch(() => void 0),
1171
1166
  new Promise(
@@ -1916,9 +1911,9 @@ function describeDrainState(orchestrator) {
1916
1911
  `lcmInFlight=${lcmInFlight}`,
1917
1912
  `extractionProcessing=${view.queueProcessing === true}`,
1918
1913
  `extractionQueueDepth=${extractionQueueDepth}`,
1919
- `consolidationInFlight=${view.consolidationInFlight === true}`,
1920
- `qmdMaintenancePending=${view.qmdMaintenancePending === true}`,
1921
- `qmdMaintenanceInFlight=${view.qmdMaintenanceInFlight === true}`,
1914
+ `consolidationInFlight=${view.maintenanceScheduler?.isConsolidationInFlight() === true}`,
1915
+ `qmdMaintenancePending=${view.maintenanceScheduler?.isQmdMaintenancePending() === true}`,
1916
+ `qmdMaintenanceInFlight=${view.maintenanceScheduler?.isQmdMaintenanceInFlight() === true}`,
1922
1917
  `tierMigrationInFlight=${view.tierMigrationInFlight === true}`
1923
1918
  ].join(", ");
1924
1919
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remnic/bench",
3
- "version": "9.3.690",
3
+ "version": "9.3.692",
4
4
  "description": "Retrieval latency ladder benchmarks + CI regression gates for @remnic/core",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -36,7 +36,7 @@
36
36
  "dependencies": {
37
37
  "hyparquet": "^1.25.7",
38
38
  "yaml": "^2.4.2",
39
- "@remnic/core": "^9.3.690"
39
+ "@remnic/core": "^9.3.692"
40
40
  },
41
41
  "devDependencies": {
42
42
  "tsup": "^8.5.1",