156
156
import java .util .function .Supplier ;
157
157
158
158
import static org .elasticsearch .TransportVersions .ERROR_TRACE_IN_TRANSPORT_HEADER ;
159
+ import static org .elasticsearch .common .Strings .format ;
159
160
import static org .elasticsearch .core .TimeValue .timeValueHours ;
160
161
import static org .elasticsearch .core .TimeValue .timeValueMillis ;
161
162
import static org .elasticsearch .core .TimeValue .timeValueMinutes ;
@@ -563,12 +564,18 @@ protected void doClose() {
563
564
* @param <T> the type of the response
564
565
* @param listener the action listener to be wrapped
565
566
* @param version channel version of the request
567
+ * @param nodeId id of the current node
568
+ * @param shardId id of the shard being searched
569
+ * @param taskId id of the task being executed
566
570
* @param threadPool with context where to write the new header
567
571
* @return the wrapped action listener
568
572
*/
569
573
static <T > ActionListener <T > maybeWrapListenerForStackTrace (
570
574
ActionListener <T > listener ,
571
575
TransportVersion version ,
576
+ String nodeId ,
577
+ ShardId shardId ,
578
+ long taskId ,
572
579
ThreadPool threadPool
573
580
) {
574
581
boolean header = true ;
@@ -577,6 +584,18 @@ static <T> ActionListener<T> maybeWrapListenerForStackTrace(
577
584
}
578
585
if (header == false ) {
579
586
return listener .delegateResponse ((l , e ) -> {
587
+ org .apache .logging .log4j .util .Supplier <String > messageSupplier = () -> format (
588
+ "[%s]%s: failed to execute search request for task [%d]" ,
589
+ nodeId ,
590
+ shardId ,
591
+ taskId
592
+ );
593
+ // Keep this logic aligned with that of SUPPRESSED_ERROR_LOGGER in RestResponse
594
+ if (ExceptionsHelper .status (e ).getStatus () < 500 || ExceptionsHelper .isNodeOrShardUnavailableTypeException (e )) {
595
+ logger .debug (messageSupplier , e );
596
+ } else {
597
+ logger .warn (messageSupplier , e );
598
+ }
580
599
ExceptionsHelper .unwrapCausesAndSuppressed (e , err -> {
581
600
err .setStackTrace (EMPTY_STACK_TRACE_ARRAY );
582
601
return false ;
@@ -588,7 +607,14 @@ static <T> ActionListener<T> maybeWrapListenerForStackTrace(
588
607
}
589
608
590
609
public void executeDfsPhase (ShardSearchRequest request , SearchShardTask task , ActionListener <SearchPhaseResult > listener ) {
591
- listener = maybeWrapListenerForStackTrace (listener , request .getChannelVersion (), threadPool );
610
+ listener = maybeWrapListenerForStackTrace (
611
+ listener ,
612
+ request .getChannelVersion (),
613
+ clusterService .localNode ().getId (),
614
+ request .shardId (),
615
+ task .getId (),
616
+ threadPool
617
+ );
592
618
final IndexShard shard = getShard (request );
593
619
rewriteAndFetchShardRequest (shard , request , listener .delegateFailure ((l , rewritten ) -> {
594
620
// fork the execution in the search thread pool
@@ -632,7 +658,14 @@ public void executeQueryPhase(ShardSearchRequest request, CancellableTask task,
632
658
rewriteAndFetchShardRequest (
633
659
shard ,
634
660
request ,
635
- maybeWrapListenerForStackTrace (listener , request .getChannelVersion (), threadPool ).delegateFailure ((l , orig ) -> {
661
+ maybeWrapListenerForStackTrace (
662
+ listener ,
663
+ request .getChannelVersion (),
664
+ clusterService .localNode ().getId (),
665
+ request .shardId (),
666
+ task .getId (),
667
+ threadPool
668
+ ).delegateFailure ((l , orig ) -> {
636
669
// check if we can shortcut the query phase entirely.
637
670
if (orig .canReturnNullResponseIfMatchNoDocs ()) {
638
671
assert orig .scroll () == null ;
@@ -830,9 +863,16 @@ private SearchPhaseResult executeQueryPhase(ShardSearchRequest request, Cancella
830
863
}
831
864
832
865
public void executeRankFeaturePhase (RankFeatureShardRequest request , SearchShardTask task , ActionListener <RankFeatureResult > listener ) {
833
- listener = maybeWrapListenerForStackTrace (listener , request .getShardSearchRequest ().getChannelVersion (), threadPool );
834
866
final ReaderContext readerContext = findReaderContext (request .contextId (), request );
835
867
final ShardSearchRequest shardSearchRequest = readerContext .getShardSearchRequest (request .getShardSearchRequest ());
868
+ listener = maybeWrapListenerForStackTrace (
869
+ listener ,
870
+ shardSearchRequest .getChannelVersion (),
871
+ clusterService .localNode ().getId (),
872
+ shardSearchRequest .shardId (),
873
+ task .getId (),
874
+ threadPool
875
+ );
836
876
final Releasable markAsUsed = readerContext .markAsUsed (getKeepAlive (shardSearchRequest ));
837
877
runAsync (getExecutor (readerContext .indexShard ()), () -> {
838
878
try (SearchContext searchContext = createContext (readerContext , shardSearchRequest , task , ResultsType .RANK_FEATURE , false )) {
@@ -881,8 +921,15 @@ public void executeQueryPhase(
881
921
ActionListener <ScrollQuerySearchResult > listener ,
882
922
TransportVersion version
883
923
) {
884
- listener = maybeWrapListenerForStackTrace (listener , version , threadPool );
885
924
final LegacyReaderContext readerContext = (LegacyReaderContext ) findReaderContext (request .contextId (), request );
925
+ listener = maybeWrapListenerForStackTrace (
926
+ listener ,
927
+ version ,
928
+ clusterService .localNode ().getId (),
929
+ readerContext .indexShard ().shardId (),
930
+ task .getId (),
931
+ threadPool
932
+ );
886
933
final Releasable markAsUsed ;
887
934
try {
888
935
markAsUsed = readerContext .markAsUsed (getScrollKeepAlive (request .scroll ()));
@@ -930,9 +977,16 @@ public void executeQueryPhase(
930
977
ActionListener <QuerySearchResult > listener ,
931
978
TransportVersion version
932
979
) {
933
- listener = maybeWrapListenerForStackTrace (listener , version , threadPool );
934
980
final ReaderContext readerContext = findReaderContext (request .contextId (), request .shardSearchRequest ());
935
981
final ShardSearchRequest shardSearchRequest = readerContext .getShardSearchRequest (request .shardSearchRequest ());
982
+ listener = maybeWrapListenerForStackTrace (
983
+ listener ,
984
+ version ,
985
+ clusterService .localNode ().getId (),
986
+ shardSearchRequest .shardId (),
987
+ task .getId (),
988
+ threadPool
989
+ );
936
990
final Releasable markAsUsed = readerContext .markAsUsed (getKeepAlive (shardSearchRequest ));
937
991
rewriteAndFetchShardRequest (readerContext .indexShard (), shardSearchRequest , listener .delegateFailure ((l , rewritten ) -> {
938
992
// fork the execution in the search thread pool
0 commit comments