Skip to content

Commit acb765d

Browse files
committed
Increase max response size to 250 mb
1 parent 938ffe1 commit acb765d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

crates/transport/src/protocol.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ pub const PORTAL_LOGS_PROVIDER_KEY: &[u8; 22] = b"/sqd/portal_logs/1.0.0";
3636
pub const MAX_RAW_QUERY_SIZE: u64 = 256 * 1024;
3737
pub const MAX_QUERY_MSG_SIZE: u64 = 4 * 1024 * 1024 + 1024;
3838
pub const MAX_SQL_QUERY_MSG_SIZE: u64 = 257 * 1024;
39-
pub const MAX_QUERY_RESULT_SIZE: u64 = 100 * 1024 * 1024;
39+
pub const MAX_QUERY_RESULT_SIZE: u64 = 250 * 1024 * 1024;
4040
pub const MAX_LOGS_REQUEST_SIZE: u64 = 100;
4141
pub const MAX_LOGS_RESPONSE_SIZE: u64 = 10 * 1024 * 1024;
4242
pub const MAX_PUBSUB_MSG_SIZE: usize = 65536;

0 commit comments

Comments
 (0)