Skip to content

DRAFT: Compress Batched Query Execution Responses #126024

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

Draft
wants to merge 12 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Merge remote-tracking branch 'elastic/main' into batched-exec-compact…
…-responses
  • Loading branch information
original-brownbear committed Apr 15, 2025
commit c5b20f2c6d000c85990aba2e5bea586eb604c7ed
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@
import org.elasticsearch.tasks.TaskId;
import org.elasticsearch.threadpool.ThreadPool;
import org.elasticsearch.transport.BytesTransportResponse;
import org.elasticsearch.transport.AbstractTransportRequest;
import org.elasticsearch.transport.SendRequestTransportException;
import org.elasticsearch.transport.Transport;
import org.elasticsearch.transport.TransportActionProxy;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
* A specialized, bytes only request, that can potentially be optimized on the network
* layer, specifically for the same large buffer send to several nodes.
*/
public class BytesTransportRequest extends TransportRequest implements BytesTransportMessage {
public class BytesTransportRequest extends AbstractTransportRequest implements BytesTransportMessage {

final ReleasableBytesReference bytes;
private final TransportVersion version;
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.