{ "analysis-graph-implementor": "org.opensearch.performanceanalyzer.rca.store.OpenSearchAnalysisGraph", // it can be file:// or s3:// "rca-store-location": "s3://sifi-store/rcas/", //it can be file:// or s3:// "threshold-store-location": "s3://sifi-store/thresholds/", "new-rca-check-minutes": 60, "new-threshold-check-minutes": 30, // The size of the task queue for all networking operations. // Small size queues may result in dropping of flow units, while large size queues can lead to a // bigger backlog of tasks resulting in delays in sending and receiving. "network-queue-length": 200, // The size of the per-vertex buffer for flow units received from remote nodes. // Small buffer sizes may result in dropping of flow units, while large buffer size can lead to // high memory consumptions depending on how the analysis graph is configured. "max-flow-units-per-vertex-buffer": 200, "tags": { "locus": "data-node" }, "remote-peers": ["ip1", "ip2", "ip3"], // Tells the runtime where the RCAs will be stored. "datastore": { // accepted types are sqlite, in-memory. "type": "sqlite", "location-dir": "/tmp", "filename": "rca.sqlite", "storage-file-retention-count": 5, // How often the sqlite file be repeated in seconds. This file contains RCAs and therefore rotating it too frequently // might not be as fruitful as there might not be any data. "rotation-period-seconds": 21600 }, // Add config settings for different RCAs "rca-config-settings": { // old gen rca "high-heap-usage-old-gen-rca": { "top-k" : 3 }, //young gen rca "high-heap-usage-young-gen-rca": { "promotion-rate-mb-per-second" : 500, "young-gen-gc-time-ms-per-second" : 400 }, "queue-rejection-rca": { "rejection-time-period-in-seconds" : 300 }, //hot shard rca "hot-shard-rca": { "cpu-utilization" : 0.015, "top-k-consumers" : 50 }, // field data cache rca "field-data-cache-rca": { "field-data-cache-size-threshold" : 0.8 }, // shard request cache rca "shard-request-cache-rca": { "shard-request-cache-threshold" : 0.9 }, "admission-control-rca": { "request-size": { "heap-range": [ { "lower-bound": 0, "upper-bound": 80, "threshold": 15.0 }, { "lower-bound": 81, "upper-bound": 90, "threshold": 10.0 }, { "lower-bound": 91, "upper-bound": 100, "threshold": 5.0 } ] } } }, "muted-rcas": [ ], "muted-deciders": [], "muted-actions": [], "bucketization": { "old-gen": { "UNDER_UTILIZED": 10.0, "HEALTHY_WITH_BUFFER": 60.0, "HEALTHY": 80.0 } } }