unicorn-maintained 6.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.CHANGELOG.old +25 -0
- data/.document +28 -0
- data/.gitattributes +5 -0
- data/.gitignore +25 -0
- data/.mailmap +26 -0
- data/.manifest +149 -0
- data/.olddoc.yml +25 -0
- data/Application_Timeouts +77 -0
- data/CONTRIBUTORS +39 -0
- data/COPYING +674 -0
- data/DESIGN +99 -0
- data/Documentation/.gitignore +3 -0
- data/Documentation/unicorn.1 +222 -0
- data/Documentation/unicorn_rails.1 +207 -0
- data/FAQ +70 -0
- data/GIT-VERSION-FILE +1 -0
- data/GIT-VERSION-GEN +39 -0
- data/GNUmakefile +317 -0
- data/HACKING +112 -0
- data/ISSUES +102 -0
- data/KNOWN_ISSUES +79 -0
- data/LATEST +1 -0
- data/LICENSE +67 -0
- data/Links +58 -0
- data/NEWS +1 -0
- data/PHILOSOPHY +139 -0
- data/README +156 -0
- data/Rakefile +16 -0
- data/SIGNALS +123 -0
- data/Sandbox +104 -0
- data/TODO +3 -0
- data/TUNING +119 -0
- data/archive/.gitignore +3 -0
- data/archive/slrnpull.conf +4 -0
- data/bin/unicorn +128 -0
- data/bin/unicorn_rails +209 -0
- data/examples/big_app_gc.rb +2 -0
- data/examples/echo.ru +26 -0
- data/examples/init.sh +102 -0
- data/examples/logger_mp_safe.rb +25 -0
- data/examples/logrotate.conf +44 -0
- data/examples/nginx.conf +156 -0
- data/examples/unicorn.conf.minimal.rb +13 -0
- data/examples/unicorn.conf.rb +110 -0
- data/examples/unicorn.socket +11 -0
- data/examples/unicorn@.service +40 -0
- data/ext/unicorn_http/CFLAGS +13 -0
- data/ext/unicorn_http/c_util.h +116 -0
- data/ext/unicorn_http/common_field_optimization.h +128 -0
- data/ext/unicorn_http/epollexclusive.h +128 -0
- data/ext/unicorn_http/ext_help.h +38 -0
- data/ext/unicorn_http/extconf.rb +39 -0
- data/ext/unicorn_http/global_variables.h +97 -0
- data/ext/unicorn_http/httpdate.c +91 -0
- data/ext/unicorn_http/unicorn_http.c +4334 -0
- data/ext/unicorn_http/unicorn_http.rl +1040 -0
- data/ext/unicorn_http/unicorn_http_common.rl +76 -0
- data/lib/unicorn/app/old_rails/static.rb +59 -0
- data/lib/unicorn/app/old_rails.rb +35 -0
- data/lib/unicorn/cgi_wrapper.rb +147 -0
- data/lib/unicorn/configurator.rb +748 -0
- data/lib/unicorn/const.rb +21 -0
- data/lib/unicorn/http_request.rb +201 -0
- data/lib/unicorn/http_response.rb +93 -0
- data/lib/unicorn/http_server.rb +859 -0
- data/lib/unicorn/launcher.rb +62 -0
- data/lib/unicorn/oob_gc.rb +81 -0
- data/lib/unicorn/preread_input.rb +33 -0
- data/lib/unicorn/select_waiter.rb +6 -0
- data/lib/unicorn/socket_helper.rb +185 -0
- data/lib/unicorn/stream_input.rb +151 -0
- data/lib/unicorn/tee_input.rb +131 -0
- data/lib/unicorn/tmpio.rb +33 -0
- data/lib/unicorn/util.rb +90 -0
- data/lib/unicorn/version.rb +1 -0
- data/lib/unicorn/worker.rb +165 -0
- data/lib/unicorn.rb +136 -0
- data/man/man1/unicorn.1 +222 -0
- data/man/man1/unicorn_rails.1 +207 -0
- data/setup.rb +1586 -0
- data/t/.gitignore +4 -0
- data/t/GNUmakefile +5 -0
- data/t/README +49 -0
- data/t/active-unix-socket.t +117 -0
- data/t/bin/unused_listen +40 -0
- data/t/broken-app.ru +12 -0
- data/t/client_body_buffer_size.ru +14 -0
- data/t/client_body_buffer_size.t +80 -0
- data/t/detach.ru +11 -0
- data/t/env.ru +3 -0
- data/t/fails-rack-lint.ru +5 -0
- data/t/heartbeat-timeout.ru +12 -0
- data/t/heartbeat-timeout.t +62 -0
- data/t/integration.ru +115 -0
- data/t/integration.t +356 -0
- data/t/lib.perl +258 -0
- data/t/listener_names.ru +4 -0
- data/t/my-tap-lib.sh +201 -0
- data/t/oob_gc.ru +17 -0
- data/t/oob_gc_path.ru +17 -0
- data/t/pid.ru +3 -0
- data/t/preread_input.ru +22 -0
- data/t/reload-bad-config.t +54 -0
- data/t/reopen-logs.ru +13 -0
- data/t/reopen-logs.t +39 -0
- data/t/t0008-back_out_of_upgrade.sh +110 -0
- data/t/t0009-broken-app.sh +56 -0
- data/t/t0010-reap-logging.sh +55 -0
- data/t/t0012-reload-empty-config.sh +86 -0
- data/t/t0013-rewindable-input-false.sh +24 -0
- data/t/t0013.ru +12 -0
- data/t/t0014-rewindable-input-true.sh +24 -0
- data/t/t0014.ru +12 -0
- data/t/t0015-configurator-internals.sh +25 -0
- data/t/t0020-at_exit-handler.sh +49 -0
- data/t/t0021-process_detach.sh +29 -0
- data/t/t0022-listener_names-preload_app.sh +32 -0
- data/t/t0300-no-default-middleware.sh +20 -0
- data/t/t0301-no-default-middleware-ignored-in-config.sh +25 -0
- data/t/t0301.ru +13 -0
- data/t/t9001-oob_gc.sh +47 -0
- data/t/t9002-oob_gc-path.sh +75 -0
- data/t/test-lib.sh +125 -0
- data/t/winch_ttin.t +67 -0
- data/t/working_directory.t +94 -0
- data/test/aggregate.rb +15 -0
- data/test/benchmark/README +60 -0
- data/test/benchmark/dd.ru +18 -0
- data/test/benchmark/ddstream.ru +50 -0
- data/test/benchmark/readinput.ru +40 -0
- data/test/benchmark/stack.ru +8 -0
- data/test/benchmark/uconnect.perl +66 -0
- data/test/exec/README +5 -0
- data/test/exec/test_exec.rb +1029 -0
- data/test/test_helper.rb +306 -0
- data/test/unit/test_ccc.rb +91 -0
- data/test/unit/test_configurator.rb +175 -0
- data/test/unit/test_droplet.rb +28 -0
- data/test/unit/test_http_parser.rb +884 -0
- data/test/unit/test_http_parser_ng.rb +714 -0
- data/test/unit/test_request.rb +169 -0
- data/test/unit/test_server.rb +244 -0
- data/test/unit/test_signals.rb +188 -0
- data/test/unit/test_socket_helper.rb +159 -0
- data/test/unit/test_stream_input.rb +210 -0
- data/test/unit/test_tee_input.rb +303 -0
- data/test/unit/test_util.rb +131 -0
- data/test/unit/test_waiter.rb +34 -0
- data/unicorn.gemspec +48 -0
- metadata +275 -0
data/TUNING
ADDED
@@ -0,0 +1,119 @@
|
|
1
|
+
= Tuning unicorn
|
2
|
+
|
3
|
+
unicorn performance is generally as good as a (mostly) Ruby web server
|
4
|
+
can provide. Most often the performance bottleneck is in the web
|
5
|
+
application running on Unicorn rather than Unicorn itself.
|
6
|
+
|
7
|
+
== unicorn Configuration
|
8
|
+
|
9
|
+
See Unicorn::Configurator for details on the config file format.
|
10
|
+
+worker_processes+ is the most-commonly needed tuning parameter.
|
11
|
+
|
12
|
+
=== Unicorn::Configurator#worker_processes
|
13
|
+
|
14
|
+
* worker_processes should be scaled to the number of processes your
|
15
|
+
backend system(s) can support. DO NOT scale it to the number of
|
16
|
+
external network clients your application expects to be serving.
|
17
|
+
unicorn is NOT for serving slow clients, that is the job of nginx.
|
18
|
+
|
19
|
+
* worker_processes should be *at* *least* the number of CPU cores on
|
20
|
+
a dedicated server (unless you do not have enough memory).
|
21
|
+
If your application has occasionally slow responses that are /not/
|
22
|
+
CPU-intensive, you may increase this to workaround those inefficiencies.
|
23
|
+
|
24
|
+
* Under Ruby 2.2 or later, Etc.nprocessors may be used to determine
|
25
|
+
the number of CPU cores present.
|
26
|
+
|
27
|
+
* worker_processes may be increased for Unicorn::OobGC users to provide
|
28
|
+
more consistent response times.
|
29
|
+
|
30
|
+
* Never, ever, increase worker_processes to the point where the system
|
31
|
+
runs out of physical memory and hits swap. Production servers should
|
32
|
+
never see heavy swap activity.
|
33
|
+
|
34
|
+
=== Unicorn::Configurator#listen Options
|
35
|
+
|
36
|
+
* Setting a very low value for the :backlog parameter in "listen"
|
37
|
+
directives can allow failover to happen more quickly if your
|
38
|
+
cluster is configured for it.
|
39
|
+
|
40
|
+
* If you're doing extremely simple benchmarks and getting connection
|
41
|
+
errors under high request rates, increasing your :backlog parameter
|
42
|
+
above the already-generous default of 1024 can help avoid connection
|
43
|
+
errors. Keep in mind this is not recommended for real traffic if
|
44
|
+
you have another machine to failover to (see above).
|
45
|
+
|
46
|
+
* :rcvbuf and :sndbuf parameters generally do not need to be set for TCP
|
47
|
+
listeners under Linux 2.6 because auto-tuning is enabled. UNIX domain
|
48
|
+
sockets do not have auto-tuning buffer sizes; so increasing those will
|
49
|
+
allow syscalls and task switches to be saved for larger requests
|
50
|
+
and responses. If your app only generates small responses or expects
|
51
|
+
small requests, you may shrink the buffer sizes to save memory, too.
|
52
|
+
|
53
|
+
* Having socket buffers too large can also be detrimental or have
|
54
|
+
little effect. Huge buffers can put more pressure on the allocator
|
55
|
+
and may also thrash CPU caches, cancelling out performance gains
|
56
|
+
one would normally expect.
|
57
|
+
|
58
|
+
* UNIX domain sockets are slightly faster than TCP sockets, but only
|
59
|
+
work if nginx is on the same machine.
|
60
|
+
|
61
|
+
== Other unicorn settings
|
62
|
+
|
63
|
+
* Setting "preload_app true" can allow copy-on-write-friendly GC to
|
64
|
+
be used to save memory. It will probably not work out of the box with
|
65
|
+
applications that open sockets or perform random I/O on files.
|
66
|
+
Databases like TokyoCabinet use concurrency-safe pread()/pwrite()
|
67
|
+
functions for safe sharing of database file descriptors across
|
68
|
+
processes.
|
69
|
+
|
70
|
+
* On POSIX-compliant filesystems, it is safe for multiple threads or
|
71
|
+
processes to append to one log file as long as all the processes are
|
72
|
+
have them unbuffered (File#sync = true) or they are
|
73
|
+
record(line)-buffered in userspace before any writes.
|
74
|
+
|
75
|
+
== Kernel Parameters (Linux sysctl and sysfs)
|
76
|
+
|
77
|
+
WARNING: Do not change system parameters unless you know what you're doing!
|
78
|
+
|
79
|
+
* Transparent hugepages (THP) improves performance in many cases,
|
80
|
+
but can also increase memory use when relying on a
|
81
|
+
copy-on-write(CoW)-friendly GC (Ruby 2.0+) with "preload_app true".
|
82
|
+
CoW operates at the page level, so writing to a huge page would
|
83
|
+
trigger a 2 MB copy (x86-64), as opposed to a 4 KB copy on a
|
84
|
+
regular (non-huge) page.
|
85
|
+
|
86
|
+
Consider only allowing THP to be used when it is requested via the
|
87
|
+
madvise(2) syscall:
|
88
|
+
|
89
|
+
echo madvise >/sys/kernel/mm/transparent_hugepage/enabled
|
90
|
+
|
91
|
+
Or disabling it system-wide, via "never".
|
92
|
+
|
93
|
+
n.b. "page" in this context only applies to the OS kernel,
|
94
|
+
Ruby GC implementations also use this term for the same concept
|
95
|
+
in a way that is agnostic to the OS.
|
96
|
+
|
97
|
+
* net.core.rmem_max and net.core.wmem_max can increase the allowed
|
98
|
+
size of :rcvbuf and :sndbuf respectively. This is mostly only useful
|
99
|
+
for UNIX domain sockets which do not have auto-tuning buffer sizes.
|
100
|
+
|
101
|
+
* For load testing/benchmarking with UNIX domain sockets, you should
|
102
|
+
consider increasing net.core.somaxconn or else nginx will start
|
103
|
+
failing to connect under heavy load. You may also consider setting
|
104
|
+
a higher :backlog to listen on as noted earlier.
|
105
|
+
|
106
|
+
* If you're running out of local ports, consider lowering
|
107
|
+
net.ipv4.tcp_fin_timeout to 20-30 (default: 60 seconds). Also
|
108
|
+
consider widening the usable port range by changing
|
109
|
+
net.ipv4.ip_local_port_range.
|
110
|
+
|
111
|
+
* Setting net.ipv4.tcp_timestamps=1 will also allow setting
|
112
|
+
net.ipv4.tcp_tw_reuse=1 and net.ipv4.tcp_tw_recycle=1, which along
|
113
|
+
with the above settings can slow down port exhaustion. Not all
|
114
|
+
networks are compatible with these settings, check with your friendly
|
115
|
+
network administrator before changing these.
|
116
|
+
|
117
|
+
* Increasing the MTU size can reduce framing overhead for larger
|
118
|
+
transfers. One often-overlooked detail is that the loopback
|
119
|
+
device (usually "lo") can have its MTU increased, too.
|
data/archive/.gitignore
ADDED
data/bin/unicorn
ADDED
@@ -0,0 +1,128 @@
|
|
1
|
+
#!/this/will/be/overwritten/or/wrapped/anyways/do/not/worry/ruby
|
2
|
+
# -*- encoding: binary -*-
|
3
|
+
require 'unicorn/launcher'
|
4
|
+
require 'optparse'
|
5
|
+
|
6
|
+
ENV["RACK_ENV"] ||= "development"
|
7
|
+
rackup_opts = Unicorn::Configurator::RACKUP
|
8
|
+
options = rackup_opts[:options]
|
9
|
+
set_no_default_middleware = true
|
10
|
+
|
11
|
+
op = OptionParser.new("", 24, ' ') do |opts|
|
12
|
+
cmd = File.basename($0)
|
13
|
+
opts.banner = "Usage: #{cmd} " \
|
14
|
+
"[ruby options] [#{cmd} options] [rackup config file]"
|
15
|
+
opts.separator "Ruby options:"
|
16
|
+
|
17
|
+
lineno = 1
|
18
|
+
opts.on("-e", "--eval LINE", "evaluate a LINE of code") do |line|
|
19
|
+
eval line, TOPLEVEL_BINDING, "-e", lineno
|
20
|
+
lineno += 1
|
21
|
+
end
|
22
|
+
|
23
|
+
opts.on("-d", "--debug", "set debugging flags (set $DEBUG to true)") do
|
24
|
+
$DEBUG = true
|
25
|
+
end
|
26
|
+
|
27
|
+
opts.on("-w", "--warn", "turn warnings on for your script") do
|
28
|
+
$-w = true
|
29
|
+
end
|
30
|
+
|
31
|
+
opts.on("-I", "--include PATH",
|
32
|
+
"specify $LOAD_PATH (may be used more than once)") do |path|
|
33
|
+
$LOAD_PATH.unshift(*path.split(':'))
|
34
|
+
end
|
35
|
+
|
36
|
+
opts.on("-r", "--require LIBRARY",
|
37
|
+
"require the library, before executing your script") do |library|
|
38
|
+
require library
|
39
|
+
end
|
40
|
+
|
41
|
+
opts.separator "#{cmd} options:"
|
42
|
+
|
43
|
+
# some of these switches exist for rackup command-line compatibility,
|
44
|
+
|
45
|
+
opts.on("-o", "--host HOST",
|
46
|
+
"listen on HOST (default: #{Unicorn::Const::DEFAULT_HOST})") do |h|
|
47
|
+
rackup_opts[:host] = h
|
48
|
+
rackup_opts[:set_listener] = true
|
49
|
+
end
|
50
|
+
|
51
|
+
opts.on("-p", "--port PORT", Integer,
|
52
|
+
"use PORT (default: #{Unicorn::Const::DEFAULT_PORT})") do |port|
|
53
|
+
rackup_opts[:port] = port
|
54
|
+
rackup_opts[:set_listener] = true
|
55
|
+
end
|
56
|
+
|
57
|
+
opts.on("-E", "--env RACK_ENV",
|
58
|
+
"use RACK_ENV for defaults (default: development)") do |e|
|
59
|
+
ENV["RACK_ENV"] = e
|
60
|
+
end
|
61
|
+
|
62
|
+
opts.on("-N", "--no-default-middleware",
|
63
|
+
"do not load middleware implied by RACK_ENV") do |e|
|
64
|
+
rackup_opts[:no_default_middleware] = true if set_no_default_middleware
|
65
|
+
end
|
66
|
+
|
67
|
+
opts.on("-D", "--daemonize", "run daemonized in the background") do |d|
|
68
|
+
rackup_opts[:daemonize] = !!d
|
69
|
+
end
|
70
|
+
|
71
|
+
opts.on("-P", "--pid FILE", "DEPRECATED") do |f|
|
72
|
+
warn %q{Use of --pid/-P is strongly discouraged}
|
73
|
+
warn %q{Use the 'pid' directive in the Unicorn config file instead}
|
74
|
+
options[:pid] = f
|
75
|
+
end
|
76
|
+
|
77
|
+
opts.on("-s", "--server SERVER",
|
78
|
+
"this flag only exists for compatibility") do |s|
|
79
|
+
warn "-s/--server only exists for compatibility with rackup"
|
80
|
+
end
|
81
|
+
|
82
|
+
# Unicorn-specific stuff
|
83
|
+
opts.on("-l", "--listen {HOST:PORT|PATH}",
|
84
|
+
"listen on HOST:PORT or PATH",
|
85
|
+
"this may be specified multiple times",
|
86
|
+
"(default: #{Unicorn::Const::DEFAULT_LISTEN})") do |address|
|
87
|
+
options[:listeners] << address
|
88
|
+
end
|
89
|
+
|
90
|
+
opts.on("-c", "--config-file FILE", "Unicorn-specific config file") do |f|
|
91
|
+
options[:config_file] = f
|
92
|
+
end
|
93
|
+
|
94
|
+
# I'm avoiding Unicorn-specific config options on the command-line.
|
95
|
+
# IMNSHO, config options on the command-line are redundant given
|
96
|
+
# config files and make things unnecessarily complicated with multiple
|
97
|
+
# places to look for a config option.
|
98
|
+
|
99
|
+
opts.separator "Common options:"
|
100
|
+
|
101
|
+
opts.on_tail("-h", "--help", "Show this message") do
|
102
|
+
puts opts.to_s.gsub(/^.*DEPRECATED.*$/s, '')
|
103
|
+
exit
|
104
|
+
end
|
105
|
+
|
106
|
+
opts.on_tail("-v", "--version", "Show version") do
|
107
|
+
puts "#{cmd} v#{Unicorn::Const::UNICORN_VERSION}"
|
108
|
+
exit
|
109
|
+
end
|
110
|
+
|
111
|
+
opts.parse! ARGV
|
112
|
+
end
|
113
|
+
|
114
|
+
set_no_default_middleware = false
|
115
|
+
app = Unicorn.builder(ARGV[0] || 'config.ru', op)
|
116
|
+
op = nil
|
117
|
+
|
118
|
+
if $DEBUG
|
119
|
+
require 'pp'
|
120
|
+
pp({
|
121
|
+
:unicorn_options => options,
|
122
|
+
:app => app,
|
123
|
+
:daemonize => rackup_opts[:daemonize],
|
124
|
+
})
|
125
|
+
end
|
126
|
+
|
127
|
+
Unicorn::Launcher.daemonize!(options) if rackup_opts[:daemonize]
|
128
|
+
Unicorn::HttpServer.new(app, options).start.join
|
data/bin/unicorn_rails
ADDED
@@ -0,0 +1,209 @@
|
|
1
|
+
#!/this/will/be/overwritten/or/wrapped/anyways/do/not/worry/ruby
|
2
|
+
# -*- encoding: binary -*-
|
3
|
+
require 'unicorn/launcher'
|
4
|
+
require 'optparse'
|
5
|
+
require 'fileutils'
|
6
|
+
|
7
|
+
ENV['RAILS_ENV'] ||= "development"
|
8
|
+
rackup_opts = Unicorn::Configurator::RACKUP
|
9
|
+
options = rackup_opts[:options]
|
10
|
+
|
11
|
+
op = OptionParser.new("", 24, ' ') do |opts|
|
12
|
+
cmd = File.basename($0)
|
13
|
+
opts.banner = "Usage: #{cmd} " \
|
14
|
+
"[ruby options] [#{cmd} options] [rackup config file]"
|
15
|
+
opts.separator "Ruby options:"
|
16
|
+
|
17
|
+
lineno = 1
|
18
|
+
opts.on("-e", "--eval LINE", "evaluate a LINE of code") do |line|
|
19
|
+
eval line, TOPLEVEL_BINDING, "-e", lineno
|
20
|
+
lineno += 1
|
21
|
+
end
|
22
|
+
|
23
|
+
opts.on("-d", "--debug", "set debugging flags (set $DEBUG to true)") do
|
24
|
+
$DEBUG = true
|
25
|
+
end
|
26
|
+
|
27
|
+
opts.on("-w", "--warn", "turn warnings on for your script") do
|
28
|
+
$-w = true
|
29
|
+
end
|
30
|
+
|
31
|
+
opts.on("-I", "--include PATH",
|
32
|
+
"specify $LOAD_PATH (may be used more than once)") do |path|
|
33
|
+
$LOAD_PATH.unshift(*path.split(':'))
|
34
|
+
end
|
35
|
+
|
36
|
+
opts.on("-r", "--require LIBRARY",
|
37
|
+
"require the library, before executing your script") do |library|
|
38
|
+
require library
|
39
|
+
end
|
40
|
+
|
41
|
+
opts.separator "#{cmd} options:"
|
42
|
+
|
43
|
+
# some of these switches exist for rackup command-line compatibility,
|
44
|
+
|
45
|
+
opts.on("-o", "--host HOST",
|
46
|
+
"listen on HOST (default: #{Unicorn::Const::DEFAULT_HOST})") do |h|
|
47
|
+
rackup_opts[:host] = h
|
48
|
+
rackup_opts[:set_listener] = true
|
49
|
+
end
|
50
|
+
|
51
|
+
opts.on("-p", "--port PORT", Integer,
|
52
|
+
"use PORT (default: #{Unicorn::Const::DEFAULT_PORT})") do |port|
|
53
|
+
rackup_opts[:port] = port
|
54
|
+
rackup_opts[:set_listener] = true
|
55
|
+
end
|
56
|
+
|
57
|
+
opts.on("-E", "--env RAILS_ENV",
|
58
|
+
"use RAILS_ENV for defaults (default: development)") do |e|
|
59
|
+
ENV['RAILS_ENV'] = e
|
60
|
+
end
|
61
|
+
|
62
|
+
opts.on("-D", "--daemonize", "run daemonized in the background") do |d|
|
63
|
+
rackup_opts[:daemonize] = !!d
|
64
|
+
end
|
65
|
+
|
66
|
+
# Unicorn-specific stuff
|
67
|
+
opts.on("-l", "--listen {HOST:PORT|PATH}",
|
68
|
+
"listen on HOST:PORT or PATH",
|
69
|
+
"this may be specified multiple times",
|
70
|
+
"(default: #{Unicorn::Const::DEFAULT_LISTEN})") do |address|
|
71
|
+
options[:listeners] << address
|
72
|
+
end
|
73
|
+
|
74
|
+
opts.on("-c", "--config-file FILE", "Unicorn-specific config file") do |f|
|
75
|
+
options[:config_file] = f
|
76
|
+
end
|
77
|
+
|
78
|
+
opts.on("-P PATH", "DEPRECATED") do |v|
|
79
|
+
warn %q{Use of -P is ambiguous and discouraged}
|
80
|
+
warn %q{Use --path or RAILS_RELATIVE_URL_ROOT instead}
|
81
|
+
ENV['RAILS_RELATIVE_URL_ROOT'] = v
|
82
|
+
end
|
83
|
+
|
84
|
+
opts.on("--path PATH", "Runs Rails app mounted at a specific path.",
|
85
|
+
"(default: /)") do |v|
|
86
|
+
ENV['RAILS_RELATIVE_URL_ROOT'] = v
|
87
|
+
end
|
88
|
+
|
89
|
+
# I'm avoiding Unicorn-specific config options on the command-line.
|
90
|
+
# IMNSHO, config options on the command-line are redundant given
|
91
|
+
# config files and make things unnecessarily complicated with multiple
|
92
|
+
# places to look for a config option.
|
93
|
+
|
94
|
+
opts.separator "Common options:"
|
95
|
+
|
96
|
+
opts.on_tail("-h", "--help", "Show this message") do
|
97
|
+
puts opts.to_s.gsub(/^.*DEPRECATED.*$/s, '')
|
98
|
+
exit
|
99
|
+
end
|
100
|
+
|
101
|
+
opts.on_tail("-v", "--version", "Show version") do
|
102
|
+
puts "#{cmd} v#{Unicorn::Const::UNICORN_VERSION}"
|
103
|
+
exit
|
104
|
+
end
|
105
|
+
|
106
|
+
opts.parse! ARGV
|
107
|
+
end
|
108
|
+
|
109
|
+
def rails_dispatcher
|
110
|
+
if ::Rails::VERSION::MAJOR >= 3 && ::File.exist?('config/application.rb')
|
111
|
+
if ::File.read('config/application.rb') =~ /^module\s+([\w:]+)\s*$/
|
112
|
+
app_module = Object.const_get($1)
|
113
|
+
begin
|
114
|
+
result = app_module::Application
|
115
|
+
rescue NameError
|
116
|
+
end
|
117
|
+
end
|
118
|
+
end
|
119
|
+
|
120
|
+
if result.nil? && defined?(ActionController::Dispatcher)
|
121
|
+
result = ActionController::Dispatcher.new
|
122
|
+
end
|
123
|
+
|
124
|
+
result || abort("Unable to locate the application dispatcher class")
|
125
|
+
end
|
126
|
+
|
127
|
+
def rails_builder(ru, op, daemonize)
|
128
|
+
return Unicorn.builder(ru, op) if ru
|
129
|
+
|
130
|
+
# allow Configurator to parse cli switches embedded in the ru file
|
131
|
+
Unicorn::Configurator::RACKUP.update(:file => :rails, :optparse => op)
|
132
|
+
|
133
|
+
# this lambda won't run until after forking if preload_app is false
|
134
|
+
# this runs after config file reloading
|
135
|
+
lambda do |x, server|
|
136
|
+
# Rails 3 includes a config.ru, use it if we find it after
|
137
|
+
# working_directory is bound.
|
138
|
+
::File.exist?('config.ru') and
|
139
|
+
return Unicorn.builder('config.ru', op).call(x, server)
|
140
|
+
|
141
|
+
# Load Rails and (possibly) the private version of Rack it bundles.
|
142
|
+
begin
|
143
|
+
require ::File.expand_path('config/boot')
|
144
|
+
require ::File.expand_path('config/environment')
|
145
|
+
rescue LoadError => err
|
146
|
+
abort "#$0 must be run inside RAILS_ROOT: #{err.inspect}"
|
147
|
+
end
|
148
|
+
|
149
|
+
defined?(::Rails::VERSION::STRING) or
|
150
|
+
abort "Rails::VERSION::STRING not defined by config/{boot,environment}"
|
151
|
+
# it seems Rails >=2.2 support Rack, but only >=2.3 requires it
|
152
|
+
old_rails = case ::Rails::VERSION::MAJOR
|
153
|
+
when 0, 1 then true
|
154
|
+
when 2 then Rails::VERSION::MINOR < 3 ? true : false
|
155
|
+
else
|
156
|
+
false
|
157
|
+
end
|
158
|
+
|
159
|
+
Rack::Builder.new do
|
160
|
+
map_path = ENV['RAILS_RELATIVE_URL_ROOT'] || '/'
|
161
|
+
if old_rails
|
162
|
+
if map_path != '/'
|
163
|
+
# patches + tests welcome, but I really cbf to deal with this
|
164
|
+
# since all apps I've ever dealt with just use "/" ...
|
165
|
+
warn "relative URL roots may not work for older Rails"
|
166
|
+
end
|
167
|
+
warn "LogTailer not available for Rails < 2.3" unless daemonize
|
168
|
+
warn "Debugger not available" if $DEBUG
|
169
|
+
require 'unicorn/app/old_rails'
|
170
|
+
map(map_path) do
|
171
|
+
use Unicorn::App::OldRails::Static
|
172
|
+
run Unicorn::App::OldRails.new
|
173
|
+
end
|
174
|
+
else
|
175
|
+
use Rails::Rack::LogTailer unless daemonize
|
176
|
+
use Rails::Rack::Debugger if $DEBUG
|
177
|
+
map(map_path) do
|
178
|
+
unless defined?(ActionDispatch::Static)
|
179
|
+
use Rails::Rack::Static
|
180
|
+
end
|
181
|
+
run rails_dispatcher
|
182
|
+
end
|
183
|
+
end
|
184
|
+
end.to_app
|
185
|
+
end
|
186
|
+
end
|
187
|
+
|
188
|
+
app = rails_builder(ARGV[0], op, rackup_opts[:daemonize])
|
189
|
+
op = nil
|
190
|
+
|
191
|
+
if $DEBUG
|
192
|
+
require 'pp'
|
193
|
+
pp({
|
194
|
+
:unicorn_options => options,
|
195
|
+
:app => app,
|
196
|
+
:daemonize => rackup_opts[:daemonize],
|
197
|
+
})
|
198
|
+
end
|
199
|
+
|
200
|
+
# ensure Rails standard tmp paths exist
|
201
|
+
options[:after_reload] = lambda do
|
202
|
+
FileUtils.mkdir_p(%w(cache pids sessions sockets).map! { |d| "tmp/#{d}" })
|
203
|
+
end
|
204
|
+
|
205
|
+
if rackup_opts[:daemonize]
|
206
|
+
options[:pid] = "tmp/pids/unicorn.pid"
|
207
|
+
Unicorn::Launcher.daemonize!(options)
|
208
|
+
end
|
209
|
+
Unicorn::HttpServer.new(app, options).start.join
|
data/examples/echo.ru
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
#\-E none
|
2
|
+
#
|
3
|
+
# Example application that echoes read data back to the HTTP client.
|
4
|
+
# This emulates the old echo protocol people used to run.
|
5
|
+
#
|
6
|
+
# An example of using this in a client would be to run:
|
7
|
+
# curl --no-buffer -T- http://host:port/
|
8
|
+
#
|
9
|
+
# Then type random stuff in your terminal to watch it get echoed back!
|
10
|
+
|
11
|
+
class EchoBody < Struct.new(:input)
|
12
|
+
|
13
|
+
def each(&block)
|
14
|
+
while buf = input.read(4096)
|
15
|
+
yield buf
|
16
|
+
end
|
17
|
+
self
|
18
|
+
end
|
19
|
+
|
20
|
+
end
|
21
|
+
|
22
|
+
run lambda { |env|
|
23
|
+
/\A100-continue\z/i =~ env['HTTP_EXPECT'] and return [100, {}, []]
|
24
|
+
[ 200, { 'Content-Type' => 'application/octet-stream' },
|
25
|
+
EchoBody.new(env['rack.input']) ]
|
26
|
+
}
|
data/examples/init.sh
ADDED
@@ -0,0 +1,102 @@
|
|
1
|
+
#!/bin/sh
|
2
|
+
set -e
|
3
|
+
### BEGIN INIT INFO
|
4
|
+
# Provides: unicorn
|
5
|
+
# Required-Start: $local_fs $network
|
6
|
+
# Required-Stop: $local_fs $network
|
7
|
+
# Default-Start: 2 3 4 5
|
8
|
+
# Default-Stop: 0 1 6
|
9
|
+
# Short-Description: Start/stop unicorn Rack app server
|
10
|
+
### END INIT INFO
|
11
|
+
|
12
|
+
# Example init script, this can be used with nginx, too,
|
13
|
+
# since nginx and unicorn accept the same signals.
|
14
|
+
|
15
|
+
# Feel free to change any of the following variables for your app:
|
16
|
+
TIMEOUT=${TIMEOUT-60}
|
17
|
+
APP_ROOT=/home/x/my_app/current
|
18
|
+
PID=$APP_ROOT/tmp/pids/unicorn.pid
|
19
|
+
CMD="/usr/bin/unicorn -D -c $APP_ROOT/config/unicorn.rb"
|
20
|
+
INIT_CONF=$APP_ROOT/config/init.conf
|
21
|
+
UPGRADE_DELAY=${UPGRADE_DELAY-2}
|
22
|
+
action="$1"
|
23
|
+
set -u
|
24
|
+
|
25
|
+
test -f "$INIT_CONF" && . $INIT_CONF
|
26
|
+
|
27
|
+
OLD="$PID.oldbin"
|
28
|
+
|
29
|
+
cd $APP_ROOT || exit 1
|
30
|
+
|
31
|
+
sig () {
|
32
|
+
test -s "$PID" && kill -$1 $(cat $PID)
|
33
|
+
}
|
34
|
+
|
35
|
+
oldsig () {
|
36
|
+
test -s "$OLD" && kill -$1 $(cat $OLD)
|
37
|
+
}
|
38
|
+
|
39
|
+
case $action in
|
40
|
+
start)
|
41
|
+
sig 0 && echo >&2 "Already running" && exit 0
|
42
|
+
$CMD
|
43
|
+
;;
|
44
|
+
stop)
|
45
|
+
sig QUIT && exit 0
|
46
|
+
echo >&2 "Not running"
|
47
|
+
;;
|
48
|
+
force-stop)
|
49
|
+
sig TERM && exit 0
|
50
|
+
echo >&2 "Not running"
|
51
|
+
;;
|
52
|
+
restart|reload)
|
53
|
+
sig HUP && echo reloaded OK && exit 0
|
54
|
+
echo >&2 "Couldn't reload, starting '$CMD' instead"
|
55
|
+
$CMD
|
56
|
+
;;
|
57
|
+
upgrade)
|
58
|
+
if oldsig 0
|
59
|
+
then
|
60
|
+
echo >&2 "Old upgraded process still running with $OLD"
|
61
|
+
exit 1
|
62
|
+
fi
|
63
|
+
|
64
|
+
cur_pid=
|
65
|
+
if test -s "$PID"
|
66
|
+
then
|
67
|
+
cur_pid=$(cat $PID)
|
68
|
+
fi
|
69
|
+
|
70
|
+
if test -n "$cur_pid" &&
|
71
|
+
kill -USR2 "$cur_pid" &&
|
72
|
+
sleep $UPGRADE_DELAY &&
|
73
|
+
new_pid=$(cat $PID) &&
|
74
|
+
test x"$new_pid" != x"$cur_pid" &&
|
75
|
+
kill -0 "$new_pid" &&
|
76
|
+
kill -QUIT "$cur_pid"
|
77
|
+
then
|
78
|
+
n=$TIMEOUT
|
79
|
+
while kill -0 "$cur_pid" 2>/dev/null && test $n -ge 0
|
80
|
+
do
|
81
|
+
printf '.' && sleep 1 && n=$(( $n - 1 ))
|
82
|
+
done
|
83
|
+
echo
|
84
|
+
|
85
|
+
if test $n -lt 0 && kill -0 "$cur_pid" 2>/dev/null
|
86
|
+
then
|
87
|
+
echo >&2 "$cur_pid still running after $TIMEOUT seconds"
|
88
|
+
exit 1
|
89
|
+
fi
|
90
|
+
exit 0
|
91
|
+
fi
|
92
|
+
echo >&2 "Couldn't upgrade, starting '$CMD' instead"
|
93
|
+
$CMD
|
94
|
+
;;
|
95
|
+
reopen-logs)
|
96
|
+
sig USR1
|
97
|
+
;;
|
98
|
+
*)
|
99
|
+
echo >&2 "Usage: $0 <start|stop|restart|upgrade|force-stop|reopen-logs>"
|
100
|
+
exit 1
|
101
|
+
;;
|
102
|
+
esac
|
@@ -0,0 +1,25 @@
|
|
1
|
+
# Multi-Processing-safe monkey patch for Logger
|
2
|
+
#
|
3
|
+
# This monkey patch fixes the case where "preload_app true" is used and
|
4
|
+
# the application spawns a background thread upon being loaded.
|
5
|
+
#
|
6
|
+
# This removes all lock from the Logger code and solely relies on the
|
7
|
+
# underlying filesystem to handle write(2) system calls atomically when
|
8
|
+
# O_APPEND is used. This is safe in the presence of both multiple
|
9
|
+
# threads (native or green) and multiple processes when writing to
|
10
|
+
# a filesystem with POSIX O_APPEND semantics.
|
11
|
+
#
|
12
|
+
# It should be noted that the original locking on Logger could _never_ be
|
13
|
+
# considered reliable on non-POSIX filesystems with multiple processes,
|
14
|
+
# either, so nothing is lost in that case.
|
15
|
+
|
16
|
+
require 'logger'
|
17
|
+
class Logger::LogDevice
|
18
|
+
def write(message)
|
19
|
+
@dev.syswrite(message)
|
20
|
+
end
|
21
|
+
|
22
|
+
def close
|
23
|
+
@dev.close
|
24
|
+
end
|
25
|
+
end
|
@@ -0,0 +1,44 @@
|
|
1
|
+
# example logrotate config file, I usually keep this in
|
2
|
+
# /etc/logrotate.d/unicorn_app on my Debian systems
|
3
|
+
#
|
4
|
+
# See the logrotate(8) manpage for more information:
|
5
|
+
# https://linux.die.net/man/8/logrotate
|
6
|
+
#
|
7
|
+
# public logrotate-related discussion in our archives:
|
8
|
+
# https://yhbt.net/unicorn-public/?q=logrotate
|
9
|
+
|
10
|
+
# Modify the following glob to match the logfiles your app writes to:
|
11
|
+
/var/log/unicorn_app/*.log {
|
12
|
+
# this first block is mostly just personal preference, though
|
13
|
+
# I wish logrotate offered an "hourly" option...
|
14
|
+
daily
|
15
|
+
missingok
|
16
|
+
rotate 180
|
17
|
+
compress # must use with delaycompress below
|
18
|
+
dateext
|
19
|
+
|
20
|
+
# this is important if using "compress" since we need to call
|
21
|
+
# the "lastaction" script below before compressing:
|
22
|
+
delaycompress
|
23
|
+
|
24
|
+
# note the lack of the evil "copytruncate" option in this
|
25
|
+
# config. Unicorn supports the USR1 signal and we send it
|
26
|
+
# as our "lastaction" action:
|
27
|
+
lastaction
|
28
|
+
# For systemd users, assuming you use two services
|
29
|
+
# (as recommended) to allow zero-downtime upgrades.
|
30
|
+
# Only one service needs to be started, but signaling
|
31
|
+
# both here is harmless as long as they're both enabled
|
32
|
+
systemctl kill -s SIGUSR1 unicorn@1.service
|
33
|
+
systemctl kill -s SIGUSR1 unicorn@2.service
|
34
|
+
|
35
|
+
# Examples for other process management systems appreciated
|
36
|
+
# Mail us at unicorn-public@yhbt.net
|
37
|
+
# (see above for archives)
|
38
|
+
|
39
|
+
# If you use a pid file and assuming your pid file
|
40
|
+
# is in /var/run/unicorn_app/pid
|
41
|
+
pid=/var/run/unicorn_app/pid
|
42
|
+
test -s $pid && kill -USR1 "$(cat $pid)"
|
43
|
+
endscript
|
44
|
+
}
|