@harperfast/harper-pro 5.0.25 → 5.1.0-beta.1
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.
- package/analytics/profile.ts +4 -0
- package/core/AGENTS.md +92 -6
- package/core/DESIGN.md +24 -0
- package/core/README.md +11 -10
- package/core/agent/agent.ts +203 -0
- package/core/agent/loop.ts +205 -0
- package/core/agent/operations.ts +148 -0
- package/core/agent/session.ts +187 -0
- package/core/agent/tools/fsTools.ts +276 -0
- package/core/agent/tools/httpFetchTool.ts +112 -0
- package/core/agent/tools/scheduleTool.ts +68 -0
- package/core/agent/toolset.ts +43 -0
- package/core/agent/types.ts +85 -0
- package/core/benchmarks/hnsw-search.js +157 -0
- package/core/benchmarks/ycsb/README.md +144 -0
- package/core/benchmarks/ycsb/analyze-profile.mts +120 -0
- package/core/benchmarks/ycsb/app/config.yaml +3 -0
- package/core/benchmarks/ycsb/app/schema.graphql +17 -0
- package/core/benchmarks/ycsb/harness.mts +328 -0
- package/core/benchmarks/ycsb/restClient.mts +120 -0
- package/core/benchmarks/ycsb/run-single-node.mts +97 -0
- package/core/benchmarks/ycsb/to-benchmark-json.mts +58 -0
- package/core/benchmarks/ycsb/workload.mts +499 -0
- package/core/benchmarks/ycsb/workload.test.mts +174 -0
- package/core/bin/{BinObjects.js → BinObjects.ts} +4 -5
- package/core/bin/cliCredentials.ts +133 -0
- package/core/bin/cliOperations.ts +339 -0
- package/core/bin/copyDb.ts +10 -10
- package/core/bin/deployRenderer.ts +196 -0
- package/core/bin/{harper.js → harper.ts} +48 -24
- package/core/bin/{install.js → install.ts} +3 -3
- package/core/bin/lite.ts +2 -0
- package/core/bin/login.ts +168 -0
- package/core/bin/logout.ts +11 -0
- package/core/bin/mcp/client.ts +407 -0
- package/core/bin/mcp/doctor.ts +189 -0
- package/core/bin/mcp/index.ts +80 -0
- package/core/bin/mcp/options.ts +122 -0
- package/core/bin/mcp/printConfig.ts +89 -0
- package/core/bin/multipartBuilder.ts +74 -0
- package/core/bin/{restart.js → restart.ts} +31 -32
- package/core/bin/{run.js → run.ts} +57 -46
- package/core/bin/sseConsumer.ts +126 -0
- package/core/bin/{status.js → status.ts} +10 -10
- package/core/bin/stop.ts +21 -0
- package/core/bin/upgrade.js +6 -6
- package/core/components/Application.ts +144 -18
- package/core/components/ApplicationScope.ts +2 -2
- package/core/components/ComponentV1.ts +2 -2
- package/core/components/EntryHandler.ts +159 -9
- package/core/components/OptionsWatcher.ts +75 -11
- package/core/components/Scope.ts +125 -15
- package/core/components/anthropic/index.ts +547 -0
- package/core/components/bedrock/index.ts +823 -0
- package/core/components/componentLoader.ts +63 -32
- package/core/components/deployLifecycle.ts +161 -0
- package/core/components/deploymentOperations.ts +173 -0
- package/core/components/deploymentRecorder.ts +402 -0
- package/core/components/deriveURLPath.ts +4 -4
- package/core/components/mcp/adapters/fastify.ts +87 -0
- package/core/components/mcp/adapters/harperHttp.ts +103 -0
- package/core/components/mcp/audit.ts +75 -0
- package/core/components/mcp/index.ts +134 -0
- package/core/components/mcp/jsonrpc.ts +134 -0
- package/core/components/mcp/lifecycle.ts +105 -0
- package/core/components/mcp/listChanged.ts +270 -0
- package/core/components/mcp/rateLimit.ts +217 -0
- package/core/components/mcp/resources.ts +593 -0
- package/core/components/mcp/session.ts +151 -0
- package/core/components/mcp/sessionRegistry.ts +140 -0
- package/core/components/mcp/toolRegistry.ts +292 -0
- package/core/components/mcp/tools/application.ts +603 -0
- package/core/components/mcp/tools/operations.ts +283 -0
- package/core/components/mcp/tools/schemas/derive.ts +256 -0
- package/core/components/mcp/tools/schemas/operations.ts +245 -0
- package/core/components/mcp/transport.ts +517 -0
- package/core/components/ollama/index.ts +316 -0
- package/core/components/openai/index.ts +563 -0
- package/core/components/operations.js +211 -60
- package/core/components/operationsValidation.js +3 -3
- package/core/components/packageComponent.ts +97 -29
- package/core/components/requestRestart.ts +17 -2
- package/core/components/status/crossThread.ts +14 -5
- package/core/components/status/errors.ts +1 -1
- package/core/config/RootConfigWatcher.ts +56 -2
- package/core/config/configUtils.js +29 -8
- package/core/config/harperConfigEnvVars.ts +1 -1
- package/core/dataLayer/{CreateAttributeObject.js → CreateAttributeObject.ts} +4 -3
- package/core/dataLayer/{CreateTableObject.js → CreateTableObject.ts} +2 -1
- package/core/dataLayer/{DataLayerObjects.js → DataLayerObjects.ts} +17 -9
- package/core/dataLayer/{DeleteBeforeObject.js → DeleteBeforeObject.ts} +2 -1
- package/core/dataLayer/{DeleteObject.js → DeleteObject.ts} +3 -2
- package/core/dataLayer/{DropAttributeObject.js → DropAttributeObject.ts} +2 -1
- package/core/dataLayer/{GetBackupObject.js → GetBackupObject.ts} +3 -2
- package/core/dataLayer/{InsertObject.js → InsertObject.ts} +3 -2
- package/core/dataLayer/{ReadAuditLogObject.js → ReadAuditLogObject.ts} +3 -2
- package/core/dataLayer/{SQLSearch.js → SQLSearch.ts} +97 -43
- package/core/dataLayer/{SearchByConditionsObject.js → SearchByConditionsObject.ts} +5 -6
- package/core/dataLayer/{SearchByHashObject.js → SearchByHashObject.ts} +2 -1
- package/core/dataLayer/{SearchObject.js → SearchObject.ts} +2 -1
- package/core/dataLayer/{SqlSearchObject.js → SqlSearchObject.ts} +2 -1
- package/core/dataLayer/{UpdateObject.js → UpdateObject.ts} +3 -2
- package/core/dataLayer/{UpsertObject.js → UpsertObject.ts} +3 -2
- package/core/dataLayer/{bulkLoad.js → bulkLoad.ts} +40 -49
- package/core/dataLayer/{delete.js → delete.ts} +21 -26
- package/core/dataLayer/{export.js → export.ts} +22 -26
- package/core/dataLayer/{getBackup.js → getBackup.ts} +7 -9
- package/core/dataLayer/harperBridge/BridgeMethods.ts +102 -0
- package/core/dataLayer/harperBridge/ResourceBridge.ts +27 -26
- package/core/dataLayer/harperBridge/TableSizeObject.ts +1 -0
- package/core/dataLayer/harperBridge/bridgeUtility/insertUpdateValidate.js +4 -4
- package/core/dataLayer/harperBridge/{harperBridge.js → harperBridge.ts} +3 -3
- package/core/dataLayer/harperBridge/lmdbBridge/lmdbMethods/lmdbCreateAttribute.js +8 -6
- package/core/dataLayer/harperBridge/lmdbBridge/lmdbMethods/lmdbCreateRecords.js +4 -4
- package/core/dataLayer/harperBridge/lmdbBridge/lmdbMethods/lmdbCreateSchema.js +1 -1
- package/core/dataLayer/harperBridge/lmdbBridge/lmdbMethods/lmdbCreateTable.js +6 -4
- package/core/dataLayer/harperBridge/lmdbBridge/lmdbMethods/lmdbDeleteAuditLogsBefore.js +5 -4
- package/core/dataLayer/harperBridge/lmdbBridge/lmdbMethods/lmdbDeleteRecords.js +4 -4
- package/core/dataLayer/harperBridge/lmdbBridge/lmdbMethods/lmdbDropAttribute.js +6 -5
- package/core/dataLayer/harperBridge/lmdbBridge/lmdbMethods/lmdbDropSchema.js +5 -4
- package/core/dataLayer/harperBridge/lmdbBridge/lmdbMethods/lmdbDropTable.js +5 -5
- package/core/dataLayer/harperBridge/lmdbBridge/lmdbMethods/lmdbFlush.js +1 -1
- package/core/dataLayer/harperBridge/lmdbBridge/lmdbMethods/lmdbGetBackup.js +3 -3
- package/core/dataLayer/harperBridge/lmdbBridge/lmdbMethods/lmdbGetDataByHash.js +1 -1
- package/core/dataLayer/harperBridge/lmdbBridge/lmdbMethods/lmdbGetDataByValue.js +3 -2
- package/core/dataLayer/harperBridge/lmdbBridge/lmdbMethods/lmdbReadAuditLog.js +5 -5
- package/core/dataLayer/harperBridge/lmdbBridge/lmdbMethods/lmdbSearchByConditions.js +10 -8
- package/core/dataLayer/harperBridge/lmdbBridge/lmdbMethods/lmdbSearchByHash.js +1 -1
- package/core/dataLayer/harperBridge/lmdbBridge/lmdbMethods/lmdbSearchByValue.js +4 -3
- package/core/dataLayer/harperBridge/lmdbBridge/lmdbMethods/lmdbUpdateRecords.js +3 -3
- package/core/dataLayer/harperBridge/lmdbBridge/lmdbMethods/lmdbUpsertRecords.js +6 -5
- package/core/dataLayer/harperBridge/lmdbBridge/lmdbUtility/LMDBCreateAttributeObject.js +2 -1
- package/core/dataLayer/harperBridge/lmdbBridge/lmdbUtility/initializeHashSearch.js +3 -2
- package/core/dataLayer/harperBridge/lmdbBridge/lmdbUtility/initializePaths.js +2 -2
- package/core/dataLayer/harperBridge/lmdbBridge/lmdbUtility/lmdbCheckForNewAttributes.js +5 -4
- package/core/dataLayer/harperBridge/lmdbBridge/lmdbUtility/lmdbCreateTransactionsAuditEnvironment.js +6 -3
- package/core/dataLayer/harperBridge/lmdbBridge/lmdbUtility/lmdbGetTableSize.ts +1 -1
- package/core/dataLayer/harperBridge/lmdbBridge/lmdbUtility/lmdbProcessRows.js +4 -4
- package/core/dataLayer/harperBridge/lmdbBridge/lmdbUtility/lmdbSearch.js +5 -5
- package/core/dataLayer/harperBridge/lmdbBridge/lmdbUtility/lmdbWriteTransaction.js +4 -4
- package/core/dataLayer/{hdbInfoController.js → hdbInfoController.ts} +20 -26
- package/core/dataLayer/{insert.js → insert.ts} +24 -24
- package/core/dataLayer/{readAuditLog.js → readAuditLog.ts} +8 -10
- package/core/dataLayer/{schema.js → schema.ts} +32 -44
- package/core/dataLayer/{schemaDescribe.js → schemaDescribe.ts} +23 -26
- package/core/dataLayer/{search.js → search.ts} +9 -15
- package/core/dataLayer/{transaction.js → transaction.ts} +2 -5
- package/core/dataLayer/{update.js → update.ts} +19 -22
- package/core/index.ts +5 -0
- package/core/json/systemSchema.json +65 -0
- package/core/launchServiceScripts/utility/checkNodeVersion.js +2 -0
- package/core/package-lock.json +9051 -4318
- package/core/resources/DESIGN.md +98 -0
- package/core/resources/DatabaseTransaction.ts +58 -30
- package/core/resources/ErrorResource.ts +2 -1
- package/core/resources/LMDBTransaction.ts +38 -29
- package/core/resources/RecordEncoder.ts +12 -4
- package/core/resources/RequestTarget.ts +2 -0
- package/core/resources/Resource.ts +89 -56
- package/core/resources/ResourceInterface.ts +44 -21
- package/core/resources/Resources.ts +8 -8
- package/core/resources/RocksIndexStore.ts +3 -0
- package/core/resources/RocksTransactionLogStore.ts +47 -28
- package/core/resources/Table.ts +386 -214
- package/core/resources/analytics/metadata.ts +1 -0
- package/core/resources/analytics/read.ts +24 -6
- package/core/resources/analytics/write.ts +240 -17
- package/core/resources/auditStore.ts +28 -19
- package/core/resources/blob.ts +53 -53
- package/core/resources/dataLoader.ts +4 -4
- package/core/resources/databases.ts +190 -71
- package/core/resources/graphql.ts +227 -164
- package/core/resources/indexes/HierarchicalNavigableSmallWorld.ts +294 -65
- package/core/resources/indexes/vector.ts +17 -0
- package/core/resources/loadEnv.ts +21 -17
- package/core/resources/login.ts +5 -3
- package/core/resources/models/Models.ts +304 -0
- package/core/resources/models/TestBackend.ts +83 -0
- package/core/resources/models/agentLoop.ts +895 -0
- package/core/resources/models/analyticsTable.ts +199 -0
- package/core/resources/models/backendHelpers.ts +116 -0
- package/core/resources/models/backendRegistry.ts +66 -0
- package/core/resources/models/bootstrap.ts +135 -0
- package/core/resources/models/embedHook.ts +138 -0
- package/core/resources/models/types.ts +296 -0
- package/core/resources/replayLogs.ts +15 -7
- package/core/resources/roles.ts +62 -67
- package/core/resources/search.ts +355 -135
- package/core/resources/tracked.ts +8 -8
- package/core/resources/transaction.ts +8 -8
- package/core/resources/transactionBroadcast.ts +3 -3
- package/core/security/auth.ts +35 -26
- package/core/security/certificateVerification/crlVerification.ts +11 -4
- package/core/security/{cryptoHash.js → cryptoHash.ts} +3 -8
- package/core/security/data_objects/{PermissionAttributeResponseObject.js → PermissionAttributeResponseObject.ts} +4 -4
- package/core/security/data_objects/{PermissionResponseObject.js → PermissionResponseObject.ts} +12 -11
- package/core/security/data_objects/{PermissionTableResponseObject.js → PermissionTableResponseObject.ts} +6 -4
- package/core/security/{fastifyAuth.js → fastifyAuth.ts} +93 -20
- package/core/security/impersonation.ts +3 -3
- package/core/security/jsLoader.ts +22 -8
- package/core/security/{keys.js → keys.ts} +113 -121
- package/core/security/permissionsTranslator.js +2 -2
- package/core/security/{role.js → role.ts} +26 -33
- package/core/security/tokenAuthentication.ts +34 -7
- package/core/security/user.ts +26 -22
- package/core/server/DESIGN.md +139 -0
- package/core/server/DurableSubscriptionsSession.ts +67 -50
- package/core/server/REST.ts +120 -107
- package/core/server/Server.ts +31 -12
- package/core/server/fastifyRoutes/helpers/getCORSOptions.js +1 -1
- package/core/server/fastifyRoutes/helpers/getHeaderTimeoutConfig.js +1 -1
- package/core/server/fastifyRoutes/helpers/getServerOptions.js +1 -1
- package/core/server/fastifyRoutes.ts +37 -33
- package/core/server/graphqlQuerying.ts +6 -5
- package/core/server/http.ts +517 -26
- package/core/server/itc/serverHandlers.js +75 -14
- package/core/server/jobs/{JobObject.js → JobObject.ts} +13 -6
- package/core/server/jobs/{jobProcess.js → jobProcess.ts} +20 -16
- package/core/server/jobs/{jobRunner.js → jobRunner.ts} +20 -21
- package/core/server/jobs/{jobs.js → jobs.ts} +41 -44
- package/core/server/loadRootComponents.js +1 -1
- package/core/server/middlewareChain.ts +270 -0
- package/core/server/mqtt.ts +35 -26
- package/core/server/nodeName.ts +2 -1
- package/core/server/operationsServer.ts +85 -10
- package/core/server/serverHelpers/Headers.ts +10 -8
- package/core/server/serverHelpers/JSONStream.ts +15 -5
- package/core/server/serverHelpers/Request.ts +370 -13
- package/core/server/serverHelpers/contentTypes.ts +42 -11
- package/core/server/serverHelpers/multipartParser.ts +152 -0
- package/core/server/serverHelpers/progressEmitter.ts +110 -0
- package/core/server/serverHelpers/serverHandlers.js +43 -7
- package/core/server/serverHelpers/serverUtilities.ts +40 -30
- package/core/server/static.ts +9 -6
- package/core/server/status/index.ts +2 -2
- package/core/server/storageReclamation.ts +39 -2
- package/core/server/threads/itc.js +7 -4
- package/core/server/threads/manageThreads.js +100 -26
- package/core/server/threads/socketRouter.ts +12 -275
- package/core/server/threads/threadServer.js +345 -105
- package/core/server/threads/workerProcessGuard.ts +93 -0
- package/core/server/throttle.ts +18 -0
- package/core/sqlTranslator/{SelectValidator.js → SelectValidator.ts} +41 -49
- package/core/sqlTranslator/{alasqlFunctionImporter.js → alasqlFunctionImporter.ts} +5 -5
- package/core/sqlTranslator/{deleteTranslator.js → deleteTranslator.ts} +13 -18
- package/core/sqlTranslator/{index.js → index.ts} +30 -33
- package/core/sqlTranslator/{sql_statement_bucket.js → sql_statement_bucket.ts} +49 -20
- package/core/static/README.md +10 -9
- package/core/system/000004.log +0 -0
- package/core/system/CURRENT +1 -0
- package/core/system/IDENTITY +1 -0
- package/core/system/LOCK +0 -0
- package/core/system/LOG +1351 -0
- package/core/system/MANIFEST-000005 +0 -0
- package/core/system/OPTIONS-000013 +607 -0
- package/core/system/OPTIONS-000015 +734 -0
- package/core/upgrade/{UpgradeObjects.js → UpgradeObjects.ts} +3 -6
- package/core/upgrade/directives/5-2-0.ts +49 -0
- package/core/upgrade/directives/{directivesController.js → directivesController.ts} +16 -16
- package/core/upgrade/{directivesManager.js → directivesManager.ts} +7 -11
- package/core/upgrade/{upgradePrompt.js → upgradePrompt.ts} +8 -14
- package/core/upgrade/{upgradeUtilities.js → upgradeUtilities.ts} +3 -7
- package/core/utility/{OperationFunctionCaller.js → OperationFunctionCaller.ts} +7 -7
- package/core/utility/{assignCmdEnvVariables.js → assignCmdEnvVariables.ts} +6 -8
- package/core/utility/{common_utils.js → common_utils.ts} +113 -139
- package/core/utility/environment/{environmentManager.js → environmentManager.ts} +34 -33
- package/core/utility/environment/systemInformation.ts +18 -4
- package/core/utility/errors/{commonErrors.js → commonErrors.ts} +9 -9
- package/core/utility/errors/{hdbError.js → hdbError.ts} +39 -45
- package/core/utility/expandEnvVar.ts +110 -0
- package/core/utility/functions/geo.js +2 -2
- package/core/utility/functions/sql/alaSQLExtension.js +1 -1
- package/core/utility/globalSchema.ts +30 -0
- package/core/utility/hdbTerms.ts +56 -0
- package/core/utility/install/checkJWTTokensExist.js +1 -1
- package/core/utility/install/{installer.js → installer.ts} +58 -59
- package/core/utility/installation.ts +2 -2
- package/core/utility/lmdb/{DBIDefinition.js → DBIDefinition.ts} +4 -1
- package/core/utility/lmdb/{DeleteRecordsResponseObject.js → DeleteRecordsResponseObject.ts} +2 -1
- package/core/utility/lmdb/{InsertRecordsResponseObject.js → InsertRecordsResponseObject.ts} +2 -1
- package/core/utility/lmdb/OpenDBIObject.ts +43 -0
- package/core/utility/lmdb/{OpenEnvironmentObject.js → OpenEnvironmentObject.ts} +19 -6
- package/core/utility/lmdb/{UpdateRecordsResponseObject.js → UpdateRecordsResponseObject.ts} +2 -1
- package/core/utility/lmdb/{UpsertRecordsResponseObject.js → UpsertRecordsResponseObject.ts} +2 -1
- package/core/utility/lmdb/{cleanLMDBMap.js → cleanLMDBMap.ts} +5 -5
- package/core/utility/lmdb/{commonUtility.js → commonUtility.ts} +13 -21
- package/core/utility/lmdb/{deleteUtility.js → deleteUtility.ts} +8 -12
- package/core/utility/lmdb/{environmentUtility.js → environmentUtility.ts} +43 -52
- package/core/utility/lmdb/{searchCursorFunctions.js → searchCursorFunctions.ts} +12 -26
- package/core/utility/lmdb/{searchUtility.js → searchUtility.ts} +75 -64
- package/core/utility/lmdb/{terms.js → terms.ts} +10 -23
- package/core/utility/lmdb/{writeUtility.js → writeUtility.ts} +37 -22
- package/core/utility/logging/{harper_logger.js → harper_logger.ts} +136 -89
- package/core/utility/logging/{logRotator.js → logRotator.ts} +13 -13
- package/core/utility/logging/logger.ts +1 -1
- package/core/utility/logging/{readLog.js → readLog.ts} +19 -19
- package/core/utility/logging/{transactionLog.js → transactionLog.ts} +10 -14
- package/core/utility/{mount_hdb.js → mount_hdb.ts} +15 -16
- package/core/utility/{npmUtilities.js → npmUtilities.ts} +14 -17
- package/core/utility/{operation_authorization.js → operation_authorization.ts} +173 -124
- package/core/utility/packageUtils.js +7 -16
- package/core/utility/password.ts +1 -1
- package/core/utility/processManagement/processManagement.js +2 -2
- package/core/utility/processManagement/servicesConfig.js +1 -1
- package/core/utility/{signalling.js → signalling.ts} +6 -11
- package/core/utility/watcherFallback.ts +74 -0
- package/core/validation/analyticsValidator.ts +43 -0
- package/core/validation/{bulkDeleteValidator.js → bulkDeleteValidator.ts} +5 -5
- package/core/validation/{check_permissions.js → check_permissions.ts} +3 -3
- package/core/validation/{common_validators.js → common_validators.ts} +12 -24
- package/core/validation/{configValidator.js → configValidator.ts} +114 -18
- package/core/validation/{deleteValidator.js → deleteValidator.ts} +5 -5
- package/core/validation/{fileLoadValidator.js → fileLoadValidator.ts} +12 -19
- package/core/validation/{insertValidator.js → insertValidator.ts} +5 -5
- package/core/validation/{installValidator.js → installValidator.ts} +8 -8
- package/core/validation/{readLogValidator.js → readLogValidator.ts} +10 -10
- package/core/validation/{role_validation.js → role_validation.ts} +26 -32
- package/core/validation/{schemaMetadataValidator.js → schemaMetadataValidator.ts} +5 -11
- package/core/validation/{searchValidator.js → searchValidator.ts} +12 -11
- package/core/validation/statusValidator.ts +1 -1
- package/core/validation/{transactionLogValidator.js → transactionLogValidator.ts} +4 -9
- package/core/validation/{user_validation.js → user_validation.ts} +4 -10
- package/core/validation/{validationWrapper.js → validationWrapper.ts} +3 -9
- package/dist/analytics/profile.js +4 -0
- package/dist/analytics/profile.js.map +1 -1
- package/dist/cloneNode/cloneNode.js +224 -12
- package/dist/cloneNode/cloneNode.js.map +1 -1
- package/dist/core/agent/agent.js +175 -0
- package/dist/core/agent/agent.js.map +1 -0
- package/dist/core/agent/loop.js +176 -0
- package/dist/core/agent/loop.js.map +1 -0
- package/dist/core/agent/operations.js +137 -0
- package/dist/core/agent/operations.js.map +1 -0
- package/dist/core/agent/session.js +182 -0
- package/dist/core/agent/session.js.map +1 -0
- package/dist/core/agent/tools/fsTools.js +286 -0
- package/dist/core/agent/tools/fsTools.js.map +1 -0
- package/dist/core/agent/tools/httpFetchTool.js +116 -0
- package/dist/core/agent/tools/httpFetchTool.js.map +1 -0
- package/dist/core/agent/tools/scheduleTool.js +54 -0
- package/dist/core/agent/tools/scheduleTool.js.map +1 -0
- package/dist/core/agent/toolset.js +33 -0
- package/dist/core/agent/toolset.js.map +1 -0
- package/dist/core/agent/types.js +10 -0
- package/dist/core/agent/types.js.map +1 -0
- package/dist/core/bin/BinObjects.js +6 -3
- package/dist/core/bin/BinObjects.js.map +1 -1
- package/dist/core/bin/cliCredentials.js +130 -0
- package/dist/core/bin/cliCredentials.js.map +1 -0
- package/dist/core/bin/cliOperations.js +254 -40
- package/dist/core/bin/cliOperations.js.map +1 -1
- package/dist/core/bin/copyDb.js +16 -16
- package/dist/core/bin/copyDb.js.map +1 -1
- package/dist/core/bin/deployRenderer.js +185 -0
- package/dist/core/bin/deployRenderer.js.map +1 -0
- package/dist/core/bin/harper.js +92 -31
- package/dist/core/bin/harper.js.map +1 -1
- package/dist/core/bin/install.js +41 -4
- package/dist/core/bin/install.js.map +1 -1
- package/dist/core/bin/lite.js +3 -4
- package/dist/core/bin/lite.js.map +1 -1
- package/dist/core/bin/login.js +158 -0
- package/dist/core/bin/login.js.map +1 -0
- package/dist/core/bin/logout.js +16 -0
- package/dist/core/bin/logout.js.map +1 -0
- package/dist/core/bin/mcp/client.js +395 -0
- package/dist/core/bin/mcp/client.js.map +1 -0
- package/dist/core/bin/mcp/doctor.js +193 -0
- package/dist/core/bin/mcp/doctor.js.map +1 -0
- package/dist/core/bin/mcp/index.js +81 -0
- package/dist/core/bin/mcp/index.js.map +1 -0
- package/dist/core/bin/mcp/options.js +113 -0
- package/dist/core/bin/mcp/options.js.map +1 -0
- package/dist/core/bin/mcp/printConfig.js +85 -0
- package/dist/core/bin/mcp/printConfig.js.map +1 -0
- package/dist/core/bin/multipartBuilder.js +55 -0
- package/dist/core/bin/multipartBuilder.js.map +1 -0
- package/dist/core/bin/restart.js +85 -48
- package/dist/core/bin/restart.js.map +1 -1
- package/dist/core/bin/run.js +123 -77
- package/dist/core/bin/run.js.map +1 -1
- package/dist/core/bin/sseConsumer.js +127 -0
- package/dist/core/bin/sseConsumer.js.map +1 -0
- package/dist/core/bin/status.js +48 -11
- package/dist/core/bin/status.js.map +1 -1
- package/dist/core/bin/stop.js +44 -7
- package/dist/core/bin/stop.js.map +1 -1
- package/dist/core/bin/upgrade.js +6 -6
- package/dist/core/components/Application.js +134 -28
- package/dist/core/components/Application.js.map +1 -1
- package/dist/core/components/ApplicationScope.js +2 -2
- package/dist/core/components/ComponentV1.js +5 -5
- package/dist/core/components/ComponentV1.js.map +1 -1
- package/dist/core/components/EntryHandler.js +153 -13
- package/dist/core/components/EntryHandler.js.map +1 -1
- package/dist/core/components/OptionsWatcher.js +72 -10
- package/dist/core/components/OptionsWatcher.js.map +1 -1
- package/dist/core/components/Scope.js +105 -9
- package/dist/core/components/Scope.js.map +1 -1
- package/dist/core/components/anthropic/index.js +428 -0
- package/dist/core/components/anthropic/index.js.map +1 -0
- package/dist/core/components/bedrock/index.js +734 -0
- package/dist/core/components/bedrock/index.js.map +1 -0
- package/dist/core/components/componentLoader.js +63 -38
- package/dist/core/components/componentLoader.js.map +1 -1
- package/dist/core/components/deployLifecycle.js +156 -0
- package/dist/core/components/deployLifecycle.js.map +1 -0
- package/dist/core/components/deploymentOperations.js +185 -0
- package/dist/core/components/deploymentOperations.js.map +1 -0
- package/dist/core/components/deploymentRecorder.js +401 -0
- package/dist/core/components/deploymentRecorder.js.map +1 -0
- package/dist/core/components/deriveURLPath.js +2 -2
- package/dist/core/components/deriveURLPath.js.map +1 -1
- package/dist/core/components/mcp/adapters/fastify.js +66 -0
- package/dist/core/components/mcp/adapters/fastify.js.map +1 -0
- package/dist/core/components/mcp/adapters/harperHttp.js +78 -0
- package/dist/core/components/mcp/adapters/harperHttp.js.map +1 -0
- package/dist/core/components/mcp/audit.js +73 -0
- package/dist/core/components/mcp/audit.js.map +1 -0
- package/dist/core/components/mcp/index.js +109 -0
- package/dist/core/components/mcp/index.js.map +1 -0
- package/dist/core/components/mcp/jsonrpc.js +93 -0
- package/dist/core/components/mcp/jsonrpc.js.map +1 -0
- package/dist/core/components/mcp/lifecycle.js +79 -0
- package/dist/core/components/mcp/lifecycle.js.map +1 -0
- package/dist/core/components/mcp/listChanged.js +257 -0
- package/dist/core/components/mcp/listChanged.js.map +1 -0
- package/dist/core/components/mcp/rateLimit.js +226 -0
- package/dist/core/components/mcp/rateLimit.js.map +1 -0
- package/dist/core/components/mcp/resources.js +515 -0
- package/dist/core/components/mcp/resources.js.map +1 -0
- package/dist/core/components/mcp/session.js +170 -0
- package/dist/core/components/mcp/session.js.map +1 -0
- package/dist/core/components/mcp/sessionRegistry.js +124 -0
- package/dist/core/components/mcp/sessionRegistry.js.map +1 -0
- package/dist/core/components/mcp/toolRegistry.js +176 -0
- package/dist/core/components/mcp/toolRegistry.js.map +1 -0
- package/dist/core/components/mcp/tools/application.js +549 -0
- package/dist/core/components/mcp/tools/application.js.map +1 -0
- package/dist/core/components/mcp/tools/operations.js +303 -0
- package/dist/core/components/mcp/tools/operations.js.map +1 -0
- package/dist/core/components/mcp/tools/schemas/derive.js +216 -0
- package/dist/core/components/mcp/tools/schemas/derive.js.map +1 -0
- package/dist/core/components/mcp/tools/schemas/operations.js +243 -0
- package/dist/core/components/mcp/tools/schemas/operations.js.map +1 -0
- package/dist/core/components/mcp/transport.js +467 -0
- package/dist/core/components/mcp/transport.js.map +1 -0
- package/dist/core/components/ollama/index.js +239 -0
- package/dist/core/components/ollama/index.js.map +1 -0
- package/dist/core/components/openai/index.js +475 -0
- package/dist/core/components/openai/index.js.map +1 -0
- package/dist/core/components/operations.js +198 -52
- package/dist/core/components/operations.js.map +1 -1
- package/dist/core/components/operationsValidation.js +3 -3
- package/dist/core/components/packageComponent.js +87 -26
- package/dist/core/components/packageComponent.js.map +1 -1
- package/dist/core/components/requestRestart.js +12 -1
- package/dist/core/components/requestRestart.js.map +1 -1
- package/dist/core/components/status/crossThread.js +12 -5
- package/dist/core/components/status/crossThread.js.map +1 -1
- package/dist/core/components/status/errors.js +7 -7
- package/dist/core/config/RootConfigWatcher.js +52 -1
- package/dist/core/config/RootConfigWatcher.js.map +1 -1
- package/dist/core/config/configUtils.js +31 -8
- package/dist/core/config/configUtils.js.map +1 -1
- package/dist/core/config/harperConfigEnvVars.js +1 -1
- package/dist/core/config/harperConfigEnvVars.js.map +1 -1
- package/dist/core/dataLayer/CreateAttributeObject.js +4 -3
- package/dist/core/dataLayer/CreateAttributeObject.js.map +1 -1
- package/dist/core/dataLayer/CreateTableObject.js +2 -1
- package/dist/core/dataLayer/CreateTableObject.js.map +1 -1
- package/dist/core/dataLayer/DataLayerObjects.js +19 -5
- package/dist/core/dataLayer/DataLayerObjects.js.map +1 -1
- package/dist/core/dataLayer/DeleteBeforeObject.js +2 -1
- package/dist/core/dataLayer/DeleteBeforeObject.js.map +1 -1
- package/dist/core/dataLayer/DeleteObject.js +4 -3
- package/dist/core/dataLayer/DeleteObject.js.map +1 -1
- package/dist/core/dataLayer/DropAttributeObject.js +2 -1
- package/dist/core/dataLayer/DropAttributeObject.js.map +1 -1
- package/dist/core/dataLayer/GetBackupObject.js +4 -3
- package/dist/core/dataLayer/GetBackupObject.js.map +1 -1
- package/dist/core/dataLayer/InsertObject.js +4 -3
- package/dist/core/dataLayer/InsertObject.js.map +1 -1
- package/dist/core/dataLayer/ReadAuditLogObject.js +4 -3
- package/dist/core/dataLayer/ReadAuditLogObject.js.map +1 -1
- package/dist/core/dataLayer/SQLSearch.js +140 -78
- package/dist/core/dataLayer/SQLSearch.js.map +1 -1
- package/dist/core/dataLayer/SearchByConditionsObject.js +5 -7
- package/dist/core/dataLayer/SearchByConditionsObject.js.map +1 -1
- package/dist/core/dataLayer/SearchByHashObject.js +2 -1
- package/dist/core/dataLayer/SearchByHashObject.js.map +1 -1
- package/dist/core/dataLayer/SearchObject.js +2 -1
- package/dist/core/dataLayer/SearchObject.js.map +1 -1
- package/dist/core/dataLayer/SqlSearchObject.js +2 -1
- package/dist/core/dataLayer/SqlSearchObject.js.map +1 -1
- package/dist/core/dataLayer/UpdateObject.js +4 -3
- package/dist/core/dataLayer/UpdateObject.js.map +1 -1
- package/dist/core/dataLayer/UpsertObject.js +4 -3
- package/dist/core/dataLayer/UpsertObject.js.map +1 -1
- package/dist/core/dataLayer/bulkLoad.js +122 -88
- package/dist/core/dataLayer/bulkLoad.js.map +1 -1
- package/dist/core/dataLayer/delete.js +74 -39
- package/dist/core/dataLayer/delete.js.map +1 -1
- package/dist/core/dataLayer/export.js +90 -55
- package/dist/core/dataLayer/export.js.map +1 -1
- package/dist/core/dataLayer/getBackup.js +43 -11
- package/dist/core/dataLayer/getBackup.js.map +1 -1
- package/dist/core/dataLayer/harperBridge/BridgeMethods.js +41 -20
- package/dist/core/dataLayer/harperBridge/BridgeMethods.js.map +1 -1
- package/dist/core/dataLayer/harperBridge/ResourceBridge.js +26 -25
- package/dist/core/dataLayer/harperBridge/ResourceBridge.js.map +1 -1
- package/dist/core/dataLayer/harperBridge/TableSizeObject.js.map +1 -1
- package/dist/core/dataLayer/harperBridge/bridgeUtility/insertUpdateValidate.js +4 -4
- package/dist/core/dataLayer/harperBridge/harperBridge.js +38 -4
- package/dist/core/dataLayer/harperBridge/harperBridge.js.map +1 -1
- package/dist/core/dataLayer/harperBridge/lmdbBridge/lmdbMethods/lmdbCreateAttribute.js +7 -6
- package/dist/core/dataLayer/harperBridge/lmdbBridge/lmdbMethods/lmdbCreateAttribute.js.map +1 -1
- package/dist/core/dataLayer/harperBridge/lmdbBridge/lmdbMethods/lmdbCreateRecords.js +4 -4
- package/dist/core/dataLayer/harperBridge/lmdbBridge/lmdbMethods/lmdbCreateRecords.js.map +1 -1
- package/dist/core/dataLayer/harperBridge/lmdbBridge/lmdbMethods/lmdbCreateSchema.js +1 -1
- package/dist/core/dataLayer/harperBridge/lmdbBridge/lmdbMethods/lmdbCreateSchema.js.map +1 -1
- package/dist/core/dataLayer/harperBridge/lmdbBridge/lmdbMethods/lmdbCreateTable.js +5 -4
- package/dist/core/dataLayer/harperBridge/lmdbBridge/lmdbMethods/lmdbCreateTable.js.map +1 -1
- package/dist/core/dataLayer/harperBridge/lmdbBridge/lmdbMethods/lmdbDeleteAuditLogsBefore.js +4 -4
- package/dist/core/dataLayer/harperBridge/lmdbBridge/lmdbMethods/lmdbDeleteAuditLogsBefore.js.map +1 -1
- package/dist/core/dataLayer/harperBridge/lmdbBridge/lmdbMethods/lmdbDeleteRecords.js +4 -4
- package/dist/core/dataLayer/harperBridge/lmdbBridge/lmdbMethods/lmdbDropAttribute.js +5 -5
- package/dist/core/dataLayer/harperBridge/lmdbBridge/lmdbMethods/lmdbDropAttribute.js.map +1 -1
- package/dist/core/dataLayer/harperBridge/lmdbBridge/lmdbMethods/lmdbDropSchema.js +4 -4
- package/dist/core/dataLayer/harperBridge/lmdbBridge/lmdbMethods/lmdbDropSchema.js.map +1 -1
- package/dist/core/dataLayer/harperBridge/lmdbBridge/lmdbMethods/lmdbDropTable.js +5 -5
- package/dist/core/dataLayer/harperBridge/lmdbBridge/lmdbMethods/lmdbDropTable.js.map +1 -1
- package/dist/core/dataLayer/harperBridge/lmdbBridge/lmdbMethods/lmdbFlush.js +1 -1
- package/dist/core/dataLayer/harperBridge/lmdbBridge/lmdbMethods/lmdbGetBackup.js +3 -3
- package/dist/core/dataLayer/harperBridge/lmdbBridge/lmdbMethods/lmdbGetDataByHash.js +1 -1
- package/dist/core/dataLayer/harperBridge/lmdbBridge/lmdbMethods/lmdbGetDataByValue.js +2 -2
- package/dist/core/dataLayer/harperBridge/lmdbBridge/lmdbMethods/lmdbGetDataByValue.js.map +1 -1
- package/dist/core/dataLayer/harperBridge/lmdbBridge/lmdbMethods/lmdbReadAuditLog.js +5 -5
- package/dist/core/dataLayer/harperBridge/lmdbBridge/lmdbMethods/lmdbSearchByConditions.js +8 -8
- package/dist/core/dataLayer/harperBridge/lmdbBridge/lmdbMethods/lmdbSearchByConditions.js.map +1 -1
- package/dist/core/dataLayer/harperBridge/lmdbBridge/lmdbMethods/lmdbSearchByHash.js +1 -1
- package/dist/core/dataLayer/harperBridge/lmdbBridge/lmdbMethods/lmdbSearchByValue.js +3 -3
- package/dist/core/dataLayer/harperBridge/lmdbBridge/lmdbMethods/lmdbSearchByValue.js.map +1 -1
- package/dist/core/dataLayer/harperBridge/lmdbBridge/lmdbMethods/lmdbUpdateRecords.js +3 -3
- package/dist/core/dataLayer/harperBridge/lmdbBridge/lmdbMethods/lmdbUpsertRecords.js +5 -5
- package/dist/core/dataLayer/harperBridge/lmdbBridge/lmdbMethods/lmdbUpsertRecords.js.map +1 -1
- package/dist/core/dataLayer/harperBridge/lmdbBridge/lmdbUtility/LMDBCreateAttributeObject.js +1 -1
- package/dist/core/dataLayer/harperBridge/lmdbBridge/lmdbUtility/LMDBCreateAttributeObject.js.map +1 -1
- package/dist/core/dataLayer/harperBridge/lmdbBridge/lmdbUtility/initializeHashSearch.js +2 -2
- package/dist/core/dataLayer/harperBridge/lmdbBridge/lmdbUtility/initializeHashSearch.js.map +1 -1
- package/dist/core/dataLayer/harperBridge/lmdbBridge/lmdbUtility/initializePaths.js +2 -2
- package/dist/core/dataLayer/harperBridge/lmdbBridge/lmdbUtility/lmdbCheckForNewAttributes.js +4 -4
- package/dist/core/dataLayer/harperBridge/lmdbBridge/lmdbUtility/lmdbCheckForNewAttributes.js.map +1 -1
- package/dist/core/dataLayer/harperBridge/lmdbBridge/lmdbUtility/lmdbCreateTransactionsAuditEnvironment.js +5 -3
- package/dist/core/dataLayer/harperBridge/lmdbBridge/lmdbUtility/lmdbCreateTransactionsAuditEnvironment.js.map +1 -1
- package/dist/core/dataLayer/harperBridge/lmdbBridge/lmdbUtility/lmdbGetTableSize.js +2 -2
- package/dist/core/dataLayer/harperBridge/lmdbBridge/lmdbUtility/lmdbProcessRows.js +4 -4
- package/dist/core/dataLayer/harperBridge/lmdbBridge/lmdbUtility/lmdbProcessRows.js.map +1 -1
- package/dist/core/dataLayer/harperBridge/lmdbBridge/lmdbUtility/lmdbSearch.js +5 -5
- package/dist/core/dataLayer/harperBridge/lmdbBridge/lmdbUtility/lmdbWriteTransaction.js +4 -4
- package/dist/core/dataLayer/hdbInfoController.js +66 -31
- package/dist/core/dataLayer/hdbInfoController.js.map +1 -1
- package/dist/core/dataLayer/insert.js +63 -28
- package/dist/core/dataLayer/insert.js.map +1 -1
- package/dist/core/dataLayer/readAuditLog.js +45 -13
- package/dist/core/dataLayer/readAuditLog.js.map +1 -1
- package/dist/core/dataLayer/schema.js +124 -89
- package/dist/core/dataLayer/schema.js.map +1 -1
- package/dist/core/dataLayer/schemaDescribe.js +78 -41
- package/dist/core/dataLayer/schemaDescribe.js.map +1 -1
- package/dist/core/dataLayer/search.js +12 -13
- package/dist/core/dataLayer/search.js.map +1 -1
- package/dist/core/dataLayer/transaction.js +3 -4
- package/dist/core/dataLayer/transaction.js.map +1 -1
- package/dist/core/dataLayer/update.js +53 -18
- package/dist/core/dataLayer/update.js.map +1 -1
- package/dist/core/globals.js +1 -0
- package/dist/core/globals.js.map +1 -1
- package/dist/core/index.js +4 -1
- package/dist/core/index.js.map +1 -1
- package/dist/core/json/systemSchema.json +65 -0
- package/dist/core/launchServiceScripts/utility/checkNodeVersion.js +3 -0
- package/dist/core/launchServiceScripts/utility/checkNodeVersion.js.map +1 -1
- package/dist/core/resources/DatabaseTransaction.js +39 -15
- package/dist/core/resources/DatabaseTransaction.js.map +1 -1
- package/dist/core/resources/ErrorResource.js +3 -1
- package/dist/core/resources/ErrorResource.js.map +1 -1
- package/dist/core/resources/LMDBTransaction.js +18 -7
- package/dist/core/resources/LMDBTransaction.js.map +1 -1
- package/dist/core/resources/RecordEncoder.js +5 -2
- package/dist/core/resources/RecordEncoder.js.map +1 -1
- package/dist/core/resources/RequestTarget.js.map +1 -1
- package/dist/core/resources/Resource.js +37 -10
- package/dist/core/resources/Resource.js.map +1 -1
- package/dist/core/resources/ResourceInterface.js +20 -0
- package/dist/core/resources/ResourceInterface.js.map +1 -1
- package/dist/core/resources/Resources.js +7 -6
- package/dist/core/resources/Resources.js.map +1 -1
- package/dist/core/resources/RocksIndexStore.js +3 -0
- package/dist/core/resources/RocksIndexStore.js.map +1 -1
- package/dist/core/resources/RocksTransactionLogStore.js +46 -27
- package/dist/core/resources/RocksTransactionLogStore.js.map +1 -1
- package/dist/core/resources/Table.js +267 -107
- package/dist/core/resources/Table.js.map +1 -1
- package/dist/core/resources/analytics/metadata.js +1 -0
- package/dist/core/resources/analytics/metadata.js.map +1 -1
- package/dist/core/resources/analytics/read.js +16 -5
- package/dist/core/resources/analytics/read.js.map +1 -1
- package/dist/core/resources/analytics/write.js +232 -20
- package/dist/core/resources/analytics/write.js.map +1 -1
- package/dist/core/resources/auditStore.js +13 -8
- package/dist/core/resources/auditStore.js.map +1 -1
- package/dist/core/resources/blob.js +8 -8
- package/dist/core/resources/blob.js.map +1 -1
- package/dist/core/resources/dataLoader.js +13 -13
- package/dist/core/resources/databases.js +160 -52
- package/dist/core/resources/databases.js.map +1 -1
- package/dist/core/resources/graphql.js +224 -174
- package/dist/core/resources/graphql.js.map +1 -1
- package/dist/core/resources/indexes/HierarchicalNavigableSmallWorld.js +308 -59
- package/dist/core/resources/indexes/HierarchicalNavigableSmallWorld.js.map +1 -1
- package/dist/core/resources/indexes/vector.js +14 -0
- package/dist/core/resources/indexes/vector.js.map +1 -1
- package/dist/core/resources/loadEnv.js +21 -18
- package/dist/core/resources/loadEnv.js.map +1 -1
- package/dist/core/resources/login.js +5 -4
- package/dist/core/resources/login.js.map +1 -1
- package/dist/core/resources/models/Models.js +265 -0
- package/dist/core/resources/models/Models.js.map +1 -0
- package/dist/core/resources/models/TestBackend.js +71 -0
- package/dist/core/resources/models/TestBackend.js.map +1 -0
- package/dist/core/resources/models/agentLoop.js +746 -0
- package/dist/core/resources/models/agentLoop.js.map +1 -0
- package/dist/core/resources/models/analyticsTable.js +166 -0
- package/dist/core/resources/models/analyticsTable.js.map +1 -0
- package/dist/core/resources/models/backendHelpers.js +109 -0
- package/dist/core/resources/models/backendHelpers.js.map +1 -0
- package/dist/core/resources/models/backendRegistry.js +54 -0
- package/dist/core/resources/models/backendRegistry.js.map +1 -0
- package/dist/core/resources/models/bootstrap.js +112 -0
- package/dist/core/resources/models/bootstrap.js.map +1 -0
- package/dist/core/resources/models/embedHook.js +127 -0
- package/dist/core/resources/models/embedHook.js.map +1 -0
- package/dist/core/resources/models/types.js +11 -0
- package/dist/core/resources/models/types.js.map +1 -0
- package/dist/core/resources/replayLogs.js +7 -1
- package/dist/core/resources/replayLogs.js.map +1 -1
- package/dist/core/resources/roles.js +67 -71
- package/dist/core/resources/roles.js.map +1 -1
- package/dist/core/resources/search.js +349 -140
- package/dist/core/resources/search.js.map +1 -1
- package/dist/core/resources/tracked.js +14 -14
- package/dist/core/resources/tracked.js.map +1 -1
- package/dist/core/resources/transaction.js +1 -1
- package/dist/core/resources/transaction.js.map +1 -1
- package/dist/core/resources/transactionBroadcast.js.map +1 -1
- package/dist/core/security/auth.js +34 -25
- package/dist/core/security/auth.js.map +1 -1
- package/dist/core/security/certificateVerification/crlVerification.js +7 -1
- package/dist/core/security/certificateVerification/crlVerification.js.map +1 -1
- package/dist/core/security/cryptoHash.js +37 -5
- package/dist/core/security/cryptoHash.js.map +1 -1
- package/dist/core/security/data_objects/PermissionAttributeResponseObject.js +4 -1
- package/dist/core/security/data_objects/PermissionAttributeResponseObject.js.map +1 -1
- package/dist/core/security/data_objects/PermissionResponseObject.js +15 -8
- package/dist/core/security/data_objects/PermissionResponseObject.js.map +1 -1
- package/dist/core/security/data_objects/PermissionTableResponseObject.js +6 -1
- package/dist/core/security/data_objects/PermissionTableResponseObject.js.map +1 -1
- package/dist/core/security/fastifyAuth.js +131 -22
- package/dist/core/security/fastifyAuth.js.map +1 -1
- package/dist/core/security/impersonation.js +15 -15
- package/dist/core/security/jsLoader.js +18 -5
- package/dist/core/security/jsLoader.js.map +1 -1
- package/dist/core/security/keys.js +160 -114
- package/dist/core/security/keys.js.map +1 -1
- package/dist/core/security/permissionsTranslator.js +2 -2
- package/dist/core/security/role.js +70 -35
- package/dist/core/security/role.js.map +1 -1
- package/dist/core/security/tokenAuthentication.js +57 -27
- package/dist/core/security/tokenAuthentication.js.map +1 -1
- package/dist/core/security/user.js +74 -38
- package/dist/core/security/user.js.map +1 -1
- package/dist/core/server/DurableSubscriptionsSession.js +71 -55
- package/dist/core/server/DurableSubscriptionsSession.js.map +1 -1
- package/dist/core/server/REST.js +17 -16
- package/dist/core/server/REST.js.map +1 -1
- package/dist/core/server/Server.js +1 -1
- package/dist/core/server/Server.js.map +1 -1
- package/dist/core/server/fastifyRoutes/helpers/getCORSOptions.js +1 -1
- package/dist/core/server/fastifyRoutes/helpers/getHeaderTimeoutConfig.js +1 -1
- package/dist/core/server/fastifyRoutes/helpers/getServerOptions.js +1 -1
- package/dist/core/server/fastifyRoutes.js +34 -30
- package/dist/core/server/fastifyRoutes.js.map +1 -1
- package/dist/core/server/graphqlQuerying.js +8 -7
- package/dist/core/server/graphqlQuerying.js.map +1 -1
- package/dist/core/server/http.js +523 -47
- package/dist/core/server/http.js.map +1 -1
- package/dist/core/server/itc/serverHandlers.js +66 -15
- package/dist/core/server/itc/serverHandlers.js.map +1 -1
- package/dist/core/server/jobs/JobObject.js +53 -7
- package/dist/core/server/jobs/JobObject.js.map +1 -1
- package/dist/core/server/jobs/jobProcess.js +64 -24
- package/dist/core/server/jobs/jobProcess.js.map +1 -1
- package/dist/core/server/jobs/jobRunner.js +68 -30
- package/dist/core/server/jobs/jobRunner.js.map +1 -1
- package/dist/core/server/jobs/jobs.js +93 -61
- package/dist/core/server/jobs/jobs.js.map +1 -1
- package/dist/core/server/loadRootComponents.js +1 -1
- package/dist/core/server/middlewareChain.js +252 -0
- package/dist/core/server/middlewareChain.js.map +1 -0
- package/dist/core/server/mqtt.js +22 -17
- package/dist/core/server/mqtt.js.map +1 -1
- package/dist/core/server/nodeName.js +44 -13
- package/dist/core/server/nodeName.js.map +1 -1
- package/dist/core/server/operationsServer.js +106 -33
- package/dist/core/server/operationsServer.js.map +1 -1
- package/dist/core/server/serverHelpers/Headers.js +2 -0
- package/dist/core/server/serverHelpers/Headers.js.map +1 -1
- package/dist/core/server/serverHelpers/JSONStream.js +12 -3
- package/dist/core/server/serverHelpers/JSONStream.js.map +1 -1
- package/dist/core/server/serverHelpers/Request.js +370 -9
- package/dist/core/server/serverHelpers/Request.js.map +1 -1
- package/dist/core/server/serverHelpers/contentTypes.js +36 -7
- package/dist/core/server/serverHelpers/contentTypes.js.map +1 -1
- package/dist/core/server/serverHelpers/multipartParser.js +142 -0
- package/dist/core/server/serverHelpers/multipartParser.js.map +1 -0
- package/dist/core/server/serverHelpers/progressEmitter.js +103 -0
- package/dist/core/server/serverHelpers/progressEmitter.js.map +1 -0
- package/dist/core/server/serverHelpers/serverHandlers.js +38 -7
- package/dist/core/server/serverHelpers/serverHandlers.js.map +1 -1
- package/dist/core/server/serverHelpers/serverUtilities.js +97 -93
- package/dist/core/server/serverHelpers/serverUtilities.js.map +1 -1
- package/dist/core/server/static.js +8 -5
- package/dist/core/server/static.js.map +1 -1
- package/dist/core/server/status/index.js +3 -3
- package/dist/core/server/storageReclamation.js +68 -9
- package/dist/core/server/storageReclamation.js.map +1 -1
- package/dist/core/server/threads/itc.js +7 -4
- package/dist/core/server/threads/itc.js.map +1 -1
- package/dist/core/server/threads/manageThreads.js +110 -26
- package/dist/core/server/threads/manageThreads.js.map +1 -1
- package/dist/core/server/threads/socketRouter.js +8 -271
- package/dist/core/server/threads/socketRouter.js.map +1 -1
- package/dist/core/server/threads/threadServer.js +360 -118
- package/dist/core/server/threads/threadServer.js.map +1 -1
- package/dist/core/server/threads/workerProcessGuard.js +114 -0
- package/dist/core/server/threads/workerProcessGuard.js.map +1 -0
- package/dist/core/server/throttle.js +17 -0
- package/dist/core/server/throttle.js.map +1 -1
- package/dist/core/sqlTranslator/SelectValidator.js +86 -47
- package/dist/core/sqlTranslator/SelectValidator.js.map +1 -1
- package/dist/core/sqlTranslator/alasqlFunctionImporter.js +40 -3
- package/dist/core/sqlTranslator/alasqlFunctionImporter.js.map +1 -1
- package/dist/core/sqlTranslator/deleteTranslator.js +48 -14
- package/dist/core/sqlTranslator/deleteTranslator.js.map +1 -1
- package/dist/core/sqlTranslator/index.js +69 -30
- package/dist/core/sqlTranslator/index.js.map +1 -1
- package/dist/core/sqlTranslator/sql_statement_bucket.js +55 -13
- package/dist/core/sqlTranslator/sql_statement_bucket.js.map +1 -1
- package/dist/core/upgrade/UpgradeObjects.js +37 -4
- package/dist/core/upgrade/UpgradeObjects.js.map +1 -1
- package/dist/core/upgrade/directives/5-2-0.js +77 -0
- package/dist/core/upgrade/directives/5-2-0.js.map +1 -0
- package/dist/core/upgrade/directives/directivesController.js +52 -11
- package/dist/core/upgrade/directives/directivesController.js.map +1 -1
- package/dist/core/upgrade/directivesManager.js +53 -18
- package/dist/core/upgrade/directivesManager.js.map +1 -1
- package/dist/core/upgrade/upgradePrompt.js +65 -30
- package/dist/core/upgrade/upgradePrompt.js.map +1 -1
- package/dist/core/upgrade/upgradeUtilities.js +37 -5
- package/dist/core/upgrade/upgradeUtilities.js.map +1 -1
- package/dist/core/utility/OperationFunctionCaller.js +45 -10
- package/dist/core/utility/OperationFunctionCaller.js.map +1 -1
- package/dist/core/utility/assignCmdEnvVariables.js +8 -4
- package/dist/core/utility/assignCmdEnvVariables.js.map +1 -1
- package/dist/core/utility/common_utils.js +140 -79
- package/dist/core/utility/common_utils.js.map +1 -1
- package/dist/core/utility/environment/environmentManager.js +75 -29
- package/dist/core/utility/environment/environmentManager.js.map +1 -1
- package/dist/core/utility/environment/systemInformation.js +27 -16
- package/dist/core/utility/environment/systemInformation.js.map +1 -1
- package/dist/core/utility/errors/commonErrors.js +49 -18
- package/dist/core/utility/errors/commonErrors.js.map +1 -1
- package/dist/core/utility/errors/hdbError.js +65 -26
- package/dist/core/utility/errors/hdbError.js.map +1 -1
- package/dist/core/utility/expandEnvVar.js +113 -0
- package/dist/core/utility/expandEnvVar.js.map +1 -0
- package/dist/core/utility/functions/geo.js +2 -2
- package/dist/core/utility/functions/sql/alaSQLExtension.js +1 -1
- package/dist/core/utility/globalSchema.js +14 -11
- package/dist/core/utility/globalSchema.js.map +1 -1
- package/dist/core/utility/hdbTerms.js +56 -0
- package/dist/core/utility/hdbTerms.js.map +1 -1
- package/dist/core/utility/install/checkJWTTokensExist.js +1 -1
- package/dist/core/utility/install/installer.js +106 -70
- package/dist/core/utility/install/installer.js.map +1 -1
- package/dist/core/utility/installation.js +3 -3
- package/dist/core/utility/lmdb/DBIDefinition.js +5 -1
- package/dist/core/utility/lmdb/DBIDefinition.js.map +1 -1
- package/dist/core/utility/lmdb/DeleteRecordsResponseObject.js +2 -1
- package/dist/core/utility/lmdb/DeleteRecordsResponseObject.js.map +1 -1
- package/dist/core/utility/lmdb/InsertRecordsResponseObject.js +2 -1
- package/dist/core/utility/lmdb/InsertRecordsResponseObject.js.map +1 -1
- package/dist/core/utility/lmdb/OpenDBIObject.js +54 -6
- package/dist/core/utility/lmdb/OpenDBIObject.js.map +1 -1
- package/dist/core/utility/lmdb/OpenEnvironmentObject.js +52 -4
- package/dist/core/utility/lmdb/OpenEnvironmentObject.js.map +1 -1
- package/dist/core/utility/lmdb/UpdateRecordsResponseObject.js +2 -1
- package/dist/core/utility/lmdb/UpdateRecordsResponseObject.js.map +1 -1
- package/dist/core/utility/lmdb/UpsertRecordsResponseObject.js +2 -1
- package/dist/core/utility/lmdb/UpsertRecordsResponseObject.js.map +1 -1
- package/dist/core/utility/lmdb/cleanLMDBMap.js +44 -7
- package/dist/core/utility/lmdb/cleanLMDBMap.js.map +1 -1
- package/dist/core/utility/lmdb/commonUtility.js +46 -17
- package/dist/core/utility/lmdb/commonUtility.js.map +1 -1
- package/dist/core/utility/lmdb/deleteUtility.js +51 -16
- package/dist/core/utility/lmdb/deleteUtility.js.map +1 -1
- package/dist/core/utility/lmdb/environmentUtility.js +91 -51
- package/dist/core/utility/lmdb/environmentUtility.js.map +1 -1
- package/dist/core/utility/lmdb/searchCursorFunctions.js +46 -14
- package/dist/core/utility/lmdb/searchCursorFunctions.js.map +1 -1
- package/dist/core/utility/lmdb/searchUtility.js +91 -55
- package/dist/core/utility/lmdb/searchUtility.js.map +1 -1
- package/dist/core/utility/lmdb/terms.js +12 -22
- package/dist/core/utility/lmdb/terms.js.map +1 -1
- package/dist/core/utility/lmdb/writeUtility.js +61 -28
- package/dist/core/utility/lmdb/writeUtility.js.map +1 -1
- package/dist/core/utility/logging/harper_logger.js +176 -81
- package/dist/core/utility/logging/harper_logger.js.map +1 -1
- package/dist/core/utility/logging/logRotator.js +65 -28
- package/dist/core/utility/logging/logRotator.js.map +1 -1
- package/dist/core/utility/logging/logger.js +4 -4
- package/dist/core/utility/logging/readLog.js +54 -17
- package/dist/core/utility/logging/readLog.js.map +1 -1
- package/dist/core/utility/logging/transactionLog.js +51 -16
- package/dist/core/utility/logging/transactionLog.js.map +1 -1
- package/dist/core/utility/mount_hdb.js +54 -17
- package/dist/core/utility/mount_hdb.js.map +1 -1
- package/dist/core/utility/npmUtilities.js +54 -19
- package/dist/core/utility/npmUtilities.js.map +1 -1
- package/dist/core/utility/operation_authorization.js +135 -86
- package/dist/core/utility/operation_authorization.js.map +1 -1
- package/dist/core/utility/packageUtils.js +7 -17
- package/dist/core/utility/packageUtils.js.map +1 -1
- package/dist/core/utility/password.js +2 -2
- package/dist/core/utility/processManagement/processManagement.js +2 -2
- package/dist/core/utility/processManagement/servicesConfig.js +1 -1
- package/dist/core/utility/signalling.js +51 -16
- package/dist/core/utility/signalling.js.map +1 -1
- package/dist/core/utility/watcherFallback.js +73 -0
- package/dist/core/utility/watcherFallback.js.map +1 -0
- package/dist/core/validation/analyticsValidator.js +79 -0
- package/dist/core/validation/analyticsValidator.js.map +1 -0
- package/dist/core/validation/bulkDeleteValidator.js +49 -11
- package/dist/core/validation/bulkDeleteValidator.js.map +1 -1
- package/dist/core/validation/check_permissions.js +38 -3
- package/dist/core/validation/check_permissions.js.map +1 -1
- package/dist/core/validation/common_validators.js +62 -31
- package/dist/core/validation/common_validators.js.map +1 -1
- package/dist/core/validation/configValidator.js +189 -54
- package/dist/core/validation/configValidator.js.map +1 -1
- package/dist/core/validation/deleteValidator.js +49 -11
- package/dist/core/validation/deleteValidator.js.map +1 -1
- package/dist/core/validation/fileLoadValidator.js +67 -32
- package/dist/core/validation/fileLoadValidator.js.map +1 -1
- package/dist/core/validation/insertValidator.js +48 -10
- package/dist/core/validation/insertValidator.js.map +1 -1
- package/dist/core/validation/installValidator.js +47 -10
- package/dist/core/validation/installValidator.js.map +1 -1
- package/dist/core/validation/readLogValidator.js +60 -22
- package/dist/core/validation/readLogValidator.js.map +1 -1
- package/dist/core/validation/role_validation.js +55 -19
- package/dist/core/validation/role_validation.js.map +1 -1
- package/dist/core/validation/schemaMetadataValidator.js +11 -12
- package/dist/core/validation/schemaMetadataValidator.js.map +1 -1
- package/dist/core/validation/searchValidator.js +82 -43
- package/dist/core/validation/searchValidator.js.map +1 -1
- package/dist/core/validation/transactionLogValidator.js +52 -17
- package/dist/core/validation/transactionLogValidator.js.map +1 -1
- package/dist/core/validation/user_validation.js +38 -6
- package/dist/core/validation/user_validation.js.map +1 -1
- package/dist/core/validation/validationWrapper.js +4 -5
- package/dist/core/validation/validationWrapper.js.map +1 -1
- package/dist/licensing/usageLicensing.js +30 -21
- package/dist/licensing/usageLicensing.js.map +1 -1
- package/dist/replication/knownNodes.js +173 -39
- package/dist/replication/knownNodes.js.map +1 -1
- package/dist/replication/replicationConnection.js +441 -85
- package/dist/replication/replicationConnection.js.map +1 -1
- package/dist/replication/replicator.js +44 -26
- package/dist/replication/replicator.js.map +1 -1
- package/dist/replication/setNode.js +22 -2
- package/dist/replication/setNode.js.map +1 -1
- package/dist/replication/subscriptionManager.js +121 -9
- package/dist/replication/subscriptionManager.js.map +1 -1
- package/dist/security/certificate.js +41 -6
- package/dist/security/certificate.js.map +1 -1
- package/dist/security/sshKeyOperations.js +35 -2
- package/dist/security/sshKeyOperations.js.map +1 -1
- package/licensing/usageLicensing.ts +32 -37
- package/npm-shrinkwrap.json +8994 -4305
- package/package.json +16 -11
- package/replication/DESIGN.md +139 -0
- package/replication/knownNodes.ts +166 -43
- package/replication/replicationConnection.ts +475 -92
- package/replication/replicator.ts +42 -25
- package/replication/setNode.ts +28 -9
- package/replication/subscriptionManager.ts +138 -14
- package/security/certificate.ts +8 -4
- package/security/sshKeyOperations.ts +1 -1
- package/static/defaultConfig.yaml +1 -0
- package/studio/web/assets/{index-CmtPP0YO.js → index-COfIkCT-.js} +5 -5
- package/studio/web/assets/index-COfIkCT-.js.map +1 -0
- package/studio/web/assets/{index.lazy-C8jvGtlu.js → index.lazy-CIvl7Fj9.js} +2 -2
- package/studio/web/assets/{index.lazy-C8jvGtlu.js.map → index.lazy-CIvl7Fj9.js.map} +1 -1
- package/studio/web/assets/{profile-O0DYlJUv.js → profile-B2ZVB--r.js} +2 -2
- package/studio/web/assets/{profile-O0DYlJUv.js.map → profile-B2ZVB--r.js.map} +1 -1
- package/studio/web/assets/{status-BIlJkJby.js → status-Db6WBmhf.js} +2 -2
- package/studio/web/assets/{status-BIlJkJby.js.map → status-Db6WBmhf.js.map} +1 -1
- package/studio/web/index.html +1 -1
- package/core/bin/cliOperations.js +0 -159
- package/core/bin/lite.js +0 -5
- package/core/bin/stop.js +0 -21
- package/core/dataLayer/harperBridge/BridgeMethods.js +0 -85
- package/core/utility/globalSchema.js +0 -35
- package/core/utility/lmdb/OpenDBIObject.js +0 -31
- package/studio/web/assets/index-CmtPP0YO.js.map +0 -1
package/core/system/LOG
ADDED
|
@@ -0,0 +1,1351 @@
|
|
|
1
|
+
2026/05/11-16:52:46.883972 270170 RocksDB version: 11.0.4
|
|
2
|
+
2026/05/11-16:52:46.884018 270170 Git sha 0
|
|
3
|
+
2026/05/11-16:52:46.884019 270170 Compile date 2026-04-09 21:14:08
|
|
4
|
+
2026/05/11-16:52:46.884022 270170 DB SUMMARY
|
|
5
|
+
2026/05/11-16:52:46.884023 270170 Host name (Env): kzyp-XPS-15-9520
|
|
6
|
+
2026/05/11-16:52:46.884023 270170 DB Session ID: MH0EQCU7OOP64IU5BU9U
|
|
7
|
+
2026/05/11-16:52:46.884040 270170 SST files in system dir, Total Num: 0, files:
|
|
8
|
+
2026/05/11-16:52:46.884042 270170 Write Ahead Log file in system:
|
|
9
|
+
2026/05/11-16:52:46.884043 270170 Options.error_if_exists: 0
|
|
10
|
+
2026/05/11-16:52:46.884044 270170 Options.create_if_missing: 1
|
|
11
|
+
2026/05/11-16:52:46.884044 270170 Options.paranoid_checks: 1
|
|
12
|
+
2026/05/11-16:52:46.884045 270170 Options.flush_verify_memtable_count: 1
|
|
13
|
+
2026/05/11-16:52:46.884045 270170 Options.compaction_verify_record_count: 1
|
|
14
|
+
2026/05/11-16:52:46.884046 270170 Options.track_and_verify_wals_in_manifest: 0
|
|
15
|
+
2026/05/11-16:52:46.884046 270170 Options.track_and_verify_wals: 0
|
|
16
|
+
2026/05/11-16:52:46.884047 270170 Options.verify_sst_unique_id_in_manifest: 1
|
|
17
|
+
2026/05/11-16:52:46.884047 270170 Options.env: 0x365d3a00
|
|
18
|
+
2026/05/11-16:52:46.884048 270170 Options.fs: PosixFileSystem
|
|
19
|
+
2026/05/11-16:52:46.884049 270170 Options.info_log: 0x36579200
|
|
20
|
+
2026/05/11-16:52:46.884050 270170 Options.max_file_opening_threads: 16
|
|
21
|
+
2026/05/11-16:52:46.884050 270170 Options.statistics: 0x36669ae0
|
|
22
|
+
2026/05/11-16:52:46.884051 270170 Options.statistics stats level: 3
|
|
23
|
+
2026/05/11-16:52:46.884051 270170 Options.use_fsync: 0
|
|
24
|
+
2026/05/11-16:52:46.884052 270170 Options.max_log_file_size: 0
|
|
25
|
+
2026/05/11-16:52:46.884052 270170 Options.log_file_time_to_roll: 0
|
|
26
|
+
2026/05/11-16:52:46.884053 270170 Options.keep_log_file_num: 5
|
|
27
|
+
2026/05/11-16:52:46.884053 270170 Options.recycle_log_file_num: 0
|
|
28
|
+
2026/05/11-16:52:46.884054 270170 Options.allow_fallocate: 1
|
|
29
|
+
2026/05/11-16:52:46.884054 270170 Options.allow_mmap_reads: 0
|
|
30
|
+
2026/05/11-16:52:46.884055 270170 Options.allow_mmap_writes: 0
|
|
31
|
+
2026/05/11-16:52:46.884055 270170 Options.use_direct_reads: 0
|
|
32
|
+
2026/05/11-16:52:46.884056 270170 Options.use_direct_io_for_flush_and_compaction: 0
|
|
33
|
+
2026/05/11-16:52:46.884056 270170 Options.create_missing_column_families: 1
|
|
34
|
+
2026/05/11-16:52:46.884057 270170 Options.db_log_dir:
|
|
35
|
+
2026/05/11-16:52:46.884057 270170 Options.wal_dir:
|
|
36
|
+
2026/05/11-16:52:46.884058 270170 Options.table_cache_numshardbits: 6
|
|
37
|
+
2026/05/11-16:52:46.884058 270170 Options.WAL_ttl_seconds: 0
|
|
38
|
+
2026/05/11-16:52:46.884059 270170 Options.WAL_size_limit_MB: 0
|
|
39
|
+
2026/05/11-16:52:46.884059 270170 Options.max_write_batch_group_size_bytes: 1048576
|
|
40
|
+
2026/05/11-16:52:46.884060 270170 Options.is_fd_close_on_exec: 1
|
|
41
|
+
2026/05/11-16:52:46.884060 270170 Options.advise_random_on_open: 1
|
|
42
|
+
2026/05/11-16:52:46.884061 270170 Options.db_write_buffer_size: 33554432
|
|
43
|
+
2026/05/11-16:52:46.884061 270170 Options.write_buffer_manager: 0x364c0f60
|
|
44
|
+
2026/05/11-16:52:46.884062 270170 Options.use_adaptive_mutex: 0
|
|
45
|
+
2026/05/11-16:52:46.884062 270170 Options.rate_limiter: (nil)
|
|
46
|
+
2026/05/11-16:52:46.884064 270170 Options.sst_file_manager.rate_bytes_per_sec: 0
|
|
47
|
+
2026/05/11-16:52:46.884065 270170 Options.wal_recovery_mode: 2
|
|
48
|
+
2026/05/11-16:52:46.884065 270170 Options.enable_thread_tracking: 0
|
|
49
|
+
2026/05/11-16:52:46.884066 270170 Options.enable_pipelined_write: 0
|
|
50
|
+
2026/05/11-16:52:46.884066 270170 Options.unordered_write: 0
|
|
51
|
+
2026/05/11-16:52:46.884067 270170 Options.allow_concurrent_memtable_write: 1
|
|
52
|
+
2026/05/11-16:52:46.884067 270170 Options.enable_write_thread_adaptive_yield: 1
|
|
53
|
+
2026/05/11-16:52:46.884068 270170 Options.write_thread_max_yield_usec: 100
|
|
54
|
+
2026/05/11-16:52:46.884068 270170 Options.write_thread_slow_yield_usec: 3
|
|
55
|
+
2026/05/11-16:52:46.884069 270170 Options.row_cache: None
|
|
56
|
+
2026/05/11-16:52:46.884069 270170 Options.wal_filter: None
|
|
57
|
+
2026/05/11-16:52:46.884070 270170 Options.avoid_flush_during_recovery: 0
|
|
58
|
+
2026/05/11-16:52:46.884070 270170 Options.allow_ingest_behind: 0
|
|
59
|
+
2026/05/11-16:52:46.884071 270170 Options.two_write_queues: 0
|
|
60
|
+
2026/05/11-16:52:46.884071 270170 Options.manual_wal_flush: 0
|
|
61
|
+
2026/05/11-16:52:46.884072 270170 Options.wal_compression: 0
|
|
62
|
+
2026/05/11-16:52:46.884072 270170 Options.background_close_inactive_wals: 0
|
|
63
|
+
2026/05/11-16:52:46.884073 270170 Options.atomic_flush: 1
|
|
64
|
+
2026/05/11-16:52:46.884073 270170 Options.avoid_unnecessary_blocking_io: 0
|
|
65
|
+
2026/05/11-16:52:46.884074 270170 Options.prefix_seek_opt_in_only: 0
|
|
66
|
+
2026/05/11-16:52:46.884074 270170 Options.persist_stats_to_disk: 0
|
|
67
|
+
2026/05/11-16:52:46.884075 270170 Options.write_dbid_to_manifest: 1
|
|
68
|
+
2026/05/11-16:52:46.884075 270170 Options.write_identity_file: 1
|
|
69
|
+
2026/05/11-16:52:46.884076 270170 Options.log_readahead_size: 0
|
|
70
|
+
2026/05/11-16:52:46.884076 270170 Options.file_checksum_gen_factory: Unknown
|
|
71
|
+
2026/05/11-16:52:46.884077 270170 Options.best_efforts_recovery: 0
|
|
72
|
+
2026/05/11-16:52:46.884077 270170 Options.max_bgerror_resume_count: 2147483647
|
|
73
|
+
2026/05/11-16:52:46.884078 270170 Options.bgerror_resume_retry_interval: 1000000
|
|
74
|
+
2026/05/11-16:52:46.884078 270170 Options.allow_data_in_errors: 0
|
|
75
|
+
2026/05/11-16:52:46.884079 270170 Options.db_host_id: __hostname__
|
|
76
|
+
2026/05/11-16:52:46.884080 270170 Options.enforce_single_del_contracts: true
|
|
77
|
+
2026/05/11-16:52:46.884080 270170 Options.metadata_write_temperature: kUnknown
|
|
78
|
+
2026/05/11-16:52:46.884081 270170 Options.wal_write_temperature: kUnknown
|
|
79
|
+
2026/05/11-16:52:46.884082 270170 Options.max_background_jobs: 1
|
|
80
|
+
2026/05/11-16:52:46.884083 270170 Options.max_background_compactions: -1
|
|
81
|
+
2026/05/11-16:52:46.884083 270170 Options.max_subcompactions: 1
|
|
82
|
+
2026/05/11-16:52:46.884084 270170 Options.avoid_flush_during_shutdown: 0
|
|
83
|
+
2026/05/11-16:52:46.884084 270170 Options.writable_file_max_buffer_size: 1048576
|
|
84
|
+
2026/05/11-16:52:46.884085 270170 Options.delayed_write_rate : 16777216
|
|
85
|
+
2026/05/11-16:52:46.884085 270170 Options.max_total_wal_size: 0
|
|
86
|
+
2026/05/11-16:52:46.884086 270170 Options.delete_obsolete_files_period_micros: 21600000000
|
|
87
|
+
2026/05/11-16:52:46.884086 270170 Options.stats_dump_period_sec: 600
|
|
88
|
+
2026/05/11-16:52:46.884087 270170 Options.stats_persist_period_sec: 600
|
|
89
|
+
2026/05/11-16:52:46.884087 270170 Options.stats_history_buffer_size: 1048576
|
|
90
|
+
2026/05/11-16:52:46.884088 270170 Options.max_open_files: -1
|
|
91
|
+
2026/05/11-16:52:46.884088 270170 Options.bytes_per_sync: 0
|
|
92
|
+
2026/05/11-16:52:46.884089 270170 Options.wal_bytes_per_sync: 0
|
|
93
|
+
2026/05/11-16:52:46.884089 270170 Options.strict_bytes_per_sync: 0
|
|
94
|
+
2026/05/11-16:52:46.884090 270170 Options.compaction_readahead_size: 2097152
|
|
95
|
+
2026/05/11-16:52:46.884090 270170 Options.max_background_flushes: -1
|
|
96
|
+
2026/05/11-16:52:46.884091 270170 Options.max_manifest_file_size: 1073741824
|
|
97
|
+
2026/05/11-16:52:46.884092 270170 Options.max_manifest_space_amp_pct: 500
|
|
98
|
+
2026/05/11-16:52:46.884092 270170 Options.manifest_preallocation_size: 4194304
|
|
99
|
+
2026/05/11-16:52:46.884093 270170 Options.daily_offpeak_time_utc:
|
|
100
|
+
2026/05/11-16:52:46.884093 270170 Compression algorithms supported:
|
|
101
|
+
2026/05/11-16:52:46.884094 270170 kCustomCompressionFE supported: 0
|
|
102
|
+
2026/05/11-16:52:46.884095 270170 kCustomCompressionFC supported: 0
|
|
103
|
+
2026/05/11-16:52:46.884095 270170 kCustomCompressionF8 supported: 0
|
|
104
|
+
2026/05/11-16:52:46.884096 270170 kCustomCompressionF7 supported: 0
|
|
105
|
+
2026/05/11-16:52:46.884096 270170 kCustomCompressionB2 supported: 0
|
|
106
|
+
2026/05/11-16:52:46.884097 270170 kLZ4Compression supported: 0
|
|
107
|
+
2026/05/11-16:52:46.884098 270170 kCustomCompression88 supported: 0
|
|
108
|
+
2026/05/11-16:52:46.884098 270170 kCustomCompressionD8 supported: 0
|
|
109
|
+
2026/05/11-16:52:46.884099 270170 kCustomCompression9F supported: 0
|
|
110
|
+
2026/05/11-16:52:46.884100 270170 kCustomCompressionD6 supported: 0
|
|
111
|
+
2026/05/11-16:52:46.884100 270170 kCustomCompressionA9 supported: 0
|
|
112
|
+
2026/05/11-16:52:46.884101 270170 kCustomCompressionEC supported: 0
|
|
113
|
+
2026/05/11-16:52:46.884101 270170 kCustomCompressionA3 supported: 0
|
|
114
|
+
2026/05/11-16:52:46.884102 270170 kCustomCompressionCB supported: 0
|
|
115
|
+
2026/05/11-16:52:46.884103 270170 kCustomCompression90 supported: 0
|
|
116
|
+
2026/05/11-16:52:46.884103 270170 kCustomCompressionA0 supported: 0
|
|
117
|
+
2026/05/11-16:52:46.884104 270170 kCustomCompressionC6 supported: 0
|
|
118
|
+
2026/05/11-16:52:46.884104 270170 kCustomCompression9D supported: 0
|
|
119
|
+
2026/05/11-16:52:46.884105 270170 kCustomCompression8B supported: 0
|
|
120
|
+
2026/05/11-16:52:46.884105 270170 kCustomCompressionA8 supported: 0
|
|
121
|
+
2026/05/11-16:52:46.884106 270170 kCustomCompression8D supported: 0
|
|
122
|
+
2026/05/11-16:52:46.884106 270170 kCustomCompression97 supported: 0
|
|
123
|
+
2026/05/11-16:52:46.884107 270170 kCustomCompression98 supported: 0
|
|
124
|
+
2026/05/11-16:52:46.884107 270170 kCustomCompressionAC supported: 0
|
|
125
|
+
2026/05/11-16:52:46.884108 270170 kCustomCompressionE9 supported: 0
|
|
126
|
+
2026/05/11-16:52:46.884109 270170 kCustomCompression96 supported: 0
|
|
127
|
+
2026/05/11-16:52:46.884109 270170 kCustomCompressionB1 supported: 0
|
|
128
|
+
2026/05/11-16:52:46.884110 270170 kCustomCompression95 supported: 0
|
|
129
|
+
2026/05/11-16:52:46.884110 270170 kCustomCompression84 supported: 0
|
|
130
|
+
2026/05/11-16:52:46.884111 270170 kCustomCompression91 supported: 0
|
|
131
|
+
2026/05/11-16:52:46.884111 270170 kCustomCompressionAB supported: 0
|
|
132
|
+
2026/05/11-16:52:46.884112 270170 kCustomCompressionB3 supported: 0
|
|
133
|
+
2026/05/11-16:52:46.884112 270170 kCustomCompression81 supported: 0
|
|
134
|
+
2026/05/11-16:52:46.884113 270170 kCustomCompressionDC supported: 0
|
|
135
|
+
2026/05/11-16:52:46.884113 270170 kBZip2Compression supported: 0
|
|
136
|
+
2026/05/11-16:52:46.884114 270170 kCustomCompressionBB supported: 0
|
|
137
|
+
2026/05/11-16:52:46.884114 270170 kCustomCompression9C supported: 0
|
|
138
|
+
2026/05/11-16:52:46.884115 270170 kCustomCompressionC9 supported: 0
|
|
139
|
+
2026/05/11-16:52:46.884115 270170 kCustomCompressionCC supported: 0
|
|
140
|
+
2026/05/11-16:52:46.884116 270170 kCustomCompression92 supported: 0
|
|
141
|
+
2026/05/11-16:52:46.884116 270170 kCustomCompressionB9 supported: 0
|
|
142
|
+
2026/05/11-16:52:46.884117 270170 kCustomCompression8F supported: 0
|
|
143
|
+
2026/05/11-16:52:46.884117 270170 kCustomCompression8A supported: 0
|
|
144
|
+
2026/05/11-16:52:46.884118 270170 kCustomCompression9B supported: 0
|
|
145
|
+
2026/05/11-16:52:46.884118 270170 kZSTD supported: 0
|
|
146
|
+
2026/05/11-16:52:46.884119 270170 kCustomCompressionAA supported: 0
|
|
147
|
+
2026/05/11-16:52:46.884120 270170 kCustomCompressionA2 supported: 0
|
|
148
|
+
2026/05/11-16:52:46.884120 270170 kZlibCompression supported: 1
|
|
149
|
+
2026/05/11-16:52:46.884121 270170 kXpressCompression supported: 0
|
|
150
|
+
2026/05/11-16:52:46.884121 270170 kCustomCompressionFD supported: 0
|
|
151
|
+
2026/05/11-16:52:46.884122 270170 kCustomCompressionE2 supported: 0
|
|
152
|
+
2026/05/11-16:52:46.884122 270170 kLZ4HCCompression supported: 0
|
|
153
|
+
2026/05/11-16:52:46.884123 270170 kCustomCompressionA6 supported: 0
|
|
154
|
+
2026/05/11-16:52:46.884123 270170 kCustomCompression85 supported: 0
|
|
155
|
+
2026/05/11-16:52:46.884124 270170 kCustomCompressionA4 supported: 0
|
|
156
|
+
2026/05/11-16:52:46.884124 270170 kCustomCompression86 supported: 0
|
|
157
|
+
2026/05/11-16:52:46.884125 270170 kCustomCompression83 supported: 0
|
|
158
|
+
2026/05/11-16:52:46.884125 270170 kCustomCompression87 supported: 0
|
|
159
|
+
2026/05/11-16:52:46.884126 270170 kCustomCompression89 supported: 0
|
|
160
|
+
2026/05/11-16:52:46.884126 270170 kCustomCompression8C supported: 0
|
|
161
|
+
2026/05/11-16:52:46.884127 270170 kCustomCompressionDB supported: 0
|
|
162
|
+
2026/05/11-16:52:46.884127 270170 kCustomCompressionF3 supported: 0
|
|
163
|
+
2026/05/11-16:52:46.884128 270170 kCustomCompressionE6 supported: 0
|
|
164
|
+
2026/05/11-16:52:46.884128 270170 kCustomCompression8E supported: 0
|
|
165
|
+
2026/05/11-16:52:46.884129 270170 kCustomCompressionDA supported: 0
|
|
166
|
+
2026/05/11-16:52:46.884129 270170 kCustomCompression93 supported: 0
|
|
167
|
+
2026/05/11-16:52:46.884130 270170 kCustomCompression94 supported: 0
|
|
168
|
+
2026/05/11-16:52:46.884130 270170 kCustomCompression9E supported: 0
|
|
169
|
+
2026/05/11-16:52:46.884131 270170 kCustomCompressionB4 supported: 0
|
|
170
|
+
2026/05/11-16:52:46.884131 270170 kCustomCompressionFB supported: 0
|
|
171
|
+
2026/05/11-16:52:46.884132 270170 kCustomCompressionB5 supported: 0
|
|
172
|
+
2026/05/11-16:52:46.884133 270170 kCustomCompressionD5 supported: 0
|
|
173
|
+
2026/05/11-16:52:46.884133 270170 kCustomCompressionB8 supported: 0
|
|
174
|
+
2026/05/11-16:52:46.884134 270170 kCustomCompressionD1 supported: 0
|
|
175
|
+
2026/05/11-16:52:46.884134 270170 kCustomCompressionBA supported: 0
|
|
176
|
+
2026/05/11-16:52:46.884135 270170 kCustomCompressionBC supported: 0
|
|
177
|
+
2026/05/11-16:52:46.884135 270170 kCustomCompressionCE supported: 0
|
|
178
|
+
2026/05/11-16:52:46.884136 270170 kCustomCompressionBD supported: 0
|
|
179
|
+
2026/05/11-16:52:46.884137 270170 kCustomCompressionC4 supported: 0
|
|
180
|
+
2026/05/11-16:52:46.884137 270170 kCustomCompression9A supported: 0
|
|
181
|
+
2026/05/11-16:52:46.884138 270170 kCustomCompression99 supported: 0
|
|
182
|
+
2026/05/11-16:52:46.884138 270170 kCustomCompressionBE supported: 0
|
|
183
|
+
2026/05/11-16:52:46.884139 270170 kCustomCompressionE5 supported: 0
|
|
184
|
+
2026/05/11-16:52:46.884139 270170 kCustomCompressionD9 supported: 0
|
|
185
|
+
2026/05/11-16:52:46.884140 270170 kCustomCompressionC1 supported: 0
|
|
186
|
+
2026/05/11-16:52:46.884140 270170 kCustomCompressionC5 supported: 0
|
|
187
|
+
2026/05/11-16:52:46.884141 270170 kCustomCompressionC2 supported: 0
|
|
188
|
+
2026/05/11-16:52:46.884141 270170 kCustomCompressionA5 supported: 0
|
|
189
|
+
2026/05/11-16:52:46.884142 270170 kCustomCompressionC7 supported: 0
|
|
190
|
+
2026/05/11-16:52:46.884142 270170 kCustomCompressionBF supported: 0
|
|
191
|
+
2026/05/11-16:52:46.884143 270170 kCustomCompressionE8 supported: 0
|
|
192
|
+
2026/05/11-16:52:46.884143 270170 kCustomCompressionC8 supported: 0
|
|
193
|
+
2026/05/11-16:52:46.884144 270170 kCustomCompressionAF supported: 0
|
|
194
|
+
2026/05/11-16:52:46.884144 270170 kCustomCompressionCA supported: 0
|
|
195
|
+
2026/05/11-16:52:46.884145 270170 kCustomCompressionCD supported: 0
|
|
196
|
+
2026/05/11-16:52:46.884145 270170 kCustomCompressionC0 supported: 0
|
|
197
|
+
2026/05/11-16:52:46.884146 270170 kCustomCompressionCF supported: 0
|
|
198
|
+
2026/05/11-16:52:46.884146 270170 kCustomCompressionF9 supported: 0
|
|
199
|
+
2026/05/11-16:52:46.884147 270170 kCustomCompressionD0 supported: 0
|
|
200
|
+
2026/05/11-16:52:46.884147 270170 kCustomCompressionD2 supported: 0
|
|
201
|
+
2026/05/11-16:52:46.884148 270170 kCustomCompressionAD supported: 0
|
|
202
|
+
2026/05/11-16:52:46.884148 270170 kCustomCompressionD3 supported: 0
|
|
203
|
+
2026/05/11-16:52:46.884149 270170 kCustomCompressionD4 supported: 0
|
|
204
|
+
2026/05/11-16:52:46.884149 270170 kCustomCompressionD7 supported: 0
|
|
205
|
+
2026/05/11-16:52:46.884150 270170 kCustomCompression82 supported: 0
|
|
206
|
+
2026/05/11-16:52:46.884150 270170 kCustomCompressionDD supported: 0
|
|
207
|
+
2026/05/11-16:52:46.884151 270170 kCustomCompressionC3 supported: 0
|
|
208
|
+
2026/05/11-16:52:46.884151 270170 kCustomCompressionEE supported: 0
|
|
209
|
+
2026/05/11-16:52:46.884152 270170 kCustomCompressionDE supported: 0
|
|
210
|
+
2026/05/11-16:52:46.884152 270170 kCustomCompressionDF supported: 0
|
|
211
|
+
2026/05/11-16:52:46.884153 270170 kCustomCompressionA7 supported: 0
|
|
212
|
+
2026/05/11-16:52:46.884153 270170 kCustomCompressionE0 supported: 0
|
|
213
|
+
2026/05/11-16:52:46.884154 270170 kCustomCompressionF1 supported: 0
|
|
214
|
+
2026/05/11-16:52:46.884154 270170 kCustomCompressionE1 supported: 0
|
|
215
|
+
2026/05/11-16:52:46.884155 270170 kCustomCompressionF5 supported: 0
|
|
216
|
+
2026/05/11-16:52:46.884155 270170 kCustomCompression80 supported: 0
|
|
217
|
+
2026/05/11-16:52:46.884156 270170 kCustomCompressionE3 supported: 0
|
|
218
|
+
2026/05/11-16:52:46.884156 270170 kCustomCompressionE4 supported: 0
|
|
219
|
+
2026/05/11-16:52:46.884157 270170 kCustomCompressionB0 supported: 0
|
|
220
|
+
2026/05/11-16:52:46.884157 270170 kCustomCompressionEA supported: 0
|
|
221
|
+
2026/05/11-16:52:46.884158 270170 kCustomCompressionFA supported: 0
|
|
222
|
+
2026/05/11-16:52:46.884158 270170 kCustomCompressionE7 supported: 0
|
|
223
|
+
2026/05/11-16:52:46.884159 270170 kCustomCompressionAE supported: 0
|
|
224
|
+
2026/05/11-16:52:46.884159 270170 kCustomCompressionEB supported: 0
|
|
225
|
+
2026/05/11-16:52:46.884160 270170 kCustomCompressionED supported: 0
|
|
226
|
+
2026/05/11-16:52:46.884160 270170 kCustomCompressionB6 supported: 0
|
|
227
|
+
2026/05/11-16:52:46.884161 270170 kCustomCompressionEF supported: 0
|
|
228
|
+
2026/05/11-16:52:46.884161 270170 kCustomCompressionF0 supported: 0
|
|
229
|
+
2026/05/11-16:52:46.884162 270170 kCustomCompressionB7 supported: 0
|
|
230
|
+
2026/05/11-16:52:46.884163 270170 kCustomCompressionF2 supported: 0
|
|
231
|
+
2026/05/11-16:52:46.884163 270170 kCustomCompressionA1 supported: 0
|
|
232
|
+
2026/05/11-16:52:46.884164 270170 kCustomCompressionF4 supported: 0
|
|
233
|
+
2026/05/11-16:52:46.884164 270170 kSnappyCompression supported: 0
|
|
234
|
+
2026/05/11-16:52:46.884165 270170 kCustomCompressionF6 supported: 0
|
|
235
|
+
2026/05/11-16:52:46.884167 270170 Fast CRC32 supported: Not supported on x86
|
|
236
|
+
2026/05/11-16:52:46.884168 270170 DMutex implementation: pthread_mutex_t
|
|
237
|
+
2026/05/11-16:52:46.884168 270170 Jemalloc supported: 0
|
|
238
|
+
2026/05/11-16:52:46.886864 270170 [db/db_impl/db_impl_open.cc:312] Creating manifest 1
|
|
239
|
+
2026/05/11-16:52:46.890855 270170 [db/version_set.cc:6509] Recovering from manifest file: system/MANIFEST-000001
|
|
240
|
+
2026/05/11-16:52:46.891022 270170 [db/column_family.cc:697] --------------- Options for column family [default]:
|
|
241
|
+
2026/05/11-16:52:46.891025 270170 Options.comparator: leveldb.BytewiseComparator
|
|
242
|
+
2026/05/11-16:52:46.891026 270170 Options.merge_operator: None
|
|
243
|
+
2026/05/11-16:52:46.891027 270170 Options.compaction_filter: None
|
|
244
|
+
2026/05/11-16:52:46.891027 270170 Options.compaction_filter_factory: None
|
|
245
|
+
2026/05/11-16:52:46.891028 270170 Options.sst_partitioner_factory: None
|
|
246
|
+
2026/05/11-16:52:46.891028 270170 Options.memtable_factory: SkipListFactory
|
|
247
|
+
2026/05/11-16:52:46.891029 270170 Options.table_factory: BlockBasedTable
|
|
248
|
+
2026/05/11-16:52:46.891048 270170 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x3666a3d0)
|
|
249
|
+
cache_index_and_filter_blocks: 0
|
|
250
|
+
cache_index_and_filter_blocks_with_high_priority: 1
|
|
251
|
+
pin_l0_filter_and_index_blocks_in_cache: 0
|
|
252
|
+
pin_top_level_index_and_filter: 1
|
|
253
|
+
index_type: 0
|
|
254
|
+
data_block_index_type: 0
|
|
255
|
+
index_shortening: 1
|
|
256
|
+
data_block_hash_table_util_ratio: 0.750000
|
|
257
|
+
checksum: 4
|
|
258
|
+
no_block_cache: 0
|
|
259
|
+
block_cache: 0x365c6200
|
|
260
|
+
block_cache_name: LRUCache
|
|
261
|
+
block_cache_options:
|
|
262
|
+
capacity : 8192008192
|
|
263
|
+
num_shard_bits : 6
|
|
264
|
+
strict_capacity_limit : 0
|
|
265
|
+
memory_allocator : None
|
|
266
|
+
high_pri_pool_ratio: 0.500
|
|
267
|
+
low_pri_pool_ratio: 0.000
|
|
268
|
+
persistent_cache: (nil)
|
|
269
|
+
block_size: 4096
|
|
270
|
+
block_size_deviation: 10
|
|
271
|
+
block_restart_interval: 16
|
|
272
|
+
index_block_restart_interval: 1
|
|
273
|
+
metadata_block_size: 4096
|
|
274
|
+
partition_filters: 0
|
|
275
|
+
use_delta_encoding: 1
|
|
276
|
+
filter_policy: nullptr
|
|
277
|
+
user_defined_index_factory: nullptr
|
|
278
|
+
fail_if_no_udi_on_open: 0
|
|
279
|
+
whole_key_filtering: 1
|
|
280
|
+
verify_compression: 0
|
|
281
|
+
read_amp_bytes_per_bit: 0
|
|
282
|
+
format_version: 7
|
|
283
|
+
enable_index_compression: 1
|
|
284
|
+
block_align: 0
|
|
285
|
+
super_block_alignment_size: 0
|
|
286
|
+
super_block_alignment_space_overhead_ratio: 128
|
|
287
|
+
max_auto_readahead_size: 262144
|
|
288
|
+
prepopulate_block_cache: 0
|
|
289
|
+
initial_auto_readahead_size: 8192
|
|
290
|
+
num_file_reads_for_auto_readahead: 2
|
|
291
|
+
2026/05/11-16:52:46.891049 270170 Options.write_buffer_size: 67108864
|
|
292
|
+
2026/05/11-16:52:46.891049 270170 Options.max_write_buffer_number: 2
|
|
293
|
+
2026/05/11-16:52:46.891051 270170 Options.compression: NoCompression
|
|
294
|
+
2026/05/11-16:52:46.891052 270170 Options.bottommost_compression: Disabled
|
|
295
|
+
2026/05/11-16:52:46.891053 270170 Options.prefix_extractor: nullptr
|
|
296
|
+
2026/05/11-16:52:46.891053 270170 Options.memtable_insert_with_hint_prefix_extractor: nullptr
|
|
297
|
+
2026/05/11-16:52:46.891054 270170 Options.num_levels: 7
|
|
298
|
+
2026/05/11-16:52:46.891054 270170 Options.min_write_buffer_number_to_merge: 1
|
|
299
|
+
2026/05/11-16:52:46.891055 270170 Options.max_write_buffer_size_to_maintain: 134217728
|
|
300
|
+
2026/05/11-16:52:46.891055 270170 Options.bottommost_compression_opts.window_bits: -14
|
|
301
|
+
2026/05/11-16:52:46.891056 270170 Options.bottommost_compression_opts.level: 32767
|
|
302
|
+
2026/05/11-16:52:46.891056 270170 Options.bottommost_compression_opts.strategy: 0
|
|
303
|
+
2026/05/11-16:52:46.891057 270170 Options.bottommost_compression_opts.max_dict_bytes: 0
|
|
304
|
+
2026/05/11-16:52:46.891057 270170 Options.bottommost_compression_opts.zstd_max_train_bytes: 0
|
|
305
|
+
2026/05/11-16:52:46.891058 270170 Options.bottommost_compression_opts.parallel_threads: 1
|
|
306
|
+
2026/05/11-16:52:46.891058 270170 Options.bottommost_compression_opts.enabled: false
|
|
307
|
+
2026/05/11-16:52:46.891059 270170 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0
|
|
308
|
+
2026/05/11-16:52:46.891059 270170 Options.bottommost_compression_opts.use_zstd_dict_trainer: true
|
|
309
|
+
2026/05/11-16:52:46.891060 270170 Options.compression_opts.window_bits: -14
|
|
310
|
+
2026/05/11-16:52:46.891061 270170 Options.compression_opts.level: 32767
|
|
311
|
+
2026/05/11-16:52:46.891061 270170 Options.compression_opts.strategy: 0
|
|
312
|
+
2026/05/11-16:52:46.891062 270170 Options.compression_opts.max_dict_bytes: 0
|
|
313
|
+
2026/05/11-16:52:46.891062 270170 Options.compression_opts.zstd_max_train_bytes: 0
|
|
314
|
+
2026/05/11-16:52:46.891063 270170 Options.compression_opts.use_zstd_dict_trainer: true
|
|
315
|
+
2026/05/11-16:52:46.891063 270170 Options.compression_opts.parallel_threads: 1
|
|
316
|
+
2026/05/11-16:52:46.891064 270170 Options.compression_opts.enabled: false
|
|
317
|
+
2026/05/11-16:52:46.891064 270170 Options.compression_opts.max_dict_buffer_bytes: 0
|
|
318
|
+
2026/05/11-16:52:46.891065 270170 Options.level0_file_num_compaction_trigger: 4
|
|
319
|
+
2026/05/11-16:52:46.891065 270170 Options.level0_slowdown_writes_trigger: 20
|
|
320
|
+
2026/05/11-16:52:46.891066 270170 Options.level0_stop_writes_trigger: 36
|
|
321
|
+
2026/05/11-16:52:46.891066 270170 Options.target_file_size_base: 67108864
|
|
322
|
+
2026/05/11-16:52:46.891067 270170 Options.target_file_size_multiplier: 1
|
|
323
|
+
2026/05/11-16:52:46.891067 270170 Options.target_file_size_is_upper_bound: 0
|
|
324
|
+
2026/05/11-16:52:46.891068 270170 Options.max_bytes_for_level_base: 268435456
|
|
325
|
+
2026/05/11-16:52:46.891068 270170 Options.level_compaction_dynamic_level_bytes: 1
|
|
326
|
+
2026/05/11-16:52:46.891069 270170 Options.max_bytes_for_level_multiplier: 10.000000
|
|
327
|
+
2026/05/11-16:52:46.891070 270170 Options.max_bytes_for_level_multiplier_addtl[0]: 1
|
|
328
|
+
2026/05/11-16:52:46.891071 270170 Options.max_bytes_for_level_multiplier_addtl[1]: 1
|
|
329
|
+
2026/05/11-16:52:46.891071 270170 Options.max_bytes_for_level_multiplier_addtl[2]: 1
|
|
330
|
+
2026/05/11-16:52:46.891072 270170 Options.max_bytes_for_level_multiplier_addtl[3]: 1
|
|
331
|
+
2026/05/11-16:52:46.891072 270170 Options.max_bytes_for_level_multiplier_addtl[4]: 1
|
|
332
|
+
2026/05/11-16:52:46.891073 270170 Options.max_bytes_for_level_multiplier_addtl[5]: 1
|
|
333
|
+
2026/05/11-16:52:46.891073 270170 Options.max_bytes_for_level_multiplier_addtl[6]: 1
|
|
334
|
+
2026/05/11-16:52:46.891074 270170 Options.max_sequential_skip_in_iterations: 8
|
|
335
|
+
2026/05/11-16:52:46.891074 270170 Options.memtable_op_scan_flush_trigger: 0
|
|
336
|
+
2026/05/11-16:52:46.891075 270170 Options.memtable_avg_op_scan_flush_trigger: 0
|
|
337
|
+
2026/05/11-16:52:46.891075 270170 Options.max_compaction_bytes: 1677721600
|
|
338
|
+
2026/05/11-16:52:46.891076 270170 Options.arena_block_size: 1048576
|
|
339
|
+
2026/05/11-16:52:46.891076 270170 Options.soft_pending_compaction_bytes_limit: 68719476736
|
|
340
|
+
2026/05/11-16:52:46.891077 270170 Options.hard_pending_compaction_bytes_limit: 274877906944
|
|
341
|
+
2026/05/11-16:52:46.891077 270170 Options.disable_auto_compactions: 0
|
|
342
|
+
2026/05/11-16:52:46.891079 270170 Options.compaction_style: kCompactionStyleLevel
|
|
343
|
+
2026/05/11-16:52:46.891080 270170 Options.compaction_pri: kMinOverlappingRatio
|
|
344
|
+
2026/05/11-16:52:46.891080 270170 Options.compaction_options_universal.size_ratio: 1
|
|
345
|
+
2026/05/11-16:52:46.891081 270170 Options.compaction_options_universal.min_merge_width: 2
|
|
346
|
+
2026/05/11-16:52:46.891081 270170 Options.compaction_options_universal.max_merge_width: 4294967295
|
|
347
|
+
2026/05/11-16:52:46.891082 270170 Options.compaction_options_universal.max_size_amplification_percent: 200
|
|
348
|
+
2026/05/11-16:52:46.891082 270170 Options.compaction_options_universal.compression_size_percent: -1
|
|
349
|
+
2026/05/11-16:52:46.891083 270170 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize
|
|
350
|
+
2026/05/11-16:52:46.891084 270170 Options.compaction_options_universal.max_read_amp: -1
|
|
351
|
+
2026/05/11-16:52:46.891084 270170 Options.compaction_options_universal.reduce_file_locking: 1
|
|
352
|
+
2026/05/11-16:52:46.891085 270170 Options.compaction_options_fifo.max_table_files_size: 1073741824
|
|
353
|
+
2026/05/11-16:52:46.891085 270170 Options.compaction_options_fifo.allow_compaction: 0
|
|
354
|
+
2026/05/11-16:52:46.891088 270170 Options.table_properties_collectors:
|
|
355
|
+
2026/05/11-16:52:46.891089 270170 Options.inplace_update_support: 0
|
|
356
|
+
2026/05/11-16:52:46.891089 270170 Options.inplace_update_num_locks: 10000
|
|
357
|
+
2026/05/11-16:52:46.891090 270170 Options.memtable_prefix_bloom_size_ratio: 0.000000
|
|
358
|
+
2026/05/11-16:52:46.891091 270170 Options.memtable_whole_key_filtering: 0
|
|
359
|
+
2026/05/11-16:52:46.891091 270170 Options.memtable_huge_page_size: 0
|
|
360
|
+
2026/05/11-16:52:46.891092 270170 Options.bloom_locality: 0
|
|
361
|
+
2026/05/11-16:52:46.891092 270170 Options.max_successive_merges: 0
|
|
362
|
+
2026/05/11-16:52:46.891093 270170 Options.strict_max_successive_merges: 0
|
|
363
|
+
2026/05/11-16:52:46.891093 270170 Options.optimize_filters_for_hits: 0
|
|
364
|
+
2026/05/11-16:52:46.891094 270170 Options.paranoid_file_checks: 0
|
|
365
|
+
2026/05/11-16:52:46.891094 270170 Options.force_consistency_checks: 1
|
|
366
|
+
2026/05/11-16:52:46.891095 270170 Options.report_bg_io_stats: 0
|
|
367
|
+
2026/05/11-16:52:46.891095 270170 Options.disallow_memtable_writes: 0
|
|
368
|
+
2026/05/11-16:52:46.891096 270170 Options.ttl: 2592000
|
|
369
|
+
2026/05/11-16:52:46.891096 270170 Options.periodic_compaction_seconds: 0
|
|
370
|
+
2026/05/11-16:52:46.891097 270170 Options.default_temperature: kUnknown
|
|
371
|
+
2026/05/11-16:52:46.891097 270170 Options.preclude_last_level_data_seconds: 0
|
|
372
|
+
2026/05/11-16:52:46.891098 270170 Options.preserve_internal_time_seconds: 0
|
|
373
|
+
2026/05/11-16:52:46.891098 270170 Options.enable_blob_files: true
|
|
374
|
+
2026/05/11-16:52:46.891099 270170 Options.min_blob_size: 2048
|
|
375
|
+
2026/05/11-16:52:46.891099 270170 Options.blob_file_size: 268435456
|
|
376
|
+
2026/05/11-16:52:46.891100 270170 Options.blob_compression_type: NoCompression
|
|
377
|
+
2026/05/11-16:52:46.891100 270170 Options.enable_blob_garbage_collection: true
|
|
378
|
+
2026/05/11-16:52:46.891101 270170 Options.blob_garbage_collection_age_cutoff: 0.250000
|
|
379
|
+
2026/05/11-16:52:46.891102 270170 Options.blob_garbage_collection_force_threshold: 1.000000
|
|
380
|
+
2026/05/11-16:52:46.891102 270170 Options.blob_compaction_readahead_size: 0
|
|
381
|
+
2026/05/11-16:52:46.891103 270170 Options.blob_file_starting_level: 0
|
|
382
|
+
2026/05/11-16:52:46.891103 270170 Options.experimental_mempurge_threshold: 0.000000
|
|
383
|
+
2026/05/11-16:52:46.891104 270170 Options.memtable_max_range_deletions: 0
|
|
384
|
+
2026/05/11-16:52:46.891105 270170 Options.cf_allow_ingest_behind: false
|
|
385
|
+
2026/05/11-16:52:46.891583 270170 [db/version_set.cc:6559] Recovered from manifest file:system/MANIFEST-000001 succeeded,manifest_file_number is 1, next_file_number is 3, last_sequence is 0, log_number is 0,prev_log_number is 0,max_column_family is 0,min_log_number_to_keep is 0
|
|
386
|
+
2026/05/11-16:52:46.891586 270170 [db/version_set.cc:6574] Column family [default] (ID 0), log number is 0
|
|
387
|
+
2026/05/11-16:52:46.891588 270170 [db/db_impl/db_impl_open.cc:687] DB ID: 328d8005-6632-41f1-b5a0-a4dd2db32bc9
|
|
388
|
+
2026/05/11-16:52:46.895590 270170 [db/version_set.cc:6119] Created manifest 5, compacted+appended from 52 to 116
|
|
389
|
+
2026/05/11-16:52:46.899685 270170 [db/db_impl/db_impl_open.cc:2627] SstFileManager instance 0x362aae20
|
|
390
|
+
2026/05/11-16:52:46.899863 270170 DB pointer 0x366780c0
|
|
391
|
+
2026/05/11-16:52:46.900206 270198 [db/db_impl/db_impl.cc:1132] ------- DUMPING STATS -------
|
|
392
|
+
2026/05/11-16:52:46.900216 270198 [db/db_impl/db_impl.cc:1134]
|
|
393
|
+
** DB Stats **
|
|
394
|
+
Uptime(secs): 0.0 total, 0.0 interval
|
|
395
|
+
Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s
|
|
396
|
+
Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s
|
|
397
|
+
Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent
|
|
398
|
+
Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s
|
|
399
|
+
Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s
|
|
400
|
+
Interval stall: 00:00:0.000 H:M:S, 0.0 percent
|
|
401
|
+
Write Stall (count): write-buffer-manager-limit-stops: 0
|
|
402
|
+
|
|
403
|
+
** Compaction Stats [default] **
|
|
404
|
+
Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) WPreComp(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB)
|
|
405
|
+
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
406
|
+
Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0
|
|
407
|
+
Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0
|
|
408
|
+
|
|
409
|
+
** Compaction Stats [default] **
|
|
410
|
+
Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) WPreComp(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB)
|
|
411
|
+
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
412
|
+
|
|
413
|
+
Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0
|
|
414
|
+
|
|
415
|
+
Uptime(secs): 0.0 total, 0.0 interval
|
|
416
|
+
Flush(GB): cumulative 0.000, interval 0.000
|
|
417
|
+
AddFile(GB): cumulative 0.000, interval 0.000
|
|
418
|
+
AddFile(Total Files): cumulative 0, interval 0
|
|
419
|
+
AddFile(L0 Files): cumulative 0, interval 0
|
|
420
|
+
AddFile(Keys): cumulative 0, interval 0
|
|
421
|
+
Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds
|
|
422
|
+
Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds
|
|
423
|
+
Estimated pending compaction bytes: 0
|
|
424
|
+
Write Stall (count): cf-l0-file-count-limit-delays-with-ongoing-compaction: 0, cf-l0-file-count-limit-stops-with-ongoing-compaction: 0, l0-file-count-limit-delays: 0, l0-file-count-limit-stops: 0, memtable-limit-delays: 0, memtable-limit-stops: 0, pending-compaction-bytes-delays: 0, pending-compaction-bytes-stops: 0, total-delays: 0, total-stops: 0
|
|
425
|
+
Block cache LRUCache@0x365c6200#270170 capacity: 7.63 GB seed: 29489745 usage: 0.09 KB table_size: 1024 occupancy: 1 collections: 1 last_copies: 0 last_secs: 6.3e-05 secs_since: 0
|
|
426
|
+
Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%)
|
|
427
|
+
|
|
428
|
+
** File Read Latency Histogram By Level [default] **
|
|
429
|
+
2026/05/11-16:52:46.901836 270198 [db/db_impl/db_impl.cc:782] STATISTICS:
|
|
430
|
+
rocksdb.block.cache.miss COUNT : 0
|
|
431
|
+
rocksdb.block.cache.hit COUNT : 0
|
|
432
|
+
rocksdb.block.cache.add COUNT : 0
|
|
433
|
+
rocksdb.block.cache.add.failures COUNT : 0
|
|
434
|
+
rocksdb.block.cache.index.miss COUNT : 0
|
|
435
|
+
rocksdb.block.cache.index.hit COUNT : 0
|
|
436
|
+
rocksdb.block.cache.index.add COUNT : 0
|
|
437
|
+
rocksdb.block.cache.index.bytes.insert COUNT : 0
|
|
438
|
+
rocksdb.block.cache.filter.miss COUNT : 0
|
|
439
|
+
rocksdb.block.cache.filter.hit COUNT : 0
|
|
440
|
+
rocksdb.block.cache.filter.add COUNT : 0
|
|
441
|
+
rocksdb.block.cache.filter.bytes.insert COUNT : 0
|
|
442
|
+
rocksdb.block.cache.data.miss COUNT : 0
|
|
443
|
+
rocksdb.block.cache.data.hit COUNT : 0
|
|
444
|
+
rocksdb.block.cache.data.add COUNT : 0
|
|
445
|
+
rocksdb.block.cache.data.bytes.insert COUNT : 0
|
|
446
|
+
rocksdb.block.cache.bytes.read COUNT : 0
|
|
447
|
+
rocksdb.block.cache.bytes.write COUNT : 0
|
|
448
|
+
rocksdb.block.cache.compression.dict.miss COUNT : 0
|
|
449
|
+
rocksdb.block.cache.compression.dict.hit COUNT : 0
|
|
450
|
+
rocksdb.block.cache.compression.dict.add COUNT : 0
|
|
451
|
+
rocksdb.block.cache.compression.dict.bytes.insert COUNT : 0
|
|
452
|
+
rocksdb.block.cache.add.redundant COUNT : 0
|
|
453
|
+
rocksdb.block.cache.index.add.redundant COUNT : 0
|
|
454
|
+
rocksdb.block.cache.filter.add.redundant COUNT : 0
|
|
455
|
+
rocksdb.block.cache.data.add.redundant COUNT : 0
|
|
456
|
+
rocksdb.block.cache.compression.dict.add.redundant COUNT : 0
|
|
457
|
+
rocksdb.secondary.cache.hits COUNT : 0
|
|
458
|
+
rocksdb.secondary.cache.filter.hits COUNT : 0
|
|
459
|
+
rocksdb.secondary.cache.index.hits COUNT : 0
|
|
460
|
+
rocksdb.secondary.cache.data.hits COUNT : 0
|
|
461
|
+
rocksdb.compressed.secondary.cache.dummy.hits COUNT : 0
|
|
462
|
+
rocksdb.compressed.secondary.cache.hits COUNT : 0
|
|
463
|
+
rocksdb.compressed.secondary.cache.promotions COUNT : 0
|
|
464
|
+
rocksdb.compressed.secondary.cache.promotion.skips COUNT : 0
|
|
465
|
+
rocksdb.bloom.filter.useful COUNT : 0
|
|
466
|
+
rocksdb.bloom.filter.full.positive COUNT : 0
|
|
467
|
+
rocksdb.bloom.filter.full.true.positive COUNT : 0
|
|
468
|
+
rocksdb.bloom.filter.prefix.checked COUNT : 0
|
|
469
|
+
rocksdb.bloom.filter.prefix.useful COUNT : 0
|
|
470
|
+
rocksdb.bloom.filter.prefix.true.positive COUNT : 0
|
|
471
|
+
rocksdb.persistent.cache.hit COUNT : 0
|
|
472
|
+
rocksdb.persistent.cache.miss COUNT : 0
|
|
473
|
+
rocksdb.sim.block.cache.hit COUNT : 0
|
|
474
|
+
rocksdb.sim.block.cache.miss COUNT : 0
|
|
475
|
+
rocksdb.memtable.hit COUNT : 0
|
|
476
|
+
rocksdb.memtable.miss COUNT : 0
|
|
477
|
+
rocksdb.l0.hit COUNT : 0
|
|
478
|
+
rocksdb.l1.hit COUNT : 0
|
|
479
|
+
rocksdb.l2andup.hit COUNT : 0
|
|
480
|
+
rocksdb.compaction.key.drop.new COUNT : 0
|
|
481
|
+
rocksdb.compaction.key.drop.obsolete COUNT : 0
|
|
482
|
+
rocksdb.compaction.key.drop.range_del COUNT : 0
|
|
483
|
+
rocksdb.compaction.key.drop.user COUNT : 0
|
|
484
|
+
rocksdb.compaction.range_del.drop.obsolete COUNT : 0
|
|
485
|
+
rocksdb.compaction.optimized.del.drop.obsolete COUNT : 0
|
|
486
|
+
rocksdb.compaction.cancelled COUNT : 0
|
|
487
|
+
rocksdb.compaction.aborted COUNT : 0
|
|
488
|
+
rocksdb.number.keys.written COUNT : 0
|
|
489
|
+
rocksdb.number.keys.read COUNT : 0
|
|
490
|
+
rocksdb.number.keys.updated COUNT : 0
|
|
491
|
+
rocksdb.bytes.written COUNT : 0
|
|
492
|
+
rocksdb.bytes.read COUNT : 0
|
|
493
|
+
rocksdb.number.db.seek COUNT : 0
|
|
494
|
+
rocksdb.number.db.next COUNT : 0
|
|
495
|
+
rocksdb.number.db.prev COUNT : 0
|
|
496
|
+
rocksdb.number.db.seek.found COUNT : 0
|
|
497
|
+
rocksdb.number.db.next.found COUNT : 0
|
|
498
|
+
rocksdb.number.db.prev.found COUNT : 0
|
|
499
|
+
rocksdb.db.iter.bytes.read COUNT : 0
|
|
500
|
+
rocksdb.number.iter.skip COUNT : 0
|
|
501
|
+
rocksdb.number.reseeks.iteration COUNT : 0
|
|
502
|
+
rocksdb.num.iterator.created COUNT : 0
|
|
503
|
+
rocksdb.num.iterator.deleted COUNT : 0
|
|
504
|
+
rocksdb.no.file.opens COUNT : 0
|
|
505
|
+
rocksdb.no.file.errors COUNT : 0
|
|
506
|
+
rocksdb.stall.micros COUNT : 0
|
|
507
|
+
rocksdb.db.mutex.wait.micros COUNT : 0
|
|
508
|
+
rocksdb.number.multiget.get COUNT : 0
|
|
509
|
+
rocksdb.number.multiget.keys.read COUNT : 0
|
|
510
|
+
rocksdb.number.multiget.bytes.read COUNT : 0
|
|
511
|
+
rocksdb.number.multiget.keys.found COUNT : 0
|
|
512
|
+
rocksdb.number.merge.failures COUNT : 0
|
|
513
|
+
rocksdb.getupdatessince.calls COUNT : 0
|
|
514
|
+
rocksdb.wal.synced COUNT : 0
|
|
515
|
+
rocksdb.wal.bytes COUNT : 0
|
|
516
|
+
rocksdb.write.self COUNT : 0
|
|
517
|
+
rocksdb.write.other COUNT : 0
|
|
518
|
+
rocksdb.write.wal COUNT : 0
|
|
519
|
+
rocksdb.compact.read.bytes COUNT : 0
|
|
520
|
+
rocksdb.compact.write.bytes COUNT : 0
|
|
521
|
+
rocksdb.flush.write.bytes COUNT : 0
|
|
522
|
+
rocksdb.compact.read.marked.bytes COUNT : 0
|
|
523
|
+
rocksdb.compact.read.periodic.bytes COUNT : 0
|
|
524
|
+
rocksdb.compact.read.ttl.bytes COUNT : 0
|
|
525
|
+
rocksdb.compact.write.marked.bytes COUNT : 0
|
|
526
|
+
rocksdb.compact.write.periodic.bytes COUNT : 0
|
|
527
|
+
rocksdb.compact.write.ttl.bytes COUNT : 0
|
|
528
|
+
rocksdb.number.direct.load.table.properties COUNT : 0
|
|
529
|
+
rocksdb.number.superversion_acquires COUNT : 0
|
|
530
|
+
rocksdb.number.superversion_releases COUNT : 0
|
|
531
|
+
rocksdb.number.superversion_cleanups COUNT : 0
|
|
532
|
+
rocksdb.number.block.compressed COUNT : 0
|
|
533
|
+
rocksdb.number.block.decompressed COUNT : 0
|
|
534
|
+
rocksdb.bytes.compressed.from COUNT : 0
|
|
535
|
+
rocksdb.bytes.compressed.to COUNT : 0
|
|
536
|
+
rocksdb.bytes.compression_bypassed COUNT : 0
|
|
537
|
+
rocksdb.bytes.compression.rejected COUNT : 0
|
|
538
|
+
rocksdb.number.block_compression_bypassed COUNT : 0
|
|
539
|
+
rocksdb.number.block_compression_rejected COUNT : 0
|
|
540
|
+
rocksdb.bytes.decompressed.from COUNT : 0
|
|
541
|
+
rocksdb.bytes.decompressed.to COUNT : 0
|
|
542
|
+
rocksdb.merge.operation.time.nanos COUNT : 0
|
|
543
|
+
rocksdb.filter.operation.time.nanos COUNT : 0
|
|
544
|
+
rocksdb.compaction.total.time.cpu_micros COUNT : 0
|
|
545
|
+
rocksdb.row.cache.hit COUNT : 0
|
|
546
|
+
rocksdb.row.cache.miss COUNT : 0
|
|
547
|
+
rocksdb.read.amp.estimate.useful.bytes COUNT : 0
|
|
548
|
+
rocksdb.read.amp.total.read.bytes COUNT : 0
|
|
549
|
+
rocksdb.number.rate_limiter.drains COUNT : 0
|
|
550
|
+
rocksdb.blobdb.num.put COUNT : 0
|
|
551
|
+
rocksdb.blobdb.num.write COUNT : 0
|
|
552
|
+
rocksdb.blobdb.num.get COUNT : 0
|
|
553
|
+
rocksdb.blobdb.num.multiget COUNT : 0
|
|
554
|
+
rocksdb.blobdb.num.seek COUNT : 0
|
|
555
|
+
rocksdb.blobdb.num.next COUNT : 0
|
|
556
|
+
rocksdb.blobdb.num.prev COUNT : 0
|
|
557
|
+
rocksdb.blobdb.num.keys.written COUNT : 0
|
|
558
|
+
rocksdb.blobdb.num.keys.read COUNT : 0
|
|
559
|
+
rocksdb.blobdb.bytes.written COUNT : 0
|
|
560
|
+
rocksdb.blobdb.bytes.read COUNT : 0
|
|
561
|
+
rocksdb.blobdb.write.inlined COUNT : 0
|
|
562
|
+
rocksdb.blobdb.write.inlined.ttl COUNT : 0
|
|
563
|
+
rocksdb.blobdb.write.blob COUNT : 0
|
|
564
|
+
rocksdb.blobdb.write.blob.ttl COUNT : 0
|
|
565
|
+
rocksdb.blobdb.blob.file.bytes.written COUNT : 0
|
|
566
|
+
rocksdb.blobdb.blob.file.bytes.read COUNT : 0
|
|
567
|
+
rocksdb.blobdb.blob.file.synced COUNT : 0
|
|
568
|
+
rocksdb.blobdb.blob.index.expired.count COUNT : 0
|
|
569
|
+
rocksdb.blobdb.blob.index.expired.size COUNT : 0
|
|
570
|
+
rocksdb.blobdb.blob.index.evicted.count COUNT : 0
|
|
571
|
+
rocksdb.blobdb.blob.index.evicted.size COUNT : 0
|
|
572
|
+
rocksdb.blobdb.gc.num.files COUNT : 0
|
|
573
|
+
rocksdb.blobdb.gc.num.new.files COUNT : 0
|
|
574
|
+
rocksdb.blobdb.gc.failures COUNT : 0
|
|
575
|
+
rocksdb.blobdb.gc.num.keys.relocated COUNT : 0
|
|
576
|
+
rocksdb.blobdb.gc.bytes.relocated COUNT : 0
|
|
577
|
+
rocksdb.blobdb.fifo.num.files.evicted COUNT : 0
|
|
578
|
+
rocksdb.blobdb.fifo.num.keys.evicted COUNT : 0
|
|
579
|
+
rocksdb.blobdb.fifo.bytes.evicted COUNT : 0
|
|
580
|
+
rocksdb.blobdb.cache.miss COUNT : 0
|
|
581
|
+
rocksdb.blobdb.cache.hit COUNT : 0
|
|
582
|
+
rocksdb.blobdb.cache.add COUNT : 0
|
|
583
|
+
rocksdb.blobdb.cache.add.failures COUNT : 0
|
|
584
|
+
rocksdb.blobdb.cache.bytes.read COUNT : 0
|
|
585
|
+
rocksdb.blobdb.cache.bytes.write COUNT : 0
|
|
586
|
+
rocksdb.txn.overhead.mutex.prepare COUNT : 0
|
|
587
|
+
rocksdb.txn.overhead.mutex.old.commit.map COUNT : 0
|
|
588
|
+
rocksdb.txn.overhead.duplicate.key COUNT : 0
|
|
589
|
+
rocksdb.txn.overhead.mutex.snapshot COUNT : 0
|
|
590
|
+
rocksdb.txn.get.tryagain COUNT : 0
|
|
591
|
+
rocksdb.files.marked.trash COUNT : 0
|
|
592
|
+
rocksdb.files.marked.trash.deleted COUNT : 0
|
|
593
|
+
rocksdb.files.deleted.immediately COUNT : 0
|
|
594
|
+
rocksdb.error.handler.bg.error.count COUNT : 0
|
|
595
|
+
rocksdb.error.handler.bg.io.error.count COUNT : 0
|
|
596
|
+
rocksdb.error.handler.bg.retryable.io.error.count COUNT : 0
|
|
597
|
+
rocksdb.error.handler.autoresume.count COUNT : 0
|
|
598
|
+
rocksdb.error.handler.autoresume.retry.total.count COUNT : 0
|
|
599
|
+
rocksdb.error.handler.autoresume.success.count COUNT : 0
|
|
600
|
+
rocksdb.memtable.payload.bytes.at.flush COUNT : 0
|
|
601
|
+
rocksdb.memtable.garbage.bytes.at.flush COUNT : 0
|
|
602
|
+
rocksdb.verify_checksum.read.bytes COUNT : 0
|
|
603
|
+
rocksdb.backup.read.bytes COUNT : 0
|
|
604
|
+
rocksdb.backup.write.bytes COUNT : 0
|
|
605
|
+
rocksdb.remote.compact.read.bytes COUNT : 0
|
|
606
|
+
rocksdb.remote.compact.write.bytes COUNT : 0
|
|
607
|
+
rocksdb.remote.compact.resumed.bytes COUNT : 0
|
|
608
|
+
rocksdb.hot.file.read.bytes COUNT : 0
|
|
609
|
+
rocksdb.warm.file.read.bytes COUNT : 0
|
|
610
|
+
rocksdb.cool.file.read.bytes COUNT : 0
|
|
611
|
+
rocksdb.cold.file.read.bytes COUNT : 0
|
|
612
|
+
rocksdb.ice.file.read.bytes COUNT : 0
|
|
613
|
+
rocksdb.hot.file.read.count COUNT : 0
|
|
614
|
+
rocksdb.warm.file.read.count COUNT : 0
|
|
615
|
+
rocksdb.cool.file.read.count COUNT : 0
|
|
616
|
+
rocksdb.cold.file.read.count COUNT : 0
|
|
617
|
+
rocksdb.ice.file.read.count COUNT : 0
|
|
618
|
+
rocksdb.last.level.read.bytes COUNT : 0
|
|
619
|
+
rocksdb.last.level.read.count COUNT : 0
|
|
620
|
+
rocksdb.non.last.level.read.bytes COUNT : 0
|
|
621
|
+
rocksdb.non.last.level.read.count COUNT : 0
|
|
622
|
+
rocksdb.last.level.seek.filtered COUNT : 0
|
|
623
|
+
rocksdb.last.level.seek.filter.match COUNT : 0
|
|
624
|
+
rocksdb.last.level.seek.data COUNT : 0
|
|
625
|
+
rocksdb.last.level.seek.data.useful.no.filter COUNT : 0
|
|
626
|
+
rocksdb.last.level.seek.data.useful.filter.match COUNT : 0
|
|
627
|
+
rocksdb.non.last.level.seek.filtered COUNT : 0
|
|
628
|
+
rocksdb.non.last.level.seek.filter.match COUNT : 0
|
|
629
|
+
rocksdb.non.last.level.seek.data COUNT : 0
|
|
630
|
+
rocksdb.non.last.level.seek.data.useful.no.filter COUNT : 0
|
|
631
|
+
rocksdb.non.last.level.seek.data.useful.filter.match COUNT : 0
|
|
632
|
+
rocksdb.block.checksum.compute.count COUNT : 0
|
|
633
|
+
rocksdb.block.checksum.mismatch.count COUNT : 0
|
|
634
|
+
rocksdb.multiget.coroutine.count COUNT : 0
|
|
635
|
+
rocksdb.read.async.micros COUNT : 0
|
|
636
|
+
rocksdb.async.read.error.count COUNT : 0
|
|
637
|
+
rocksdb.table.open.prefetch.tail.miss COUNT : 0
|
|
638
|
+
rocksdb.table.open.prefetch.tail.hit COUNT : 0
|
|
639
|
+
rocksdb.timestamp.filter.table.checked COUNT : 0
|
|
640
|
+
rocksdb.timestamp.filter.table.filtered COUNT : 0
|
|
641
|
+
rocksdb.readahead.trimmed COUNT : 0
|
|
642
|
+
rocksdb.fifo.max.size.compactions COUNT : 0
|
|
643
|
+
rocksdb.fifo.ttl.compactions COUNT : 0
|
|
644
|
+
rocksdb.fifo.change_temperature.compactions COUNT : 0
|
|
645
|
+
rocksdb.prefetch.bytes COUNT : 0
|
|
646
|
+
rocksdb.prefetch.bytes.useful COUNT : 0
|
|
647
|
+
rocksdb.prefetch.hits COUNT : 0
|
|
648
|
+
rocksdb.footer.corruption.count COUNT : 0
|
|
649
|
+
rocksdb.file.read.corruption.retry.count COUNT : 0
|
|
650
|
+
rocksdb.file.read.corruption.retry.success.count COUNT : 0
|
|
651
|
+
rocksdb.number.wbwi.ingest COUNT : 0
|
|
652
|
+
rocksdb.sst.user.defined.index.load.fail.count COUNT : 0
|
|
653
|
+
rocksdb.multiscan.prepare.calls COUNT : 0
|
|
654
|
+
rocksdb.multiscan.prepare.errors COUNT : 0
|
|
655
|
+
rocksdb.multiscan.blocks.prefetched COUNT : 0
|
|
656
|
+
rocksdb.multiscan.blocks.from.cache COUNT : 0
|
|
657
|
+
rocksdb.multiscan.prefetch.bytes COUNT : 0
|
|
658
|
+
rocksdb.multiscan.prefetch.blocks.wasted COUNT : 0
|
|
659
|
+
rocksdb.multiscan.io.requests COUNT : 0
|
|
660
|
+
rocksdb.multiscan.io.coalesced.nonadjacent COUNT : 0
|
|
661
|
+
rocksdb.multiscan.seek.errors COUNT : 0
|
|
662
|
+
rocksdb.prefetch.memory.bytes.granted COUNT : 0
|
|
663
|
+
rocksdb.prefetch.memory.bytes.released COUNT : 0
|
|
664
|
+
rocksdb.prefetch.memory.requests.blocked COUNT : 0
|
|
665
|
+
rocksdb.db.get.micros P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
|
|
666
|
+
rocksdb.db.write.micros P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
|
|
667
|
+
rocksdb.compaction.times.micros P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
|
|
668
|
+
rocksdb.compaction.times.cpu_micros P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
|
|
669
|
+
rocksdb.subcompaction.setup.times.micros P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
|
|
670
|
+
rocksdb.table.sync.micros P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
|
|
671
|
+
rocksdb.compaction.outfile.sync.micros P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
|
|
672
|
+
rocksdb.wal.file.sync.micros P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
|
|
673
|
+
rocksdb.manifest.file.sync.micros P50 : 1300.000000 P95 : 1334.000000 P99 : 1334.000000 P100 : 1334.000000 COUNT : 2 SUM : 2511
|
|
674
|
+
rocksdb.table.open.io.micros P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
|
|
675
|
+
rocksdb.db.multiget.micros P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
|
|
676
|
+
rocksdb.read.block.compaction.micros P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
|
|
677
|
+
rocksdb.read.block.get.micros P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
|
|
678
|
+
rocksdb.write.raw.block.micros P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
|
|
679
|
+
rocksdb.numfiles.in.singlecompaction P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
|
|
680
|
+
rocksdb.db.seek.micros P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
|
|
681
|
+
rocksdb.db.write.stall P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
|
|
682
|
+
rocksdb.sst.read.micros P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
|
|
683
|
+
rocksdb.file.read.flush.micros P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
|
|
684
|
+
rocksdb.file.read.compaction.micros P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
|
|
685
|
+
rocksdb.file.read.db.open.micros P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
|
|
686
|
+
rocksdb.file.read.get.micros P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
|
|
687
|
+
rocksdb.file.read.multiget.micros P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
|
|
688
|
+
rocksdb.file.read.db.iterator.micros P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
|
|
689
|
+
rocksdb.file.read.verify.db.checksum.micros P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
|
|
690
|
+
rocksdb.file.read.verify.file.checksums.micros P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
|
|
691
|
+
rocksdb.sst.write.micros P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
|
|
692
|
+
rocksdb.file.write.flush.micros P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
|
|
693
|
+
rocksdb.file.write.compaction.micros P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
|
|
694
|
+
rocksdb.file.write.db.open.micros P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
|
|
695
|
+
rocksdb.num.subcompactions.scheduled P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
|
|
696
|
+
rocksdb.bytes.per.read P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
|
|
697
|
+
rocksdb.bytes.per.write P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
|
|
698
|
+
rocksdb.bytes.per.multiget P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
|
|
699
|
+
rocksdb.compression.times.nanos P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
|
|
700
|
+
rocksdb.decompression.times.nanos P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
|
|
701
|
+
rocksdb.read.num.merge_operands P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
|
|
702
|
+
rocksdb.blobdb.key.size P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
|
|
703
|
+
rocksdb.blobdb.value.size P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
|
|
704
|
+
rocksdb.blobdb.write.micros P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
|
|
705
|
+
rocksdb.blobdb.get.micros P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
|
|
706
|
+
rocksdb.blobdb.multiget.micros P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
|
|
707
|
+
rocksdb.blobdb.seek.micros P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
|
|
708
|
+
rocksdb.blobdb.next.micros P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
|
|
709
|
+
rocksdb.blobdb.prev.micros P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
|
|
710
|
+
rocksdb.blobdb.blob.file.write.micros P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
|
|
711
|
+
rocksdb.blobdb.blob.file.read.micros P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
|
|
712
|
+
rocksdb.blobdb.blob.file.sync.micros P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
|
|
713
|
+
rocksdb.blobdb.compression.micros P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
|
|
714
|
+
rocksdb.blobdb.decompression.micros P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
|
|
715
|
+
rocksdb.db.flush.micros P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
|
|
716
|
+
rocksdb.sst.batch.size P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
|
|
717
|
+
rocksdb.multiget.io.batch.size P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
|
|
718
|
+
rocksdb.num.index.and.filter.blocks.read.per.level P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
|
|
719
|
+
rocksdb.num.sst.read.per.level P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
|
|
720
|
+
rocksdb.num.level.read.per.multiget P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
|
|
721
|
+
rocksdb.error.handler.autoresume.retry.count P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
|
|
722
|
+
rocksdb.async.read.bytes P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
|
|
723
|
+
rocksdb.poll.wait.micros P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
|
|
724
|
+
rocksdb.compaction.prefetch.bytes P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
|
|
725
|
+
rocksdb.prefetched.bytes.discarded P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
|
|
726
|
+
rocksdb.async.prefetch.abort.micros P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
|
|
727
|
+
rocksdb.table.open.prefetch.tail.read.bytes P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
|
|
728
|
+
rocksdb.num.op.per.transaction P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
|
|
729
|
+
rocksdb.multiscan.op.prepare.iterators.micros P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
|
|
730
|
+
rocksdb.multiscan.prepare.micros P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
|
|
731
|
+
rocksdb.multiscan.blocks.per.prepare P50 : 0.000000 P95 : 0.000000 P99 : 0.000000 P100 : 0.000000 COUNT : 0 SUM : 0
|
|
732
|
+
2026/05/11-16:52:46.921214 270170 [db/column_family.cc:697] --------------- Options for column family [__dbis__]:
|
|
733
|
+
2026/05/11-16:52:46.921219 270170 Options.comparator: leveldb.BytewiseComparator
|
|
734
|
+
2026/05/11-16:52:46.921220 270170 Options.merge_operator: None
|
|
735
|
+
2026/05/11-16:52:46.921220 270170 Options.compaction_filter: None
|
|
736
|
+
2026/05/11-16:52:46.921221 270170 Options.compaction_filter_factory: None
|
|
737
|
+
2026/05/11-16:52:46.921221 270170 Options.sst_partitioner_factory: None
|
|
738
|
+
2026/05/11-16:52:46.921222 270170 Options.memtable_factory: SkipListFactory
|
|
739
|
+
2026/05/11-16:52:46.921222 270170 Options.table_factory: BlockBasedTable
|
|
740
|
+
2026/05/11-16:52:46.921232 270170 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x3686d8d0)
|
|
741
|
+
cache_index_and_filter_blocks: 0
|
|
742
|
+
cache_index_and_filter_blocks_with_high_priority: 1
|
|
743
|
+
pin_l0_filter_and_index_blocks_in_cache: 0
|
|
744
|
+
pin_top_level_index_and_filter: 1
|
|
745
|
+
index_type: 0
|
|
746
|
+
data_block_index_type: 0
|
|
747
|
+
index_shortening: 1
|
|
748
|
+
data_block_hash_table_util_ratio: 0.750000
|
|
749
|
+
checksum: 4
|
|
750
|
+
no_block_cache: 0
|
|
751
|
+
block_cache: 0x365c6200
|
|
752
|
+
block_cache_name: LRUCache
|
|
753
|
+
block_cache_options:
|
|
754
|
+
capacity : 8192008192
|
|
755
|
+
num_shard_bits : 6
|
|
756
|
+
strict_capacity_limit : 0
|
|
757
|
+
memory_allocator : None
|
|
758
|
+
high_pri_pool_ratio: 0.500
|
|
759
|
+
low_pri_pool_ratio: 0.000
|
|
760
|
+
persistent_cache: (nil)
|
|
761
|
+
block_size: 4096
|
|
762
|
+
block_size_deviation: 10
|
|
763
|
+
block_restart_interval: 16
|
|
764
|
+
index_block_restart_interval: 1
|
|
765
|
+
metadata_block_size: 4096
|
|
766
|
+
partition_filters: 0
|
|
767
|
+
use_delta_encoding: 1
|
|
768
|
+
filter_policy: nullptr
|
|
769
|
+
user_defined_index_factory: nullptr
|
|
770
|
+
fail_if_no_udi_on_open: 0
|
|
771
|
+
whole_key_filtering: 1
|
|
772
|
+
verify_compression: 0
|
|
773
|
+
read_amp_bytes_per_bit: 0
|
|
774
|
+
format_version: 7
|
|
775
|
+
enable_index_compression: 1
|
|
776
|
+
block_align: 0
|
|
777
|
+
super_block_alignment_size: 0
|
|
778
|
+
super_block_alignment_space_overhead_ratio: 128
|
|
779
|
+
max_auto_readahead_size: 262144
|
|
780
|
+
prepopulate_block_cache: 0
|
|
781
|
+
initial_auto_readahead_size: 8192
|
|
782
|
+
num_file_reads_for_auto_readahead: 2
|
|
783
|
+
2026/05/11-16:52:46.921232 270170 Options.write_buffer_size: 67108864
|
|
784
|
+
2026/05/11-16:52:46.921233 270170 Options.max_write_buffer_number: 2
|
|
785
|
+
2026/05/11-16:52:46.921234 270170 Options.compression: NoCompression
|
|
786
|
+
2026/05/11-16:52:46.921234 270170 Options.bottommost_compression: Disabled
|
|
787
|
+
2026/05/11-16:52:46.921235 270170 Options.prefix_extractor: nullptr
|
|
788
|
+
2026/05/11-16:52:46.921235 270170 Options.memtable_insert_with_hint_prefix_extractor: nullptr
|
|
789
|
+
2026/05/11-16:52:46.921236 270170 Options.num_levels: 7
|
|
790
|
+
2026/05/11-16:52:46.921236 270170 Options.min_write_buffer_number_to_merge: 1
|
|
791
|
+
2026/05/11-16:52:46.921237 270170 Options.max_write_buffer_size_to_maintain: 0
|
|
792
|
+
2026/05/11-16:52:46.921237 270170 Options.bottommost_compression_opts.window_bits: -14
|
|
793
|
+
2026/05/11-16:52:46.921238 270170 Options.bottommost_compression_opts.level: 32767
|
|
794
|
+
2026/05/11-16:52:46.921238 270170 Options.bottommost_compression_opts.strategy: 0
|
|
795
|
+
2026/05/11-16:52:46.921239 270170 Options.bottommost_compression_opts.max_dict_bytes: 0
|
|
796
|
+
2026/05/11-16:52:46.921239 270170 Options.bottommost_compression_opts.zstd_max_train_bytes: 0
|
|
797
|
+
2026/05/11-16:52:46.921239 270170 Options.bottommost_compression_opts.parallel_threads: 1
|
|
798
|
+
2026/05/11-16:52:46.921240 270170 Options.bottommost_compression_opts.enabled: false
|
|
799
|
+
2026/05/11-16:52:46.921240 270170 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0
|
|
800
|
+
2026/05/11-16:52:46.921241 270170 Options.bottommost_compression_opts.use_zstd_dict_trainer: true
|
|
801
|
+
2026/05/11-16:52:46.921241 270170 Options.compression_opts.window_bits: -14
|
|
802
|
+
2026/05/11-16:52:46.921242 270170 Options.compression_opts.level: 32767
|
|
803
|
+
2026/05/11-16:52:46.921242 270170 Options.compression_opts.strategy: 0
|
|
804
|
+
2026/05/11-16:52:46.921243 270170 Options.compression_opts.max_dict_bytes: 0
|
|
805
|
+
2026/05/11-16:52:46.921243 270170 Options.compression_opts.zstd_max_train_bytes: 0
|
|
806
|
+
2026/05/11-16:52:46.921244 270170 Options.compression_opts.use_zstd_dict_trainer: true
|
|
807
|
+
2026/05/11-16:52:46.921244 270170 Options.compression_opts.parallel_threads: 1
|
|
808
|
+
2026/05/11-16:52:46.921244 270170 Options.compression_opts.enabled: false
|
|
809
|
+
2026/05/11-16:52:46.921245 270170 Options.compression_opts.max_dict_buffer_bytes: 0
|
|
810
|
+
2026/05/11-16:52:46.921245 270170 Options.level0_file_num_compaction_trigger: 4
|
|
811
|
+
2026/05/11-16:52:46.921246 270170 Options.level0_slowdown_writes_trigger: 20
|
|
812
|
+
2026/05/11-16:52:46.921246 270170 Options.level0_stop_writes_trigger: 36
|
|
813
|
+
2026/05/11-16:52:46.921247 270170 Options.target_file_size_base: 67108864
|
|
814
|
+
2026/05/11-16:52:46.921247 270170 Options.target_file_size_multiplier: 1
|
|
815
|
+
2026/05/11-16:52:46.921248 270170 Options.target_file_size_is_upper_bound: 0
|
|
816
|
+
2026/05/11-16:52:46.921248 270170 Options.max_bytes_for_level_base: 268435456
|
|
817
|
+
2026/05/11-16:52:46.921249 270170 Options.level_compaction_dynamic_level_bytes: 1
|
|
818
|
+
2026/05/11-16:52:46.921249 270170 Options.max_bytes_for_level_multiplier: 10.000000
|
|
819
|
+
2026/05/11-16:52:46.921250 270170 Options.max_bytes_for_level_multiplier_addtl[0]: 1
|
|
820
|
+
2026/05/11-16:52:46.921251 270170 Options.max_bytes_for_level_multiplier_addtl[1]: 1
|
|
821
|
+
2026/05/11-16:52:46.921251 270170 Options.max_bytes_for_level_multiplier_addtl[2]: 1
|
|
822
|
+
2026/05/11-16:52:46.921251 270170 Options.max_bytes_for_level_multiplier_addtl[3]: 1
|
|
823
|
+
2026/05/11-16:52:46.921252 270170 Options.max_bytes_for_level_multiplier_addtl[4]: 1
|
|
824
|
+
2026/05/11-16:52:46.921252 270170 Options.max_bytes_for_level_multiplier_addtl[5]: 1
|
|
825
|
+
2026/05/11-16:52:46.921253 270170 Options.max_bytes_for_level_multiplier_addtl[6]: 1
|
|
826
|
+
2026/05/11-16:52:46.921253 270170 Options.max_sequential_skip_in_iterations: 8
|
|
827
|
+
2026/05/11-16:52:46.921254 270170 Options.memtable_op_scan_flush_trigger: 0
|
|
828
|
+
2026/05/11-16:52:46.921254 270170 Options.memtable_avg_op_scan_flush_trigger: 0
|
|
829
|
+
2026/05/11-16:52:46.921255 270170 Options.max_compaction_bytes: 1677721600
|
|
830
|
+
2026/05/11-16:52:46.921255 270170 Options.arena_block_size: 1048576
|
|
831
|
+
2026/05/11-16:52:46.921256 270170 Options.soft_pending_compaction_bytes_limit: 68719476736
|
|
832
|
+
2026/05/11-16:52:46.921256 270170 Options.hard_pending_compaction_bytes_limit: 274877906944
|
|
833
|
+
2026/05/11-16:52:46.921256 270170 Options.disable_auto_compactions: 0
|
|
834
|
+
2026/05/11-16:52:46.921258 270170 Options.compaction_style: kCompactionStyleLevel
|
|
835
|
+
2026/05/11-16:52:46.921258 270170 Options.compaction_pri: kMinOverlappingRatio
|
|
836
|
+
2026/05/11-16:52:46.921259 270170 Options.compaction_options_universal.size_ratio: 1
|
|
837
|
+
2026/05/11-16:52:46.921259 270170 Options.compaction_options_universal.min_merge_width: 2
|
|
838
|
+
2026/05/11-16:52:46.921260 270170 Options.compaction_options_universal.max_merge_width: 4294967295
|
|
839
|
+
2026/05/11-16:52:46.921260 270170 Options.compaction_options_universal.max_size_amplification_percent: 200
|
|
840
|
+
2026/05/11-16:52:46.921261 270170 Options.compaction_options_universal.compression_size_percent: -1
|
|
841
|
+
2026/05/11-16:52:46.921261 270170 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize
|
|
842
|
+
2026/05/11-16:52:46.921262 270170 Options.compaction_options_universal.max_read_amp: -1
|
|
843
|
+
2026/05/11-16:52:46.921262 270170 Options.compaction_options_universal.reduce_file_locking: 1
|
|
844
|
+
2026/05/11-16:52:46.921263 270170 Options.compaction_options_fifo.max_table_files_size: 1073741824
|
|
845
|
+
2026/05/11-16:52:46.921263 270170 Options.compaction_options_fifo.allow_compaction: 0
|
|
846
|
+
2026/05/11-16:52:46.921265 270170 Options.table_properties_collectors:
|
|
847
|
+
2026/05/11-16:52:46.921265 270170 Options.inplace_update_support: 0
|
|
848
|
+
2026/05/11-16:52:46.921266 270170 Options.inplace_update_num_locks: 10000
|
|
849
|
+
2026/05/11-16:52:46.921266 270170 Options.memtable_prefix_bloom_size_ratio: 0.000000
|
|
850
|
+
2026/05/11-16:52:46.921267 270170 Options.memtable_whole_key_filtering: 0
|
|
851
|
+
2026/05/11-16:52:46.921267 270170 Options.memtable_huge_page_size: 0
|
|
852
|
+
2026/05/11-16:52:46.921268 270170 Options.bloom_locality: 0
|
|
853
|
+
2026/05/11-16:52:46.921268 270170 Options.max_successive_merges: 0
|
|
854
|
+
2026/05/11-16:52:46.921269 270170 Options.strict_max_successive_merges: 0
|
|
855
|
+
2026/05/11-16:52:46.921269 270170 Options.optimize_filters_for_hits: 0
|
|
856
|
+
2026/05/11-16:52:46.921270 270170 Options.paranoid_file_checks: 0
|
|
857
|
+
2026/05/11-16:52:46.921270 270170 Options.force_consistency_checks: 1
|
|
858
|
+
2026/05/11-16:52:46.921271 270170 Options.report_bg_io_stats: 0
|
|
859
|
+
2026/05/11-16:52:46.921271 270170 Options.disallow_memtable_writes: 0
|
|
860
|
+
2026/05/11-16:52:46.921271 270170 Options.ttl: 2592000
|
|
861
|
+
2026/05/11-16:52:46.921272 270170 Options.periodic_compaction_seconds: 0
|
|
862
|
+
2026/05/11-16:52:46.921273 270170 Options.default_temperature: kUnknown
|
|
863
|
+
2026/05/11-16:52:46.921273 270170 Options.preclude_last_level_data_seconds: 0
|
|
864
|
+
2026/05/11-16:52:46.921274 270170 Options.preserve_internal_time_seconds: 0
|
|
865
|
+
2026/05/11-16:52:46.921274 270170 Options.enable_blob_files: true
|
|
866
|
+
2026/05/11-16:52:46.921275 270170 Options.min_blob_size: 2048
|
|
867
|
+
2026/05/11-16:52:46.921275 270170 Options.blob_file_size: 268435456
|
|
868
|
+
2026/05/11-16:52:46.921275 270170 Options.blob_compression_type: NoCompression
|
|
869
|
+
2026/05/11-16:52:46.921276 270170 Options.enable_blob_garbage_collection: true
|
|
870
|
+
2026/05/11-16:52:46.921276 270170 Options.blob_garbage_collection_age_cutoff: 0.250000
|
|
871
|
+
2026/05/11-16:52:46.921277 270170 Options.blob_garbage_collection_force_threshold: 1.000000
|
|
872
|
+
2026/05/11-16:52:46.921278 270170 Options.blob_compaction_readahead_size: 0
|
|
873
|
+
2026/05/11-16:52:46.921278 270170 Options.blob_file_starting_level: 0
|
|
874
|
+
2026/05/11-16:52:46.921278 270170 Options.experimental_mempurge_threshold: 0.000000
|
|
875
|
+
2026/05/11-16:52:46.921279 270170 Options.memtable_max_range_deletions: 0
|
|
876
|
+
2026/05/11-16:52:46.921279 270170 Options.cf_allow_ingest_behind: false
|
|
877
|
+
2026/05/11-16:52:46.921327 270170 [db/db_impl/db_impl.cc:3745] Created column family [__dbis__] (ID 1)
|
|
878
|
+
2026/05/11-16:52:46.925761 270170 [db/column_family.cc:697] --------------- Options for column family [hdb_session/]:
|
|
879
|
+
2026/05/11-16:52:46.925764 270170 Options.comparator: leveldb.BytewiseComparator
|
|
880
|
+
2026/05/11-16:52:46.925765 270170 Options.merge_operator: None
|
|
881
|
+
2026/05/11-16:52:46.925765 270170 Options.compaction_filter: None
|
|
882
|
+
2026/05/11-16:52:46.925766 270170 Options.compaction_filter_factory: None
|
|
883
|
+
2026/05/11-16:52:46.925766 270170 Options.sst_partitioner_factory: None
|
|
884
|
+
2026/05/11-16:52:46.925767 270170 Options.memtable_factory: SkipListFactory
|
|
885
|
+
2026/05/11-16:52:46.925767 270170 Options.table_factory: BlockBasedTable
|
|
886
|
+
2026/05/11-16:52:46.925780 270170 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x36868120)
|
|
887
|
+
cache_index_and_filter_blocks: 0
|
|
888
|
+
cache_index_and_filter_blocks_with_high_priority: 1
|
|
889
|
+
pin_l0_filter_and_index_blocks_in_cache: 0
|
|
890
|
+
pin_top_level_index_and_filter: 1
|
|
891
|
+
index_type: 0
|
|
892
|
+
data_block_index_type: 0
|
|
893
|
+
index_shortening: 1
|
|
894
|
+
data_block_hash_table_util_ratio: 0.750000
|
|
895
|
+
checksum: 4
|
|
896
|
+
no_block_cache: 0
|
|
897
|
+
block_cache: 0x365c6200
|
|
898
|
+
block_cache_name: LRUCache
|
|
899
|
+
block_cache_options:
|
|
900
|
+
capacity : 8192008192
|
|
901
|
+
num_shard_bits : 6
|
|
902
|
+
strict_capacity_limit : 0
|
|
903
|
+
memory_allocator : None
|
|
904
|
+
high_pri_pool_ratio: 0.500
|
|
905
|
+
low_pri_pool_ratio: 0.000
|
|
906
|
+
persistent_cache: (nil)
|
|
907
|
+
block_size: 4096
|
|
908
|
+
block_size_deviation: 10
|
|
909
|
+
block_restart_interval: 16
|
|
910
|
+
index_block_restart_interval: 1
|
|
911
|
+
metadata_block_size: 4096
|
|
912
|
+
partition_filters: 0
|
|
913
|
+
use_delta_encoding: 1
|
|
914
|
+
filter_policy: nullptr
|
|
915
|
+
user_defined_index_factory: nullptr
|
|
916
|
+
fail_if_no_udi_on_open: 0
|
|
917
|
+
whole_key_filtering: 1
|
|
918
|
+
verify_compression: 0
|
|
919
|
+
read_amp_bytes_per_bit: 0
|
|
920
|
+
format_version: 7
|
|
921
|
+
enable_index_compression: 1
|
|
922
|
+
block_align: 0
|
|
923
|
+
super_block_alignment_size: 0
|
|
924
|
+
super_block_alignment_space_overhead_ratio: 128
|
|
925
|
+
max_auto_readahead_size: 262144
|
|
926
|
+
prepopulate_block_cache: 0
|
|
927
|
+
initial_auto_readahead_size: 8192
|
|
928
|
+
num_file_reads_for_auto_readahead: 2
|
|
929
|
+
2026/05/11-16:52:46.925781 270170 Options.write_buffer_size: 67108864
|
|
930
|
+
2026/05/11-16:52:46.925782 270170 Options.max_write_buffer_number: 2
|
|
931
|
+
2026/05/11-16:52:46.925782 270170 Options.compression: NoCompression
|
|
932
|
+
2026/05/11-16:52:46.925783 270170 Options.bottommost_compression: Disabled
|
|
933
|
+
2026/05/11-16:52:46.925784 270170 Options.prefix_extractor: nullptr
|
|
934
|
+
2026/05/11-16:52:46.925784 270170 Options.memtable_insert_with_hint_prefix_extractor: nullptr
|
|
935
|
+
2026/05/11-16:52:46.925784 270170 Options.num_levels: 7
|
|
936
|
+
2026/05/11-16:52:46.925785 270170 Options.min_write_buffer_number_to_merge: 1
|
|
937
|
+
2026/05/11-16:52:46.925785 270170 Options.max_write_buffer_size_to_maintain: 0
|
|
938
|
+
2026/05/11-16:52:46.925786 270170 Options.bottommost_compression_opts.window_bits: -14
|
|
939
|
+
2026/05/11-16:52:46.925787 270170 Options.bottommost_compression_opts.level: 32767
|
|
940
|
+
2026/05/11-16:52:46.925787 270170 Options.bottommost_compression_opts.strategy: 0
|
|
941
|
+
2026/05/11-16:52:46.925788 270170 Options.bottommost_compression_opts.max_dict_bytes: 0
|
|
942
|
+
2026/05/11-16:52:46.925788 270170 Options.bottommost_compression_opts.zstd_max_train_bytes: 0
|
|
943
|
+
2026/05/11-16:52:46.925789 270170 Options.bottommost_compression_opts.parallel_threads: 1
|
|
944
|
+
2026/05/11-16:52:46.925789 270170 Options.bottommost_compression_opts.enabled: false
|
|
945
|
+
2026/05/11-16:52:46.925790 270170 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0
|
|
946
|
+
2026/05/11-16:52:46.925790 270170 Options.bottommost_compression_opts.use_zstd_dict_trainer: true
|
|
947
|
+
2026/05/11-16:52:46.925791 270170 Options.compression_opts.window_bits: -14
|
|
948
|
+
2026/05/11-16:52:46.925791 270170 Options.compression_opts.level: 32767
|
|
949
|
+
2026/05/11-16:52:46.925792 270170 Options.compression_opts.strategy: 0
|
|
950
|
+
2026/05/11-16:52:46.925792 270170 Options.compression_opts.max_dict_bytes: 0
|
|
951
|
+
2026/05/11-16:52:46.925793 270170 Options.compression_opts.zstd_max_train_bytes: 0
|
|
952
|
+
2026/05/11-16:52:46.925793 270170 Options.compression_opts.use_zstd_dict_trainer: true
|
|
953
|
+
2026/05/11-16:52:46.925794 270170 Options.compression_opts.parallel_threads: 1
|
|
954
|
+
2026/05/11-16:52:46.925794 270170 Options.compression_opts.enabled: false
|
|
955
|
+
2026/05/11-16:52:46.925795 270170 Options.compression_opts.max_dict_buffer_bytes: 0
|
|
956
|
+
2026/05/11-16:52:46.925795 270170 Options.level0_file_num_compaction_trigger: 4
|
|
957
|
+
2026/05/11-16:52:46.925796 270170 Options.level0_slowdown_writes_trigger: 20
|
|
958
|
+
2026/05/11-16:52:46.925796 270170 Options.level0_stop_writes_trigger: 36
|
|
959
|
+
2026/05/11-16:52:46.925796 270170 Options.target_file_size_base: 67108864
|
|
960
|
+
2026/05/11-16:52:46.925797 270170 Options.target_file_size_multiplier: 1
|
|
961
|
+
2026/05/11-16:52:46.925797 270170 Options.target_file_size_is_upper_bound: 0
|
|
962
|
+
2026/05/11-16:52:46.925798 270170 Options.max_bytes_for_level_base: 268435456
|
|
963
|
+
2026/05/11-16:52:46.925798 270170 Options.level_compaction_dynamic_level_bytes: 1
|
|
964
|
+
2026/05/11-16:52:46.925799 270170 Options.max_bytes_for_level_multiplier: 10.000000
|
|
965
|
+
2026/05/11-16:52:46.925800 270170 Options.max_bytes_for_level_multiplier_addtl[0]: 1
|
|
966
|
+
2026/05/11-16:52:46.925801 270170 Options.max_bytes_for_level_multiplier_addtl[1]: 1
|
|
967
|
+
2026/05/11-16:52:46.925801 270170 Options.max_bytes_for_level_multiplier_addtl[2]: 1
|
|
968
|
+
2026/05/11-16:52:46.925802 270170 Options.max_bytes_for_level_multiplier_addtl[3]: 1
|
|
969
|
+
2026/05/11-16:52:46.925802 270170 Options.max_bytes_for_level_multiplier_addtl[4]: 1
|
|
970
|
+
2026/05/11-16:52:46.925803 270170 Options.max_bytes_for_level_multiplier_addtl[5]: 1
|
|
971
|
+
2026/05/11-16:52:46.925803 270170 Options.max_bytes_for_level_multiplier_addtl[6]: 1
|
|
972
|
+
2026/05/11-16:52:46.925804 270170 Options.max_sequential_skip_in_iterations: 8
|
|
973
|
+
2026/05/11-16:52:46.925804 270170 Options.memtable_op_scan_flush_trigger: 0
|
|
974
|
+
2026/05/11-16:52:46.925805 270170 Options.memtable_avg_op_scan_flush_trigger: 0
|
|
975
|
+
2026/05/11-16:52:46.925805 270170 Options.max_compaction_bytes: 1677721600
|
|
976
|
+
2026/05/11-16:52:46.925806 270170 Options.arena_block_size: 1048576
|
|
977
|
+
2026/05/11-16:52:46.925806 270170 Options.soft_pending_compaction_bytes_limit: 68719476736
|
|
978
|
+
2026/05/11-16:52:46.925807 270170 Options.hard_pending_compaction_bytes_limit: 274877906944
|
|
979
|
+
2026/05/11-16:52:46.925807 270170 Options.disable_auto_compactions: 0
|
|
980
|
+
2026/05/11-16:52:46.925808 270170 Options.compaction_style: kCompactionStyleLevel
|
|
981
|
+
2026/05/11-16:52:46.925809 270170 Options.compaction_pri: kMinOverlappingRatio
|
|
982
|
+
2026/05/11-16:52:46.925809 270170 Options.compaction_options_universal.size_ratio: 1
|
|
983
|
+
2026/05/11-16:52:46.925810 270170 Options.compaction_options_universal.min_merge_width: 2
|
|
984
|
+
2026/05/11-16:52:46.925810 270170 Options.compaction_options_universal.max_merge_width: 4294967295
|
|
985
|
+
2026/05/11-16:52:46.925811 270170 Options.compaction_options_universal.max_size_amplification_percent: 200
|
|
986
|
+
2026/05/11-16:52:46.925811 270170 Options.compaction_options_universal.compression_size_percent: -1
|
|
987
|
+
2026/05/11-16:52:46.925812 270170 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize
|
|
988
|
+
2026/05/11-16:52:46.925812 270170 Options.compaction_options_universal.max_read_amp: -1
|
|
989
|
+
2026/05/11-16:52:46.925813 270170 Options.compaction_options_universal.reduce_file_locking: 1
|
|
990
|
+
2026/05/11-16:52:46.925813 270170 Options.compaction_options_fifo.max_table_files_size: 1073741824
|
|
991
|
+
2026/05/11-16:52:46.925814 270170 Options.compaction_options_fifo.allow_compaction: 0
|
|
992
|
+
2026/05/11-16:52:46.925815 270170 Options.table_properties_collectors:
|
|
993
|
+
2026/05/11-16:52:46.925816 270170 Options.inplace_update_support: 0
|
|
994
|
+
2026/05/11-16:52:46.925816 270170 Options.inplace_update_num_locks: 10000
|
|
995
|
+
2026/05/11-16:52:46.925817 270170 Options.memtable_prefix_bloom_size_ratio: 0.000000
|
|
996
|
+
2026/05/11-16:52:46.925818 270170 Options.memtable_whole_key_filtering: 0
|
|
997
|
+
2026/05/11-16:52:46.925818 270170 Options.memtable_huge_page_size: 0
|
|
998
|
+
2026/05/11-16:52:46.925819 270170 Options.bloom_locality: 0
|
|
999
|
+
2026/05/11-16:52:46.925819 270170 Options.max_successive_merges: 0
|
|
1000
|
+
2026/05/11-16:52:46.925820 270170 Options.strict_max_successive_merges: 0
|
|
1001
|
+
2026/05/11-16:52:46.925820 270170 Options.optimize_filters_for_hits: 0
|
|
1002
|
+
2026/05/11-16:52:46.925821 270170 Options.paranoid_file_checks: 0
|
|
1003
|
+
2026/05/11-16:52:46.925821 270170 Options.force_consistency_checks: 1
|
|
1004
|
+
2026/05/11-16:52:46.925822 270170 Options.report_bg_io_stats: 0
|
|
1005
|
+
2026/05/11-16:52:46.925822 270170 Options.disallow_memtable_writes: 0
|
|
1006
|
+
2026/05/11-16:52:46.925823 270170 Options.ttl: 2592000
|
|
1007
|
+
2026/05/11-16:52:46.925823 270170 Options.periodic_compaction_seconds: 0
|
|
1008
|
+
2026/05/11-16:52:46.925824 270170 Options.default_temperature: kUnknown
|
|
1009
|
+
2026/05/11-16:52:46.925824 270170 Options.preclude_last_level_data_seconds: 0
|
|
1010
|
+
2026/05/11-16:52:46.925825 270170 Options.preserve_internal_time_seconds: 0
|
|
1011
|
+
2026/05/11-16:52:46.925825 270170 Options.enable_blob_files: true
|
|
1012
|
+
2026/05/11-16:52:46.925826 270170 Options.min_blob_size: 2048
|
|
1013
|
+
2026/05/11-16:52:46.925826 270170 Options.blob_file_size: 268435456
|
|
1014
|
+
2026/05/11-16:52:46.925827 270170 Options.blob_compression_type: NoCompression
|
|
1015
|
+
2026/05/11-16:52:46.925827 270170 Options.enable_blob_garbage_collection: true
|
|
1016
|
+
2026/05/11-16:52:46.925828 270170 Options.blob_garbage_collection_age_cutoff: 0.250000
|
|
1017
|
+
2026/05/11-16:52:46.925828 270170 Options.blob_garbage_collection_force_threshold: 1.000000
|
|
1018
|
+
2026/05/11-16:52:46.925829 270170 Options.blob_compaction_readahead_size: 0
|
|
1019
|
+
2026/05/11-16:52:46.925829 270170 Options.blob_file_starting_level: 0
|
|
1020
|
+
2026/05/11-16:52:46.925830 270170 Options.experimental_mempurge_threshold: 0.000000
|
|
1021
|
+
2026/05/11-16:52:46.925830 270170 Options.memtable_max_range_deletions: 0
|
|
1022
|
+
2026/05/11-16:52:46.925831 270170 Options.cf_allow_ingest_behind: false
|
|
1023
|
+
2026/05/11-16:52:46.925863 270170 [db/db_impl/db_impl.cc:3745] Created column family [hdb_session/] (ID 2)
|
|
1024
|
+
2026/05/11-16:52:47.274527 270170 [db/column_family.cc:697] --------------- Options for column family [hdb_durable_session/]:
|
|
1025
|
+
2026/05/11-16:52:47.274531 270170 Options.comparator: leveldb.BytewiseComparator
|
|
1026
|
+
2026/05/11-16:52:47.274532 270170 Options.merge_operator: None
|
|
1027
|
+
2026/05/11-16:52:47.274533 270170 Options.compaction_filter: None
|
|
1028
|
+
2026/05/11-16:52:47.274533 270170 Options.compaction_filter_factory: None
|
|
1029
|
+
2026/05/11-16:52:47.274534 270170 Options.sst_partitioner_factory: None
|
|
1030
|
+
2026/05/11-16:52:47.274534 270170 Options.memtable_factory: SkipListFactory
|
|
1031
|
+
2026/05/11-16:52:47.274535 270170 Options.table_factory: BlockBasedTable
|
|
1032
|
+
2026/05/11-16:52:47.274544 270170 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x363f6c50)
|
|
1033
|
+
cache_index_and_filter_blocks: 0
|
|
1034
|
+
cache_index_and_filter_blocks_with_high_priority: 1
|
|
1035
|
+
pin_l0_filter_and_index_blocks_in_cache: 0
|
|
1036
|
+
pin_top_level_index_and_filter: 1
|
|
1037
|
+
index_type: 0
|
|
1038
|
+
data_block_index_type: 0
|
|
1039
|
+
index_shortening: 1
|
|
1040
|
+
data_block_hash_table_util_ratio: 0.750000
|
|
1041
|
+
checksum: 4
|
|
1042
|
+
no_block_cache: 0
|
|
1043
|
+
block_cache: 0x365c6200
|
|
1044
|
+
block_cache_name: LRUCache
|
|
1045
|
+
block_cache_options:
|
|
1046
|
+
capacity : 8192008192
|
|
1047
|
+
num_shard_bits : 6
|
|
1048
|
+
strict_capacity_limit : 0
|
|
1049
|
+
memory_allocator : None
|
|
1050
|
+
high_pri_pool_ratio: 0.500
|
|
1051
|
+
low_pri_pool_ratio: 0.000
|
|
1052
|
+
persistent_cache: (nil)
|
|
1053
|
+
block_size: 4096
|
|
1054
|
+
block_size_deviation: 10
|
|
1055
|
+
block_restart_interval: 16
|
|
1056
|
+
index_block_restart_interval: 1
|
|
1057
|
+
metadata_block_size: 4096
|
|
1058
|
+
partition_filters: 0
|
|
1059
|
+
use_delta_encoding: 1
|
|
1060
|
+
filter_policy: nullptr
|
|
1061
|
+
user_defined_index_factory: nullptr
|
|
1062
|
+
fail_if_no_udi_on_open: 0
|
|
1063
|
+
whole_key_filtering: 1
|
|
1064
|
+
verify_compression: 0
|
|
1065
|
+
read_amp_bytes_per_bit: 0
|
|
1066
|
+
format_version: 7
|
|
1067
|
+
enable_index_compression: 1
|
|
1068
|
+
block_align: 0
|
|
1069
|
+
super_block_alignment_size: 0
|
|
1070
|
+
super_block_alignment_space_overhead_ratio: 128
|
|
1071
|
+
max_auto_readahead_size: 262144
|
|
1072
|
+
prepopulate_block_cache: 0
|
|
1073
|
+
initial_auto_readahead_size: 8192
|
|
1074
|
+
num_file_reads_for_auto_readahead: 2
|
|
1075
|
+
2026/05/11-16:52:47.274544 270170 Options.write_buffer_size: 67108864
|
|
1076
|
+
2026/05/11-16:52:47.274545 270170 Options.max_write_buffer_number: 2
|
|
1077
|
+
2026/05/11-16:52:47.274546 270170 Options.compression: NoCompression
|
|
1078
|
+
2026/05/11-16:52:47.274546 270170 Options.bottommost_compression: Disabled
|
|
1079
|
+
2026/05/11-16:52:47.274547 270170 Options.prefix_extractor: nullptr
|
|
1080
|
+
2026/05/11-16:52:47.274547 270170 Options.memtable_insert_with_hint_prefix_extractor: nullptr
|
|
1081
|
+
2026/05/11-16:52:47.274548 270170 Options.num_levels: 7
|
|
1082
|
+
2026/05/11-16:52:47.274548 270170 Options.min_write_buffer_number_to_merge: 1
|
|
1083
|
+
2026/05/11-16:52:47.274549 270170 Options.max_write_buffer_size_to_maintain: 0
|
|
1084
|
+
2026/05/11-16:52:47.274549 270170 Options.bottommost_compression_opts.window_bits: -14
|
|
1085
|
+
2026/05/11-16:52:47.274550 270170 Options.bottommost_compression_opts.level: 32767
|
|
1086
|
+
2026/05/11-16:52:47.274550 270170 Options.bottommost_compression_opts.strategy: 0
|
|
1087
|
+
2026/05/11-16:52:47.274551 270170 Options.bottommost_compression_opts.max_dict_bytes: 0
|
|
1088
|
+
2026/05/11-16:52:47.274551 270170 Options.bottommost_compression_opts.zstd_max_train_bytes: 0
|
|
1089
|
+
2026/05/11-16:52:47.274552 270170 Options.bottommost_compression_opts.parallel_threads: 1
|
|
1090
|
+
2026/05/11-16:52:47.274552 270170 Options.bottommost_compression_opts.enabled: false
|
|
1091
|
+
2026/05/11-16:52:47.274553 270170 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0
|
|
1092
|
+
2026/05/11-16:52:47.274553 270170 Options.bottommost_compression_opts.use_zstd_dict_trainer: true
|
|
1093
|
+
2026/05/11-16:52:47.274554 270170 Options.compression_opts.window_bits: -14
|
|
1094
|
+
2026/05/11-16:52:47.274554 270170 Options.compression_opts.level: 32767
|
|
1095
|
+
2026/05/11-16:52:47.274555 270170 Options.compression_opts.strategy: 0
|
|
1096
|
+
2026/05/11-16:52:47.274555 270170 Options.compression_opts.max_dict_bytes: 0
|
|
1097
|
+
2026/05/11-16:52:47.274555 270170 Options.compression_opts.zstd_max_train_bytes: 0
|
|
1098
|
+
2026/05/11-16:52:47.274556 270170 Options.compression_opts.use_zstd_dict_trainer: true
|
|
1099
|
+
2026/05/11-16:52:47.274556 270170 Options.compression_opts.parallel_threads: 1
|
|
1100
|
+
2026/05/11-16:52:47.274557 270170 Options.compression_opts.enabled: false
|
|
1101
|
+
2026/05/11-16:52:47.274557 270170 Options.compression_opts.max_dict_buffer_bytes: 0
|
|
1102
|
+
2026/05/11-16:52:47.274558 270170 Options.level0_file_num_compaction_trigger: 4
|
|
1103
|
+
2026/05/11-16:52:47.274558 270170 Options.level0_slowdown_writes_trigger: 20
|
|
1104
|
+
2026/05/11-16:52:47.274559 270170 Options.level0_stop_writes_trigger: 36
|
|
1105
|
+
2026/05/11-16:52:47.274559 270170 Options.target_file_size_base: 67108864
|
|
1106
|
+
2026/05/11-16:52:47.274560 270170 Options.target_file_size_multiplier: 1
|
|
1107
|
+
2026/05/11-16:52:47.274560 270170 Options.target_file_size_is_upper_bound: 0
|
|
1108
|
+
2026/05/11-16:52:47.274561 270170 Options.max_bytes_for_level_base: 268435456
|
|
1109
|
+
2026/05/11-16:52:47.274561 270170 Options.level_compaction_dynamic_level_bytes: 1
|
|
1110
|
+
2026/05/11-16:52:47.274561 270170 Options.max_bytes_for_level_multiplier: 10.000000
|
|
1111
|
+
2026/05/11-16:52:47.274563 270170 Options.max_bytes_for_level_multiplier_addtl[0]: 1
|
|
1112
|
+
2026/05/11-16:52:47.274563 270170 Options.max_bytes_for_level_multiplier_addtl[1]: 1
|
|
1113
|
+
2026/05/11-16:52:47.274564 270170 Options.max_bytes_for_level_multiplier_addtl[2]: 1
|
|
1114
|
+
2026/05/11-16:52:47.274564 270170 Options.max_bytes_for_level_multiplier_addtl[3]: 1
|
|
1115
|
+
2026/05/11-16:52:47.274565 270170 Options.max_bytes_for_level_multiplier_addtl[4]: 1
|
|
1116
|
+
2026/05/11-16:52:47.274565 270170 Options.max_bytes_for_level_multiplier_addtl[5]: 1
|
|
1117
|
+
2026/05/11-16:52:47.274566 270170 Options.max_bytes_for_level_multiplier_addtl[6]: 1
|
|
1118
|
+
2026/05/11-16:52:47.274566 270170 Options.max_sequential_skip_in_iterations: 8
|
|
1119
|
+
2026/05/11-16:52:47.274567 270170 Options.memtable_op_scan_flush_trigger: 0
|
|
1120
|
+
2026/05/11-16:52:47.274567 270170 Options.memtable_avg_op_scan_flush_trigger: 0
|
|
1121
|
+
2026/05/11-16:52:47.274568 270170 Options.max_compaction_bytes: 1677721600
|
|
1122
|
+
2026/05/11-16:52:47.274568 270170 Options.arena_block_size: 1048576
|
|
1123
|
+
2026/05/11-16:52:47.274568 270170 Options.soft_pending_compaction_bytes_limit: 68719476736
|
|
1124
|
+
2026/05/11-16:52:47.274569 270170 Options.hard_pending_compaction_bytes_limit: 274877906944
|
|
1125
|
+
2026/05/11-16:52:47.274569 270170 Options.disable_auto_compactions: 0
|
|
1126
|
+
2026/05/11-16:52:47.274571 270170 Options.compaction_style: kCompactionStyleLevel
|
|
1127
|
+
2026/05/11-16:52:47.274571 270170 Options.compaction_pri: kMinOverlappingRatio
|
|
1128
|
+
2026/05/11-16:52:47.274572 270170 Options.compaction_options_universal.size_ratio: 1
|
|
1129
|
+
2026/05/11-16:52:47.274572 270170 Options.compaction_options_universal.min_merge_width: 2
|
|
1130
|
+
2026/05/11-16:52:47.274573 270170 Options.compaction_options_universal.max_merge_width: 4294967295
|
|
1131
|
+
2026/05/11-16:52:47.274573 270170 Options.compaction_options_universal.max_size_amplification_percent: 200
|
|
1132
|
+
2026/05/11-16:52:47.274574 270170 Options.compaction_options_universal.compression_size_percent: -1
|
|
1133
|
+
2026/05/11-16:52:47.274574 270170 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize
|
|
1134
|
+
2026/05/11-16:52:47.274575 270170 Options.compaction_options_universal.max_read_amp: -1
|
|
1135
|
+
2026/05/11-16:52:47.274575 270170 Options.compaction_options_universal.reduce_file_locking: 1
|
|
1136
|
+
2026/05/11-16:52:47.274576 270170 Options.compaction_options_fifo.max_table_files_size: 1073741824
|
|
1137
|
+
2026/05/11-16:52:47.274576 270170 Options.compaction_options_fifo.allow_compaction: 0
|
|
1138
|
+
2026/05/11-16:52:47.274579 270170 Options.table_properties_collectors:
|
|
1139
|
+
2026/05/11-16:52:47.274580 270170 Options.inplace_update_support: 0
|
|
1140
|
+
2026/05/11-16:52:47.274580 270170 Options.inplace_update_num_locks: 10000
|
|
1141
|
+
2026/05/11-16:52:47.274581 270170 Options.memtable_prefix_bloom_size_ratio: 0.000000
|
|
1142
|
+
2026/05/11-16:52:47.274581 270170 Options.memtable_whole_key_filtering: 0
|
|
1143
|
+
2026/05/11-16:52:47.274582 270170 Options.memtable_huge_page_size: 0
|
|
1144
|
+
2026/05/11-16:52:47.274582 270170 Options.bloom_locality: 0
|
|
1145
|
+
2026/05/11-16:52:47.274583 270170 Options.max_successive_merges: 0
|
|
1146
|
+
2026/05/11-16:52:47.274583 270170 Options.strict_max_successive_merges: 0
|
|
1147
|
+
2026/05/11-16:52:47.274584 270170 Options.optimize_filters_for_hits: 0
|
|
1148
|
+
2026/05/11-16:52:47.274584 270170 Options.paranoid_file_checks: 0
|
|
1149
|
+
2026/05/11-16:52:47.274584 270170 Options.force_consistency_checks: 1
|
|
1150
|
+
2026/05/11-16:52:47.274585 270170 Options.report_bg_io_stats: 0
|
|
1151
|
+
2026/05/11-16:52:47.274585 270170 Options.disallow_memtable_writes: 0
|
|
1152
|
+
2026/05/11-16:52:47.274586 270170 Options.ttl: 2592000
|
|
1153
|
+
2026/05/11-16:52:47.274586 270170 Options.periodic_compaction_seconds: 0
|
|
1154
|
+
2026/05/11-16:52:47.274587 270170 Options.default_temperature: kUnknown
|
|
1155
|
+
2026/05/11-16:52:47.274587 270170 Options.preclude_last_level_data_seconds: 0
|
|
1156
|
+
2026/05/11-16:52:47.274588 270170 Options.preserve_internal_time_seconds: 0
|
|
1157
|
+
2026/05/11-16:52:47.274588 270170 Options.enable_blob_files: true
|
|
1158
|
+
2026/05/11-16:52:47.274589 270170 Options.min_blob_size: 2048
|
|
1159
|
+
2026/05/11-16:52:47.274589 270170 Options.blob_file_size: 268435456
|
|
1160
|
+
2026/05/11-16:52:47.274590 270170 Options.blob_compression_type: NoCompression
|
|
1161
|
+
2026/05/11-16:52:47.274590 270170 Options.enable_blob_garbage_collection: true
|
|
1162
|
+
2026/05/11-16:52:47.274591 270170 Options.blob_garbage_collection_age_cutoff: 0.250000
|
|
1163
|
+
2026/05/11-16:52:47.274591 270170 Options.blob_garbage_collection_force_threshold: 1.000000
|
|
1164
|
+
2026/05/11-16:52:47.274592 270170 Options.blob_compaction_readahead_size: 0
|
|
1165
|
+
2026/05/11-16:52:47.274593 270170 Options.blob_file_starting_level: 0
|
|
1166
|
+
2026/05/11-16:52:47.274593 270170 Options.experimental_mempurge_threshold: 0.000000
|
|
1167
|
+
2026/05/11-16:52:47.274594 270170 Options.memtable_max_range_deletions: 0
|
|
1168
|
+
2026/05/11-16:52:47.274594 270170 Options.cf_allow_ingest_behind: false
|
|
1169
|
+
2026/05/11-16:52:47.274637 270170 [db/db_impl/db_impl.cc:3745] Created column family [hdb_durable_session/] (ID 3)
|
|
1170
|
+
2026/05/11-16:52:47.280640 270170 [db/column_family.cc:697] --------------- Options for column family [hdb_session_will/]:
|
|
1171
|
+
2026/05/11-16:52:47.280644 270170 Options.comparator: leveldb.BytewiseComparator
|
|
1172
|
+
2026/05/11-16:52:47.280645 270170 Options.merge_operator: None
|
|
1173
|
+
2026/05/11-16:52:47.280646 270170 Options.compaction_filter: None
|
|
1174
|
+
2026/05/11-16:52:47.280646 270170 Options.compaction_filter_factory: None
|
|
1175
|
+
2026/05/11-16:52:47.280646 270170 Options.sst_partitioner_factory: None
|
|
1176
|
+
2026/05/11-16:52:47.280647 270170 Options.memtable_factory: SkipListFactory
|
|
1177
|
+
2026/05/11-16:52:47.280647 270170 Options.table_factory: BlockBasedTable
|
|
1178
|
+
2026/05/11-16:52:47.280657 270170 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x369318f0)
|
|
1179
|
+
cache_index_and_filter_blocks: 0
|
|
1180
|
+
cache_index_and_filter_blocks_with_high_priority: 1
|
|
1181
|
+
pin_l0_filter_and_index_blocks_in_cache: 0
|
|
1182
|
+
pin_top_level_index_and_filter: 1
|
|
1183
|
+
index_type: 0
|
|
1184
|
+
data_block_index_type: 0
|
|
1185
|
+
index_shortening: 1
|
|
1186
|
+
data_block_hash_table_util_ratio: 0.750000
|
|
1187
|
+
checksum: 4
|
|
1188
|
+
no_block_cache: 0
|
|
1189
|
+
block_cache: 0x365c6200
|
|
1190
|
+
block_cache_name: LRUCache
|
|
1191
|
+
block_cache_options:
|
|
1192
|
+
capacity : 8192008192
|
|
1193
|
+
num_shard_bits : 6
|
|
1194
|
+
strict_capacity_limit : 0
|
|
1195
|
+
memory_allocator : None
|
|
1196
|
+
high_pri_pool_ratio: 0.500
|
|
1197
|
+
low_pri_pool_ratio: 0.000
|
|
1198
|
+
persistent_cache: (nil)
|
|
1199
|
+
block_size: 4096
|
|
1200
|
+
block_size_deviation: 10
|
|
1201
|
+
block_restart_interval: 16
|
|
1202
|
+
index_block_restart_interval: 1
|
|
1203
|
+
metadata_block_size: 4096
|
|
1204
|
+
partition_filters: 0
|
|
1205
|
+
use_delta_encoding: 1
|
|
1206
|
+
filter_policy: nullptr
|
|
1207
|
+
user_defined_index_factory: nullptr
|
|
1208
|
+
fail_if_no_udi_on_open: 0
|
|
1209
|
+
whole_key_filtering: 1
|
|
1210
|
+
verify_compression: 0
|
|
1211
|
+
read_amp_bytes_per_bit: 0
|
|
1212
|
+
format_version: 7
|
|
1213
|
+
enable_index_compression: 1
|
|
1214
|
+
block_align: 0
|
|
1215
|
+
super_block_alignment_size: 0
|
|
1216
|
+
super_block_alignment_space_overhead_ratio: 128
|
|
1217
|
+
max_auto_readahead_size: 262144
|
|
1218
|
+
prepopulate_block_cache: 0
|
|
1219
|
+
initial_auto_readahead_size: 8192
|
|
1220
|
+
num_file_reads_for_auto_readahead: 2
|
|
1221
|
+
2026/05/11-16:52:47.280658 270170 Options.write_buffer_size: 67108864
|
|
1222
|
+
2026/05/11-16:52:47.280658 270170 Options.max_write_buffer_number: 2
|
|
1223
|
+
2026/05/11-16:52:47.280659 270170 Options.compression: NoCompression
|
|
1224
|
+
2026/05/11-16:52:47.280660 270170 Options.bottommost_compression: Disabled
|
|
1225
|
+
2026/05/11-16:52:47.280660 270170 Options.prefix_extractor: nullptr
|
|
1226
|
+
2026/05/11-16:52:47.280661 270170 Options.memtable_insert_with_hint_prefix_extractor: nullptr
|
|
1227
|
+
2026/05/11-16:52:47.280661 270170 Options.num_levels: 7
|
|
1228
|
+
2026/05/11-16:52:47.280662 270170 Options.min_write_buffer_number_to_merge: 1
|
|
1229
|
+
2026/05/11-16:52:47.280662 270170 Options.max_write_buffer_size_to_maintain: 0
|
|
1230
|
+
2026/05/11-16:52:47.280663 270170 Options.bottommost_compression_opts.window_bits: -14
|
|
1231
|
+
2026/05/11-16:52:47.280663 270170 Options.bottommost_compression_opts.level: 32767
|
|
1232
|
+
2026/05/11-16:52:47.280664 270170 Options.bottommost_compression_opts.strategy: 0
|
|
1233
|
+
2026/05/11-16:52:47.280664 270170 Options.bottommost_compression_opts.max_dict_bytes: 0
|
|
1234
|
+
2026/05/11-16:52:47.280665 270170 Options.bottommost_compression_opts.zstd_max_train_bytes: 0
|
|
1235
|
+
2026/05/11-16:52:47.280665 270170 Options.bottommost_compression_opts.parallel_threads: 1
|
|
1236
|
+
2026/05/11-16:52:47.280665 270170 Options.bottommost_compression_opts.enabled: false
|
|
1237
|
+
2026/05/11-16:52:47.280666 270170 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0
|
|
1238
|
+
2026/05/11-16:52:47.280666 270170 Options.bottommost_compression_opts.use_zstd_dict_trainer: true
|
|
1239
|
+
2026/05/11-16:52:47.280667 270170 Options.compression_opts.window_bits: -14
|
|
1240
|
+
2026/05/11-16:52:47.280667 270170 Options.compression_opts.level: 32767
|
|
1241
|
+
2026/05/11-16:52:47.280668 270170 Options.compression_opts.strategy: 0
|
|
1242
|
+
2026/05/11-16:52:47.280668 270170 Options.compression_opts.max_dict_bytes: 0
|
|
1243
|
+
2026/05/11-16:52:47.280669 270170 Options.compression_opts.zstd_max_train_bytes: 0
|
|
1244
|
+
2026/05/11-16:52:47.280669 270170 Options.compression_opts.use_zstd_dict_trainer: true
|
|
1245
|
+
2026/05/11-16:52:47.280670 270170 Options.compression_opts.parallel_threads: 1
|
|
1246
|
+
2026/05/11-16:52:47.280670 270170 Options.compression_opts.enabled: false
|
|
1247
|
+
2026/05/11-16:52:47.280670 270170 Options.compression_opts.max_dict_buffer_bytes: 0
|
|
1248
|
+
2026/05/11-16:52:47.280671 270170 Options.level0_file_num_compaction_trigger: 4
|
|
1249
|
+
2026/05/11-16:52:47.280671 270170 Options.level0_slowdown_writes_trigger: 20
|
|
1250
|
+
2026/05/11-16:52:47.280672 270170 Options.level0_stop_writes_trigger: 36
|
|
1251
|
+
2026/05/11-16:52:47.280672 270170 Options.target_file_size_base: 67108864
|
|
1252
|
+
2026/05/11-16:52:47.280673 270170 Options.target_file_size_multiplier: 1
|
|
1253
|
+
2026/05/11-16:52:47.280673 270170 Options.target_file_size_is_upper_bound: 0
|
|
1254
|
+
2026/05/11-16:52:47.280674 270170 Options.max_bytes_for_level_base: 268435456
|
|
1255
|
+
2026/05/11-16:52:47.280674 270170 Options.level_compaction_dynamic_level_bytes: 1
|
|
1256
|
+
2026/05/11-16:52:47.280675 270170 Options.max_bytes_for_level_multiplier: 10.000000
|
|
1257
|
+
2026/05/11-16:52:47.280676 270170 Options.max_bytes_for_level_multiplier_addtl[0]: 1
|
|
1258
|
+
2026/05/11-16:52:47.280676 270170 Options.max_bytes_for_level_multiplier_addtl[1]: 1
|
|
1259
|
+
2026/05/11-16:52:47.280677 270170 Options.max_bytes_for_level_multiplier_addtl[2]: 1
|
|
1260
|
+
2026/05/11-16:52:47.280677 270170 Options.max_bytes_for_level_multiplier_addtl[3]: 1
|
|
1261
|
+
2026/05/11-16:52:47.280678 270170 Options.max_bytes_for_level_multiplier_addtl[4]: 1
|
|
1262
|
+
2026/05/11-16:52:47.280678 270170 Options.max_bytes_for_level_multiplier_addtl[5]: 1
|
|
1263
|
+
2026/05/11-16:52:47.280679 270170 Options.max_bytes_for_level_multiplier_addtl[6]: 1
|
|
1264
|
+
2026/05/11-16:52:47.280679 270170 Options.max_sequential_skip_in_iterations: 8
|
|
1265
|
+
2026/05/11-16:52:47.280679 270170 Options.memtable_op_scan_flush_trigger: 0
|
|
1266
|
+
2026/05/11-16:52:47.280680 270170 Options.memtable_avg_op_scan_flush_trigger: 0
|
|
1267
|
+
2026/05/11-16:52:47.280680 270170 Options.max_compaction_bytes: 1677721600
|
|
1268
|
+
2026/05/11-16:52:47.280681 270170 Options.arena_block_size: 1048576
|
|
1269
|
+
2026/05/11-16:52:47.280681 270170 Options.soft_pending_compaction_bytes_limit: 68719476736
|
|
1270
|
+
2026/05/11-16:52:47.280682 270170 Options.hard_pending_compaction_bytes_limit: 274877906944
|
|
1271
|
+
2026/05/11-16:52:47.280682 270170 Options.disable_auto_compactions: 0
|
|
1272
|
+
2026/05/11-16:52:47.280683 270170 Options.compaction_style: kCompactionStyleLevel
|
|
1273
|
+
2026/05/11-16:52:47.280684 270170 Options.compaction_pri: kMinOverlappingRatio
|
|
1274
|
+
2026/05/11-16:52:47.280685 270170 Options.compaction_options_universal.size_ratio: 1
|
|
1275
|
+
2026/05/11-16:52:47.280685 270170 Options.compaction_options_universal.min_merge_width: 2
|
|
1276
|
+
2026/05/11-16:52:47.280685 270170 Options.compaction_options_universal.max_merge_width: 4294967295
|
|
1277
|
+
2026/05/11-16:52:47.280686 270170 Options.compaction_options_universal.max_size_amplification_percent: 200
|
|
1278
|
+
2026/05/11-16:52:47.280686 270170 Options.compaction_options_universal.compression_size_percent: -1
|
|
1279
|
+
2026/05/11-16:52:47.280687 270170 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize
|
|
1280
|
+
2026/05/11-16:52:47.280687 270170 Options.compaction_options_universal.max_read_amp: -1
|
|
1281
|
+
2026/05/11-16:52:47.280688 270170 Options.compaction_options_universal.reduce_file_locking: 1
|
|
1282
|
+
2026/05/11-16:52:47.280688 270170 Options.compaction_options_fifo.max_table_files_size: 1073741824
|
|
1283
|
+
2026/05/11-16:52:47.280689 270170 Options.compaction_options_fifo.allow_compaction: 0
|
|
1284
|
+
2026/05/11-16:52:47.280692 270170 Options.table_properties_collectors:
|
|
1285
|
+
2026/05/11-16:52:47.280692 270170 Options.inplace_update_support: 0
|
|
1286
|
+
2026/05/11-16:52:47.280693 270170 Options.inplace_update_num_locks: 10000
|
|
1287
|
+
2026/05/11-16:52:47.280693 270170 Options.memtable_prefix_bloom_size_ratio: 0.000000
|
|
1288
|
+
2026/05/11-16:52:47.280694 270170 Options.memtable_whole_key_filtering: 0
|
|
1289
|
+
2026/05/11-16:52:47.280694 270170 Options.memtable_huge_page_size: 0
|
|
1290
|
+
2026/05/11-16:52:47.280695 270170 Options.bloom_locality: 0
|
|
1291
|
+
2026/05/11-16:52:47.280695 270170 Options.max_successive_merges: 0
|
|
1292
|
+
2026/05/11-16:52:47.280695 270170 Options.strict_max_successive_merges: 0
|
|
1293
|
+
2026/05/11-16:52:47.280696 270170 Options.optimize_filters_for_hits: 0
|
|
1294
|
+
2026/05/11-16:52:47.280696 270170 Options.paranoid_file_checks: 0
|
|
1295
|
+
2026/05/11-16:52:47.280697 270170 Options.force_consistency_checks: 1
|
|
1296
|
+
2026/05/11-16:52:47.280697 270170 Options.report_bg_io_stats: 0
|
|
1297
|
+
2026/05/11-16:52:47.280698 270170 Options.disallow_memtable_writes: 0
|
|
1298
|
+
2026/05/11-16:52:47.280698 270170 Options.ttl: 2592000
|
|
1299
|
+
2026/05/11-16:52:47.280699 270170 Options.periodic_compaction_seconds: 0
|
|
1300
|
+
2026/05/11-16:52:47.280699 270170 Options.default_temperature: kUnknown
|
|
1301
|
+
2026/05/11-16:52:47.280700 270170 Options.preclude_last_level_data_seconds: 0
|
|
1302
|
+
2026/05/11-16:52:47.280700 270170 Options.preserve_internal_time_seconds: 0
|
|
1303
|
+
2026/05/11-16:52:47.280701 270170 Options.enable_blob_files: true
|
|
1304
|
+
2026/05/11-16:52:47.280701 270170 Options.min_blob_size: 2048
|
|
1305
|
+
2026/05/11-16:52:47.280702 270170 Options.blob_file_size: 268435456
|
|
1306
|
+
2026/05/11-16:52:47.280702 270170 Options.blob_compression_type: NoCompression
|
|
1307
|
+
2026/05/11-16:52:47.280703 270170 Options.enable_blob_garbage_collection: true
|
|
1308
|
+
2026/05/11-16:52:47.280703 270170 Options.blob_garbage_collection_age_cutoff: 0.250000
|
|
1309
|
+
2026/05/11-16:52:47.280704 270170 Options.blob_garbage_collection_force_threshold: 1.000000
|
|
1310
|
+
2026/05/11-16:52:47.280704 270170 Options.blob_compaction_readahead_size: 0
|
|
1311
|
+
2026/05/11-16:52:47.280705 270170 Options.blob_file_starting_level: 0
|
|
1312
|
+
2026/05/11-16:52:47.280705 270170 Options.experimental_mempurge_threshold: 0.000000
|
|
1313
|
+
2026/05/11-16:52:47.280706 270170 Options.memtable_max_range_deletions: 0
|
|
1314
|
+
2026/05/11-16:52:47.280706 270170 Options.cf_allow_ingest_behind: false
|
|
1315
|
+
2026/05/11-16:52:47.280747 270170 [db/db_impl/db_impl.cc:3745] Created column family [hdb_session_will/] (ID 4)
|
|
1316
|
+
2026/05/11-16:52:47.900072 270198 [db/db_impl/db_impl.cc:950] ------- PERSISTING STATS -------
|
|
1317
|
+
2026/05/11-16:52:47.900085 270198 [db/db_impl/db_impl.cc:1019] [Pre-GC] In-memory stats history size: 48 bytes, slice count: 0
|
|
1318
|
+
2026/05/11-16:52:47.900087 270198 [db/db_impl/db_impl.cc:1028] [Post-GC] In-memory stats history size: 48 bytes, slice count: 0
|
|
1319
|
+
2026/05/11-16:53:11.557351 270170 [db/db_impl/db_impl_compaction_flush.cc:2097] Manual atomic flush start.
|
|
1320
|
+
=====Column families:=====
|
|
1321
|
+
2026/05/11-16:53:11.557354 270170 [db/db_impl/db_impl_compaction_flush.cc:2102] hdb_session_will/
|
|
1322
|
+
2026/05/11-16:53:11.557355 270170 [db/db_impl/db_impl_compaction_flush.cc:2102] hdb_durable_session/
|
|
1323
|
+
2026/05/11-16:53:11.557356 270170 [db/db_impl/db_impl_compaction_flush.cc:2102] hdb_session/
|
|
1324
|
+
2026/05/11-16:53:11.557356 270170 [db/db_impl/db_impl_compaction_flush.cc:2102] __dbis__
|
|
1325
|
+
2026/05/11-16:53:11.557357 270170 [db/db_impl/db_impl_compaction_flush.cc:2102] default
|
|
1326
|
+
2026/05/11-16:53:11.557357 270170 [db/db_impl/db_impl_compaction_flush.cc:2105] =====End of column families list=====
|
|
1327
|
+
2026/05/11-16:53:11.557376 270170 [WARN] [db/error_handler.cc:398] Background IO error IO error: No such file or directory: While open a file for appending: system/000016.log: No such file or directory, reason 3
|
|
1328
|
+
2026/05/11-16:53:11.557389 270170 [db/error_handler.cc:345] ErrorHandler: Set regular background error, auto_recovery=0, stop=1
|
|
1329
|
+
2026/05/11-16:53:11.557391 270170 [db/db_impl/db_impl_compaction_flush.cc:2114] Manual atomic flush finished, status: IO error: No such file or directory: While open a file for appending: system/000016.log: No such file or directory
|
|
1330
|
+
=====Column families:=====
|
|
1331
|
+
2026/05/11-16:53:11.557392 270170 [db/db_impl/db_impl_compaction_flush.cc:2120] hdb_session_will/
|
|
1332
|
+
2026/05/11-16:53:11.557392 270170 [db/db_impl/db_impl_compaction_flush.cc:2120] hdb_durable_session/
|
|
1333
|
+
2026/05/11-16:53:11.557393 270170 [db/db_impl/db_impl_compaction_flush.cc:2120] hdb_session/
|
|
1334
|
+
2026/05/11-16:53:11.557393 270170 [db/db_impl/db_impl_compaction_flush.cc:2120] __dbis__
|
|
1335
|
+
2026/05/11-16:53:11.557394 270170 [db/db_impl/db_impl_compaction_flush.cc:2120] default
|
|
1336
|
+
2026/05/11-16:53:11.557394 270170 [db/db_impl/db_impl_compaction_flush.cc:2123] =====End of column families list=====
|
|
1337
|
+
2026/05/11-16:53:11.557408 270170 [db/db_impl/db_impl.cc:482] Shutdown: canceling all background work
|
|
1338
|
+
2026/05/11-16:53:11.557624 270170 [ERROR] [db/version_set.cc:5572] MANIFEST verification on Close, filename system/MANIFEST-000005, expected size 377 failed with status IO error: No such file or directory: while stat a file for size: system/MANIFEST-000005: No such file or directory and actual size 0
|
|
1339
|
+
2026/05/11-16:53:11.557669 270170 [db/error_handler.cc:523] ErrorHandler: added file numbers to quarantine.
|
|
1340
|
+
2026/05/11-16:53:11.557675 270170 [ERROR] [db/version_set.cc:6239] Error in committing version edit to MANIFEST:
|
|
1341
|
+
VersionEdit {
|
|
1342
|
+
PrevLogNumber: 0
|
|
1343
|
+
NextFileNumber: 18
|
|
1344
|
+
MaxColumnFamily: 4
|
|
1345
|
+
LastSeq: 0
|
|
1346
|
+
ColumnFamily: 0
|
|
1347
|
+
}
|
|
1348
|
+
2026/05/11-16:53:11.557678 270170 [db/version_set.cc:6277] Deleting manifest 17 current manifest 5
|
|
1349
|
+
2026/05/11-16:53:11.557680 270170 [WARN] [db/version_set.cc:6284] Failed to delete manifest 17: IO error: No such file or directory: while unlink() file: system/MANIFEST-000017: No such file or directory
|
|
1350
|
+
2026/05/11-16:53:11.557684 270170 [ERROR] [db/db_impl/db_impl.cc:681] Unable to close MANIFEST with error -- IO error: No such file or directory: While open a file for appending: system/MANIFEST-000017: No such file or directory
|
|
1351
|
+
2026/05/11-16:53:11.557768 270170 [db/db_impl/db_impl.cc:697] Shutdown complete
|