DEV Community

Cover image for Asynchronous Background Processing for Ruby or Rails using AWS Lambda Extensions.
Ken Collins for AWS Heroes

Posted on • Updated on

Asynchronous Background Processing for Ruby or Rails using AWS Lambda Extensions.

Ever since writing this post last year on Using New Relic APM with Rails on AWS Lambda, I have always wanted to find a way to send APM data in a way that did not add extra milliseconds to the application's response times. Likewise, for smaller projects it would be nice to have a lightweight alternative to Lambdakiq for ActiveJob. Something similar to Brandon Hilkert's popular SuckerPunch gem. Today we have both with the LambdaPunch gem.

LambdaPunch: Async Processing using Lambda Extensions

Since this is my first, dive into the now generally available Lambda Extensions API, I'd like to share a little bit of how LambdaPunch works. Huge credit to AWS Community Builder Duarte Nunes for this post Building an AWS Lambda extension with Rust which is a great in-depth read on how to author Lambda Extensions. Following is what makes our Ruby/Rails extension interesting.

🏗 Architecture

Because AWS Lambda freezes the execution environment after each invoke, there is no "process" that continues to run after the handler's response. However, thanks to Lambda Extensions along with its "early return", we can do two important things. First, we leverage the rb-inotify gem to send the extension process a simulated POST-INVOKE event. We then use Distributed Ruby (DRb) from the extension to signal your application to work jobs off a queue. Both of these are synchronous calls. Once complete the LambdaPunch extensions signals it is done and your function is ready for the next request.

LambdaPunch Ruby Extension Sequence Diagrm

The LambdaPunch extension process is very small and lean. It only requires a few Ruby libraries and needed gems from your application's bundle. Its only job is to send signals back to your application on the runtime. It does this within a few milliseconds and adds no noticeable overhead to your function.

🎁 Installation

Add this line to your project's Gemfile and then make sure to bundle install afterward.

gem 'lambda_punch'
Enter fullscreen mode Exit fullscreen mode

Now, within your application's handler file, make sure to start the LambdaPunch DRb server outside of your handler method. Within the handler method, add an ensure section that lets the extension process know the request is done.

LambdaPunch.start_server!

def handler(event:, context:)
  # ...
ensure
  LambdaPunch.handled!(context)
end
Enter fullscreen mode Exit fullscreen mode

Within your project or Rails application's Dockerfile, after you copy your code, add this RUN command to install the extension within your container's /opt/extensions directory.

RUN bundle exec rake lambda_punch:install
Enter fullscreen mode Exit fullscreen mode

If you are using LambdaPunch with a non-Rails project, add this to your Rake file

spec = Gem::Specification.find_by_name 'lambda_punch'
load "#{spec.gem_dir}/lib/lambda_punch/tasks/install.rake"
Enter fullscreen mode Exit fullscreen mode

🧰 Usage

Anywhere in your application's code, use the LambdaPunch.push method to add blocks of code to your jobs queue.

LambdaPunch.push do
  # ...
end
Enter fullscreen mode Exit fullscreen mode

For example, if you are using Rails with AWS Lambda via the Lamby gem along with New Relic APM here is how your handler function might appear to ensure their metrics are flushed after each request.

def handler(event:, context:)
  Lamby.handler $app, event, context
ensure
  LambdaPunch.push { NewRelic::Agent.agent.flush_pipe_data }
  LambdaPunch.handled!(context)
end
Enter fullscreen mode Exit fullscreen mode

ActiveJob

You can use LambdaPunch with Rails' ActiveJob. For a more robust background job solution, please consider using AWS SQS with the Lambdakiq gem.

config.active_job.queue_adapter = :lambda_punch
Enter fullscreen mode Exit fullscreen mode

Timeouts

Your function's timeout is the max amount to handle the request and process all extension's invoke events. If your function times out, it is possible that queued jobs will not be processed until the next invoke.

If your application integrates with API Gateway (which has a 30 second timeout) then it is possible your function can be set with a higher timeout to perform background work. Since work is done after each invoke, the LambdaPunch queue should be empty when your function receives the SHUTDOWN event. If jobs are in the queue when this happens they will have two seconds max to work them down before being lost.

For a more robust background job solution, please consider using AWS SQS with the Lambdakiq gem.

Logging

The default log level is error, so you will not see any LambdaPunch lines in your logs. However, if you want some low level debugging information on how LambdaPunch is working, you can use this environment variable to change the log level.

Environment:
  Variables:
    LAMBDA_PUNCH_LOG_LEVEL: debug
Enter fullscreen mode Exit fullscreen mode

Errors

As jobs are worked off the queue, all job errors are simply logged. If you want to customize this, you can set your own error handler.

LambdaPunch.error_handler = lambda { |e| ... }
Enter fullscreen mode Exit fullscreen mode

📊 CloudWatch Metrics

When using Extensions, your function's CloudWatch Duration metrics will be the sum of your response time combined with your extension's execution time. For example, if your request takes 200ms to respond but your background task takes 1000ms your duration will be a combined 1200ms. For more details see the "Performance impact and extension overhead" section of the Lambda Extensions API

Thankfully, when using Lambda Extensions, CloudWatch will create a PostRuntimeExtensionsDuration metric that you can use to isolate your true response times Duration using some metric math. Here is an example where the metric math above is used in the first "Duration (response)" widget.

CloudWatch Metric Math

CloudWatch Durations

Top comments (0)

Some comments have been hidden by the post's author - find out more