Skip to content

Commit

Permalink
stash thread context before running forward action (opensearch-projec…
Browse files Browse the repository at this point in the history
…t#1904)

Signed-off-by: Yaliang Wu <ylwu@amazon.com>
  • Loading branch information
ylwu-amzn committed Jan 23, 2024
1 parent de544e4 commit 2f0b7d3
Showing 1 changed file with 19 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
import org.opensearch.cluster.service.ClusterService;
import org.opensearch.common.inject.Inject;
import org.opensearch.common.io.stream.StreamInput;
import org.opensearch.common.util.concurrent.ThreadContext;
import org.opensearch.core.xcontent.NamedXContentRegistry;
import org.opensearch.ml.breaker.MLCircuitBreakerService;
import org.opensearch.ml.common.FunctionName;
Expand Down Expand Up @@ -161,13 +162,15 @@ private MLDeployModelNodeResponse createDeployModelNodeResponse(MLDeployModelNod
.build();
MLForwardRequest deployModelDoneMessage = new MLForwardRequest(mlForwardInput);

transportService
.sendRequest(
getNodeById(coordinatingNodeId),
MLForwardAction.NAME,
deployModelDoneMessage,
new ActionListenerResponseHandler<>(taskDoneListener, MLForwardResponse::new)
);
try (ThreadContext.StoredContext context = client.threadPool().getThreadContext().stashContext()) {
transportService
.sendRequest(
getNodeById(coordinatingNodeId),
MLForwardAction.NAME,
deployModelDoneMessage,
new ActionListenerResponseHandler<>(taskDoneListener, MLForwardResponse::new)
);
}
}, e -> {
MLForwardInput mlForwardInput = MLForwardInput
.builder()
Expand All @@ -179,13 +182,15 @@ private MLDeployModelNodeResponse createDeployModelNodeResponse(MLDeployModelNod
.build();
MLForwardRequest deployModelDoneMessage = new MLForwardRequest(mlForwardInput);

transportService
.sendRequest(
getNodeById(coordinatingNodeId),
MLForwardAction.NAME,
deployModelDoneMessage,
new ActionListenerResponseHandler<>(taskDoneListener, MLForwardResponse::new)
);
try (ThreadContext.StoredContext context = client.threadPool().getThreadContext().stashContext()) {
transportService
.sendRequest(
getNodeById(coordinatingNodeId),
MLForwardAction.NAME,
deployModelDoneMessage,
new ActionListenerResponseHandler<>(taskDoneListener, MLForwardResponse::new)
);
}
})
);

Expand Down

0 comments on commit 2f0b7d3

Please sign in to comment.