You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by zy...@apache.org on 2012/12/11 03:10:01 UTC

svn commit: r1419975 - /trafficserver/site/trunk/content/docs/trunk/admin/cluster-howto/index.en.mdtext

Author: zym
Date: Tue Dec 11 02:10:00 2012
New Revision: 1419975

URL: http://svn.apache.org/viewvc?rev=1419975&view=rev
Log:
fix syntax in the last checkin

Modified:
    trafficserver/site/trunk/content/docs/trunk/admin/cluster-howto/index.en.mdtext

Modified: trafficserver/site/trunk/content/docs/trunk/admin/cluster-howto/index.en.mdtext
URL: http://svn.apache.org/viewvc/trafficserver/site/trunk/content/docs/trunk/admin/cluster-howto/index.en.mdtext?rev=1419975&r1=1419974&r2=1419975&view=diff
==============================================================================
--- trafficserver/site/trunk/content/docs/trunk/admin/cluster-howto/index.en.mdtext (original)
+++ trafficserver/site/trunk/content/docs/trunk/admin/cluster-howto/index.en.mdtext Tue Dec 11 02:10:00 2012
@@ -136,14 +136,19 @@ Starting from v3.2.0, Apache Traffic Ser
 and we can tweak for the Cluster threads and connections:
 
 * Increasing Cluster threads:
- In the cluster env, the current performance of the Cluster threads will consume the same cpu
- usage as net threads, so you may adapt the ET_NET & ET_CLUSTER at about 1:1. For example, on
- a 24 cores system, set ET_NET threads to 10, ET_CLUSTER threads to 10. 
+
+	In the cluster env, the current performance of the Cluster threads will consume the same cpu
+	usage as net threads, so you may adapt the ET_NET & ET_CLUSTER at about 1:1. For example, on
+	a 24 cores system, set ET_NET threads to 10, ET_CLUSTER threads to 10. 
+
         traffic_line -s proxy.config.cluster.threads -v 10
 
 * Setup the Cluster connections:
- In the Cluster, the internal connections is TCP and limited by ET_CLUSTER threads and network
- performance, we can increase the connections to archive better performance.
+
+	In the Cluster, the internal connections is TCP and limited by ET_CLUSTER threads and network
+	performance, we can increase the connections to archive better performance.
+
 	traffic_line -s proxy.config.cluster.num_of_cluster_connections -v 10
 
+
 with these tweak, we can archive about 10gbps traffic for the internal cluster transfer speed.