File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -1171,6 +1171,10 @@ pub static MAX_BACKEND_RPC_HTTP_CHUNK_SIZE: LazyLock<usize> =
11711171pub static MAX_BACKEND_PUBLIC_API_REQUEST_SIZE : LazyLock < usize > =
11721172 LazyLock :: new ( || env_config ( "MAX_BACKEND_PUBLIC_API_REQUEST_SIZE" , ( 1 << 24 ) + 2000 ) ) ; // 16 MiB
11731173
1174+ /// The maximum size for GRPC responses from searchlight.
1175+ pub static MAX_SEARCHLIGHT_RESPONSE_SIZE : LazyLock < usize > =
1176+ LazyLock :: new ( || env_config ( "MAX_SEARCHLIGHT_RESPONSE_SIZE" , 1 << 23 ) ) ; // 8 MiB
1177+
11741178/// Background database workers wake up periodically, check to see if something
11751179/// has changed, then either go back to sleep or do work. Most workers determine
11761180/// if something has changed at least in part by comparing the number of commits
You can’t perform that action at this time.
0 commit comments