You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by so...@apache.org on 2015/06/18 18:58:51 UTC

trafficserver git commit: TS-3706: Update hosting.config docs to replace "partition" with "volume"

Repository: trafficserver
Updated Branches:
  refs/heads/master 4968e562c -> 2cc90fc8a


TS-3706: Update hosting.config docs to replace "partition" with "volume"

This closes #160


Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo
Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/2cc90fc8
Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/2cc90fc8
Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/2cc90fc8

Branch: refs/heads/master
Commit: 2cc90fc8a9d3df43f57bd14b80f47290e3a0889e
Parents: 4968e56
Author: daniel biazus <da...@Daniel-2.local>
Authored: Thu Jun 18 10:41:44 2015 -0600
Committer: Phil Sorber <so...@apache.org>
Committed: Thu Jun 18 10:41:44 2015 -0600

----------------------------------------------------------------------
 .../configuration/hosting.config.en.rst         | 35 ++++++++++----------
 1 file changed, 17 insertions(+), 18 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/2cc90fc8/doc/reference/configuration/hosting.config.en.rst
----------------------------------------------------------------------
diff --git a/doc/reference/configuration/hosting.config.en.rst b/doc/reference/configuration/hosting.config.en.rst
index 5a56640..91b5031 100644
--- a/doc/reference/configuration/hosting.config.en.rst
+++ b/doc/reference/configuration/hosting.config.en.rst
@@ -22,13 +22,13 @@ hosting.config
 .. configfile:: hosting.config
 
 The :file:`hosting.config` file (by default, located in 
-``/usr/local/etc/trafficserver/``) you to assign cache partitions to
+``/usr/local/etc/trafficserver/``) you to assign cache volumes to
 specific origin servers and/or domains so that you can manage cache
 space efficiently and restrict disk usage. For step-by-step instructions
 on partitioning the cache according to origin servers and/or domains,
 refer to :ref:`partitioning-the-cache`.
 
-Before you can assign cache partitions to specific
+Before you can assign cache volumes to specific
 origin servers and/or domains, you must first partition your cache
 according to size and protocol in the :file:`volume.config`
 file.
@@ -49,11 +49,11 @@ Format
 Each line in the :file:`hosting.config` file must have one of the following
 formats::
 
-    hostname=HOST partition=NUMBERS
-    domain=DOMAIN partition=NUMBERS
+    hostname=HOST volume=NUMBERS
+    domain=DOMAIN volume=NUMBERS
 
 where ``HOST`` is the fully-qualified hostname of the origin server
-whose content you want to store on a particular partition (for example,
+whose content you want to store on a particular volume (for example,
 ``www.myhost.com``); ``DOMAIN`` is the domain whose content you
 want to store on a particular partition(for example, ``mydomain.com``);
 and ``NUMBERS`` is a comma-separated list of the partitions on
@@ -71,29 +71,28 @@ Generic Partition
 =================
 
 When configuring the :file:`hosting.config` file, you must assign a generic
-partition to use for content that does not belong to any of the origin
-servers or domains listed. If all partitions for a particular origin
+volume to use for content that does not belong to any of the origin
+servers or domains listed. If all volumes for a particular origin
 server become corrupt, Traffic Server will also use the generic
-partition to store content for that origin server.
+volume to store content for that origin server.
 
-The generic partition must have the following format::
+The generic volume must have the following format::
 
-    hostname=* partition=NUMBERS
+    hostname=* volume=NUMBERS
 
 where ``NUMBERS`` is a comma-separated list of generic
-partitions.
+volumes.
 
 Examples
 ========
 
 The following example configures Traffic Server to store content from
-the domain ``mydomain.com`` in partition 1 and content from
-``www.myhost.com`` in partition 2. Traffic Server stores content from
-all other origin servers in partitions 3 and 4.
+the domain ``mydomain.com`` in volume 1 and content from
+``www.myhost.com`` in volume 2. Traffic Server stores content from
+all other origin servers in volumes 3 and 4.
 
 ::
 
-    domain=mydomain.com partition=1
-    hostname=www.myhost.com partition=2
-    hostname=* partition=3,4
-
+    domain=mydomain.com volume=1
+    hostname=www.myhost.com volume=2
+    hostname=* volume=3,4