• Home

  • Custom Ecommerce
  • Application Development
  • Database Consulting
  • Cloud Hosting
  • Systems Integration
  • Legacy Business Systems
  • Security & Compliance
  • GIS

  • Expertise

  • About Us
  • Our Team
  • Clients
  • Blog
  • Careers

  • CasePointer

  • VisionPort

  • Contact
  • Our Blog

    Ongoing observations by End Point Dev people

    Packaging Ruby Enterprise Edition into RPM

    Adam Vollrath

    By Adam Vollrath
    June 16, 2009

    It’s unfortunate that past versions of Ruby have gained a reputation of performing poorly, consuming too much memory, or otherwise being “unfit for the enterprise.” According to the fine folks at Phusion, this is partly due to the way Ruby does memory management. And they’ve created an alternative branch of Ruby 1.8 called “Ruby Enterprise Edition.” This code base includes many significant patches to the stock Ruby code which dramatically improve performance.

    Phusion advertises an average memory savings of 33% when combined with Passenger, their Apache module for serving Rails apps. We did some testing of our own, using virtualized Xen servers from our Spreecamps.com offering. These servers use the DevCamps system to run several separate instances of httpd for each developer, so reducing the usage of Passenger was crucial to fitting into less than a gigabyte of memory. Our findings were dramatic: one instance dropped 100MB down to 40MB. (The status tools included with Passenger were very helpful in confirming this.)

    There has been some discussion on the Phusion Passenger and other mailing lists about packaging Ruby Enterprise Edition for Red Hat Enterprise Linux and its derivatives (CentOS and Fedora). Packages are available from Phusion for Ubuntu Linux, but many of our clients prefer RHEL’s reputation as a stable platform for e-commerce hosting. So we’ve packaged ruby-enterprise into RPM and made them available to give back to the community.

    We want our SpreeCamps systems to be easy to maintain, following the “Principle of Least Astonishment.” By default, Phusion’s script installs ruby-enterprise into /opt, so invocation must include the full path to the executable. This would be unsettling to a developer who mistakenly installed gems to Red Hat’s rubygems path while intending to install gems usable by REE and Passenger. It is important to install the ruby and gem executables into all users’ $PATH.

    We took a cue from our customized local-perl packages. These packages install themselves into /usr/local. This means that all executables reside in /usr/local/bin; no $PATH modifications are necessary to utilize them via the command-line. Our ruby-enterprise packages are configured the same way. (If another /usr/local/bin/ruby exists, package installation will fail before clobbering another ruby installation.) Applications which specify #!/usr/bin/ruby will continue to use Red Hat’s packaged ruby.

    Similar to a source-based installation, once these packages are installed you may do gem install passenger and any other gems your application needs. Phusion’s REE installer also installs several “useful gems”. However we elected not to include these in the main ruby-enterprise RPM package. More, smaller packages limited to a particular module or piece of software, is better than one or two big fat RPMs with a bunch of stuff you may or may not need. We will likely package individual gems in the near future.

    These packages are publicly available from our repository. We’ve just begun using these but are finding them reliable and very helpful so far. Any of you who would like to are welcome to try them out via direct download, or much easier, adding our Yum repository to your system as described at: https://packages.endpointdev.com/

    Once you’ve done that, a simple command should get you most of the way there:

    yum install ruby-enterprise ruby-enterprise-rubygems
    

    If you prefer to download them directly, the .rpm packages are available on that site as well, just browse through the repo.

    The .spec file is available for review and forking on GitHub: https://gist.github.com/axisofentropy/108940

    Many thanks to list member Tim Charper for providing an example .spec, and my colleagues at End Point for reviewing this work.

    We appreciate any comments or questions you may have. This package repo is for us and our clients primarily, but if there’s a package you need that isn’t in there, let us know and maybe we’ll add it.

    hosting redhat ruby spree


    Comments