jemalloc is a general purpose malloc implementation that works to avoid memory fragmentation in multithreaded applications. This buildpack makes it easy to install and use jemalloc on Heroku and compatible platforms.
heroku buildpacks:add --index 1 https://github.com/mojodna/heroku-buildpack-jemalloc.git
git push heroku master
Set the JEMALLOC_ENABLED config option to true and jemalloc will be used for all commands run inside of your dynos.
heroku config:set JEMALLOC_ENABLED=true
To control when jemalloc is configured on a per dyno basis use
jemalloc.sh <cmd>
and ensure that JEMALLOC_ENABLED is unset.
Example Procfile:
web: jemalloc.sh bundle exec puma -C config/puma.rb
Set this to true to automatically enable jemalloc.
heroku config:set JEMALLOC_ENABLED=true
To disable jemalloc set the option to false. This will cause the application to restart disabling jemalloc.
heroku config:set JEMALLOC_ENABLED=false
Set this to select or pin to a specific version of jemalloc. The default is to use the latest stable version if this is not set. You will receive an error mentioning tar if the version does not exist.
Default: 5.1.0
note: This setting is only used during slug compilation. Changing it will require a code change to be deployed in order to take affect.
heroku config:set JEMALLOC_VERSION=3.6.0
Version |
---|
3.6.0 |
4.0.4 |
4.1.1 |
4.2.1 |
4.3.1 |
4.4.0 |
4.5.0 |
5.0.1 |
5.1.0 |
The complete and most up to date list of supported versions and stacks is available on the releases page.
This uses Docker to build against Heroku stack-image-like images.
make VERSION=5.1.0
Artifacts will be dropped in dist/
based on Heroku stack and jemalloc version.
make VERSION=X.Y.Z
open dist
- Go to releases
- Edit the release corresponding to each heroku Stack
- Drag and drop the new build to attach
- Go to releases
- Click "Draft a new release"
- Tag is the name of the Stack (e.g.
heroku-18
) - Target is
release-master
- Title is
Builds for the [stack] stack