Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(metrics): modify bulk metric for document missing #11710

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,12 @@
import org.opensearch.action.bulk.BulkRequest;
import org.opensearch.action.bulk.BulkResponse;
import org.opensearch.action.support.WriteRequest;
import org.opensearch.index.engine.DocumentMissingException;

@Slf4j
public class BulkListener implements BulkProcessor.Listener {
private static final Map<WriteRequest.RefreshPolicy, BulkListener> INSTANCES = new HashMap<>();
private static final String DOCUMENT_MISSING = "document_missing";

public static BulkListener getInstance() {
return INSTANCES.computeIfAbsent(null, BulkListener::new);
Expand Down Expand Up @@ -84,19 +86,27 @@ public void afterBulk(long executionId, BulkRequest request, Throwable failure)

private static void incrementMetrics(BulkResponse response) {
Arrays.stream(response.getItems())
.map(req -> buildMetricName(req.getOpType(), req.status().name()))
.map(
req ->
buildMetricName(req.getOpType(), req.status().name(), req.getFailure().getCause()))
.forEach(metricName -> MetricUtils.counter(BulkListener.class, metricName).inc());
}

private static void incrementMetrics(BulkRequest request, Throwable failure) {
request.requests().stream()
.map(req -> buildMetricName(req.opType(), "exception"))
.map(req -> buildMetricName(req.opType(), "exception", failure))
.forEach(
metricName -> MetricUtils.exceptionCounter(BulkListener.class, metricName, failure));
}

private static String buildMetricName(DocWriteRequest.OpType opType, String status) {
return opType.getLowercase() + MetricUtils.DELIMITER + status.toLowerCase();
private static String buildMetricName(
DocWriteRequest.OpType opType, String status, Throwable cause) {
StringBuilder sb = new StringBuilder();
sb.append(opType.getLowercase()).append(MetricUtils.DELIMITER).append(status.toLowerCase());
if (cause instanceof DocumentMissingException) {
sb.append(MetricUtils.DELIMITER).append(DOCUMENT_MISSING);
}
return sb.toString();
}

public static String buildBulkRequestSummary(BulkRequest request) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,16 @@
import static org.testng.Assert.assertNotNull;

import com.linkedin.metadata.search.elasticsearch.update.BulkListener;
import com.linkedin.metadata.utils.metrics.MetricUtils;
import org.mockito.Mockito;
import org.opensearch.action.DocWriteRequest;
import org.opensearch.action.bulk.BulkItemResponse;
import org.opensearch.action.bulk.BulkRequest;
import org.opensearch.action.bulk.BulkResponse;
import org.opensearch.action.support.WriteRequest;
import org.opensearch.common.unit.TimeValue;
import org.opensearch.core.rest.RestStatus;
import org.opensearch.index.engine.DocumentMissingException;
import org.testng.annotations.Test;

public class BulkListenerTest {
Expand All @@ -36,4 +43,31 @@ public void testDefaultPolicy() {
test.beforeBulk(0L, mockRequest2);
verify(mockRequest2, times(1)).setRefreshPolicy(WriteRequest.RefreshPolicy.IMMEDIATE);
}

@Test
public void testException() {
BulkListener test = BulkListener.getInstance();

BulkRequest mockRequest = Mockito.mock(BulkRequest.class);
BulkResponse mockResponse = Mockito.mock(BulkResponse.class);
BulkItemResponse bulkItemResponse = Mockito.mock(BulkItemResponse.class);
BulkItemResponse[] bulkItemResponses = new BulkItemResponse[] {bulkItemResponse};
BulkItemResponse.Failure mockFailure = Mockito.mock(BulkItemResponse.Failure.class);
DocumentMissingException mockException = Mockito.mock(DocumentMissingException.class);
Mockito.when(mockResponse.hasFailures()).thenReturn(true);
Mockito.when(mockResponse.getItems()).thenReturn(bulkItemResponses);
Mockito.when(bulkItemResponse.getFailure()).thenReturn(mockFailure);
Mockito.when(mockFailure.getCause()).thenReturn(mockException);
Mockito.when(bulkItemResponse.getOpType()).thenReturn(DocWriteRequest.OpType.UPDATE);
Mockito.when(bulkItemResponse.status()).thenReturn(RestStatus.NOT_FOUND);
Mockito.when(mockResponse.getTook()).thenReturn(new TimeValue(1L));
test.afterBulk(0L, mockRequest, mockResponse);
String metricName =
DocWriteRequest.OpType.UPDATE.getLowercase()
+ "_"
+ RestStatus.NOT_FOUND.name().toLowerCase()
+ "_"
+ "document_missing";
assertEquals(MetricUtils.counter(BulkListener.class, metricName).getCount(), 1L);
}
}
Loading