Khushboo Rajput
Khushboo Rajput
Similar to [Jackson `@JsonIgnore` annotation](https://fasterxml.github.io/jackson-annotations/javadoc/2.5/com/fasterxml/jackson/annotation/JsonIgnore.html), can we add support to ignore a field during encoding/decoding.
Similar to https://github.com/opendistro-for-elasticsearch/performance-analyzer/pull/124, we need to emit the cache hit, miss and eviction metrics as delta rather than absolute values. ES reports these metrics from beginning of process/post an invalidateAll()...
**What is the bug?** `integTestRemote` cluster setup is failing the integration tests, including `UpdateAutoFollowPatternIT`, `StartReplicationIT` and others. Sample stack trace shared below, see complete list of failures at https://build.ci.opensearch.org/blue/rest/organizations/jenkins/pipelines/integ-test/runs/8074/nodes/122/steps/672/log/?start=0 ```...
This issue is to track Search BackPressure Auto-tuning changes merge in v2.12
OSMetricsCollector#collectMetrics() is responsible for persisting Thread related info in 'jTidMap' In case the 'jTidMap' has not been updated and threadState is null, we return -1 when [getNativeThreadId](https://github.com/opendistro-for-elasticsearch/performance-analyzer-rca/blob/3749a2668f2947df68cfc4817eba3af0ad9b6fb3/src/main/java/com/amazon/opendistro/elasticsearch/performanceanalyzer/metrics/ThreadIDUtil.java#L30)() is invoked. We...
1. *StatExceptionCode* Class ``` - JVM_THREAD_ID_NO_LONGER_EXISTS("JVM_THREAD_ID_NO_LONGER_EXISTS"), - ES_REQUEST_INTERCEPTOR_ERROR("ES_REQUEST_INTERCEPTOR_ERROR"), + JVM_THREAD_ID_NO_LONGER_EXISTS("JVMThreadIdNoLongerExists"), + ES_REQUEST_INTERCEPTOR_ERROR("EsRequestInterceptorError"), ``` 2. *RcaVerticesMetrics* Class ``` NUM_OLD_GEN_RCA_TRIGGERED( - "YoungGenRcaCount", "count", Collections.singletonList(Statistics.COUNT)), + "OldGenRcaCount", "count", Collections.singletonList(Statistics.COUNT)), ```