We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 938ffe1 commit acb765dCopy full SHA for acb765d
1 file changed
crates/transport/src/protocol.rs
@@ -36,7 +36,7 @@ pub const PORTAL_LOGS_PROVIDER_KEY: &[u8; 22] = b"/sqd/portal_logs/1.0.0";
36
pub const MAX_RAW_QUERY_SIZE: u64 = 256 * 1024;
37
pub const MAX_QUERY_MSG_SIZE: u64 = 4 * 1024 * 1024 + 1024;
38
pub const MAX_SQL_QUERY_MSG_SIZE: u64 = 257 * 1024;
39
-pub const MAX_QUERY_RESULT_SIZE: u64 = 100 * 1024 * 1024;
+pub const MAX_QUERY_RESULT_SIZE: u64 = 250 * 1024 * 1024;
40
pub const MAX_LOGS_REQUEST_SIZE: u64 = 100;
41
pub const MAX_LOGS_RESPONSE_SIZE: u64 = 10 * 1024 * 1024;
42
pub const MAX_PUBSUB_MSG_SIZE: usize = 65536;
0 commit comments