tiny-fast-gem 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/puma-8.0.2/History.md +3334 -0
- data/puma-8.0.2/LICENSE +29 -0
- data/puma-8.0.2/README.md +484 -0
- data/puma-8.0.2/bin/puma +10 -0
- data/puma-8.0.2/bin/puma-wild +25 -0
- data/puma-8.0.2/bin/pumactl +12 -0
- data/puma-8.0.2/docs/5.0-Upgrade.md +98 -0
- data/puma-8.0.2/docs/6.0-Upgrade.md +56 -0
- data/puma-8.0.2/docs/7.0-Upgrade.md +52 -0
- data/puma-8.0.2/docs/8.0-Upgrade.md +100 -0
- data/puma-8.0.2/docs/architecture.md +74 -0
- data/puma-8.0.2/docs/compile_options.md +55 -0
- data/puma-8.0.2/docs/deployment.md +137 -0
- data/puma-8.0.2/docs/fork_worker.md +41 -0
- data/puma-8.0.2/docs/grpc.md +62 -0
- data/puma-8.0.2/docs/images/favicon.svg +1 -0
- data/puma-8.0.2/docs/images/puma-connection-flow-no-reactor.png +0 -0
- data/puma-8.0.2/docs/images/puma-connection-flow.png +0 -0
- data/puma-8.0.2/docs/images/puma-general-arch.png +0 -0
- data/puma-8.0.2/docs/images/running-puma.svg +1 -0
- data/puma-8.0.2/docs/images/standard-logo.svg +1 -0
- data/puma-8.0.2/docs/java_options.md +54 -0
- data/puma-8.0.2/docs/jungle/README.md +9 -0
- data/puma-8.0.2/docs/jungle/rc.d/README.md +74 -0
- data/puma-8.0.2/docs/jungle/rc.d/puma +61 -0
- data/puma-8.0.2/docs/jungle/rc.d/puma.conf +10 -0
- data/puma-8.0.2/docs/kubernetes.md +73 -0
- data/puma-8.0.2/docs/nginx.md +80 -0
- data/puma-8.0.2/docs/plugins.md +42 -0
- data/puma-8.0.2/docs/rails_dev_mode.md +28 -0
- data/puma-8.0.2/docs/restart.md +65 -0
- data/puma-8.0.2/docs/signals.md +98 -0
- data/puma-8.0.2/docs/stats.md +148 -0
- data/puma-8.0.2/docs/systemd.md +253 -0
- data/puma-8.0.2/docs/testing_benchmarks_local_files.md +150 -0
- data/puma-8.0.2/docs/testing_test_rackup_ci_files.md +36 -0
- data/puma-8.0.2/ext/puma_http11/PumaHttp11Service.java +17 -0
- data/puma-8.0.2/ext/puma_http11/extconf.rb +65 -0
- data/puma-8.0.2/ext/puma_http11/http11_parser.c +1057 -0
- data/puma-8.0.2/ext/puma_http11/http11_parser.h +65 -0
- data/puma-8.0.2/ext/puma_http11/http11_parser.java.rl +131 -0
- data/puma-8.0.2/ext/puma_http11/http11_parser.rl +149 -0
- data/puma-8.0.2/ext/puma_http11/http11_parser_common.rl +54 -0
- data/puma-8.0.2/ext/puma_http11/mini_ssl.c +852 -0
- data/puma-8.0.2/ext/puma_http11/no_ssl/PumaHttp11Service.java +15 -0
- data/puma-8.0.2/ext/puma_http11/org/jruby/puma/EnvKey.java +241 -0
- data/puma-8.0.2/ext/puma_http11/org/jruby/puma/Http11.java +321 -0
- data/puma-8.0.2/ext/puma_http11/org/jruby/puma/Http11Parser.java +441 -0
- data/puma-8.0.2/ext/puma_http11/org/jruby/puma/MiniSSL.java +509 -0
- data/puma-8.0.2/ext/puma_http11/puma_http11.c +499 -0
- data/puma-8.0.2/lib/puma/app/status.rb +104 -0
- data/puma-8.0.2/lib/puma/binder.rb +511 -0
- data/puma-8.0.2/lib/puma/cli.rb +245 -0
- data/puma-8.0.2/lib/puma/client.rb +756 -0
- data/puma-8.0.2/lib/puma/client_env.rb +171 -0
- data/puma-8.0.2/lib/puma/cluster/worker.rb +183 -0
- data/puma-8.0.2/lib/puma/cluster/worker_handle.rb +127 -0
- data/puma-8.0.2/lib/puma/cluster.rb +634 -0
- data/puma-8.0.2/lib/puma/cluster_accept_loop_delay.rb +91 -0
- data/puma-8.0.2/lib/puma/commonlogger.rb +115 -0
- data/puma-8.0.2/lib/puma/configuration.rb +522 -0
- data/puma-8.0.2/lib/puma/const.rb +308 -0
- data/puma-8.0.2/lib/puma/control_cli.rb +320 -0
- data/puma-8.0.2/lib/puma/detect.rb +58 -0
- data/puma-8.0.2/lib/puma/dsl.rb +1562 -0
- data/puma-8.0.2/lib/puma/error_logger.rb +115 -0
- data/puma-8.0.2/lib/puma/events.rb +72 -0
- data/puma-8.0.2/lib/puma/io_buffer.rb +50 -0
- data/puma-8.0.2/lib/puma/jruby_restart.rb +11 -0
- data/puma-8.0.2/lib/puma/json_serialization.rb +96 -0
- data/puma-8.0.2/lib/puma/launcher/bundle_pruner.rb +102 -0
- data/puma-8.0.2/lib/puma/launcher.rb +501 -0
- data/puma-8.0.2/lib/puma/log_writer.rb +153 -0
- data/puma-8.0.2/lib/puma/minissl/context_builder.rb +96 -0
- data/puma-8.0.2/lib/puma/minissl.rb +458 -0
- data/puma-8.0.2/lib/puma/null_io.rb +101 -0
- data/puma-8.0.2/lib/puma/plugin/systemd.rb +90 -0
- data/puma-8.0.2/lib/puma/plugin/tmp_restart.rb +36 -0
- data/puma-8.0.2/lib/puma/plugin.rb +111 -0
- data/puma-8.0.2/lib/puma/rack/builder.rb +297 -0
- data/puma-8.0.2/lib/puma/rack/urlmap.rb +93 -0
- data/puma-8.0.2/lib/puma/rack_default.rb +24 -0
- data/puma-8.0.2/lib/puma/reactor.rb +131 -0
- data/puma-8.0.2/lib/puma/response.rb +532 -0
- data/puma-8.0.2/lib/puma/runner.rb +211 -0
- data/puma-8.0.2/lib/puma/sd_notify.rb +146 -0
- data/puma-8.0.2/lib/puma/server.rb +773 -0
- data/puma-8.0.2/lib/puma/server_plugin_control.rb +32 -0
- data/puma-8.0.2/lib/puma/single.rb +72 -0
- data/puma-8.0.2/lib/puma/state_file.rb +69 -0
- data/puma-8.0.2/lib/puma/thread_pool.rb +517 -0
- data/puma-8.0.2/lib/puma/util.rb +134 -0
- data/puma-8.0.2/lib/puma.rb +88 -0
- data/puma-8.0.2/lib/rack/handler/puma.rb +144 -0
- data/puma-8.0.2/tools/Dockerfile +26 -0
- data/puma-8.0.2/tools/trickletest.rb +44 -0
- data/tiny-fast-gem.gemspec +12 -0
- metadata +138 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="557.027" height="158.88" viewBox="0 0 417.77 119.16"><defs><clipPath id="a"><path d="M0 0h110v119.16H0Zm0 0"/></clipPath><clipPath id="b"><path d="M109 0h100v119.16H109Zm0 0"/></clipPath><clipPath id="c"><path d="M208 0h101v119.16H208Zm0 0"/></clipPath><clipPath id="d"><path d="M308 0h109.77v119.16H308Zm0 0"/></clipPath></defs><g clip-path="url(#a)"><path fill="#e0067f" d="M59.582 119.16C26.676 119.16 0 92.484 0 59.578S26.676 0 59.582 0c20.86 0 39.215 10.719 49.86 26.953-6.145 9.371-9.72 20.582-9.72 32.625 0 12.047 3.575 23.258 9.72 32.629-10.645 16.234-29 26.953-49.86 26.953"/></g><path fill="#fff" d="M67.008 55.258c0-2.574-2.07-4.031-4.649-4.031h-7.613v8.007h7.613c2.578 0 4.649-1.453 4.649-3.976M45.113 80.18V42.828h18.703c8.399 0 12.993 5.656 12.993 12.43 0 6.722-4.594 12.379-12.993 12.379h-9.07V80.18z"/><g clip-path="url(#b)"><path fill="#43a6d6" d="M159.3 119.16c-20.859 0-39.214-10.719-49.859-26.953 6.145-9.371 9.72-20.582 9.72-32.629 0-12.043-3.575-23.254-9.72-32.625C120.086 10.72 138.441 0 159.301 0c20.742 0 39.008 10.594 49.676 26.672-6.258 9.426-9.907 20.742-9.907 32.906 0 12.168 3.649 23.48 9.907 32.91-10.668 16.075-28.934 26.672-49.676 26.672"/></g><path fill="#21255a" d="M109.441 92.207c-6.144-9.371-9.718-20.582-9.718-32.629 0-12.043 3.574-23.254 9.718-32.625 6.145 9.371 9.72 20.582 9.72 32.625 0 12.047-3.575 23.258-9.72 32.629"/><path fill="#fff" d="M141.477 65.059v-22.23h9.8v21.894c0 4.425 2.688 7.617 7.895 7.617 5.152 0 7.84-3.192 7.84-7.617V42.828h9.746v22.176c0 9.297-5.602 15.848-17.586 15.848s-17.695-6.61-17.695-15.793"/><g clip-path="url(#c)"><path fill="#f4f014" d="M258.652 119.16c-20.742 0-39.004-10.597-49.675-26.672 6.257-9.43 9.906-20.742 9.906-32.91 0-12.164-3.649-23.48-9.906-32.906C219.648 10.594 237.91 0 258.652 0c20.801 0 39.114 10.656 49.77 26.809-6.203 9.402-9.813 20.664-9.813 32.77 0 12.105 3.61 23.37 9.813 32.769-10.656 16.156-28.969 26.812-49.77 26.812"/></g><path fill="#2da140" d="M208.977 92.488c-6.258-9.43-9.907-20.742-9.907-32.91 0-12.164 3.649-23.48 9.907-32.906 6.257 9.426 9.906 20.742 9.906 32.906 0 12.168-3.649 23.48-9.906 32.91"/><path fill="#fff" d="M270.215 80.18V55.484l-9.406 24.696h-4.254l-9.465-24.696V80.18h-9.633V42.828h13.383l7.84 20.606 7.785-20.606h13.383V80.18z"/><g clip-path="url(#d)"><path fill="#312f34" d="M358.188 119.16c-20.801 0-39.11-10.656-49.766-26.812 6.2-9.399 9.812-20.664 9.812-32.77 0-12.105-3.613-23.367-9.812-32.77C319.078 10.657 337.387 0 358.187 0c32.907 0 59.583 26.672 59.583 59.578s-26.676 59.582-59.582 59.582"/></g><path fill="#302d17" d="M308.422 92.348c-6.203-9.399-9.813-20.664-9.813-32.77 0-12.105 3.61-23.367 9.813-32.77 6.2 9.403 9.812 20.665 9.812 32.77s-3.613 23.371-9.812 32.77"/><path fill="#fff" d="m358.215 52.348-4.758 14.054h9.465Zm9.187 27.832-1.851-5.375h-14.727l-1.847 5.375h-10.922l14.058-37.352h12.153L378.32 80.18z"/></svg>
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
# Java Options
|
|
2
|
+
|
|
3
|
+
`System Properties` or `Environment Variables` can be used to change Puma's
|
|
4
|
+
default configuration for its Java extension. The provided values are evaluated
|
|
5
|
+
during initialization, and changes while running the app have no effect.
|
|
6
|
+
Moreover, default values may be used in case of invalid inputs.
|
|
7
|
+
|
|
8
|
+
## Supported Options
|
|
9
|
+
|
|
10
|
+
| ENV Name | Default Value | Validation |
|
|
11
|
+
|------------------------------|:-------------:|:------------------------:|
|
|
12
|
+
| PUMA_QUERY_STRING_MAX_LENGTH | 1024 * 10 | Positive natural number |
|
|
13
|
+
| PUMA_REQUEST_PATH_MAX_LENGTH | 8192 | Positive natural number |
|
|
14
|
+
| PUMA_REQUEST_URI_MAX_LENGTH | 1024 * 12 | Positive natural number |
|
|
15
|
+
| PUMA_SKIP_SIGUSR2 | nil | n/a |
|
|
16
|
+
|
|
17
|
+
## Examples
|
|
18
|
+
|
|
19
|
+
### Invalid inputs
|
|
20
|
+
|
|
21
|
+
An empty string will be handled as missing, and the default value will be used instead.
|
|
22
|
+
Puma will print an error message for other invalid values.
|
|
23
|
+
|
|
24
|
+
```
|
|
25
|
+
foo@bar:~/puma$ PUMA_QUERY_STRING_MAX_LENGTH=abc PUMA_REQUEST_PATH_MAX_LENGTH='' PUMA_REQUEST_URI_MAX_LENGTH=0 bundle exec bin/puma test/rackup/hello.ru
|
|
26
|
+
|
|
27
|
+
The value 0 for PUMA_REQUEST_URI_MAX_LENGTH is invalid. Using default value 12288 instead.
|
|
28
|
+
The value abc for PUMA_QUERY_STRING_MAX_LENGTH is invalid. Using default value 10240 instead.
|
|
29
|
+
Puma starting in single mode...
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
### Valid inputs
|
|
33
|
+
|
|
34
|
+
```
|
|
35
|
+
foo@bar:~/puma$ PUMA_REQUEST_PATH_MAX_LENGTH=9 bundle exec bin/puma test/rackup/hello.ru
|
|
36
|
+
|
|
37
|
+
Puma starting in single mode...
|
|
38
|
+
```
|
|
39
|
+
```
|
|
40
|
+
foo@bar:~ export path=/123456789 # 10 chars
|
|
41
|
+
foo@bar:~ curl "http://localhost:9292${path}"
|
|
42
|
+
|
|
43
|
+
Puma caught this error: HTTP element REQUEST_PATH is longer than the 9 allowed length. (Puma::HttpParserError)
|
|
44
|
+
|
|
45
|
+
foo@bar:~ export path=/12345678 # 9 chars
|
|
46
|
+
foo@bar:~ curl "http://localhost:9292${path}"
|
|
47
|
+
Hello World
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
### Java Flight Recorder Compatibility
|
|
51
|
+
|
|
52
|
+
Unfortunately Java Flight Recorder uses `SIGUSR2` internally. If you wish to
|
|
53
|
+
use JFR, turn off Puma's trapping of `SIGUSR2` by setting the environment variable
|
|
54
|
+
`PUMA_SKIP_SIGUSR2` to any value.
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
# Puma as a service using rc.d
|
|
2
|
+
|
|
3
|
+
Manage multiple Puma servers as services on one box using FreeBSD's rc.d service.
|
|
4
|
+
|
|
5
|
+
## Dependencies
|
|
6
|
+
|
|
7
|
+
* `jq` - a command-line json parser is needed to parse the json in the config file
|
|
8
|
+
|
|
9
|
+
## Installation
|
|
10
|
+
|
|
11
|
+
# Copy the puma script to the rc.d directory (make sure everyone has read/execute perms)
|
|
12
|
+
sudo cp puma /usr/local/etc/rc.d/
|
|
13
|
+
|
|
14
|
+
# Create an empty configuration file
|
|
15
|
+
sudo touch /usr/local/etc/puma.conf
|
|
16
|
+
|
|
17
|
+
# Enable the puma service
|
|
18
|
+
sudo echo 'puma_enable="YES"' >> /etc/rc.conf
|
|
19
|
+
|
|
20
|
+
## Managing the jungle
|
|
21
|
+
|
|
22
|
+
Puma apps are referenced in /usr/local/etc/puma.conf by default.
|
|
23
|
+
|
|
24
|
+
Start the jungle running:
|
|
25
|
+
|
|
26
|
+
`service puma start`
|
|
27
|
+
|
|
28
|
+
This script will run at boot time.
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
You can also stop the jungle (stops ALL puma instances) by running:
|
|
32
|
+
|
|
33
|
+
`service puma stop`
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
To restart the jungle:
|
|
37
|
+
|
|
38
|
+
`service puma restart`
|
|
39
|
+
|
|
40
|
+
## Conventions
|
|
41
|
+
|
|
42
|
+
* The script expects:
|
|
43
|
+
* a config file to exist under `config/puma.rb` in your app. E.g.: `/home/apps/my-app/config/puma.rb`.
|
|
44
|
+
|
|
45
|
+
You can always change those defaults by editing the scripts.
|
|
46
|
+
|
|
47
|
+
## Here's what a minimal app's config file should have
|
|
48
|
+
|
|
49
|
+
```
|
|
50
|
+
{
|
|
51
|
+
"servers" : [
|
|
52
|
+
{
|
|
53
|
+
"dir": "/path/to/rails/project",
|
|
54
|
+
"user": "deploy-user",
|
|
55
|
+
"ruby_version": "ruby.version",
|
|
56
|
+
"ruby_env": "rbenv"
|
|
57
|
+
}
|
|
58
|
+
]
|
|
59
|
+
}
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
## Before starting...
|
|
63
|
+
|
|
64
|
+
You need to customise `puma.conf` to:
|
|
65
|
+
|
|
66
|
+
* Set the right user your app should be running on unless you want root to execute it!
|
|
67
|
+
* Set the directory of the app
|
|
68
|
+
* Set the ruby version to execute
|
|
69
|
+
* Set the ruby environment (currently set to rbenv, since that is the only ruby environment currently supported)
|
|
70
|
+
* Add additional server instances following the scheme in the example
|
|
71
|
+
|
|
72
|
+
## Notes:
|
|
73
|
+
|
|
74
|
+
Only rbenv is currently supported.
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
#!/bin/sh
|
|
2
|
+
#
|
|
3
|
+
|
|
4
|
+
# PROVIDE: puma
|
|
5
|
+
|
|
6
|
+
. /etc/rc.subr
|
|
7
|
+
|
|
8
|
+
name="puma"
|
|
9
|
+
start_cmd="puma_start"
|
|
10
|
+
stop_cmd="puma_stop"
|
|
11
|
+
restart_cmd="puma_restart"
|
|
12
|
+
rcvar=puma_enable
|
|
13
|
+
required_files=/usr/local/etc/puma.conf
|
|
14
|
+
|
|
15
|
+
puma_start()
|
|
16
|
+
{
|
|
17
|
+
server_count=$(/usr/local/bin/jq ".servers[] .ruby_env" /usr/local/etc/puma.conf | wc -l)
|
|
18
|
+
i=0
|
|
19
|
+
while [ "$i" -lt "$server_count" ]; do
|
|
20
|
+
rb_env=$(/usr/local/bin/jq -r ".servers[$i].ruby_env" /usr/local/etc/puma.conf)
|
|
21
|
+
dir=$(/usr/local/bin/jq -r ".servers[$i].dir" /usr/local/etc/puma.conf)
|
|
22
|
+
user=$(/usr/local/bin/jq -r ".servers[$i].user" /usr/local/etc/puma.conf)
|
|
23
|
+
rb_ver=$(/usr/local/bin/jq -r ".servers[$i].ruby_version" /usr/local/etc/puma.conf)
|
|
24
|
+
case $rb_env in
|
|
25
|
+
"rbenv")
|
|
26
|
+
cd $dir && rbenv shell $rb_ver && /usr/sbin/daemon -u $user bundle exec puma -C $dir/config/puma.rb
|
|
27
|
+
;;
|
|
28
|
+
*)
|
|
29
|
+
;;
|
|
30
|
+
esac
|
|
31
|
+
i=$(( i + 1 ))
|
|
32
|
+
done
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
puma_stop()
|
|
36
|
+
{
|
|
37
|
+
pkill ruby
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
puma_restart()
|
|
41
|
+
{
|
|
42
|
+
server_count=$(/usr/local/bin/jq ".servers[] .ruby_env" /usr/local/etc/puma.conf | wc -l)
|
|
43
|
+
i=0
|
|
44
|
+
while [ "$i" -lt "$server_count" ]; do
|
|
45
|
+
rb_env=$(/usr/local/bin/jq -r ".servers[$i].ruby_env" /usr/local/etc/puma.conf)
|
|
46
|
+
dir=$(/usr/local/bin/jq -r ".servers[$i].dir" /usr/local/etc/puma.conf)
|
|
47
|
+
user=$(/usr/local/bin/jq -r ".servers[$i].user" /usr/local/etc/puma.conf)
|
|
48
|
+
rb_ver=$(/usr/local/bin/jq -r ".servers[$i].ruby_version" /usr/local/etc/puma.conf)
|
|
49
|
+
case $rb_env in
|
|
50
|
+
"rbenv")
|
|
51
|
+
cd $dir && rbenv shell $rb_ver && /usr/sbin/daemon -u $user bundle exec puma -C $dir/config/puma.rb
|
|
52
|
+
;;
|
|
53
|
+
*)
|
|
54
|
+
;;
|
|
55
|
+
esac
|
|
56
|
+
i=$(( i + 1 ))
|
|
57
|
+
done
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
load_rc_config $name
|
|
61
|
+
run_rc_command "$1"
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
# Kubernetes
|
|
2
|
+
|
|
3
|
+
## Running Puma in Kubernetes
|
|
4
|
+
|
|
5
|
+
In general running Puma in Kubernetes works as-is, no special configuration is needed beyond what you would write anyway to get a new Kubernetes Deployment going. There is one known interaction between the way Kubernetes handles pod termination and how Puma handles `SIGINT`, where some requests might be sent to Puma after it has already entered graceful shutdown mode and is no longer accepting requests. This can lead to dropped requests during rolling deploys. A workaround for this is listed at the end of this article.
|
|
6
|
+
|
|
7
|
+
## Basic setup
|
|
8
|
+
|
|
9
|
+
Assuming you already have a running cluster and docker image repository, you can run a simple Puma app with the following example Dockerfile and Deployment specification. These are meant as examples only and are deliberately very minimal to the point of skipping many options that are recommended for running in production, like healthchecks and envvar configuration with ConfigMaps. In general you should check the [Kubernetes documentation](https://kubernetes.io/docs/home/) and [Docker documentation](https://docs.docker.com/) for a more comprehensive overview of the available options.
|
|
10
|
+
|
|
11
|
+
A basic Dockerfile example:
|
|
12
|
+
|
|
13
|
+
```Dockerfile
|
|
14
|
+
FROM ruby:3.4.5-alpine # can be updated to newer ruby versions
|
|
15
|
+
RUN apk update && apk add build-base # and any other packages you need
|
|
16
|
+
|
|
17
|
+
# Only rebuild gem bundle if Gemfile changes
|
|
18
|
+
COPY Gemfile Gemfile.lock ./
|
|
19
|
+
RUN bundle install
|
|
20
|
+
|
|
21
|
+
# Copy over the rest of the files
|
|
22
|
+
COPY . .
|
|
23
|
+
|
|
24
|
+
# Open up port and start the service
|
|
25
|
+
EXPOSE 9292
|
|
26
|
+
CMD bundle exec rackup -o 0.0.0.0
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
A sample `deployment.yaml`:
|
|
30
|
+
|
|
31
|
+
```yaml
|
|
32
|
+
---
|
|
33
|
+
apiVersion: apps/v1
|
|
34
|
+
kind: Deployment
|
|
35
|
+
metadata:
|
|
36
|
+
name: my-awesome-puma-app
|
|
37
|
+
spec:
|
|
38
|
+
selector:
|
|
39
|
+
matchLabels:
|
|
40
|
+
app: my-awesome-puma-app
|
|
41
|
+
template:
|
|
42
|
+
metadata:
|
|
43
|
+
labels:
|
|
44
|
+
app: my-awesome-puma-app
|
|
45
|
+
service: my-awesome-puma-app
|
|
46
|
+
spec:
|
|
47
|
+
containers:
|
|
48
|
+
- name: my-awesome-puma-app
|
|
49
|
+
image: <your image here>
|
|
50
|
+
ports:
|
|
51
|
+
- containerPort: 9292
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
## Graceful shutdown and pod termination
|
|
55
|
+
|
|
56
|
+
For some high-throughput systems, it is possible that some HTTP requests will return responses with response codes in the 5XX range during a rolling deploy to a new version. This is caused by [the way that Kubernetes terminates a pod during rolling deploys](https://cloud.google.com/blog/products/gcp/kubernetes-best-practices-terminating-with-grace):
|
|
57
|
+
|
|
58
|
+
1. The replication controller determines a pod should be shut down.
|
|
59
|
+
2. The Pod is set to the “Terminating” State and removed from the endpoints list of all Services, so that it receives no more requests.
|
|
60
|
+
3. The pods pre-stop hook get called. The default for this is to send `SIGTERM` to the process inside the pod.
|
|
61
|
+
4. The pod has up to `terminationGracePeriodSeconds` (default: 30 seconds) to gracefully shut down. Puma will do this (after it receives SIGTERM) by closing down the socket that accepts new requests and finishing any requests already running before exiting the Puma process.
|
|
62
|
+
5. If the pod is still running after `terminationGracePeriodSeconds` has elapsed, the pod receives `SIGKILL` to make sure the process inside it stops. After that, the container exits and all other Kubernetes objects associated with it are cleaned up.
|
|
63
|
+
|
|
64
|
+
There is a subtle race condition between step 2 and 3: The replication controller does not synchronously remove the pod from the Services AND THEN call the pre-stop hook of the pod, but rather it asynchronously sends "remove this pod from your endpoints" requests to the Services and then immediately proceeds to invoke the pods' pre-stop hook. If the Service controller (typically something like nginx or haproxy) receives and handles this request "too" late (due to internal lag or network latency between the replication and Service controllers) then it is possible that the Service controller will send one or more requests to a Puma process which has already shut down its listening socket. These requests will then fail with 5XX error codes.
|
|
65
|
+
|
|
66
|
+
The way Kubernetes works this way, rather than handling step 2 synchronously, is due to the CAP theorem: in a distributed system there is no way to guarantee that any message will arrive promptly. In particular, waiting for all Service controllers to report back might get stuck for an indefinite time if one of them has already been terminated or if there has been a net split. A way to work around this is to add a sleep to the pre-stop hook of the same time as the `terminationGracePeriodSeconds` time. This will allow the Puma process to keep serving new requests during the entire grace period, although it will no longer receive new requests after all Service controllers have propagated the removal of the pod from their endpoint lists. Then, after `terminationGracePeriodSeconds`, the pod receives `SIGKILL` and closes down. If your process can't handle SIGKILL properly, for example because it needs to release locks in different services, you can also sleep for a shorter period (and/or increase `terminationGracePeriodSeconds`) as long as the time slept is longer than the time that your Service controllers take to propagate the pod removal. The downside of this workaround is that all pods will take at minimum the amount of time slept to shut down and this will increase the time required for your rolling deploy.
|
|
67
|
+
|
|
68
|
+
More discussions and links to relevant articles can be found in https://github.com/puma/puma/issues/2343.
|
|
69
|
+
|
|
70
|
+
## Workers Per Pod, and Other Config Issues
|
|
71
|
+
|
|
72
|
+
See our [deployment docs](./deployment.md) for more information about how to correctly size your pods and choose the right number of workers and threads.
|
|
73
|
+
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
# Nginx configuration example file
|
|
2
|
+
|
|
3
|
+
This is a very common setup using an upstream. It was adapted from some Capistrano recipe I found on the Internet a while ago.
|
|
4
|
+
|
|
5
|
+
```nginx
|
|
6
|
+
upstream myapp {
|
|
7
|
+
server unix:///myapp/tmp/puma.sock;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
server {
|
|
11
|
+
listen 80;
|
|
12
|
+
server_name myapp.com;
|
|
13
|
+
|
|
14
|
+
# ~2 seconds is often enough for most folks to parse HTML/CSS and
|
|
15
|
+
# retrieve needed images/icons/frames, connections are cheap in
|
|
16
|
+
# nginx so increasing this is generally safe...
|
|
17
|
+
keepalive_timeout 5;
|
|
18
|
+
|
|
19
|
+
# path for static files
|
|
20
|
+
root /myapp/public;
|
|
21
|
+
access_log /myapp/log/nginx.access.log;
|
|
22
|
+
error_log /myapp/log/nginx.error.log info;
|
|
23
|
+
|
|
24
|
+
# this rewrites all the requests to the maintenance.html
|
|
25
|
+
# page if it exists in the doc root. This is for capistrano's
|
|
26
|
+
# disable web task
|
|
27
|
+
if (-f $document_root/maintenance.html) {
|
|
28
|
+
rewrite ^(.*)$ /maintenance.html last;
|
|
29
|
+
break;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
location / {
|
|
33
|
+
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
34
|
+
proxy_set_header Host $host;
|
|
35
|
+
|
|
36
|
+
# If the file exists as a static file serve it directly without
|
|
37
|
+
# running all the other rewrite tests on it
|
|
38
|
+
if (-f $request_filename) {
|
|
39
|
+
break;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
# check for index.html for directory index
|
|
43
|
+
# if it's there on the filesystem then rewrite
|
|
44
|
+
# the url to add /index.html to the end of it
|
|
45
|
+
# and then break to send it to the next config rules.
|
|
46
|
+
if (-f $request_filename/index.html) {
|
|
47
|
+
rewrite (.*) $1/index.html break;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
# this is the meat of the rack page caching config
|
|
51
|
+
# it adds .html to the end of the url and then checks
|
|
52
|
+
# the filesystem for that file. If it exists, then we
|
|
53
|
+
# rewrite the url to have explicit .html on the end
|
|
54
|
+
# and then send it on its way to the next config rule.
|
|
55
|
+
# if there is no file on the fs then it sets all the
|
|
56
|
+
# necessary headers and proxies to our upstream pumas
|
|
57
|
+
if (-f $request_filename.html) {
|
|
58
|
+
rewrite (.*) $1.html break;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
if (!-f $request_filename) {
|
|
62
|
+
proxy_pass http://myapp;
|
|
63
|
+
break;
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
# Now this supposedly should work as it gets the filenames with querystrings that Rails provides.
|
|
68
|
+
# BUT there's a chance it could break the ajax calls.
|
|
69
|
+
location ~* \.(ico|css|gif|jpe?g|png|js)(\?[0-9]+)?$ {
|
|
70
|
+
expires max;
|
|
71
|
+
break;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
# Error pages
|
|
75
|
+
# error_page 500 502 503 504 /500.html;
|
|
76
|
+
location = /500.html {
|
|
77
|
+
root /myapp/current/public;
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
```
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
## Plugins
|
|
2
|
+
|
|
3
|
+
Puma 3.0 added support for plugins that can augment configuration and service
|
|
4
|
+
operations.
|
|
5
|
+
|
|
6
|
+
There are two canonical plugins to aid in the development of new plugins:
|
|
7
|
+
|
|
8
|
+
* [tmp\_restart](https://github.com/puma/puma/blob/main/lib/puma/plugin/tmp_restart.rb):
|
|
9
|
+
Restarts the server if the file `tmp/restart.txt` is touched
|
|
10
|
+
* [heroku](https://github.com/puma/puma-heroku/blob/master/lib/puma/plugin/heroku.rb):
|
|
11
|
+
Packages up the default configuration used by Puma on Heroku (being sunset
|
|
12
|
+
with the release of Puma 5.0)
|
|
13
|
+
|
|
14
|
+
Plugins are activated in a Puma configuration file (such as `config/puma.rb`)
|
|
15
|
+
by adding `plugin "name"`, such as `plugin "heroku"`.
|
|
16
|
+
|
|
17
|
+
Plugins are activated based on path requirements so, activating the `heroku`
|
|
18
|
+
plugin is much like `require "puma/plugin/heroku"`. This allows gems to provide
|
|
19
|
+
multiple plugins (as well as unrelated gems to provide Puma plugins).
|
|
20
|
+
|
|
21
|
+
The `tmp_restart` plugin comes with Puma, so it is always available.
|
|
22
|
+
|
|
23
|
+
To use the `heroku` plugin, add `puma-heroku` to your Gemfile or install it.
|
|
24
|
+
|
|
25
|
+
### API
|
|
26
|
+
|
|
27
|
+
## Server-wide hooks
|
|
28
|
+
|
|
29
|
+
Plugins can use a couple of hooks at the server level: `start` and `config`.
|
|
30
|
+
|
|
31
|
+
`start` runs when the server has started and allows the plugin to initiate other
|
|
32
|
+
functionality to augment Puma.
|
|
33
|
+
|
|
34
|
+
`config` runs when the server is being configured and receives a `Puma::DSL`
|
|
35
|
+
object that is useful for additional configuration.
|
|
36
|
+
|
|
37
|
+
Public methods in [`Puma::Plugin`](../lib/puma/plugin.rb) are treated as a
|
|
38
|
+
public API for plugins.
|
|
39
|
+
|
|
40
|
+
## Binder hooks
|
|
41
|
+
|
|
42
|
+
There's `Puma::Binder#before_parse` method that allows to add proc to run before the body of `Puma::Binder#parse`. Example of usage can be found in [that repository](https://github.com/anchordotdev/puma-acme/blob/v0.1.3/lib/puma/acme/plugin.rb#L97-L118) (`before_parse_hook` could be renamed `before_parse`, making monkey patching of [binder.rb](https://github.com/anchordotdev/puma-acme/blob/v0.1.3/lib/puma/acme/binder.rb) is unnecessary).
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# Running Puma in Rails Development Mode
|
|
2
|
+
|
|
3
|
+
## "Loopback requests"
|
|
4
|
+
|
|
5
|
+
Be cautious of "loopback requests," where a Rails application executes a request to a server that, in turn, results in another request back to the same Rails application before the first request completes. Having a loopback request will trigger [Rails' load interlock](https://guides.rubyonrails.org/threading_and_code_execution.html#load-interlock) mechanism. The load interlock mechanism prevents a thread from using Rails autoloading mechanism to load constants while the application code is still running inside another thread.
|
|
6
|
+
|
|
7
|
+
This issue only occurs in the development environment as Rails' load interlock is not used in production environments. Although we're not sure, we believe this issue may not occur with the new `zeitwerk` code loader.
|
|
8
|
+
|
|
9
|
+
### Solutions
|
|
10
|
+
|
|
11
|
+
#### 1. Bypass Rails' load interlock with `.permit_concurrent_loads`
|
|
12
|
+
|
|
13
|
+
Wrap the first request inside a block that will allow concurrent loads: [`ActiveSupport::Dependencies.interlock.permit_concurrent_loads`](https://guides.rubyonrails.org/threading_and_code_execution.html#permit-concurrent-loads). Anything wrapped inside the `.permit_concurrent_loads` block will bypass the load interlock mechanism, allowing new threads to access the Rails environment and boot properly.
|
|
14
|
+
|
|
15
|
+
###### Example
|
|
16
|
+
|
|
17
|
+
```ruby
|
|
18
|
+
response = ActiveSupport::Dependencies.interlock.permit_concurrent_loads do
|
|
19
|
+
# Your HTTP request code here. For example:
|
|
20
|
+
Faraday.post url, data: 'foo'
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
do_something_with response
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
#### 2. Use multiple processes on Puma
|
|
27
|
+
|
|
28
|
+
Alternatively, you may also enable multiple (single-threaded) workers on Puma. By doing so, you are sidestepping the problem by creating multiple processes rather than new threads. However, this workaround is not ideal because debugging tools such as [byebug](https://github.com/deivid-rodriguez/byebug/issues/487) and [pry](https://github.com/pry/pry/issues/2153), work poorly with any multi-process web server.
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
Puma provides three distinct kinds of restart operations, each for different use cases. This document describes "hot restarts" and "phased restarts." The third kind of restart operation is called "refork" and is described in the documentation for [`fork_worker`](fork_worker.md).
|
|
2
|
+
|
|
3
|
+
## Hot restart
|
|
4
|
+
|
|
5
|
+
To perform a "hot" restart, Puma performs an `exec` operation to start the process up again, so no memory is shared between the old process and the new process. As a result, it is safe to issue a restart at any place where you would manually stop Puma and start it again. In particular, it is safe to upgrade Puma itself using a hot restart.
|
|
6
|
+
|
|
7
|
+
If the new process is unable to load, it will simply exit. You should therefore run Puma under a process monitor when using it in production.
|
|
8
|
+
|
|
9
|
+
### How-to
|
|
10
|
+
|
|
11
|
+
Any of the following will cause a Puma server to perform a hot restart:
|
|
12
|
+
|
|
13
|
+
* Send the `puma` process the `SIGUSR2` signal
|
|
14
|
+
* Issue a `GET` request to the Puma status/control server with the path `/restart`
|
|
15
|
+
* Issue `pumactl restart` (this uses the control server method if available, otherwise sends the `SIGUSR2` signal to the process)
|
|
16
|
+
|
|
17
|
+
### Supported configurations
|
|
18
|
+
|
|
19
|
+
* Works in cluster mode and single mode
|
|
20
|
+
* Supported on all platforms
|
|
21
|
+
|
|
22
|
+
### Client experience
|
|
23
|
+
|
|
24
|
+
* All platforms: clients with an in-flight request are served responses before the connection is closed gracefully. Puma gracefully disconnects any idle HTTP persistent connections before restarting.
|
|
25
|
+
* On MRI or TruffleRuby on Linux and BSD: Clients who connect just before the server restarts may experience increased latency while the server stops and starts again, but their connections will not be closed prematurely.
|
|
26
|
+
* On Windows and JRuby: Clients who connect just before a restart may experience "connection reset" errors.
|
|
27
|
+
|
|
28
|
+
### Additional notes
|
|
29
|
+
|
|
30
|
+
* The newly started Puma process changes its current working directory to the directory specified by the `directory` option. If `directory` is set to symlink, this is automatically re-evaluated, so this mechanism can be used to upgrade the application.
|
|
31
|
+
* Only one version of the application is running at a time.
|
|
32
|
+
* `before_restart` is invoked just before the server shuts down. This can be used to clean up resources (like long-lived database connections) gracefully. Since Ruby 2.0, it is not typically necessary to explicitly close file descriptors on restart. This is because any file descriptor opened by Ruby will have the `FD_CLOEXEC` flag set, meaning that file descriptors are closed on `exec`. `before_restart` is useful, though, if your application needs to perform any more graceful protocol-specific shutdown procedures before closing connections.
|
|
33
|
+
|
|
34
|
+
## Phased restart
|
|
35
|
+
|
|
36
|
+
Phased restarts replace all running workers in a Puma cluster. This is a useful way to upgrade the application that Puma is serving gracefully. A phased restart works by first killing an old worker, then starting a new worker, waiting until the new worker has successfully started before proceeding to the next worker. This process continues until all workers are replaced. The master process is not restarted.
|
|
37
|
+
|
|
38
|
+
### How-to
|
|
39
|
+
|
|
40
|
+
Any of the following will cause a Puma server to perform a phased restart:
|
|
41
|
+
|
|
42
|
+
* Send the `puma` process the `SIGUSR1` signal
|
|
43
|
+
* Issue a `GET` request to the Puma status/control server with the path `/phased-restart`
|
|
44
|
+
* Issue `pumactl phased-restart` (this uses the control server method if available, otherwise sends the `SIGUSR1` signal to the process)
|
|
45
|
+
|
|
46
|
+
### Supported configurations
|
|
47
|
+
|
|
48
|
+
* Works in cluster mode only
|
|
49
|
+
* To support upgrading the application that Puma is serving, ensure `prune_bundler` is enabled and that `preload_app!` is disabled
|
|
50
|
+
* Supported on all platforms where cluster mode is supported
|
|
51
|
+
|
|
52
|
+
### Client experience
|
|
53
|
+
|
|
54
|
+
* In-flight requests are always served responses before the connection is closed gracefully
|
|
55
|
+
* Idle persistent connections are gracefully disconnected
|
|
56
|
+
* New connections are not lost, and clients will not experience any increase in latency (as long as the number of configured workers is greater than one)
|
|
57
|
+
|
|
58
|
+
### Additional notes
|
|
59
|
+
|
|
60
|
+
* When a phased restart begins, the Puma master process changes its current working directory to the directory specified by the `directory` option. If `directory` is set to symlink, this is automatically re-evaluated, so this mechanism can be used to upgrade the application.
|
|
61
|
+
* On a single server, it's possible that two versions of the application are running concurrently during a phased restart.
|
|
62
|
+
* `before_restart` is not invoked
|
|
63
|
+
* Phased restarts can be slow for Puma clusters with many workers. Hot restarts often complete more quickly, but at the cost of increased latency during the restart.
|
|
64
|
+
* Phased restarts cannot be used to upgrade any gems loaded by the Puma master process, including `puma` itself, anything in `extra_runtime_dependencies`, or dependencies thereof. Upgrading other gems is safe.
|
|
65
|
+
* If you remove the gems from old releases as part of your deployment strategy, there are additional considerations. Do not put any gems into `extra_runtime_dependencies` that have native extensions or have dependencies that have native extensions (one common example is `puma_worker_killer` and its dependency on `ffi`). Workers will fail on boot during a phased restart. The underlying issue is recorded in [an issue on the rubygems project](https://github.com/rubygems/rubygems/issues/4004). Hot restarts are your only option here if you need these dependencies.
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
The [unix signal](https://en.wikipedia.org/wiki/Unix_signal) is a method of sending messages between [processes](https://en.wikipedia.org/wiki/Process_(computing)). When a signal is sent, the operating system interrupts the target process's normal flow of execution. There are standard signals that are used to stop a process, but there are also custom signals that can be used for other purposes. This document is an attempt to list all supported signals that Puma will respond to. In general, signals need only be sent to the master process of a cluster.
|
|
2
|
+
|
|
3
|
+
## Sending Signals
|
|
4
|
+
|
|
5
|
+
If you are new to signals, it can be helpful to see how they are used. When a process starts in a *nix-like operating system, it will have a [PID - or process identifier](https://en.wikipedia.org/wiki/Process_identifier) that can be used to send signals to the process. For demonstration, we will create an infinitely running process by tailing a file:
|
|
6
|
+
|
|
7
|
+
```sh
|
|
8
|
+
$ echo "foo" >> my.log
|
|
9
|
+
$ irb
|
|
10
|
+
> pid = Process.spawn 'tail -f my.log'
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
From here, we can see that the tail process is running by using the `ps` command:
|
|
14
|
+
|
|
15
|
+
```sh
|
|
16
|
+
$ ps aux | grep tail
|
|
17
|
+
schneems 87152 0.0 0.0 2432772 492 s032 S+ 12:46PM 0:00.00 tail -f my.log
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
You can send a signal in Ruby using the [Process module](https://docs.ruby-lang.org/en/master/Process.html#method-c-kill):
|
|
21
|
+
|
|
22
|
+
```
|
|
23
|
+
$ irb
|
|
24
|
+
> puts pid
|
|
25
|
+
=> 87152
|
|
26
|
+
Process.detach(pid) # https://docs.ruby-lang.org/en/master/Process.html#method-c-detach
|
|
27
|
+
Process.kill("TERM", pid)
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
Now you will see via `ps` that there is no more `tail` process. Sometimes when referring to signals, the `SIG` prefix will be used. For example, `SIGTERM` is equivalent to sending `TERM` via `Process.kill`.
|
|
31
|
+
|
|
32
|
+
## Puma Signals
|
|
33
|
+
|
|
34
|
+
Puma cluster responds to these signals:
|
|
35
|
+
|
|
36
|
+
- `TTIN`: Increment the worker count by 1.
|
|
37
|
+
- `TTOU`: Decrement the worker count by 1.
|
|
38
|
+
- `TERM`: Send `TERM` to worker. The worker will attempt to finish then exit.
|
|
39
|
+
- `USR2`: Restart workers. This also reloads the Puma configuration file, if there is one.
|
|
40
|
+
- `USR1`: Restart workers in phases, a rolling restart. This will not reload the configuration file.
|
|
41
|
+
- `HUP`: Reopen log files defined in `stdout_redirect` configuration parameter. If there is no `stdout_redirect` option provided, it will behave like `INT`.
|
|
42
|
+
- `INT`: Equivalent of sending Ctrl-C to cluster. Puma will attempt to finish then exit.
|
|
43
|
+
- `CHLD`: Reap zombie child processes and wake event loop in `fork_worker` mode.
|
|
44
|
+
- `URG`: Refork workers in phases from worker 0 if `fork_worker` option is enabled.
|
|
45
|
+
- `INFO` (or `PWR` for systems without `INFO`) print backtraces of all puma threads (if supported on your platform).
|
|
46
|
+
|
|
47
|
+
## Callbacks order in case of different signals
|
|
48
|
+
|
|
49
|
+
### Start application
|
|
50
|
+
|
|
51
|
+
```
|
|
52
|
+
puma configuration file reloaded, if there is one
|
|
53
|
+
* Pruning Bundler environment
|
|
54
|
+
puma configuration file reloaded, if there is one
|
|
55
|
+
|
|
56
|
+
before_fork
|
|
57
|
+
before_worker_fork
|
|
58
|
+
after_worker_fork
|
|
59
|
+
|
|
60
|
+
Gemfile in context
|
|
61
|
+
|
|
62
|
+
before_worker_boot
|
|
63
|
+
|
|
64
|
+
Code of the app is loaded and running
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
### Send USR2
|
|
68
|
+
|
|
69
|
+
```
|
|
70
|
+
before_worker_shutdown
|
|
71
|
+
before_restart
|
|
72
|
+
|
|
73
|
+
puma configuration file reloaded, if there is one
|
|
74
|
+
|
|
75
|
+
before_fork
|
|
76
|
+
before_worker_fork
|
|
77
|
+
after_worker_fork
|
|
78
|
+
|
|
79
|
+
Gemfile in context
|
|
80
|
+
|
|
81
|
+
before_worker_boot
|
|
82
|
+
|
|
83
|
+
Code of the app is loaded and running
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
### Send USR1
|
|
87
|
+
|
|
88
|
+
```
|
|
89
|
+
before_worker_shutdown
|
|
90
|
+
before_worker_fork
|
|
91
|
+
after_worker_fork
|
|
92
|
+
|
|
93
|
+
Gemfile in context
|
|
94
|
+
|
|
95
|
+
before_worker_boot
|
|
96
|
+
|
|
97
|
+
Code of the app is loaded and running
|
|
98
|
+
```
|