forked from elastic/elasticsearch
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add additional debug logging for indexing failure.
This change adds a new IndexingOperationListener that logs debug logging for indexing failures. Today `IndexShard` logger needs to be set to TRACE in order to see indexing failures. This logger is very verbose and logs many other aspects of indexing at trace level. This new logger is targeted just for seeing indexing failures. Relates elastic#117700
- Loading branch information
Showing
3 changed files
with
195 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
54 changes: 54 additions & 0 deletions
54
server/src/main/java/org/elasticsearch/index/shard/IndexingFailuresDebugListener.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the "Elastic License | ||
* 2.0", the "GNU Affero General Public License v3.0 only", and the "Server Side | ||
* Public License v 1"; you may not use this file except in compliance with, at | ||
* your election, the "Elastic License 2.0", the "GNU Affero General Public | ||
* License v3.0 only", or the "Server Side Public License, v 1". | ||
*/ | ||
|
||
package org.elasticsearch.index.shard; | ||
|
||
import org.apache.logging.log4j.LogManager; | ||
import org.apache.logging.log4j.Logger; | ||
import org.elasticsearch.index.engine.Engine; | ||
|
||
import static org.elasticsearch.core.Strings.format; | ||
|
||
public class IndexingFailuresDebugListener implements IndexingOperationListener { | ||
|
||
private static final Logger LOGGER = LogManager.getLogger(IndexingFailuresDebugListener.class); | ||
|
||
private final IndexShard indexShard; | ||
|
||
public IndexingFailuresDebugListener(IndexShard indexShard) { | ||
this.indexShard = indexShard; | ||
} | ||
|
||
@Override | ||
public void postIndex(ShardId shardId, Engine.Index index, Engine.IndexResult result) { | ||
if (LOGGER.isDebugEnabled()) { | ||
if (result.getResultType() == Engine.Result.Type.FAILURE) { | ||
postIndex(shardId, index, result.getFailure()); | ||
} | ||
} | ||
} | ||
|
||
@Override | ||
public void postIndex(ShardId shardId, Engine.Index index, Exception ex) { | ||
if (LOGGER.isDebugEnabled()) { | ||
LOGGER.debug( | ||
() -> format( | ||
"index-fail [%s] seq# [%s] allocation-id [%s] primaryTerm [%s] operationPrimaryTerm [%s] origin [%s]", | ||
index.id(), | ||
index.seqNo(), | ||
indexShard.routingEntry().allocationId(), | ||
index.primaryTerm(), | ||
indexShard.getOperationPrimaryTerm(), | ||
index.origin() | ||
), | ||
ex | ||
); | ||
} | ||
} | ||
} |
139 changes: 139 additions & 0 deletions
139
server/src/test/java/org/elasticsearch/index/shard/IndexingFailuresDebugListenerTests.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,139 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the "Elastic License | ||
* 2.0", the "GNU Affero General Public License v3.0 only", and the "Server Side | ||
* Public License v 1"; you may not use this file except in compliance with, at | ||
* your election, the "Elastic License 2.0", the "GNU Affero General Public | ||
* License v3.0 only", or the "Server Side Public License, v 1". | ||
*/ | ||
|
||
package org.elasticsearch.index.shard; | ||
|
||
import org.apache.logging.log4j.Level; | ||
import org.apache.logging.log4j.LogManager; | ||
import org.apache.logging.log4j.Logger; | ||
import org.elasticsearch.cluster.routing.ShardRoutingState; | ||
import org.elasticsearch.cluster.routing.TestShardRouting; | ||
import org.elasticsearch.common.logging.Loggers; | ||
import org.elasticsearch.common.logging.MockAppender; | ||
import org.elasticsearch.index.engine.Engine; | ||
import org.elasticsearch.index.engine.EngineTestCase; | ||
import org.elasticsearch.index.mapper.ParsedDocument; | ||
import org.elasticsearch.index.mapper.Uid; | ||
import org.elasticsearch.test.ESTestCase; | ||
import org.junit.AfterClass; | ||
import org.junit.BeforeClass; | ||
|
||
import static org.hamcrest.Matchers.equalTo; | ||
import static org.hamcrest.Matchers.nullValue; | ||
import static org.mockito.Mockito.mock; | ||
import static org.mockito.Mockito.when; | ||
|
||
public class IndexingFailuresDebugListenerTests extends ESTestCase { | ||
|
||
static MockAppender appender; | ||
static Logger testLogger1 = LogManager.getLogger(IndexingFailuresDebugListener.class); | ||
static Level origLogLevel = testLogger1.getLevel(); | ||
|
||
@BeforeClass | ||
public static void init() throws IllegalAccessException { | ||
appender = new MockAppender("mock_appender"); | ||
appender.start(); | ||
Loggers.addAppender(testLogger1, appender); | ||
Loggers.setLevel(testLogger1, randomBoolean() ? Level.DEBUG : Level.TRACE); | ||
} | ||
|
||
@AfterClass | ||
public static void cleanup() { | ||
Loggers.removeAppender(testLogger1, appender); | ||
appender.stop(); | ||
|
||
Loggers.setLevel(testLogger1, origLogLevel); | ||
} | ||
|
||
public void testPostIndexException() { | ||
var shardId = ShardId.fromString("[index][123]"); | ||
var mockShard = mock(IndexShard.class); | ||
var shardRouting = TestShardRouting.newShardRouting(shardId, "node-id", true, ShardRoutingState.STARTED); | ||
when(mockShard.routingEntry()).thenReturn(shardRouting); | ||
when(mockShard.getOperationPrimaryTerm()).thenReturn(1L); | ||
IndexingFailuresDebugListener indexingFailuresDebugListener = new IndexingFailuresDebugListener(mockShard); | ||
|
||
ParsedDocument doc = EngineTestCase.createParsedDoc("1", null); | ||
Engine.Index index = new Engine.Index(Uid.encodeId("doc_id"), 1, doc); | ||
indexingFailuresDebugListener.postIndex(shardId, index, new RuntimeException("test exception")); | ||
String message = appender.getLastEventAndReset().getMessage().getFormattedMessage(); | ||
assertThat( | ||
message, | ||
equalTo( | ||
"index-fail [1] seq# [-2] allocation-id [" | ||
+ shardRouting.allocationId() | ||
+ "] primaryTerm [1] operationPrimaryTerm [1] origin [PRIMARY]" | ||
) | ||
); | ||
} | ||
|
||
public void testPostIndexExceptionInfoLevel() { | ||
var previousLevel = testLogger1.getLevel(); | ||
try { | ||
Loggers.setLevel(testLogger1, randomBoolean() ? Level.INFO : Level.WARN); | ||
var shardId = ShardId.fromString("[index][123]"); | ||
var mockShard = mock(IndexShard.class); | ||
var shardRouting = TestShardRouting.newShardRouting(shardId, "node-id", true, ShardRoutingState.STARTED); | ||
when(mockShard.routingEntry()).thenReturn(shardRouting); | ||
when(mockShard.getOperationPrimaryTerm()).thenReturn(1L); | ||
IndexingFailuresDebugListener indexingFailuresDebugListener = new IndexingFailuresDebugListener(mockShard); | ||
|
||
ParsedDocument doc = EngineTestCase.createParsedDoc("1", null); | ||
Engine.Index index = new Engine.Index(Uid.encodeId("doc_id"), 1, doc); | ||
indexingFailuresDebugListener.postIndex(shardId, index, new RuntimeException("test exception")); | ||
assertThat(appender.getLastEventAndReset(), nullValue()); | ||
} finally { | ||
Loggers.setLevel(testLogger1, previousLevel); | ||
} | ||
} | ||
|
||
public void testPostIndexFailure() { | ||
var shardId = ShardId.fromString("[index][123]"); | ||
var mockShard = mock(IndexShard.class); | ||
var shardRouting = TestShardRouting.newShardRouting(shardId, "node-id", true, ShardRoutingState.STARTED); | ||
when(mockShard.routingEntry()).thenReturn(shardRouting); | ||
when(mockShard.getOperationPrimaryTerm()).thenReturn(1L); | ||
IndexingFailuresDebugListener indexingFailuresDebugListener = new IndexingFailuresDebugListener(mockShard); | ||
|
||
ParsedDocument doc = EngineTestCase.createParsedDoc("1", null); | ||
Engine.Index index = new Engine.Index(Uid.encodeId("doc_id"), 1, doc); | ||
Engine.IndexResult indexResult = mock(Engine.IndexResult.class); | ||
when(indexResult.getResultType()).thenReturn(Engine.Result.Type.FAILURE); | ||
when(indexResult.getFailure()).thenReturn(new RuntimeException("test exception")); | ||
indexingFailuresDebugListener.postIndex(shardId, index, indexResult); | ||
String message = appender.getLastEventAndReset().getMessage().getFormattedMessage(); | ||
assertThat( | ||
message, | ||
equalTo( | ||
"index-fail [1] seq# [-2] allocation-id [" | ||
+ shardRouting.allocationId() | ||
+ "] primaryTerm [1] operationPrimaryTerm [1] origin [PRIMARY]" | ||
) | ||
); | ||
} | ||
|
||
public void testPostIndex() { | ||
var shardId = ShardId.fromString("[index][123]"); | ||
var mockShard = mock(IndexShard.class); | ||
var shardRouting = TestShardRouting.newShardRouting(shardId, "node-id", true, ShardRoutingState.STARTED); | ||
when(mockShard.routingEntry()).thenReturn(shardRouting); | ||
when(mockShard.getOperationPrimaryTerm()).thenReturn(1L); | ||
IndexingFailuresDebugListener indexingFailuresDebugListener = new IndexingFailuresDebugListener(mockShard); | ||
|
||
ParsedDocument doc = EngineTestCase.createParsedDoc("1", null); | ||
Engine.Index index = new Engine.Index(Uid.encodeId("doc_id"), 1, doc); | ||
Engine.IndexResult indexResult = mock(Engine.IndexResult.class); | ||
when(indexResult.getResultType()).thenReturn(Engine.Result.Type.SUCCESS); | ||
when(indexResult.getFailure()).thenReturn(new RuntimeException("test exception")); | ||
indexingFailuresDebugListener.postIndex(shardId, index, indexResult); | ||
assertThat(appender.getLastEventAndReset(), nullValue()); | ||
} | ||
|
||
|
||
} |