Couchbase · Schema
AnalyticsServiceConfig
Analytics service configuration
AnalyticsApp ServicesBackupCapellaCloudDatabaseDBaaSEventingFull-Text SearchGatewayJSONMobileNoSQLReplicationSQL++SyncVector SearchXDCR
Properties
| Name | Type | Description |
|---|---|---|
| activeMemoryGlobalBudget | integer | Global memory budget in bytes |
| activeStopTimeout | integer | Timeout for stopping active operations in seconds |
| activeSuspendTimeout | integer | Timeout for suspending active operations in seconds |
| analyticsBroadcastDcpStateMutationCount | integer | DCP state mutation broadcast count |
| compilerFrameLimit | integer | Maximum number of frames in a query plan |
| compilerGroupmemory | integer | Memory allocated for groupby operations in bytes |
| compilerJoinmemory | integer | Memory allocated for join operations in bytes |
| compilerSortmemory | integer | Memory allocated for sort operations in bytes |
| logLevel | string | Log level for the Analytics service |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/AnalyticsServiceConfig",
"title": "AnalyticsServiceConfig",
"type": "object",
"description": "Analytics service configuration",
"properties": {
"activeMemoryGlobalBudget": {
"type": "integer",
"description": "Global memory budget in bytes"
},
"activeStopTimeout": {
"type": "integer",
"description": "Timeout for stopping active operations in seconds"
},
"activeSuspendTimeout": {
"type": "integer",
"description": "Timeout for suspending active operations in seconds"
},
"analyticsBroadcastDcpStateMutationCount": {
"type": "integer",
"description": "DCP state mutation broadcast count"
},
"compilerFrameLimit": {
"type": "integer",
"description": "Maximum number of frames in a query plan"
},
"compilerGroupmemory": {
"type": "integer",
"description": "Memory allocated for groupby operations in bytes"
},
"compilerJoinmemory": {
"type": "integer",
"description": "Memory allocated for join operations in bytes"
},
"compilerSortmemory": {
"type": "integer",
"description": "Memory allocated for sort operations in bytes"
},
"logLevel": {
"type": "string",
"description": "Log level for the Analytics service",
"enum": [
"DEBUG",
"TRACE",
"INFO",
"WARN",
"ERROR",
"FATAL"
]
}
}
}