jerqi commented on code in PR #1665: URL: https://github.com/apache/incubator-uniffle/pull/1665#discussion_r1573497054
########## docs/server_guide.md: ########## @@ -139,30 +140,32 @@ Finally, to improve the speed of writing to HDFS for a single partition, the val ### Netty In version 0.8.0, we introduced Netty. Enabling Netty on ShuffleServer can significantly reduce GC time in high-throughput scenarios. We can enable Netty through the parameters `rss.server.netty.port` and `rss.rpc.server.type`. Note: After setting the parameter `rss.rpc.server.type` to `GRPC_NETTY`, ShuffleServer will be tagged with `GRPC_NETTY`, that is, the node can only be assigned to clients with `spark.rss.client.type=GRPC_NETTY`. -When enabling Netty, we should also consider memory related configuration, the following is an example. +When enabling Netty, we should also consider memory related configurations, the following is an example. #### rss-env.sh ``` -XMX_SIZE=80g -MAX_DIRECT_MEMORY_SIZE=60g +XMX_SIZE=20g +MAX_DIRECT_MEMORY_SIZE=120g Review Comment: You seem to modify this value. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
