chef 0.10.0.beta.9 → 0.10.0.beta.10
Sign up to get free protection for your applications and to get access to all the features.
- data/README.rdoc +2 -0
- data/distro/common/html/chef-client.8.html +141 -0
- data/distro/common/html/chef-expander-cluster.8.html +164 -0
- data/distro/common/html/chef-expanderctl.8.html +146 -0
- data/distro/common/html/chef-server-webui.8.html +185 -0
- data/distro/common/html/chef-server.8.html +182 -0
- data/distro/common/html/chef-solo.8.html +191 -0
- data/distro/common/html/chef-solr.8.html +163 -0
- data/distro/common/html/knife-bootstrap.1.html +3 -3
- data/distro/common/html/knife-client.1.html +3 -3
- data/distro/common/html/knife-configure.1.html +1 -1
- data/distro/common/html/knife-cookbook-site.1.html +3 -3
- data/distro/common/html/knife-cookbook.1.html +3 -3
- data/distro/common/html/knife-data-bag.1.html +1 -1
- data/distro/common/html/knife-environment.1.html +3 -3
- data/distro/common/html/knife-exec.1.html +3 -3
- data/distro/common/html/knife-index.1.html +1 -1
- data/distro/common/html/knife-node.1.html +3 -3
- data/distro/common/html/knife-recipe.1.html +1 -1
- data/distro/common/html/knife-role.1.html +3 -3
- data/distro/common/html/knife-search.1.html +3 -3
- data/distro/common/html/knife-ssh.1.html +3 -3
- data/distro/common/html/knife-status.1.html +3 -3
- data/distro/common/html/knife-tag.1.html +3 -3
- data/distro/common/html/knife.1.html +3 -3
- data/distro/common/html/shef.1.html +3 -3
- data/distro/common/man/man1/knife-bootstrap.1 +1 -1
- data/distro/common/man/man1/knife-client.1 +1 -1
- data/distro/common/man/man1/knife-configure.1 +1 -1
- data/distro/common/man/man1/knife-cookbook-site.1 +1 -1
- data/distro/common/man/man1/knife-cookbook.1 +1 -1
- data/distro/common/man/man1/knife-data-bag.1 +1 -1
- data/distro/common/man/man1/knife-environment.1 +1 -1
- data/distro/common/man/man1/knife-exec.1 +1 -1
- data/distro/common/man/man1/knife-index.1 +1 -1
- data/distro/common/man/man1/knife-node.1 +1 -1
- data/distro/common/man/man1/knife-role.1 +1 -1
- data/distro/common/man/man1/knife-search.1 +1 -1
- data/distro/common/man/man1/knife-ssh.1 +1 -1
- data/distro/common/man/man1/knife-status.1 +1 -1
- data/distro/common/man/man1/knife-tag.1 +1 -1
- data/distro/common/man/man1/knife.1 +1 -1
- data/distro/common/man/man1/shef.1 +1 -1
- data/distro/common/man/man8/chef-client.8 +53 -32
- data/distro/common/man/man8/chef-expander-cluster.8 +97 -0
- data/distro/common/man/man8/chef-expanderctl.8 +62 -0
- data/distro/common/man/man8/chef-server-webui.8 +121 -72
- data/distro/common/man/man8/chef-server.8 +113 -73
- data/distro/common/man/man8/chef-solo.8 +131 -30
- data/distro/common/man/man8/chef-solr.8 +85 -26
- data/distro/common/markdown/man8/chef-client.mkd +65 -0
- data/distro/common/markdown/man8/chef-expander-cluster.mkd +82 -0
- data/distro/common/markdown/man8/chef-expanderctl.mkd +58 -0
- data/distro/common/markdown/man8/chef-server-webui.mkd +121 -0
- data/distro/common/markdown/man8/chef-server.mkd +121 -0
- data/distro/common/markdown/man8/chef-solo.mkd +107 -0
- data/distro/common/markdown/man8/chef-solr.mkd +85 -0
- data/lib/chef/config.rb +1 -1
- data/lib/chef/cookbook/metadata.rb +1 -0
- data/lib/chef/cookbook_uploader.rb +12 -5
- data/lib/chef/couchdb.rb +21 -21
- data/lib/chef/file_access_control.rb +4 -4
- data/lib/chef/knife.rb +11 -3
- data/lib/chef/knife/bootstrap/centos5-gems.erb +13 -7
- data/lib/chef/knife/bootstrap/fedora13-gems.erb +1 -1
- data/lib/chef/knife/bootstrap/ubuntu10.04-apt.erb +2 -2
- data/lib/chef/knife/bootstrap/ubuntu10.04-gems.erb +1 -1
- data/lib/chef/knife/client_create.rb +1 -1
- data/lib/chef/knife/configure.rb +10 -1
- data/lib/chef/knife/cookbook_bulk_delete.rb +13 -3
- data/lib/chef/knife/cookbook_site_download.rb +5 -5
- data/lib/chef/knife/cookbook_site_install.rb +5 -5
- data/lib/chef/knife/cookbook_site_list.rb +6 -2
- data/lib/chef/knife/cookbook_site_search.rb +1 -1
- data/lib/chef/knife/cookbook_site_show.rb +3 -3
- data/lib/chef/knife/cookbook_upload.rb +7 -8
- data/lib/chef/knife/core/ui.rb +1 -1
- data/lib/chef/knife/node_bulk_delete.rb +37 -3
- data/lib/chef/knife/recipe_list.rb +0 -1
- data/lib/chef/knife/role_bulk_delete.rb +27 -4
- data/lib/chef/mixin/language.rb +2 -2
- data/lib/chef/resource/deploy_revision.rb +5 -0
- data/lib/chef/rest.rb +5 -8
- data/lib/chef/version.rb +1 -1
- data/lib/chef/version_class.rb +4 -4
- metadata +20 -4
data/README.rdoc
CHANGED
@@ -0,0 +1,141 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<meta http-equiv='content-type' value='text/html;charset=utf8'>
|
5
|
+
<meta name='generator' value='Ronn/v0.7.3 (http://github.com/rtomayko/ronn/tree/0.7.3)'>
|
6
|
+
<title>chef-client(8) - Runs a client node connecting to a chef-server.</title>
|
7
|
+
<style type='text/css' media='all'>
|
8
|
+
/* style: man */
|
9
|
+
body#manpage {margin:0}
|
10
|
+
.mp {max-width:100ex;padding:0 9ex 1ex 4ex}
|
11
|
+
.mp p,.mp pre,.mp ul,.mp ol,.mp dl {margin:0 0 20px 0}
|
12
|
+
.mp h2 {margin:10px 0 0 0}
|
13
|
+
.mp > p,.mp > pre,.mp > ul,.mp > ol,.mp > dl {margin-left:8ex}
|
14
|
+
.mp h3 {margin:0 0 0 4ex}
|
15
|
+
.mp dt {margin:0;clear:left}
|
16
|
+
.mp dt.flush {float:left;width:8ex}
|
17
|
+
.mp dd {margin:0 0 0 9ex}
|
18
|
+
.mp h1,.mp h2,.mp h3,.mp h4 {clear:left}
|
19
|
+
.mp pre {margin-bottom:20px}
|
20
|
+
.mp pre+h2,.mp pre+h3 {margin-top:22px}
|
21
|
+
.mp h2+pre,.mp h3+pre {margin-top:5px}
|
22
|
+
.mp img {display:block;margin:auto}
|
23
|
+
.mp h1.man-title {display:none}
|
24
|
+
.mp,.mp code,.mp pre,.mp tt,.mp kbd,.mp samp,.mp h3,.mp h4 {font-family:monospace;font-size:14px;line-height:1.42857142857143}
|
25
|
+
.mp h2 {font-size:16px;line-height:1.25}
|
26
|
+
.mp h1 {font-size:20px;line-height:2}
|
27
|
+
.mp {text-align:justify;background:#fff}
|
28
|
+
.mp,.mp code,.mp pre,.mp pre code,.mp tt,.mp kbd,.mp samp {color:#131211}
|
29
|
+
.mp h1,.mp h2,.mp h3,.mp h4 {color:#030201}
|
30
|
+
.mp u {text-decoration:underline}
|
31
|
+
.mp code,.mp strong,.mp b {font-weight:bold;color:#131211}
|
32
|
+
.mp em,.mp var {font-style:italic;color:#232221;text-decoration:none}
|
33
|
+
.mp a,.mp a:link,.mp a:hover,.mp a code,.mp a pre,.mp a tt,.mp a kbd,.mp a samp {color:#0000ff}
|
34
|
+
.mp b.man-ref {font-weight:normal;color:#434241}
|
35
|
+
.mp pre {padding:0 4ex}
|
36
|
+
.mp pre code {font-weight:normal;color:#434241}
|
37
|
+
.mp h2+pre,h3+pre {padding-left:0}
|
38
|
+
ol.man-decor,ol.man-decor li {margin:3px 0 10px 0;padding:0;float:left;width:33%;list-style-type:none;text-transform:uppercase;color:#999;letter-spacing:1px}
|
39
|
+
ol.man-decor {width:100%}
|
40
|
+
ol.man-decor li.tl {text-align:left}
|
41
|
+
ol.man-decor li.tc {text-align:center;letter-spacing:4px}
|
42
|
+
ol.man-decor li.tr {text-align:right;float:right}
|
43
|
+
</style>
|
44
|
+
<style type='text/css' media='all'>
|
45
|
+
/* style: toc */
|
46
|
+
.man-navigation {display:block !important;position:fixed;top:0;left:113ex;height:100%;width:100%;padding:48px 0 0 0;border-left:1px solid #dbdbdb;background:#eee}
|
47
|
+
.man-navigation a,.man-navigation a:hover,.man-navigation a:link,.man-navigation a:visited {display:block;margin:0;padding:5px 2px 5px 30px;color:#999;text-decoration:none}
|
48
|
+
.man-navigation a:hover {color:#111;text-decoration:underline}
|
49
|
+
</style>
|
50
|
+
</head>
|
51
|
+
<!--
|
52
|
+
The following styles are deprecated and will be removed at some point:
|
53
|
+
div#man, div#man ol.man, div#man ol.head, div#man ol.man.
|
54
|
+
|
55
|
+
The .man-page, .man-decor, .man-head, .man-foot, .man-title, and
|
56
|
+
.man-navigation should be used instead.
|
57
|
+
-->
|
58
|
+
<body id='manpage'>
|
59
|
+
<div class='mp' id='man'>
|
60
|
+
|
61
|
+
<div class='man-navigation' style='display:none'>
|
62
|
+
<a href="#NAME">NAME</a>
|
63
|
+
<a href="#SYNOPSIS">SYNOPSIS</a>
|
64
|
+
<a href="#DESCRIPTION">DESCRIPTION</a>
|
65
|
+
<a href="#SEE-ALSO">SEE ALSO</a>
|
66
|
+
<a href="#AUTHOR">AUTHOR</a>
|
67
|
+
</div>
|
68
|
+
|
69
|
+
<ol class='man-decor man-head man head'>
|
70
|
+
<li class='tl'>chef-client(8)</li>
|
71
|
+
<li class='tc'>Chef Manual</li>
|
72
|
+
<li class='tr'>chef-client(8)</li>
|
73
|
+
</ol>
|
74
|
+
|
75
|
+
<h2 id="NAME">NAME</h2>
|
76
|
+
<p class="man-name">
|
77
|
+
<code>chef-client</code> - <span class="man-whatis">Runs a client node connecting to a chef-server.</span>
|
78
|
+
</p>
|
79
|
+
|
80
|
+
<h2 id="SYNOPSIS">SYNOPSIS</h2>
|
81
|
+
|
82
|
+
<p><strong>chef-client</strong> <em>(options)</em></p>
|
83
|
+
|
84
|
+
<dl>
|
85
|
+
<dt><code>-S</code>, <code>--server CHEFSERVERURL</code></dt><dd>The chef server URL</dd>
|
86
|
+
<dt><code>-c</code>, <code>--config CONFIG</code></dt><dd>The configuration file to use</dd>
|
87
|
+
<dt><code>-d</code>, <code>--daemonize</code></dt><dd>Daemonize the process</dd>
|
88
|
+
<dt><code>-g</code>, <code>--group GROUP</code></dt><dd>Group to set privilege to</dd>
|
89
|
+
<dt><code>-i</code>, <code>--interval SECONDS</code></dt><dd>Run chef-client periodically, in seconds</dd>
|
90
|
+
<dt><code>-j</code>, <code>--json-attributes JSON_ATTRIBS</code></dt><dd>Load attributes from a JSON file or URL</dd>
|
91
|
+
<dt><code>-l</code>, <code>--log_level LEVEL</code></dt><dd>Set the log level (debug, info, warn, error, fatal)</dd>
|
92
|
+
<dt><code>-L</code>, <code>--logfile LOGLOCATION</code></dt><dd>Set the log file location, defaults to STDOUT - recommended for
|
93
|
+
daemonizing</dd>
|
94
|
+
<dt><code>-V</code>, <code>--verbose</code></dt><dd>Ensures logging goes to STDOUT as well as to other configured
|
95
|
+
log location(s).</dd>
|
96
|
+
<dt><code>-N</code>, <code>--node-name NODE_NAME</code></dt><dd>The node name for this client</dd>
|
97
|
+
<dt><code>-s</code>, <code>--splay SECONDS</code></dt><dd>The splay time for running at intervals, in seconds</dd>
|
98
|
+
<dt><code>-u</code>, <code>--user USER</code></dt><dd>User to set privilege to</dd>
|
99
|
+
<dt><code>-v</code>, <code>--version</code></dt><dd>Show chef version</dd>
|
100
|
+
<dt><code>-h</code>, <code>--help</code></dt><dd>Show this message</dd>
|
101
|
+
</dl>
|
102
|
+
|
103
|
+
|
104
|
+
<h2 id="DESCRIPTION">DESCRIPTION</h2>
|
105
|
+
|
106
|
+
<p>The Chef Client is where almost all of the work in Chef is done. It
|
107
|
+
communicates with the Chef Server via REST, authenticates via Signed
|
108
|
+
Header Authentication, and compiles and executes Cookbooks.</p>
|
109
|
+
|
110
|
+
<p>A Chef Client does work on behalf of a Node. A single Chef Client can
|
111
|
+
run recipes for multiple Nodes.</p>
|
112
|
+
|
113
|
+
<p>Clients are where all the action happens - the Chef Server and Chef Expander
|
114
|
+
are largely services that exist only to provide the Client with information.</p>
|
115
|
+
|
116
|
+
<h2 id="SEE-ALSO">SEE ALSO</h2>
|
117
|
+
|
118
|
+
<p>Full documentation for Chef and chef-client is located on the Chef
|
119
|
+
wiki, http://wiki.opscode.com/display/chef/Home.</p>
|
120
|
+
|
121
|
+
<h2 id="AUTHOR">AUTHOR</h2>
|
122
|
+
|
123
|
+
<p>Chef was written by Adam Jacob <a href="mailto:adam@ospcode.com" data-bare-link="true">adam@ospcode.com</a> of Opscode
|
124
|
+
(http://www.opscode.com), with contributions from the community. This
|
125
|
+
manual page was written by Joshua Timberman <a href="mailto:joshua@opscode.com" data-bare-link="true">joshua@opscode.com</a> with
|
126
|
+
help2man. Permission is granted to copy, distribute and / or modify
|
127
|
+
this document under the terms of the Apache 2.0 License.</p>
|
128
|
+
|
129
|
+
<p>On Debian systems, the complete text of the Apache 2.0 License can be
|
130
|
+
found in /usr/share/common-licenses/Apache-2.0.</p>
|
131
|
+
|
132
|
+
|
133
|
+
<ol class='man-decor man-foot man foot'>
|
134
|
+
<li class='tl'>Chef 0.10.0.beta.10</li>
|
135
|
+
<li class='tc'>April 2011</li>
|
136
|
+
<li class='tr'>chef-client(8)</li>
|
137
|
+
</ol>
|
138
|
+
|
139
|
+
</div>
|
140
|
+
</body>
|
141
|
+
</html>
|
@@ -0,0 +1,164 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<meta http-equiv='content-type' value='text/html;charset=utf8'>
|
5
|
+
<meta name='generator' value='Ronn/v0.7.3 (http://github.com/rtomayko/ronn/tree/0.7.3)'>
|
6
|
+
<title>chef-expander-cluster(8) - fetches messages from RabbitMQ, processes, and loads into chef-solr</title>
|
7
|
+
<style type='text/css' media='all'>
|
8
|
+
/* style: man */
|
9
|
+
body#manpage {margin:0}
|
10
|
+
.mp {max-width:100ex;padding:0 9ex 1ex 4ex}
|
11
|
+
.mp p,.mp pre,.mp ul,.mp ol,.mp dl {margin:0 0 20px 0}
|
12
|
+
.mp h2 {margin:10px 0 0 0}
|
13
|
+
.mp > p,.mp > pre,.mp > ul,.mp > ol,.mp > dl {margin-left:8ex}
|
14
|
+
.mp h3 {margin:0 0 0 4ex}
|
15
|
+
.mp dt {margin:0;clear:left}
|
16
|
+
.mp dt.flush {float:left;width:8ex}
|
17
|
+
.mp dd {margin:0 0 0 9ex}
|
18
|
+
.mp h1,.mp h2,.mp h3,.mp h4 {clear:left}
|
19
|
+
.mp pre {margin-bottom:20px}
|
20
|
+
.mp pre+h2,.mp pre+h3 {margin-top:22px}
|
21
|
+
.mp h2+pre,.mp h3+pre {margin-top:5px}
|
22
|
+
.mp img {display:block;margin:auto}
|
23
|
+
.mp h1.man-title {display:none}
|
24
|
+
.mp,.mp code,.mp pre,.mp tt,.mp kbd,.mp samp,.mp h3,.mp h4 {font-family:monospace;font-size:14px;line-height:1.42857142857143}
|
25
|
+
.mp h2 {font-size:16px;line-height:1.25}
|
26
|
+
.mp h1 {font-size:20px;line-height:2}
|
27
|
+
.mp {text-align:justify;background:#fff}
|
28
|
+
.mp,.mp code,.mp pre,.mp pre code,.mp tt,.mp kbd,.mp samp {color:#131211}
|
29
|
+
.mp h1,.mp h2,.mp h3,.mp h4 {color:#030201}
|
30
|
+
.mp u {text-decoration:underline}
|
31
|
+
.mp code,.mp strong,.mp b {font-weight:bold;color:#131211}
|
32
|
+
.mp em,.mp var {font-style:italic;color:#232221;text-decoration:none}
|
33
|
+
.mp a,.mp a:link,.mp a:hover,.mp a code,.mp a pre,.mp a tt,.mp a kbd,.mp a samp {color:#0000ff}
|
34
|
+
.mp b.man-ref {font-weight:normal;color:#434241}
|
35
|
+
.mp pre {padding:0 4ex}
|
36
|
+
.mp pre code {font-weight:normal;color:#434241}
|
37
|
+
.mp h2+pre,h3+pre {padding-left:0}
|
38
|
+
ol.man-decor,ol.man-decor li {margin:3px 0 10px 0;padding:0;float:left;width:33%;list-style-type:none;text-transform:uppercase;color:#999;letter-spacing:1px}
|
39
|
+
ol.man-decor {width:100%}
|
40
|
+
ol.man-decor li.tl {text-align:left}
|
41
|
+
ol.man-decor li.tc {text-align:center;letter-spacing:4px}
|
42
|
+
ol.man-decor li.tr {text-align:right;float:right}
|
43
|
+
</style>
|
44
|
+
<style type='text/css' media='all'>
|
45
|
+
/* style: toc */
|
46
|
+
.man-navigation {display:block !important;position:fixed;top:0;left:113ex;height:100%;width:100%;padding:48px 0 0 0;border-left:1px solid #dbdbdb;background:#eee}
|
47
|
+
.man-navigation a,.man-navigation a:hover,.man-navigation a:link,.man-navigation a:visited {display:block;margin:0;padding:5px 2px 5px 30px;color:#999;text-decoration:none}
|
48
|
+
.man-navigation a:hover {color:#111;text-decoration:underline}
|
49
|
+
</style>
|
50
|
+
</head>
|
51
|
+
<!--
|
52
|
+
The following styles are deprecated and will be removed at some point:
|
53
|
+
div#man, div#man ol.man, div#man ol.head, div#man ol.man.
|
54
|
+
|
55
|
+
The .man-page, .man-decor, .man-head, .man-foot, .man-title, and
|
56
|
+
.man-navigation should be used instead.
|
57
|
+
-->
|
58
|
+
<body id='manpage'>
|
59
|
+
<div class='mp' id='man'>
|
60
|
+
|
61
|
+
<div class='man-navigation' style='display:none'>
|
62
|
+
<a href="#NAME">NAME</a>
|
63
|
+
<a href="#SYNOPSIS">SYNOPSIS</a>
|
64
|
+
<a href="#DESCRIPTION">DESCRIPTION</a>
|
65
|
+
<a href="#SEE-ALSO">SEE ALSO</a>
|
66
|
+
<a href="#AUTHOR">AUTHOR</a>
|
67
|
+
</div>
|
68
|
+
|
69
|
+
<ol class='man-decor man-head man head'>
|
70
|
+
<li class='tl'>chef-expander-cluster(8)</li>
|
71
|
+
<li class='tc'>Chef Manual</li>
|
72
|
+
<li class='tr'>chef-expander-cluster(8)</li>
|
73
|
+
</ol>
|
74
|
+
|
75
|
+
<h2 id="NAME">NAME</h2>
|
76
|
+
<p class="man-name">
|
77
|
+
<code>chef-expander-cluster</code> - <span class="man-whatis">fetches messages from RabbitMQ, processes, and loads into chef-solr</span>
|
78
|
+
</p>
|
79
|
+
|
80
|
+
<h2 id="SYNOPSIS">SYNOPSIS</h2>
|
81
|
+
|
82
|
+
<p><strong>chef-expander-cluster</strong> <em>(options)</em></p>
|
83
|
+
|
84
|
+
<dl>
|
85
|
+
<dt><code>-c</code>, <code>--config CONFIG_FILE</code></dt><dd>a configuration file to use</dd>
|
86
|
+
<dt><code>-i</code>, <code>--index INDEX</code></dt><dd>the slot this node will occupy in the ring</dd>
|
87
|
+
<dt><code>-n</code>, <code>--node-count NUMBER</code></dt><dd>the number of nodes in the ring</dd>
|
88
|
+
<dt><code>-l</code>, <code>--log-level LOG_LEVEL</code></dt><dd>set the log level</dd>
|
89
|
+
<dt><code>-L</code>, <code>--logfile LOG_LOCATION</code></dt><dd>Logfile to use</dd>
|
90
|
+
<dt><code>-d</code>, <code>--daemonize</code></dt><dd>fork into the background</dd>
|
91
|
+
<dt><code>-P</code>, <code>--pid PIDFILE</code></dt><dd>PID file</dd>
|
92
|
+
<dt><code>-h</code>, <code>--help</code></dt><dd>show help message</dd>
|
93
|
+
<dt><code>-v</code>, <code>--version</code></dt><dd>show the version and exit</dd>
|
94
|
+
</dl>
|
95
|
+
|
96
|
+
|
97
|
+
<h2 id="DESCRIPTION">DESCRIPTION</h2>
|
98
|
+
|
99
|
+
<p>Chef Expander fetches messages from RabbitMQ, processes them into the
|
100
|
+
correct format to be loaded into Solr and loads them into Solr.</p>
|
101
|
+
|
102
|
+
<p><strong>Running Chef Expander</strong></p>
|
103
|
+
|
104
|
+
<p>Chef Expander is designed for clustered operation, though small
|
105
|
+
installations will only need one worker process. To run Chef
|
106
|
+
Expander with one worker process, run chef-expander-cluster -n 1.
|
107
|
+
You will then have a master and worker process, which looks like
|
108
|
+
this in ps:</p>
|
109
|
+
|
110
|
+
<pre><code>your-shell> ps aux|grep expander
|
111
|
+
you 52110 0.1 0.7 2515476 62748 s003 S+ 3:49PM 0:00.80 chef-expander worker #1 (vnodes 0-1023)
|
112
|
+
you 52108 0.1 0.5 2492880 41696 s003 S+ 3:49PM 0:00.91 ruby bin/chef-expander-cluster -n 1
|
113
|
+
</code></pre>
|
114
|
+
|
115
|
+
<p>Workers are single threaded and therefore cannot use more than 100%
|
116
|
+
of a single CPU. If you find that your queues are getting backlogged,
|
117
|
+
increase the number of workers</p>
|
118
|
+
|
119
|
+
<p><strong>Design</strong></p>
|
120
|
+
|
121
|
+
<p>Chef Expander uses 1024 queues (called vnodes in some places) to allow
|
122
|
+
you to scale the number of Chef Expander workers to meet the needs of
|
123
|
+
your infrastructure. When objects are saved in the API server, they are
|
124
|
+
added to queues based on their database IDs. These queues can be assigned
|
125
|
+
to different Chef Expander workers to distribute the load of processing
|
126
|
+
the index updates.</p>
|
127
|
+
|
128
|
+
<p><strong>Chef Expander Operation and Troubleshooting</strong></p>
|
129
|
+
|
130
|
+
<p>Chef Expander includes chef-expanderctl, a management program that allows
|
131
|
+
you to get status information or change the logging verbosity (without
|
132
|
+
restarting).</p>
|
133
|
+
|
134
|
+
<p>See <strong>chef-expanderctl</strong>(8) for details.</p>
|
135
|
+
|
136
|
+
<h2 id="SEE-ALSO">SEE ALSO</h2>
|
137
|
+
|
138
|
+
<p><strong>chef-expanderctl</strong>(8)
|
139
|
+
<strong>chef-solr</strong>(8)</p>
|
140
|
+
|
141
|
+
<p>Full documentation for Chef and chef-server is located on the Chef
|
142
|
+
wiki, http://wiki.opscode.com/display/chef/Home.</p>
|
143
|
+
|
144
|
+
<h2 id="AUTHOR">AUTHOR</h2>
|
145
|
+
|
146
|
+
<p>Chef was written by Adam Jacob <a href="mailto:adam@ospcode.com" data-bare-link="true">adam@ospcode.com</a> of Opscode
|
147
|
+
(http://www.opscode.com), with contributions from the community. This
|
148
|
+
manual page was created by Nuo Yan <a href="mailto:nuo@opscode.com" data-bare-link="true">nuo@opscode.com</a>. Permission is
|
149
|
+
granted to copy, distribute and / or modify this document under the
|
150
|
+
terms of the Apache 2.0 License.</p>
|
151
|
+
|
152
|
+
<p>On Debian systems, the complete text of the Apache 2.0 License can be
|
153
|
+
found in /usr/share/common-licenses/Apache-2.0.</p>
|
154
|
+
|
155
|
+
|
156
|
+
<ol class='man-decor man-foot man foot'>
|
157
|
+
<li class='tl'>Chef 0.10.0.beta.10</li>
|
158
|
+
<li class='tc'>April 2011</li>
|
159
|
+
<li class='tr'>chef-expander-cluster(8)</li>
|
160
|
+
</ol>
|
161
|
+
|
162
|
+
</div>
|
163
|
+
</body>
|
164
|
+
</html>
|
@@ -0,0 +1,146 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<meta http-equiv='content-type' value='text/html;charset=utf8'>
|
5
|
+
<meta name='generator' value='Ronn/v0.7.3 (http://github.com/rtomayko/ronn/tree/0.7.3)'>
|
6
|
+
<title>chef-expanderctl(8) - management program for chef-expander</title>
|
7
|
+
<style type='text/css' media='all'>
|
8
|
+
/* style: man */
|
9
|
+
body#manpage {margin:0}
|
10
|
+
.mp {max-width:100ex;padding:0 9ex 1ex 4ex}
|
11
|
+
.mp p,.mp pre,.mp ul,.mp ol,.mp dl {margin:0 0 20px 0}
|
12
|
+
.mp h2 {margin:10px 0 0 0}
|
13
|
+
.mp > p,.mp > pre,.mp > ul,.mp > ol,.mp > dl {margin-left:8ex}
|
14
|
+
.mp h3 {margin:0 0 0 4ex}
|
15
|
+
.mp dt {margin:0;clear:left}
|
16
|
+
.mp dt.flush {float:left;width:8ex}
|
17
|
+
.mp dd {margin:0 0 0 9ex}
|
18
|
+
.mp h1,.mp h2,.mp h3,.mp h4 {clear:left}
|
19
|
+
.mp pre {margin-bottom:20px}
|
20
|
+
.mp pre+h2,.mp pre+h3 {margin-top:22px}
|
21
|
+
.mp h2+pre,.mp h3+pre {margin-top:5px}
|
22
|
+
.mp img {display:block;margin:auto}
|
23
|
+
.mp h1.man-title {display:none}
|
24
|
+
.mp,.mp code,.mp pre,.mp tt,.mp kbd,.mp samp,.mp h3,.mp h4 {font-family:monospace;font-size:14px;line-height:1.42857142857143}
|
25
|
+
.mp h2 {font-size:16px;line-height:1.25}
|
26
|
+
.mp h1 {font-size:20px;line-height:2}
|
27
|
+
.mp {text-align:justify;background:#fff}
|
28
|
+
.mp,.mp code,.mp pre,.mp pre code,.mp tt,.mp kbd,.mp samp {color:#131211}
|
29
|
+
.mp h1,.mp h2,.mp h3,.mp h4 {color:#030201}
|
30
|
+
.mp u {text-decoration:underline}
|
31
|
+
.mp code,.mp strong,.mp b {font-weight:bold;color:#131211}
|
32
|
+
.mp em,.mp var {font-style:italic;color:#232221;text-decoration:none}
|
33
|
+
.mp a,.mp a:link,.mp a:hover,.mp a code,.mp a pre,.mp a tt,.mp a kbd,.mp a samp {color:#0000ff}
|
34
|
+
.mp b.man-ref {font-weight:normal;color:#434241}
|
35
|
+
.mp pre {padding:0 4ex}
|
36
|
+
.mp pre code {font-weight:normal;color:#434241}
|
37
|
+
.mp h2+pre,h3+pre {padding-left:0}
|
38
|
+
ol.man-decor,ol.man-decor li {margin:3px 0 10px 0;padding:0;float:left;width:33%;list-style-type:none;text-transform:uppercase;color:#999;letter-spacing:1px}
|
39
|
+
ol.man-decor {width:100%}
|
40
|
+
ol.man-decor li.tl {text-align:left}
|
41
|
+
ol.man-decor li.tc {text-align:center;letter-spacing:4px}
|
42
|
+
ol.man-decor li.tr {text-align:right;float:right}
|
43
|
+
</style>
|
44
|
+
<style type='text/css' media='all'>
|
45
|
+
/* style: toc */
|
46
|
+
.man-navigation {display:block !important;position:fixed;top:0;left:113ex;height:100%;width:100%;padding:48px 0 0 0;border-left:1px solid #dbdbdb;background:#eee}
|
47
|
+
.man-navigation a,.man-navigation a:hover,.man-navigation a:link,.man-navigation a:visited {display:block;margin:0;padding:5px 2px 5px 30px;color:#999;text-decoration:none}
|
48
|
+
.man-navigation a:hover {color:#111;text-decoration:underline}
|
49
|
+
</style>
|
50
|
+
</head>
|
51
|
+
<!--
|
52
|
+
The following styles are deprecated and will be removed at some point:
|
53
|
+
div#man, div#man ol.man, div#man ol.head, div#man ol.man.
|
54
|
+
|
55
|
+
The .man-page, .man-decor, .man-head, .man-foot, .man-title, and
|
56
|
+
.man-navigation should be used instead.
|
57
|
+
-->
|
58
|
+
<body id='manpage'>
|
59
|
+
<div class='mp' id='man'>
|
60
|
+
|
61
|
+
<div class='man-navigation' style='display:none'>
|
62
|
+
<a href="#NAME">NAME</a>
|
63
|
+
<a href="#SYNOPSIS">SYNOPSIS</a>
|
64
|
+
<a href="#DESCRIPTION">DESCRIPTION</a>
|
65
|
+
<a href="#SEE-ALSO">SEE ALSO</a>
|
66
|
+
<a href="#AUTHOR">AUTHOR</a>
|
67
|
+
</div>
|
68
|
+
|
69
|
+
<ol class='man-decor man-head man head'>
|
70
|
+
<li class='tl'>chef-expanderctl(8)</li>
|
71
|
+
<li class='tc'>Chef Manual</li>
|
72
|
+
<li class='tr'>chef-expanderctl(8)</li>
|
73
|
+
</ol>
|
74
|
+
|
75
|
+
<h2 id="NAME">NAME</h2>
|
76
|
+
<p class="man-name">
|
77
|
+
<code>chef-expanderctl</code> - <span class="man-whatis">management program for chef-expander</span>
|
78
|
+
</p>
|
79
|
+
|
80
|
+
<h2 id="SYNOPSIS">SYNOPSIS</h2>
|
81
|
+
|
82
|
+
<p><strong>chef-expanderctl</strong> <em>COMMAND</em></p>
|
83
|
+
|
84
|
+
<p><strong>Commands:</strong></p>
|
85
|
+
|
86
|
+
<dl>
|
87
|
+
<dt class="flush"><code>help</code></dt><dd>Show help message</dd>
|
88
|
+
<dt><code>queue-depth</code></dt><dd>display the aggregate queue backlog</dd>
|
89
|
+
<dt><code>queue-status</code></dt><dd>show the backlog and consumer count for each vnode queue</dd>
|
90
|
+
<dt><code>node-status</code></dt><dd>show the status of the nodes in the cluster</dd>
|
91
|
+
<dt><code>log-level</code></dt><dd>sets the log level of all nodes in the cluster</dd>
|
92
|
+
</dl>
|
93
|
+
|
94
|
+
|
95
|
+
<h2 id="DESCRIPTION">DESCRIPTION</h2>
|
96
|
+
|
97
|
+
<p>Chef-expanderctl is a management program that allows
|
98
|
+
you to get status information or change the logging
|
99
|
+
verbosity (without restarting). chef-expanderctl has
|
100
|
+
the following commands:</p>
|
101
|
+
|
102
|
+
<ul>
|
103
|
+
<li><strong>chef-expanderctl help</strong>
|
104
|
+
prints usage.</li>
|
105
|
+
<li><strong>chef-expanderctl queue-depth</strong>
|
106
|
+
Shows the total number of messages in the queues.</li>
|
107
|
+
<li><strong>chef-expanderctl queue-status</strong>
|
108
|
+
Show the number of messages in each queue. This is mainly of use when
|
109
|
+
debugging a Chef Expander cluster.</li>
|
110
|
+
<li><strong>chef-expanderctl log-level LEVEL</strong>
|
111
|
+
Sets the log level on a running Chef Expander or cluster.
|
112
|
+
If you suspect that a worker process is stuck, as long as you are using
|
113
|
+
clustered operation, you can simply kill the worker process and it will
|
114
|
+
be restarted by the master process.</li>
|
115
|
+
</ul>
|
116
|
+
|
117
|
+
|
118
|
+
<h2 id="SEE-ALSO">SEE ALSO</h2>
|
119
|
+
|
120
|
+
<p><strong>chef-expander-cluster</strong>(8)
|
121
|
+
<strong>chef-solr</strong>(8)</p>
|
122
|
+
|
123
|
+
<p>Full documentation for Chef and chef-server is located on the Chef
|
124
|
+
wiki, http://wiki.opscode.com/display/chef/Home.</p>
|
125
|
+
|
126
|
+
<h2 id="AUTHOR">AUTHOR</h2>
|
127
|
+
|
128
|
+
<p>Chef was written by Adam Jacob <a href="mailto:adam@ospcode.com" data-bare-link="true">adam@ospcode.com</a> of Opscode
|
129
|
+
(http://www.opscode.com), with contributions from the community. This
|
130
|
+
manual page was created by Nuo Yan <a href="mailto:nuo@opscode.com" data-bare-link="true">nuo@opscode.com</a>. Permission is
|
131
|
+
granted to copy, distribute and / or modify this document under the
|
132
|
+
terms of the Apache 2.0 License.</p>
|
133
|
+
|
134
|
+
<p>On Debian systems, the complete text of the Apache 2.0 License can be
|
135
|
+
found in /usr/share/common-licenses/Apache-2.0.</p>
|
136
|
+
|
137
|
+
|
138
|
+
<ol class='man-decor man-foot man foot'>
|
139
|
+
<li class='tl'>Chef 0.10.0.beta.10</li>
|
140
|
+
<li class='tc'>April 2011</li>
|
141
|
+
<li class='tr'>chef-expanderctl(8)</li>
|
142
|
+
</ol>
|
143
|
+
|
144
|
+
</div>
|
145
|
+
</body>
|
146
|
+
</html>
|