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.
Files changed (99) hide show
  1. checksums.yaml +7 -0
  2. data/puma-8.0.2/History.md +3334 -0
  3. data/puma-8.0.2/LICENSE +29 -0
  4. data/puma-8.0.2/README.md +484 -0
  5. data/puma-8.0.2/bin/puma +10 -0
  6. data/puma-8.0.2/bin/puma-wild +25 -0
  7. data/puma-8.0.2/bin/pumactl +12 -0
  8. data/puma-8.0.2/docs/5.0-Upgrade.md +98 -0
  9. data/puma-8.0.2/docs/6.0-Upgrade.md +56 -0
  10. data/puma-8.0.2/docs/7.0-Upgrade.md +52 -0
  11. data/puma-8.0.2/docs/8.0-Upgrade.md +100 -0
  12. data/puma-8.0.2/docs/architecture.md +74 -0
  13. data/puma-8.0.2/docs/compile_options.md +55 -0
  14. data/puma-8.0.2/docs/deployment.md +137 -0
  15. data/puma-8.0.2/docs/fork_worker.md +41 -0
  16. data/puma-8.0.2/docs/grpc.md +62 -0
  17. data/puma-8.0.2/docs/images/favicon.svg +1 -0
  18. data/puma-8.0.2/docs/images/puma-connection-flow-no-reactor.png +0 -0
  19. data/puma-8.0.2/docs/images/puma-connection-flow.png +0 -0
  20. data/puma-8.0.2/docs/images/puma-general-arch.png +0 -0
  21. data/puma-8.0.2/docs/images/running-puma.svg +1 -0
  22. data/puma-8.0.2/docs/images/standard-logo.svg +1 -0
  23. data/puma-8.0.2/docs/java_options.md +54 -0
  24. data/puma-8.0.2/docs/jungle/README.md +9 -0
  25. data/puma-8.0.2/docs/jungle/rc.d/README.md +74 -0
  26. data/puma-8.0.2/docs/jungle/rc.d/puma +61 -0
  27. data/puma-8.0.2/docs/jungle/rc.d/puma.conf +10 -0
  28. data/puma-8.0.2/docs/kubernetes.md +73 -0
  29. data/puma-8.0.2/docs/nginx.md +80 -0
  30. data/puma-8.0.2/docs/plugins.md +42 -0
  31. data/puma-8.0.2/docs/rails_dev_mode.md +28 -0
  32. data/puma-8.0.2/docs/restart.md +65 -0
  33. data/puma-8.0.2/docs/signals.md +98 -0
  34. data/puma-8.0.2/docs/stats.md +148 -0
  35. data/puma-8.0.2/docs/systemd.md +253 -0
  36. data/puma-8.0.2/docs/testing_benchmarks_local_files.md +150 -0
  37. data/puma-8.0.2/docs/testing_test_rackup_ci_files.md +36 -0
  38. data/puma-8.0.2/ext/puma_http11/PumaHttp11Service.java +17 -0
  39. data/puma-8.0.2/ext/puma_http11/extconf.rb +65 -0
  40. data/puma-8.0.2/ext/puma_http11/http11_parser.c +1057 -0
  41. data/puma-8.0.2/ext/puma_http11/http11_parser.h +65 -0
  42. data/puma-8.0.2/ext/puma_http11/http11_parser.java.rl +131 -0
  43. data/puma-8.0.2/ext/puma_http11/http11_parser.rl +149 -0
  44. data/puma-8.0.2/ext/puma_http11/http11_parser_common.rl +54 -0
  45. data/puma-8.0.2/ext/puma_http11/mini_ssl.c +852 -0
  46. data/puma-8.0.2/ext/puma_http11/no_ssl/PumaHttp11Service.java +15 -0
  47. data/puma-8.0.2/ext/puma_http11/org/jruby/puma/EnvKey.java +241 -0
  48. data/puma-8.0.2/ext/puma_http11/org/jruby/puma/Http11.java +321 -0
  49. data/puma-8.0.2/ext/puma_http11/org/jruby/puma/Http11Parser.java +441 -0
  50. data/puma-8.0.2/ext/puma_http11/org/jruby/puma/MiniSSL.java +509 -0
  51. data/puma-8.0.2/ext/puma_http11/puma_http11.c +499 -0
  52. data/puma-8.0.2/lib/puma/app/status.rb +104 -0
  53. data/puma-8.0.2/lib/puma/binder.rb +511 -0
  54. data/puma-8.0.2/lib/puma/cli.rb +245 -0
  55. data/puma-8.0.2/lib/puma/client.rb +756 -0
  56. data/puma-8.0.2/lib/puma/client_env.rb +171 -0
  57. data/puma-8.0.2/lib/puma/cluster/worker.rb +183 -0
  58. data/puma-8.0.2/lib/puma/cluster/worker_handle.rb +127 -0
  59. data/puma-8.0.2/lib/puma/cluster.rb +634 -0
  60. data/puma-8.0.2/lib/puma/cluster_accept_loop_delay.rb +91 -0
  61. data/puma-8.0.2/lib/puma/commonlogger.rb +115 -0
  62. data/puma-8.0.2/lib/puma/configuration.rb +522 -0
  63. data/puma-8.0.2/lib/puma/const.rb +308 -0
  64. data/puma-8.0.2/lib/puma/control_cli.rb +320 -0
  65. data/puma-8.0.2/lib/puma/detect.rb +58 -0
  66. data/puma-8.0.2/lib/puma/dsl.rb +1562 -0
  67. data/puma-8.0.2/lib/puma/error_logger.rb +115 -0
  68. data/puma-8.0.2/lib/puma/events.rb +72 -0
  69. data/puma-8.0.2/lib/puma/io_buffer.rb +50 -0
  70. data/puma-8.0.2/lib/puma/jruby_restart.rb +11 -0
  71. data/puma-8.0.2/lib/puma/json_serialization.rb +96 -0
  72. data/puma-8.0.2/lib/puma/launcher/bundle_pruner.rb +102 -0
  73. data/puma-8.0.2/lib/puma/launcher.rb +501 -0
  74. data/puma-8.0.2/lib/puma/log_writer.rb +153 -0
  75. data/puma-8.0.2/lib/puma/minissl/context_builder.rb +96 -0
  76. data/puma-8.0.2/lib/puma/minissl.rb +458 -0
  77. data/puma-8.0.2/lib/puma/null_io.rb +101 -0
  78. data/puma-8.0.2/lib/puma/plugin/systemd.rb +90 -0
  79. data/puma-8.0.2/lib/puma/plugin/tmp_restart.rb +36 -0
  80. data/puma-8.0.2/lib/puma/plugin.rb +111 -0
  81. data/puma-8.0.2/lib/puma/rack/builder.rb +297 -0
  82. data/puma-8.0.2/lib/puma/rack/urlmap.rb +93 -0
  83. data/puma-8.0.2/lib/puma/rack_default.rb +24 -0
  84. data/puma-8.0.2/lib/puma/reactor.rb +131 -0
  85. data/puma-8.0.2/lib/puma/response.rb +532 -0
  86. data/puma-8.0.2/lib/puma/runner.rb +211 -0
  87. data/puma-8.0.2/lib/puma/sd_notify.rb +146 -0
  88. data/puma-8.0.2/lib/puma/server.rb +773 -0
  89. data/puma-8.0.2/lib/puma/server_plugin_control.rb +32 -0
  90. data/puma-8.0.2/lib/puma/single.rb +72 -0
  91. data/puma-8.0.2/lib/puma/state_file.rb +69 -0
  92. data/puma-8.0.2/lib/puma/thread_pool.rb +517 -0
  93. data/puma-8.0.2/lib/puma/util.rb +134 -0
  94. data/puma-8.0.2/lib/puma.rb +88 -0
  95. data/puma-8.0.2/lib/rack/handler/puma.rb +144 -0
  96. data/puma-8.0.2/tools/Dockerfile +26 -0
  97. data/puma-8.0.2/tools/trickletest.rb +44 -0
  98. data/tiny-fast-gem.gemspec +12 -0
  99. metadata +138 -0
