puma 3.9.1-java → 3.10.0-java

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of puma might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1e603f54b7171ab3b2873fc06cd1f1f04c87b67b2b6ca4ba0f933c38b48c210a
4
- data.tar.gz: 3a725c1112b1574379db9d4c379d468a7cd4668819a1c3dfba4a9e90df57ec46
3
+ metadata.gz: 4e149321e787ba772f3e1a169ebced17b834de2a8b70faa21c64971d1f691d17
4
+ data.tar.gz: 2d975f40c16e58d113360f43a53356d9220d47313d8f43f6468a7e9b187be513
5
5
  SHA512:
6
- metadata.gz: 743a2b220718b52106cfcc985702b4bec6efc7568eceb5f22de86cfe1e40ee06b0cda520efb86d0d5e6c628e4714e40ec3060bcb3ca0a4769ab27a475d8a812f
7
- data.tar.gz: b47229581ea5e799a2c2aeea1cccc60187a65bcc558cf760c55d66f9b264247b151819f08704f63dc0f89e4e12def986b1ed524942017c56fff75701ad0c8549
6
+ metadata.gz: 314bcbca8e84032142dcc6736415973e3d4cbecc83b10bcf67839e5184129ded9f5fbc2fc184a278eaa6354b527082f6f936e562d97e11cbebd4eb1e18847184
7
+ data.tar.gz: 6ae6a3aa9fa306557c59649c43b9c9e97e19857fd925ebb55d1b3603485e15e69ba0102657b100db75205760b88975885f8a75d5fbbff8fa262e468c28e7d1a3
data/History.md CHANGED
@@ -1,3 +1,32 @@
1
+ ## 3.10.0 / 2017-08-17
2
+
3
+ * 3 features:
4
+ * The status server has a new /gc and /gc-status command. (#1384)
5
+ * The persistent and first data timeouts are now configurable (#1111)
6
+ * Implemented RFC 2324 (#1392)
7
+
8
+ * 12 bugfixes:
9
+ * Not really a Puma bug, but @NickolasVashchenko created a gem to workaround a Ruby bug that some users of Puma may be experiencing. See README for more. (#1347)
10
+ * Fix hangups with SSL and persistent connections. (#1334)
11
+ * Fix Rails double-binding to a port (#1383)
12
+ * Fix incorrect thread names (#1368)
13
+ * Fix issues with /etc/hosts and JRuby where localhost addresses were not correct. (#1318)
14
+ * Fix compatibility with RUBYOPT="--enable-frozen-string-literal" (#1376)
15
+ * Fixed some compiler warnings (#1388)
16
+ * We actually run the integration tests in CI now (#1390)
17
+ * No longer shipping unnecessary directories in the gemfile (#1391)
18
+ * If RUBYOPT is nil, we no longer blow up on restart. (#1385)
19
+ * Correct response to SIGINT (#1377)
20
+ * Proper exit code returned when we receive a TERM signal (#1337)
21
+
22
+ * 3 refactors:
23
+ * Various test improvements from @grosser
24
+ * Rubocop (#1325)
25
+ * Hoe has been removed (#1395)
26
+
27
+ * 1 known issue:
28
+ * Socket activation doesn't work in JRuby. Their fault, not ours. (#1367)
29
+
1
30
  ## 3.9.1 / 2017-06-03
2
31
 
3
32
  * 2 bugfixes:
data/README.md CHANGED
@@ -1,344 +1,239 @@
1
+ <p align="center">
2
+ <img src="http://puma.io/images/logos/puma-logo-large.png">
3
+ </p>
4
+
1
5
  # Puma: A Ruby Web Server Built For Concurrency
2
6
 
3
7
  [![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/puma/puma?utm\_source=badge&utm\_medium=badge&utm\_campaign=pr-badge)
4
8
  [![Build Status](https://secure.travis-ci.org/puma/puma.svg)](http://travis-ci.org/puma/puma)
9
+ [![AppVeyor](https://img.shields.io/appveyor/ci/nateberkopec/puma.svg)](https://ci.appveyor.com/project/nateberkopec/puma)
5
10
  [![Dependency Status](https://gemnasium.com/puma/puma.svg)](https://gemnasium.com/puma/puma)
6
11
  [![Code Climate](https://codeclimate.com/github/puma/puma.svg)](https://codeclimate.com/github/puma/puma)
7
12
 
8
- ## Description
9
-
10
- Puma is a simple, fast, threaded, and highly concurrent HTTP 1.1 server for Ruby/Rack applications. Puma is intended for use in both development and production environments. In order to get the best throughput, it is highly recommended that you use a Ruby implementation with real threads like Rubinius or JRuby.
13
+ Puma is a **simple, fast, threaded, and highly concurrent HTTP 1.1 server for Ruby/Rack applications** in development and production.
11
14
 
12
15
  ## Built For Speed &amp; Concurrency
13
16
 
14
- Puma is a simple, fast, and highly concurrent HTTP 1.1 server for Ruby web applications. It can be used with any application that supports Rack, and is considered the replacement for Webrick and Mongrel. It was designed to be the go-to server for [Rubinius](http://rubini.us), but also works well with JRuby and MRI. Puma is intended for use in both development and production environments.
17
+ Under the hood, Puma processes requests using a C-optimized Ragel extension (inherited from Mongrel) that provides fast, accurate HTTP 1.1 protocol parsing in a portable way. Puma then serves the request in a thread from an internal thread pool. Since each request is served in a separate thread, truly concurrent Ruby implementations (JRuby, Rubinius) will use all available CPU cores.
15
18
 
16
- Under the hood, Puma processes requests using a C-optimized Ragel extension (inherited from Mongrel) that provides fast, accurate HTTP 1.1 protocol parsing in a portable way. Puma then serves the request in a thread from an internal thread pool (which you can control). This allows Puma to provide real concurrency for your web application!
19
+ Puma was designed to be the go-to server for [Rubinius](http://rubini.us), but also works well with JRuby and MRI.
17
20
 
18
- With Rubinius 2.0, Puma will utilize all cores on your CPU with real threads, meaning you won't have to spawn multiple processes to increase throughput. You can expect to see a similar benefit from JRuby.
19
-
20
- On MRI, there is a Global Interpreter Lock (GIL) that ensures only one thread can be run at a time. But if you're doing a lot of blocking IO (such as HTTP calls to external APIs like Twitter), Puma still improves MRI's throughput by allowing blocking IO to be run concurrently (EventMachine-based servers such as Thin turn off this ability, requiring you to use special libraries). Your mileage may vary. In order to get the best throughput, it is highly recommended that you use a Ruby implementation with real threads like [Rubinius](http://rubini.us) or [JRuby](http://jruby.org).
21
+ On MRI, there is a Global VM Lock (GVL) that ensures only one thread can run Ruby code at a time. But if you're doing a lot of blocking IO (such as HTTP calls to external APIs like Twitter), Puma still improves MRI's throughput by allowing blocking IO to be run concurrently.
21
22
 
22
23
  ## Quick Start
23
24
 
24
- The easiest way to get started with Puma is to install it via RubyGems. You can do this easily:
25
-
26
- $ gem install puma
27
-
28
- Now you should have the `puma` command available in your PATH, so just do the following in the root folder of your Rack application:
29
-
30
- $ puma app.ru
31
-
32
- ## Plugins
33
-
34
- Puma 3.0 added support for plugins that can augment configuration and service operations.
35
-
36
- 2 canonical plugins to look to aid in development of further plugins:
37
-
38
- * [tmp\_restart](https://github.com/puma/puma/blob/master/lib/puma/plugin/tmp_restart.rb): Restarts the server if the file `tmp/restart.txt` is touched
39
- * [heroku](https://github.com/puma/puma-heroku/blob/master/lib/puma/plugin/heroku.rb): Packages up the default configuration used by puma on Heroku
40
-
41
- Plugins are activated in a puma configuration file (such as `config/puma.rb'`) by adding `plugin "name"`, such as `plugin "heroku"`.
42
-
43
- Plugins are activated based simply on path requirements so, activating the `heroku` plugin will simply be doing `require "puma/plugin/heroku"`. This allows gems to provide multiple plugins (as well as unrelated gems to provide puma plugins).
44
-
45
- The `tmp_restart` plugin is bundled with puma, so it can always be used.
46
-
47
- To use the `heroku` plugin, add `puma-heroku` to your Gemfile or install it.
48
-
49
- ### API
25
+ ```
26
+ $ gem install puma
27
+ $ puma <any rackup (*.ru) file>
28
+ ```
50
29
 
51
- At present, there are 2 hooks that plugins can use: `start` and `config`.
30
+ ## Frameworks
52
31
 
53
- `start` runs when the server has started and allows the plugin to start other functionality to augment puma.
32
+ ### Rails
54
33
 
55
- `config` runs when the server is being configured and is passed a `Puma::DSL` object that can be used to add additional configuration.
34
+ Puma is the default server for Rails, and should already be included in your Gemfile.
56
35
 
57
- Any public methods in `Puma::Plugin` are the public API that any plugin may use.
36
+ Then start your server with the `rails` command:
58
37
 
59
- In the future, more hooks and APIs will be added.
38
+ ```
39
+ $ rails s
40
+ ```
60
41
 
42
+ Many configuration options are not available when using `rails s`. It is recommended that you use Puma's executable instead:
61
43
 
62
- ## Advanced Setup
44
+ ```
45
+ $ bundle exec puma
46
+ ```
63
47
 
64
48
  ### Sinatra
65
49
 
66
50
  You can run your Sinatra application with Puma from the command line like this:
67
51
 
68
- $ ruby app.rb -s Puma
52
+ ```
53
+ $ ruby app.rb -s Puma
54
+ ```
69
55
 
70
56
  Or you can configure your application to always use Puma:
71
57
 
72
- require 'sinatra'
73
- configure { set :server, :puma }
74
-
75
- If you use Bundler, make sure you add Puma to your Gemfile (see below).
76
-
77
- ### Rails
78
-
79
- First, make sure Puma is in your Gemfile:
80
-
81
- gem 'puma'
82
-
83
- Then start your server with the `rails` command:
84
-
85
- $ rails s Puma
86
-
87
- ### Rackup
88
-
89
- You can pass it as an option to `rackup`:
90
-
91
- $ rackup -s Puma
92
-
93
- Alternatively, you can modify your `config.ru` to choose Puma by default, by adding the following as the first line:
94
-
95
- #\ -s puma
58
+ ```ruby
59
+ require 'sinatra'
60
+ configure { set :server, :puma }
61
+ ```
96
62
 
97
63
  ## Configuration
98
64
 
99
- Puma provides numerous options for controlling the operation of the server. Consult `puma -h` (or `puma --help`) for a full list.
65
+ Puma provides numerous options. Consult `puma -h` (or `puma --help`) for a full list of CLI options, or see [dsl.rb](https://github.com/puma/puma/blob/master/lib/puma/dsl.rb).
100
66
 
101
67
  ### Thread Pool
102
68
 
103
- Puma utilizes a dynamic thread pool which you can modify. You can set the minimum and maximum number of threads that are available in the pool with the `-t` (or `--threads`) flag:
69
+ Puma uses a thread pool. You can set the minimum and maximum number of threads that are available in the pool with the `-t` (or `--threads`) flag:
104
70
 
105
- $ puma -t 8:32
71
+ ```
72
+ $ puma -t 8:32
73
+ ```
106
74
 
107
- Puma will automatically scale the number of threads, from the minimum until it caps out at the maximum, based on how much traffic is present. The current default is `0:16`. Feel free to experiment, but be careful not to set the number of maximum threads to a very large number, as you may exhaust resources on the system (or hit resource limits).
75
+ Puma will automatically scale the number of threads, from the minimum until it caps out at the maximum, based on how much traffic is present. The current default is `0:16`. Feel free to experiment, but be careful not to set the number of maximum threads to a large number, as you may exhaust resources on the system (or hit resource limits).
108
76
 
109
77
  ### Clustered mode
110
78
 
111
- Puma 2 offers clustered mode, allowing you to use forked processes to handle multiple incoming requests concurrently, in addition to threads already provided. You can tune the number of workers with the `-w` (or `--workers`) flag:
112
-
113
- $ puma -t 8:32 -w 3
79
+ Puma also offers "clustered mode". Clustered mode `fork`s workers from a master process. Each child process still has its own thread pool. You can tune the number of workers with the `-w` (or `--workers`) flag:
114
80
 
115
- On a ruby implementation that offers native threads, you should tune this number to match the number of cores available.
116
- Note that threads are still used in clustered mode, and the `-t` thread flag setting is per worker, so `-w 2 -t 16:16` will be 32 threads.
81
+ ```
82
+ $ puma -t 8:32 -w 3
83
+ ```
117
84
 
118
- If you're running in Clustered Mode you can optionally choose to preload your application before starting up the workers. This is necessary in order to take advantage of the [Copy on Write](http://en.wikipedia.org/wiki/Copy-on-write) feature introduced in [MRI Ruby 2.0](https://blog.heroku.com/archives/2013/3/6/matz_highlights_ruby_2_0_at_waza). To do this simply specify the `--preload` flag in invocation:
85
+ Note that threads are still used in clustered mode, and the `-t` thread flag setting is per worker, so `-w 2 -t 16:16` will spawn 32 threads in total.
119
86
 
120
- # CLI invocation
121
- $ puma -t 8:32 -w 3 --preload
87
+ In clustered mode, Puma may "preload" your application. This loads all the application code *prior* to forking. Preloading reduces total memory usage of your application via an operating system feature called [copy-on-write](https://en.wikipedia.org/wiki/Copy-on-write) (Ruby 2.0+ only). Use the `--preload` flag from the command line:
122
88
 
123
- If you're using a configuration file, use the `preload_app!` method, and be sure to specify your config file's location with the `-C` flag:
89
+ ```
90
+ $ puma -w 3 --preload
91
+ ```
124
92
 
125
- $ puma -C config/puma.rb
93
+ If you're using a configuration file, use the `preload_app!` method:
126
94
 
127
- # config/puma.rb
128
- threads 8,32
129
- workers 3
130
- preload_app!
95
+ ```ruby
96
+ # config/puma.rb
97
+ workers 3
98
+ preload_app!
99
+ ```
131
100
 
132
101
  Additionally, you can specify a block in your configuration file that will be run on boot of each worker:
133
102
 
134
- # config/puma.rb
135
- on_worker_boot do
136
- # configuration here
137
- end
103
+ ```ruby
104
+ # config/puma.rb
105
+ on_worker_boot do
106
+ # configuration here
107
+ end
108
+ ```
138
109
 
139
110
  This code can be used to setup the process before booting the application, allowing
140
111
  you to do some Puma-specific things that you don't want to embed in your application.
141
112
  For instance, you could fire a log notification that a worker booted or send something to statsd.
142
- This can be called multiple times to add hooks.
113
+ This can be called multiple times.
143
114
 
144
115
  If you're preloading your application and using ActiveRecord, it's recommended that you setup your connection pool here:
145
116
 
146
- # config/puma.rb
147
- on_worker_boot do
148
- ActiveSupport.on_load(:active_record) do
149
- ActiveRecord::Base.establish_connection
150
- end
151
- end
152
-
153
- On top of that, you can specify a block in your configuration file that will be run before workers are forked
154
-
155
- # config/puma.rb
156
- before_fork do
157
- # configuration here
158
- end
159
-
160
- This code can be used to clean up before forking to clients, allowing
161
- you to do some Puma-specific things that you don't want to embed in your application.
162
-
163
- If you're preloading your application and using ActiveRecord, it's recommended that you close any connections to the database here to prevent connection leakage:
164
-
165
- # config/puma.rb
166
- before_fork do
167
- ActiveRecord::Base.connection_pool.disconnect!
168
- end
169
-
170
- This rule applies to any connections to external services (Redis, databases, memcache, ...) that might be started automatically by the framework.
171
-
172
- When you use preload_app, all of your new code goes into the master process, and is then copied into the workers (meaning it’s only compatible with cluster mode). General rule is to use preload_app when your workers die often and need fast starts. If you don’t have many workers, you probably should not use preload_app.
173
-
174
- Note that preload_app can’t be used with phased restart, since phased restart kills and restarts workers one-by-one, and preload_app is all about copying the code of master into the workers.
175
-
176
- ### Error handler for low-level errors
117
+ ```ruby
118
+ # config/puma.rb
119
+ on_worker_boot do
120
+ ActiveSupport.on_load(:active_record) do
121
+ ActiveRecord::Base.establish_connection
122
+ end
123
+ end
124
+ ```
177
125
 
178
- If puma encounters an error outside of the context of your application, it will respond with a 500 and a simple
179
- textual error message (see `lowlevel_error` in [this file](https://github.com/puma/puma/blob/master/lib/puma/server.rb)).
180
- You can specify custom behavior for this scenario. For example, you can report the error to your third-party
181
- error-tracking service (in this example, [rollbar](http://rollbar.com)):
126
+ On top of that, you can specify a block in your configuration file that will be run before workers are forked:
182
127
 
183
128
  ```ruby
184
- lowlevel_error_handler do |e|
185
- Rollbar.critical(e)
186
- [500, {}, ["An error has occurred, and engineers have been informed. Please reload the page. If you continue to have problems, contact support@example.com\n"]]
129
+ # config/puma.rb
130
+ before_fork do
131
+ # configuration here
187
132
  end
188
133
  ```
189
134
 
135
+ Preloading can’t be used with phased restart, since phased restart kills and restarts workers one-by-one, and preload_app copies the code of master into the workers.
136
+
190
137
  ### Binding TCP / Sockets
191
138
 
192
139
  In contrast to many other server configs which require multiple flags, Puma simply uses one URI parameter with the `-b` (or `--bind`) flag:
193
140
 
194
- $ puma -b tcp://127.0.0.1:9292
141
+ ```
142
+ $ puma -b tcp://127.0.0.1:9292
143
+ ```
195
144
 
196
- Want to use UNIX Sockets instead of TCP (which can provide a 5-10% performance boost)? No problem!
145
+ Want to use UNIX Sockets instead of TCP (which can provide a 5-10% performance boost)?
197
146
 
198
- $ puma -b unix:///var/run/puma.sock
147
+ ```
148
+ $ puma -b unix:///var/run/puma.sock
149
+ ```
199
150
 
200
151
  If you need to change the permissions of the UNIX socket, just add a umask parameter:
201
152
 
202
- $ puma -b 'unix:///var/run/puma.sock?umask=0111'
153
+ ```
154
+ $ puma -b 'unix:///var/run/puma.sock?umask=0111'
155
+ ```
203
156
 
204
- Need a bit of security? Use SSL sockets!
157
+ Need a bit of security? Use SSL sockets:
205
158
 
206
- $ puma -b 'ssl://127.0.0.1:9292?key=path_to_key&cert=path_to_cert'
159
+ ```
160
+ $ puma -b 'ssl://127.0.0.1:9292?key=path_to_key&cert=path_to_cert'
161
+ ```
207
162
 
208
163
  ### Control/Status Server
209
164
 
210
- Puma comes with a builtin status/control app that can be used to query and control Puma itself. Here is an example of starting Puma with the control server:
165
+ Puma has a built-in status/control app that can be used to query and control Puma itself.
211
166
 
212
- $ puma --control tcp://127.0.0.1:9293 --control-token foo
167
+ ```
168
+ $ puma --control tcp://127.0.0.1:9293 --control-token foo
169
+ ```
213
170
 
214
- This directs Puma to start the control server on localhost port 9293. Additionally, all requests to the control server will need to include `token=foo` as a query parameter. This allows for simple authentication. Check out [status.rb](https://github.com/puma/puma/blob/master/lib/puma/app/status.rb) to see what the app has available.
171
+ Puma will start the control server on localhost port 9293. All requests to the control server will need to include `token=foo` as a query parameter. This allows for simple authentication. Check out [status.rb](https://github.com/puma/puma/blob/master/lib/puma/app/status.rb) to see what the app has available.
215
172
 
216
- Keep in mind that the status/control server accepts `pumactl` commands. To demonstrate, you can run the following command with the foo `--control-token` as such to restart:
173
+ You can also interact with the control server via `pumactl`. This command will restart Puma:
217
174
 
218
- $ pumactl restart --control-token foo
175
+ ```
176
+ $ pumactl restart --control-token foo
177
+ ```
219
178
 
220
- To see a list of `pumactl` options, please see `pumactl --help` as stated in the [`pumactl`](https://github.com/puma/puma#pumactl) section.
179
+ To see a list of `pumactl` options, use `pumactl --help`.
221
180
 
222
- ### Configuration file
181
+ ### Configuration File
223
182
 
224
183
  You can also provide a configuration file which Puma will use with the `-C` (or `--config`) flag:
225
184
 
226
- $ puma -C /path/to/config
185
+ ```
186
+ $ puma -C /path/to/config
187
+ ```
227
188
 
228
- By default, if no configuration file is specified, Puma will look for a configuration file at config/puma.rb. If an environment is specified, either via the `-e` and `--environment` flags, or through the `RACK_ENV` environment variable, the default file location will be config/puma/environment_name.rb.
189
+ If no configuration file is specified, Puma will look for a configuration file at `config/puma.rb`. If an environment is specified, either via the `-e` and `--environment` flags, or through the `RACK_ENV` environment variable, the default file location will be `config/puma/environment_name.rb`.
229
190
 
230
191
  If you want to prevent Puma from looking for a configuration file in those locations, provide a dash as the argument to the `-C` (or `--config`) flag:
231
192
 
232
- $ puma -C "-"
193
+ ```
194
+ $ puma -C "-"
195
+ ```
233
196
 
234
- Take the following [sample configuration](https://github.com/puma/puma/blob/master/examples/config.rb) as inspiration or check out [configuration.rb](https://github.com/puma/puma/blob/master/lib/puma/configuration.rb) to see all available options.
197
+ Take the following [sample configuration](https://github.com/puma/puma/blob/master/examples/config.rb) as inspiration or check out [dsl.rb](https://github.com/puma/puma/blob/master/lib/puma/dsl.rb) to see all available options.
235
198
 
236
199
  ## Restart
237
200
 
238
- Puma includes the ability to restart itself allowing easy upgrades to new versions. When available (MRI, Rubinius, JRuby), Puma performs a "hot restart". This is the same functionality available in *unicorn* and *nginx* which keep the server sockets open between restarts. This makes sure that no pending requests are dropped while the restart is taking place.
239
-
240
- To perform a restart, there are 2 builtin mechanisms:
241
-
242
- * Send the `puma` process the `SIGUSR2` signal
243
- * Use the status server and issue `/restart`
244
-
245
- No code is shared between the current and restarted process, so it should be safe to issue a restart any place where you would manually stop Puma and start it again.
246
-
247
- If the new process is unable to load, it will simply exit. You should therefore run Puma under a process monitor (see below) when using it in production.
248
-
249
- ### Normal vs Hot vs Phased Restart
201
+ Puma includes the ability to restart itself. When available (MRI, Rubinius, JRuby), Puma performs a "hot restart". This is the same functionality available in *Unicorn* and *NGINX* which keep the server sockets open between restarts. This makes sure that no pending requests are dropped while the restart is taking place.
250
202
 
251
- A hot restart means that no requests will be lost while deploying your new code, since the server socket is kept open between restarts.
203
+ For more, see the [restart documentation](https://github.com/puma/puma/blob/master/docs/restart.md).
252
204
 
253
- But beware, hot restart does not mean that the incoming requests won’t hang for multiple seconds while your new code has not fully deployed. If you need a zero downtime and zero hanging requests deploy, you must use phased restart.
205
+ ## Signals
254
206
 
255
- When you run pumactl phased-restart, Puma kills workers one-by-one, meaning that at least another worker is still available to serve requests, which lead to zero hanging requests (yay!).
207
+ Puma responds to several signals. A detailed guide to using UNIX signals with Puma can be found in the [signals documentation](https://github.com/puma/puma/blob/master/docs/signals.md).
256
208
 
257
- But again beware, upgrading an application sometimes involves upgrading the database schema. With phased restart, there may be a moment during the deployment where processes belonging to the previous version and processes belonging to the new version both exist at the same time. Any database schema upgrades you perform must therefore be backwards-compatible with the old application version.
209
+ ## Platform Constraints
258
210
 
259
- If you perform a lot of database migrations, you probably should not use phased restart and use a normal/hot restart instead (pumactl restart). That way, no code is shared while deploying (in that case, preload_app might help for quicker deployment, see below).
211
+ Some platforms do not support all Puma features.
260
212
 
261
- ### Puma Signals
213
+ * **JRuby**, **Windows**: server sockets are not seamless on restart, they must be closed and reopened. These platforms have no way to pass descriptors into a new process that is exposed to Ruby. Also, cluster mode is not supported due to a lack of fork(2).
214
+ * **Windows**: daemon mode is not supported due to a lack of fork(2).
262
215
 
263
- Puma cluster responds to these signals:
216
+ ## Known Bugs
264
217
 
265
- - `TTIN` increment the worker count by 1
266
- - `TTOU` decrement the worker count by 1
267
- - `TERM` send `TERM` to worker. Worker will attempt to finish then exit.
268
- - `USR2` restart workers
269
- - `USR1` restart workers in phases, a rolling restart.
270
- - `HUP` reopen log files defined in stdout_redirect configuration parameter
271
- - `INT` equivalent of sending Ctrl-C to cluster. Will attempt to finish then exit.
272
- - `CHLD`
273
-
274
- A detailed guide to using UNIX signals with Puma can be found in the [signals documentation](https://github.com/puma/puma/blob/master/docs/signals.md).
275
-
276
- ### Release Directory
277
-
278
- If your symlink releases into a common working directory (i.e., `/current` from Capistrano), Puma won't pick up your new changes when running phased restarts without additional configuration. You should set your working directory within Puma's config to specify the directory it should use. This is a change from earlier versions of Puma (< 2.15) that would infer the directory for you.
218
+ For MRI versions 2.2.7, 2.3.4 and 2.4.1, you may see ```stream closed in another thread (IOError)```. It may be caused by a [Ruby bug](https://bugs.ruby-lang.org/issues/13632). It can be fixed with the gem https://rubygems.org/gems/stopgap_13632:
279
219
 
280
220
  ```ruby
281
- # config/puma.rb
282
-
283
- directory '/var/www/current'
221
+ if %w(2.2.7 2.3.4 2.4.1).include? RUBY_VERSION
222
+ gem "stopgap_13632", "~> 1.0", :platforms => ["mri", "mingw", "x64_mingw"]
223
+ end
284
224
  ```
285
225
 
286
- ### Cleanup Code
287
-
288
- Puma isn't able to understand all the resources that your app may use, so it provides a hook in the configuration file you pass to `-C` called `on_restart`. The block passed to `on_restart` will be called, unsurprisingly, just before Puma restarts itself.
289
-
290
- You should place code to close global log files, redis connections, etc in this block so that their file descriptors don't leak into the restarted process. Failure to do so will result in slowly running out of descriptors and eventually obscure crashes as the server is restarted many times.
226
+ ## Deployment
291
227
 
292
- ### Platform Constraints
228
+ Puma has support for Capistrano with an [external gem](https://github.com/seuros/capistrano-puma).
293
229
 
294
- Because of various platforms not being able to implement certain things, the following differences occur when Puma is used on different platforms:
295
-
296
- * **JRuby**, **Windows**: server sockets are not seamless on restart, they must be closed and reopened. These platforms have no way to pass descriptors into a new process that is exposed to ruby
297
- * **JRuby**, **Windows**: cluster mode is not supported due to a lack of fork(2)
298
- * **Windows**: daemon mode is not supported due to a lack of fork(2)
299
-
300
- ## pumactl
301
-
302
- `pumactl` is a simple CLI frontend to the control/status app described above. Please refer to `pumactl --help` for available commands.
303
-
304
- ## Process Monitors
305
-
306
- Process monitors or supervisors will at minimum provide start of Puma
307
- on system boot. Modern process monitors like systemd or upstart
308
- further provide continuous monitoring and restarts for increased
230
+ It is common to use process monitors with Puma. Modern process monitors like systemd or upstart
231
+ provide continuous monitoring and restarts for increased
309
232
  reliability in production environments:
310
233
 
311
234
  * [tools/jungle](https://github.com/puma/puma/tree/master/tools/jungle) for sysvinit (init.d) and upstart
312
235
  * [docs/systemd](https://github.com/puma/puma/blob/master/docs/systemd.md)
313
236
 
314
- ## Capistrano deployment
315
-
316
- Puma has support for Capistrano3 with an [external gem](https://github.com/seuros/capistrano-puma), you just need require that in Gemfile:
317
-
318
- ```ruby
319
- gem 'capistrano3-puma'
320
- ```
321
- And then execute:
322
-
323
- ```bash
324
- bundle
325
- ```
326
-
327
- Then add to Capfile
328
-
329
- ```ruby
330
- require 'capistrano/puma'
331
- ```
332
-
333
- and then
334
-
335
- ```bash
336
- $ bundle exec cap puma:start
337
- $ bundle exec cap puma:restart
338
- $ bundle exec cap puma:stop
339
- $ bundle exec cap puma:phased-restart
340
- ```
341
-
342
237
  ## Contributing
343
238
 
344
239
  To run the test suite:
@@ -350,4 +245,4 @@ $ bundle exec rake
350
245
 
351
246
  ## License
352
247
 
353
- Puma is copyright 2014 Evan Phoenix and contributors. It is licensed under the BSD 3-Clause license. See the included LICENSE file for details.
248
+ Puma is copyright Evan Phoenix and contributors, licensed under the BSD 3-Clause license. See the included LICENSE file for details.