looker/puma

Name: puma

Owner: looker

Description: A ruby web server built for concurrency

Created: 2012-02-21 21:48:35.0

Updated: 2015-08-12 22:05:11.0

Pushed: 2017-09-06 17:44:37.0

Homepage:

Size: 7986

Language: Ruby

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

Puma: A Ruby Web Server Built For Concurrency

Gitter Build Status AppVeyor Dependency Status Code Climate

Puma is a simple, fast, threaded, and highly concurrent HTTP 1.1 server for Ruby/Rack applications in development and production.

Built For Speed & Concurrency

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.

Puma was designed to be the go-to server for Rubinius, but also works well with JRuby and MRI.

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.

Quick Start
m install puma
ma <any rackup (*.ru) file>
Frameworks
Rails

Puma is the default server for Rails, and should already be included in your Gemfile.

Then start your server with the rails command:

ils s

Many configuration options are not available when using rails s. It is recommended that you use Puma's executable instead:

ndle exec puma
Sinatra

You can run your Sinatra application with Puma from the command line like this:

by app.rb -s Puma

Or you can configure your application to always use Puma:

ire 'sinatra'
igure { set :server, :puma }
Configuration

Puma provides numerous options. Consult puma -h (or puma --help) for a full list of CLI options, or see dsl.rb.

Thread Pool

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:

ma -t 8:32

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).

Clustered mode

Puma also offers “clustered mode”. Clustered mode forks 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:

ma -t 8:32 -w 3

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.

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 (Ruby 2.0+ only). Use the --preload flag from the command line:

ma -w 3 --preload

If you're using a configuration file, use the preload_app! method:

nfig/puma.rb
ers 3
oad_app!

Additionally, you can specify a block in your configuration file that will be run on boot of each worker:

nfig/puma.rb
orker_boot do
configuration here

This code can be used to setup the process before booting the application, allowing you to do some Puma-specific things that you don't want to embed in your application. For instance, you could fire a log notification that a worker booted or send something to statsd. This can be called multiple times.

If you're preloading your application and using ActiveRecord, it's recommended that you setup your connection pool here:

nfig/puma.rb
orker_boot do
tiveSupport.on_load(:active_record) do
ActiveRecord::Base.establish_connection
d

On top of that, you can specify a block in your configuration file that will be run before workers are forked:

nfig/puma.rb
re_fork do
configuration here

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.

Binding TCP / Sockets

In contrast to many other server configs which require multiple flags, Puma simply uses one URI parameter with the -b (or --bind) flag:

ma -b tcp://127.0.0.1:9292

Want to use UNIX Sockets instead of TCP (which can provide a 5-10% performance boost)?

ma -b unix:///var/run/puma.sock

If you need to change the permissions of the UNIX socket, just add a umask parameter:

ma -b 'unix:///var/run/puma.sock?umask=0111'

Need a bit of security? Use SSL sockets:

ma -b 'ssl://127.0.0.1:9292?key=path_to_key&cert=path_to_cert'
Control/Status Server

Puma has a built-in status/control app that can be used to query and control Puma itself.

ma --control tcp://127.0.0.1:9293 --control-token foo

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 to see what the app has available.

You can also interact with the control server via pumactl. This command will restart Puma:

mactl restart --control-token foo

To see a list of pumactl options, use pumactl --help.

Configuration File

You can also provide a configuration file which Puma will use with the -C (or --config) flag:

ma -C /path/to/config

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.

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:

ma -C "-"

Take the following sample configuration as inspiration or check out dsl.rb to see all available options.

Restart

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.

For more, see the restart documentation.

Signals

Puma responds to several signals. A detailed guide to using UNIX signals with Puma can be found in the signals documentation.

Platform Constraints

Some platforms do not support all Puma features.

Known Bugs

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. It can be fixed with the gem https://rubygems.org/gems/stopgap_13632:

w(2.2.7 2.3.4 2.4.1).include? RUBY_VERSION
m "stopgap_13632", "~> 1.0", :platforms => ["mri", "mingw", "x64_mingw"]

Deployment

Puma has support for Capistrano with an external gem.

It is common to use process monitors with Puma. Modern process monitors like systemd or upstart provide continuous monitoring and restarts for increased reliability in production environments:

Contributing

To run the test suite:

ndle install
ndle exec rake
License

Puma is copyright Evan Phoenix and contributors, licensed under the BSD 3-Clause license. See the included LICENSE file for details.


This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.