@@ -0,0 +1,148 @@
1
+ ## Accessing stats
2
+
3
+ Stats can be accessed in two ways:
4
+
5
+ ### control server
6
+
7
+ `$ pumactl stats` or `GET /stats`
8
+
9
+ [Read more about `pumactl` and the control server in the README.](https://github.com/puma/puma#controlstatus-server).
10
+
11
+ ### Puma.stats
12
+
13
+ `Puma.stats` produces a JSON string. `Puma.stats_hash` produces a ruby hash.
14
+
15
+ #### in single mode
16
+
17
+ Invoke `Puma.stats` anywhere in runtime, e.g. in a rails initializer:
18
+
19
+ ```ruby
20
+ # config/initializers/puma_stats.rb
21
+
22
+ Thread.new do
23
+ loop do
24
+ sleep 30
25
+ puts Puma.stats
26
+ end
27
+ end
28
+ ```
29
+
30
+ #### in cluster mode
31
+
32
+ Invoke `Puma.stats` from the master process
33
+
34
+ ```ruby
35
+ # config/puma.rb
36
+
37
+ before_fork do
38
+ Thread.new do
39
+ loop do
40
+ puts Puma.stats
41
+ sleep 30
42
+ end
43
+ end
44
+ end
45
+ ```
46
+
47
+
48
+ ## Explanation of stats
49
+
50
+ `Puma.stats` returns different information and a different structure depending on if Puma is in single vs. cluster mode. There is one top-level attribute that is common to both modes:
51
+
52
+ * started_at: when Puma was started
53
+
54
+ ### single mode and individual workers in cluster mode
55
+
56
+ When Puma runs in single mode, these stats are available at the top level. When Puma runs in cluster mode, these stats are available within the `worker_status` array in a hash labeled `last_status`, in an array of hashes where one hash represents each worker.
57
+
58
+ * backlog: requests that are waiting for an available thread to be available. if this is frequently above 0, you need more capacity.
59
+ * running: how many threads are spawned. A spawned thread may be busy processing a request or waiting for a new request. If `min_threads` and `max_threads` are set to the same number,
60
+ this will be a never-changing number (other than rare cases when a thread dies, etc).
61
+ * busy_threads: `running` - `how many threads are waiting to receive work` + `how many requests are waiting for a thread to pick them up`.
62
+ this is a "wholistic" stat reflecting the overall current state of work to be done and the capacity to do it.
63
+ * pool_capacity: `how many threads are waiting to receive work` + `max_threads` - `running`. In a typical configuration where `min_threads`
64
+ and `max_threads` are configured to the same number, this is simply `how many threads are waiting to receive work`. This number exists only as a stat
65
+ and is not used for any internal decisions, unlike `busy_threads`, which is usually a more useful stat.
66
+ * max_threads: the maximum number of threads Puma is configured to spool per worker
67
+ * requests_count: the number of requests this worker has served since starting
68
+ * reactor_max: the maximum observed number of requests held in Puma's "reactor" which is used for asyncronously buffering request bodies. This stat is reset on every call, so it's the maximum value observed since the last stat call.
69
+ * backlog_max: the maximum number of requests that have been fully buffered by the reactor and placed in a ready queue, but have not yet been picked up by a server thread. This stat is reset on every call, so it's the maximum value observed since the last stat call.
70
+
71
+ ### cluster mode
72
+
73
+ * phase: which phase of restart the process is in, during [phased restart](https://github.com/puma/puma/blob/main/docs/restart.md)
74
+ * workers: ??
75
+ * booted_workers: how many workers currently running?
76
+ * old_workers: ??
77
+ * worker_status: array of hashes of info for each worker (see below)
78
+
79
+ ### worker status
80
+
81
+ * started_at: when the worker started
82
+ * pid: the process id of the worker process
83
+ * index: each worker gets a number. if Puma is configured to have 3 workers, then this will be 0, 1, or 2
84
+ * booted: if it's done booting [?]
85
+ * last_checkin: Last time the worker responded to the master process' heartbeat check.
86
+ * last_status: a hash of info about the worker's state handling requests. See the explanation for this in "single mode and individual workers in cluster mode" section above.
87
+
88
+
89
+ ## Examples
90
+
91
+ Here are two example stats hashes produced by `Puma.stats`:
92
+
93
+ ### single
94
+
95
+ ```json
96
+ {
97
+ "started_at": "2021-01-14T07:12:35Z",
98
+ "backlog": 0,
99
+ "running": 5,
100
+ "pool_capacity": 5,
101
+ "max_threads": 5,
102
+ "requests_count": 3
103
+ }
104
+ ```
105
+
106
+ ### cluster
107
+
108
+ ```json
109
+ {
110
+ "started_at": "2021-01-14T07:09:17Z",
111
+ "workers": 2,
112
+ "phase": 0,
113
+ "booted_workers": 2,
114
+ "old_workers": 0,
115
+ "worker_status": [
116
+ {
117
+ "started_at": "2021-01-14T07:09:24Z",
118
+ "pid": 64136,
119
+ "index": 0,
120
+ "phase": 0,
121
+ "booted": true,
122
+ "last_checkin": "2021-01-14T07:11:09Z",
123
+ "last_status": {
124
+ "backlog": 0,
125
+ "running": 5,
126
+ "pool_capacity": 5,
127
+ "max_threads": 5,
128
+ "requests_count": 2
129
+ }
130
+ },
131
+ {
132
+ "started_at": "2021-01-14T07:09:24Z",
133
+ "pid": 64137,
134
+ "index": 1,
135
+ "phase": 0,
136
+ "booted": true,
137
+ "last_checkin": "2021-01-14T07:11:09Z",
138
+ "last_status": {
139
+ "backlog": 0,
140
+ "running": 5,
141
+ "pool_capacity": 5,
142
+ "max_threads": 5,
143
+ "requests_count": 1
144
+ }
145
+ }
146
+ ]
147
+ }
148
+ ```
@@ -0,0 +1,253 @@
1
+ # systemd
2
+
3
+ [systemd](https://www.freedesktop.org/wiki/Software/systemd/) is a commonly
4
+ available init system (PID 1) on many Linux distributions. It offers process
5
+ monitoring (including automatic restarts) and other useful features for running
6
+ Puma in production.
7
+
8
+ ## Service Configuration
9
+
10
+ Below is a sample puma.service configuration file for systemd, which can be
11
+ copied or symlinked to `/etc/systemd/system/puma.service`, or if desired, using
12
+ an application or instance-specific name.
13
+
14
+ Note that this uses the systemd preferred "simple" type where the start command
15
+ remains running in the foreground (does not fork and exit).
16
+
17
+ ~~~~ ini
18
+ [Unit]
19
+ Description=Puma HTTP Server
20
+ After=network.target
21
+
22
+ # Uncomment for socket activation (see below)
23
+ # Requires=puma.socket
24
+
25
+ [Service]
26
+ # Puma supports systemd's `Type=notify` and watchdog service
27
+ # monitoring, as of Puma 5.1 or later.
28
+ # On earlier versions of Puma or JRuby, change this to `Type=simple` and remove
29
+ # the `WatchdogSec` line.
30
+ Type=notify
31
+
32
+ # If your Puma process locks up, systemd's watchdog will restart it within seconds.
33
+ WatchdogSec=10
34
+
35
+ # Preferably configure a non-privileged user
36
+ # User=
37
+
38
+ # The path to your application code root directory.
39
+ # Also replace the "<YOUR_APP_PATH>" placeholders below with this path.
40
+ # Example /home/username/myapp
41
+ WorkingDirectory=<YOUR_APP_PATH>
42
+
43
+ # Helpful for debugging socket activation, etc.
44
+ # Environment=PUMA_DEBUG=1
45
+
46
+ # SystemD will not run puma even if it is in your path. You must specify
47
+ # an absolute URL to puma. For example /usr/local/bin/puma
48
+ # Alternatively, create a binstub with `bundle binstubs puma --path ./sbin` in the WorkingDirectory
49
+ ExecStart=/<FULLPATH>/bin/puma -C <YOUR_APP_PATH>/puma.rb
50
+
51
+ # Variant: Rails start.
52
+ # ExecStart=/<FULLPATH>/bin/puma -C <YOUR_APP_PATH>/config/puma.rb ../config.ru
53
+
54
+ # Variant: Use `bundle exec puma` instead of binstub
55
+ # Variant: Specify directives inline.
56
+ # ExecStart=/<FULLPATH>/puma -b tcp://0.0.0.0:9292 -b ssl://0.0.0.0:9293?key=key.pem&cert=cert.pem
57
+
58
+
59
+ Restart=always
60
+
61
+ [Install]
62
+ WantedBy=multi-user.target
63
+ ~~~~
64
+
65
+ See
66
+ [systemd.exec](https://www.freedesktop.org/software/systemd/man/systemd.exec.html)
67
+ for additional details.
68
+
69
+ ## Socket Activation
70
+
71
+ systemd and Puma also support socket activation, where systemd opens the
72
+ listening socket(s) in advance and provides them to the Puma master process on
73
+ startup. Among other advantages, this keeps listening sockets open across puma
74
+ restarts and achieves graceful restarts, including when upgraded Puma, and is
75
+ compatible with both cluster mode and application preload.
76
+
77
+ **Note:** Any wrapper scripts which `exec`, or other indirections in `ExecStart`
78
+ may result in activated socket file descriptors being closed before reaching the
79
+ puma master process.
80
+
81
+ **Note:** Socket activation doesn't currently work on JRuby. This is tracked in
82
+ [#1367].
83
+
84
+ Configure one or more `ListenStream` sockets in a companion `*.socket` unit file
85
+ to use socket activation. Also, uncomment the associated `Requires` directive
86
+ for the socket unit in the service file (see above.) Here is a sample
87
+ puma.socket, matching the ports used in the above puma.service:
88
+
89
+ ~~~~ ini
90
+ [Unit]
91
+ Description=Puma HTTP Server Accept Sockets
92
+
93
+ [Socket]
94
+ ListenStream=0.0.0.0:9292
95
+ ListenStream=0.0.0.0:9293
96
+
97
+ # AF_UNIX domain socket
98
+ # SocketUser, SocketGroup, etc. may be needed for Unix domain sockets
99
+ # ListenStream=/run/puma.sock
100
+
101
+ # Socket options matching Puma defaults
102
+ ReusePort=true
103
+ Backlog=1024
104
+ # Enable this if you're using Puma with the "low_latency" option, read more in Puma DSL docs and systemd docs:
105
+ # https://www.freedesktop.org/software/systemd/man/latest/systemd.socket.html#NoDelay=
106
+ # NoDelay=true
107
+
108
+ [Install]
109
+ WantedBy=sockets.target
110
+ ~~~~
111
+
112
+ See
113
+ [systemd.socket](https://www.freedesktop.org/software/systemd/man/systemd.socket.html)
114
+ for additional configuration details.
115
+
116
+ Note that the above configurations will work with Puma in either single process
117
+ or cluster mode.
118
+
119
+ ### Sockets and symlinks
120
+
121
+ When using releases folders, you should set the socket path using the shared
122
+ folder path (ex. `/srv/project/shared/tmp/puma.sock`), not the release folder
123
+ path (`/srv/project/releases/1234/tmp/puma.sock`).
124
+
125
+ Puma will detect the release path socket as different than the one provided by
126
+ systemd and attempt to bind it again, resulting in the exception `There is
127
+ already a server bound to:`.
128
+
129
+ ### Binding
130
+
131
+ By default, you need to configure Puma to have binds matching with all
132
+ ListenStream statements. Any mismatched systemd ListenStreams will be closed by
133
+ Puma.
134
+
135
+ To automatically bind to all activated sockets, the option
136
+ `--bind-to-activated-sockets` can be used. This matches the config DSL
137
+ `bind_to_activated_sockets` statement. This will cause Puma to create a bind
138
+ automatically for any activated socket. When systemd socket activation is not
139
+ enabled, this option does nothing.
140
+
141
+ This also accepts an optional argument `only` (DSL: `'only'`) to discard any
142
+ binds that are not socket activated.
143
+
144
+ ## Usage
145
+
146
+ Without socket activation, use `systemctl` as root (i.e., via `sudo`) as with
147
+ other system services:
148
+
149
+ ~~~~ sh
150
+ # After installing or making changes to puma.service
151
+ systemctl daemon-reload
152
+
153
+ # Enable so it starts on boot
154
+ systemctl enable puma.service
155
+
156
+ # Initial startup.
157
+ systemctl start puma.service
158
+
159
+ # Check status
160
+ systemctl status puma.service
161
+
162
+ # A normal restart. Warning: listener's sockets will be closed
163
+ # while a new puma process initializes.
164
+ systemctl restart puma.service
165
+ ~~~~
166
+
167
+ With socket activation, several but not all of these commands should be run for
168
+ both socket and service:
169
+
170
+ ~~~~ sh
171
+ # After installing or making changes to either puma.socket or
172
+ # puma.service.
173
+ systemctl daemon-reload
174
+
175
+ # Enable both socket and service, so they start on boot. Alternatively
176
+ # you could leave puma.service disabled, and systemd will start it on
177
+ # the first use (with startup lag on the first request)
178
+ systemctl enable puma.socket puma.service
179
+
180
+ # Initial startup. The Requires directive (see above) ensures the
181
+ # socket is started before the service.
182
+ systemctl start puma.socket puma.service
183
+
184
+ # Check the status of both socket and service.
185
+ systemctl status puma.socket puma.service
186
+
187
+ # A "hot" restart, with systemd keeping puma.socket listening and
188
+ # providing to the new puma (master) instance.
189
+ systemctl restart puma.service
190
+
191
+ # A normal restart, needed to handle changes to
192
+ # puma.socket, such as changing the ListenStream ports. Note
193
+ # daemon-reload (above) should be run first.
194
+ systemctl restart puma.socket puma.service
195
+ ~~~~
196
+
197
+ Here is sample output from `systemctl status` with both service and socket
198
+ running:
199
+
200
+ ~~~~
201
+ ● puma.socket - Puma HTTP Server Accept Sockets
202
+ Loaded: loaded (/etc/systemd/system/puma.socket; enabled; vendor preset: enabled)
203
+ Active: active (running) since Thu 2016-04-07 08:40:19 PDT; 1h 2min ago
204
+ Listen: 0.0.0.0:9233 (Stream)
205
+ 0.0.0.0:9234 (Stream)
206
+
207
+ Apr 07 08:40:19 hx systemd[874]: Listening on Puma HTTP Server Accept Sockets.
208
+
209
+ ● puma.service - Puma HTTP Server
210
+ Loaded: loaded (/etc/systemd/system/puma.service; enabled; vendor preset: enabled)
211
+ Active: active (running) since Thu 2016-04-07 08:40:19 PDT; 1h 2min ago
212
+ Main PID: 28320 (ruby)
213
+ CGroup: /system.slice/puma.service
214
+ ├─28320 puma 3.3.0 (tcp://0.0.0.0:9233,ssl://0.0.0.0:9234?key=key.pem&cert=cert.pem) [app]
215
+ ├─28323 puma: cluster worker 0: 28320 [app]
216
+ └─28327 puma: cluster worker 1: 28320 [app]
217
+
218
+ Apr 07 08:40:19 hx puma[28320]: Puma starting in cluster mode...
219
+ Apr 07 08:40:19 hx puma[28320]: * Version 3.3.0 (ruby 2.2.4-p230), codename: Jovial Platypus
220
+ Apr 07 08:40:19 hx puma[28320]: * Min threads: 0, max threads: 16
221
+ Apr 07 08:40:19 hx puma[28320]: * Environment: production
222
+ Apr 07 08:40:19 hx puma[28320]: * Process workers: 2
223
+ Apr 07 08:40:19 hx puma[28320]: * Phased restart available
224
+ Apr 07 08:40:19 hx puma[28320]: * Activated tcp://0.0.0.0:9233
225
+ Apr 07 08:40:19 hx puma[28320]: * Activated ssl://0.0.0.0:9234?key=key.pem&cert=cert.pem
226
+ Apr 07 08:40:19 hx puma[28320]: Use Ctrl-C to stop
227
+ ~~~~
228
+
229
+ ### capistrano3-puma
230
+
231
+ By default, [capistrano3-puma](https://github.com/seuros/capistrano-puma) uses
232
+ `pumactl` for deployment restarts outside of systemd. To learn the exact
233
+ commands that this tool would use for `ExecStart` and `ExecStop`, use the
234
+ following `cap` commands in dry-run mode, and update from the above forking
235
+ service configuration accordingly. Note also that the configured `User` should
236
+ likely be the same as the capistrano3-puma `:puma_user` option.
237
+
238
+ ~~~~ sh
239
+ stage=production # or different stage, as needed
240
+ cap $stage puma:start --dry-run
241
+ cap $stage puma:stop --dry-run
242
+ ~~~~
243
+
244
+ ### Disabling Puma Systemd Integration
245
+
246
+ If you would like to disable Puma's systemd integration, for example if you handle it elsewhere
247
+ in your code yourself, simply set the the environment variable `PUMA_SKIP_SYSTEMD` to any value.
248
+
249
+
250
+
251
+ [Restart]: https://www.freedesktop.org/software/systemd/man/systemd.service.html#Restart=
252
+ [#1367]: https://github.com/puma/puma/issues/1367
253
+ [#1499]: https://github.com/puma/puma/issues/1499
@@ -0,0 +1,150 @@
1
+ # Testing - benchmark/local files
2
+
3
+ These files generate data that shows request-per-second (RPS), etc. Typically, files are in
4
+ pairs, a shell script and a Ruby script. The shell script starts the server, then runs the
5
+ Ruby file, which starts client request stream(s), then collects and logs metrics.
6
+
7
+ ## response_time_wrk.sh
8
+
9
+ This uses [wrk] for generating data. One or more wrk runs are performed. Summarizes RPS and
10
+ wrk latency times. The default for the `-b` argument runs 28 different client request streams,
11
+ and takes a bit over 5 minutes. See 'Request Stream Configuration' below for `-b` argument
12
+ description.
13
+
14
+ <details>
15
+ <summary>Summary output for<br/><code>benchmarks/local/response_time_wrk.sh -w2 -t5:5 -s tcp6</code>:</summary>
16
+
17
+ ```
18
+ Type req/sec 50% 75% 90% 99% 100% Resp Size
19
+ ───────────────────────────────────────────────────────────────── 1kB
20
+ array 13710 0.74 2.52 5.23 7.76 37.45 1024
21
+ chunk 13502 0.76 2.55 5.28 7.84 11.23 1042
22
+ string 13794 0.74 2.51 5.20 7.75 14.07 1024
23
+ io 9615 1.16 3.45 7.13 10.57 15.75 1024
24
+ ───────────────────────────────────────────────────────────────── 10kB
25
+ array 13458 0.76 2.57 5.31 7.93 13.94 10239
26
+ chunk 13066 0.78 2.64 5.46 8.18 38.48 10320
27
+ string 13500 0.76 2.55 5.29 7.88 11.42 10240
28
+ io 9293 1.18 3.59 7.39 10.94 16.99 10240
29
+ ───────────────────────────────────────────────────────────────── 100kB
30
+ array 11315 0.96 3.06 6.33 9.49 17.69 102424
31
+ chunk 9916 1.10 3.48 7.20 10.73 15.14 103075
32
+ string 10948 1.00 3.17 6.57 9.83 17.88 102378
33
+ io 8901 1.21 3.72 7.48 11.27 59.98 102407
34
+ ───────────────────────────────────────────────────────────────── 256kB
35
+ array 9217 1.15 3.82 7.88 11.74 17.12 262212
36
+ chunk 7339 1.45 4.76 9.81 14.63 22.70 264007
37
+ string 8574 1.19 3.81 7.73 11.21 15.80 262147
38
+ io 8911 1.19 3.80 7.55 15.25 60.01 262183
39
+ ───────────────────────────────────────────────────────────────── 512kB
40
+ array 6951 1.49 5.03 10.28 15.90 25.08 524378
41
+ chunk 5234 2.03 6.56 13.57 20.46 32.15 527862
42
+ string 6438 1.55 5.04 10.12 16.28 72.87 524275
43
+ io 8533 1.15 4.62 8.79 48.15 70.51 524327
44
+ ───────────────────────────────────────────────────────────────── 1024kB
45
+ array 4122 1.80 15.59 41.87 67.79 121.00 1048565
46
+ chunk 3158 2.82 15.22 31.00 71.39 99.90 1055654
47
+ string 4710 2.24 6.66 13.65 20.38 70.44 1048575
48
+ io 8355 1.23 3.95 7.94 14.08 68.54 1048498
49
+ ───────────────────────────────────────────────────────────────── 2048kB
50
+ array 2454 4.12 14.02 27.70 43.48 88.89 2097415
51
+ chunk 1743 6.26 17.65 36.98 55.78 92.10 2111358
52
+ string 2479 4.38 12.52 25.65 38.44 95.62 2097502
53
+ io 8264 1.25 3.83 7.76 11.73 65.69 2097090
54
+
55
+ Body ────────── req/sec ────────── ─────── req 50% times ───────
56
+ KB array chunk string io array chunk string io
57
+ 1 13710 13502 13794 9615 0.745 0.757 0.741 1.160
58
+ 10 13458 13066 13500 9293 0.760 0.784 0.759 1.180
59
+ 100 11315 9916 10948 8901 0.960 1.100 1.000 1.210
60
+ 256 9217 7339 8574 8911 1.150 1.450 1.190 1.190
61
+ 512 6951 5234 6438 8533 1.490 2.030 1.550 1.150
62
+ 1024 4122 3158 4710 8355 1.800 2.820 2.240 1.230
63
+ 2048 2454 1743 2479 8264 4.120 6.260 4.380 1.250
64
+ ─────────────────────────────────────────────────────────────────────
65
+ wrk -t8 -c16 -d10s
66
+ benchmarks/local/response_time_wrk.sh -w2 -t5:5 -s tcp6 -Y
67
+ Server cluster mode -w2 -t5:5, bind: tcp6
68
+ Puma repo branch 00-response-refactor
69
+ ruby 3.2.0dev (2022-06-14T01:21:55Z master 048f14221c) +YJIT [x86_64-linux]
70
+
71
+ [2136] - Gracefully shutting down workers...
72
+ [2136] === puma shutdown: 2022-06-13 21:16:13 -0500 ===
73
+ [2136] - Goodbye!
74
+
75
+ 5:15 Total Time
76
+ ```
77
+ </details><br/>
78
+
79
+ ## bench_base.sh, bench_base.rb
80
+
81
+ These two files setup parameters for the Puma server, which is normally started in a shell
82
+ script. It then starts a Ruby file (a subclass of BenchBase), passing arguments to it. The
83
+ Ruby file is normally used to generate a client request stream(s).
84
+
85
+ ### Puma Configuration
86
+
87
+ The following arguments are used for the Puma server:
88
+
89
+ * **`-C`** - configuration file
90
+ * **`-d`** - app delay
91
+ * **`-r`** - rackup file, often defaults to test/rackup/ci_select.ru
92
+ * **`-s`** - bind socket type, default is tcp/tcp4, also tcp6, ssl/ssl4, ssl6, unix, or aunix
93
+ (unix & abstract unix are not available with wrk).
94
+ * **`-t`** - threads, expressed as '5:5', same as Puma --thread
95
+ * **`-w`** - workers, same as Puma --worker
96
+ * **`-Y`** - enable Ruby YJIT
97
+
98
+ ### Request Stream Configuration
99
+
100
+ The following arguments are used for request streams:
101
+
102
+ * **`-b`** - response body configuration. Body type options are a array, c chunked, s string,
103
+ and i for File/IO. None or any combination can be specified, they should start the option.
104
+ Then, any combination of comma separated integers can be used for the response body size
105
+ in kB. The string 'ac50,100' would create four runs, 50kb array, 50kB chunked, 100kB array,
106
+ and 100kB chunked. See 'Testing - test/rackup/ci-*.ru files' for more info.
107
+ * **`-c`** - connections per client request stream thread, defaults to 2 for wrk.
108
+ * **`-D`** - duration of client request stream in seconds.
109
+ * **`-T`** - number of threads in the client request stream. For wrk, this defaults to
110
+ 80% of Puma workers * max_threads.
111
+
112
+ ### Notes - Configuration
113
+
114
+ The above lists script arguments.
115
+
116
+ `bench_base.sh` contains most server defaults. Many can be set via ENV variables.
117
+
118
+ `bench_base.rb` contains the client request stream defaults. The default value for
119
+ `-b` is `acsi1,10,100,256,512,1024,2048`, which is a 4 x 7 matrix, and hence, runs
120
+ 28 jobs. Also, the i body type (File/IO) generates files, they are placed in the
121
+ `"#{Dir.tmpdir}/.puma_response_body_io"` directory, which is created.
122
+
123
+ ### Notes - wrk
124
+
125
+ The shell scripts use `-T` for wrk's thread count, since `-t` is used for Puma
126
+ server threads. Regarding the `-c` argument, wrk has an interesting behavior.
127
+ The total number of connections is set by `(connections/threads).to_i`. The scripts
128
+ here use `-c` as connections per thread. Hence, using `-T4 -c2` will yield a total
129
+ of eight wrk connections, two per thread. The equivalent wrk arguments would be `-t4 -c8`.
130
+
131
+ Puma can only process so many requests, and requests will queue in the backlog
132
+ until Puma can respond to them. With wrk, if the number of total connections is
133
+ too high, one will see the upper latency times increase, pushing into the lower
134
+ latency times as the connections are increased. The default values for wrk's
135
+ threads and connections were chosen to minimize requests' time in the backlog.
136
+
137
+ An example with four wrk runs using `-b s10`. Notice that `req/sec` varies by
138
+ less than 1%, but the `75%` times increase by an order of magnitude:
139
+ ```
140
+ req/sec 50% 75% 90% 99% 100% Resp Size wrk cmd line
141
+ ─────────────────────────────────────────────────────────────────────────────
142
+ 13597 0.755 2.550 5.260 7.800 13.310 12040 wrk -t8 -c16 -d10
143
+ 13549 0.793 4.430 8.140 11.220 16.600 12002 wrk -t10 -c20 -d10
144
+ 13570 1.040 25.790 40.010 49.070 58.300 11982 wrk -t8 -c64 -d10
145
+ 13684 1.050 25.820 40.080 49.160 66.190 12033 wrk -t16 -c64 -d10
146
+ ```
147
+ Finally, wrk's output may cause rounding errors, so the response body size calculation is
148
+ imprecise.
149
+
150
+ [wrk]: <https://github.com/ioquatix/wrk>
@@ -0,0 +1,36 @@
1
+ # Testing - test/rackup/ci-*.ru files
2
+
3
+ ## Overview
4
+
5
+ Puma should efficiently handle a variety of response bodies, varying both by size
6
+ and by the type of object used for the body.
7
+
8
+ Five rackup files are located in 'test/rackup' that can be used. All have their
9
+ request body size (in kB) set via `Body-Conf` header or with `ENV['CI_BODY_CONF']`.
10
+ Additionally, the ci_select.ru file can have it's body type set via a starting
11
+ character.
12
+
13
+ * **ci_array.ru** - body is an `Array` of 1kB strings. `Content-Length` is not set.
14
+ * **ci_chunked.ru** - body is an `Enumerator` of 1kB strings. `Content-Length` is not set.
15
+ * **ci_io.ru** - body is a File/IO object. `Content-Length` is set.
16
+ * **ci_string.ru** - body is a single string. `Content-Length` is set.
17
+ * **ci_select.ru** - can be any of the above.
18
+
19
+ All responses have 25 headers, total length approx 1kB. ci_array.ru and ci_chunked.ru
20
+ contain 1kB items.
21
+
22
+ All can be delayed by a float value (seconds) specified by the `Dly` header
23
+
24
+ Note that rhe `Body-Conf` header takes precedence, and `ENV['CI_BODY_CONF']` is
25
+ only read on load.
26
+
27
+ ## ci_select.ru
28
+
29
+ The ci_select.ru file allows a starting character to specify the body type in the
30
+ `Body-Conf` header or with `ENV['CI_BODY_CONF']`.
31
+ * **a** - array of strings
32
+ * **c** - chunked (enum)
33
+ * **s** - single string
34
+ * **i** - File/IO
35
+
36
+ A value of `a100` would return a body as an array of 100 1kB strings.
@@ -0,0 +1,17 @@
1
+ package puma;
2
+
3
+ import java.io.IOException;
4
+
5
+ import org.jruby.Ruby;
6
+ import org.jruby.runtime.load.BasicLibraryService;
7
+
8
+ import org.jruby.puma.Http11;
9
+ import org.jruby.puma.MiniSSL;
10
+
11
+ public class PumaHttp11Service implements BasicLibraryService {
12
+ public boolean basicLoad(final Ruby runtime) throws IOException {
13
+ Http11.createHttp11(runtime);
14
+ MiniSSL.createMiniSSL(runtime);
15
+ return true;
16
+ }
17
+ }
@@ -0,0 +1,65 @@
1
+ require 'mkmf'
2
+
3
+ dir_config("puma_http11")
4
+
5
+ if $mingw
6
+ append_cflags '-fstack-protector-strong -D_FORTIFY_SOURCE=2'
7
+ append_ldflags '-fstack-protector-strong -l:libssp.a'
8
+ have_library 'ssp'
9
+ end
10
+
11
+ unless ENV["PUMA_DISABLE_SSL"]
12
+ # don't use pkg_config('openssl') if '--with-openssl-dir' is used
13
+ has_openssl_dir = dir_config('openssl').any? ||
14
+ RbConfig::CONFIG['configure_args']&.include?('openssl')
15
+
16
+ found_pkg_config = !has_openssl_dir && pkg_config('openssl')
17
+
18
+ found_ssl = if !$mingw && found_pkg_config
19
+ puts '──── Using OpenSSL pkgconfig (openssl.pc) ────'
20
+ true
21
+ elsif have_library('libcrypto', 'BIO_read') && have_library('libssl', 'SSL_CTX_new')
22
+ true
23
+ elsif %w'crypto libeay32'.find {|crypto| have_library(crypto, 'BIO_read')} &&
24
+ %w'ssl ssleay32'.find {|ssl| have_library(ssl, 'SSL_CTX_new')}
25
+ true
26
+ else
27
+ puts '** Puma will be compiled without SSL support'
28
+ false
29
+ end
30
+
31
+ if found_ssl
32
+ have_header "openssl/bio.h"
33
+
34
+ ssl_h = "openssl/ssl.h".freeze
35
+
36
+ puts "\n──── Below are yes for 1.0.2 & later ────"
37
+ have_func "DTLS_method" , ssl_h
38
+ have_func "SSL_CTX_set_session_cache_mode(NULL, 0)", ssl_h
39
+
40
+ puts "\n──── Below are yes for 1.1.0 & later ────"
41
+ have_func "TLS_server_method" , ssl_h
42
+ have_func "SSL_CTX_set_min_proto_version(NULL, 0)" , ssl_h
43
+
44
+ puts "\n──── Below is yes for 1.1.0 and later, but isn't documented until 3.0.0 ────"
45
+ # https://github.com/openssl/openssl/blob/OpenSSL_1_1_0/include/openssl/ssl.h#L1159
46
+ have_func "SSL_CTX_set_dh_auto(NULL, 0)" , ssl_h
47
+
48
+ puts "\n──── Below is yes for 1.1.1 & later ────"
49
+ have_func "SSL_CTX_set_ciphersuites(NULL, \"\")" , ssl_h
50
+
51
+ puts "\n──── Below is yes for 3.0.0 & later ────"
52
+ have_func "SSL_get1_peer_certificate" , ssl_h
53
+
54
+ puts ''
55
+ end
56
+ end
57
+
58
+ if ENV["PUMA_MAKE_WARNINGS_INTO_ERRORS"]
59
+ # Make all warnings into errors
60
+ # Except `implicit-fallthrough` since most failures comes from ragel state machine generated code
61
+ append_cflags(config_string('WERRORFLAG') || '-Werror')
62
+ append_cflags '-Wno-implicit-fallthrough'
63
+ end
64
+
65
+ create_makefile("puma/puma_http11")