You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Problem
Right now, all gRPC traffic between Celestia Node and the Core server is uncompressed. This leads to bigger data transfers and slower performance. By enabling gRPC’s built-in compression, we can shrink the data payload, use less bandwidth, and speed up node operations.
Solution
Use gRPC options (e.g., GZIP,snappy,zstd)
Implementation ideas
Problem
Right now, all gRPC traffic between Celestia Node and the Core server is uncompressed. This leads to bigger data transfers and slower performance. By enabling gRPC’s built-in compression, we can shrink the data payload, use less bandwidth, and speed up node operations.
Solution
Use gRPC options (e.g., GZIP,snappy,zstd)
https://grpc.io/docs/guides/compression/
The text was updated successfully, but these errors were encountered: