Integration Patterns: Queueing
When integrating API's, we sometimes have to tie together steps that can take a long time or might not always be available. If we force the callers of our API's to wait for completion, we find ourselves with some grumpy customers. So what can we do about this?
This is the third part in a five-part blog series on useful Integration Patterns. This blog series will help you build real-time, responsive applications and microservices that produce predictable results and prevent the Grumpy Customer Problem.
- Saga Transactions
- The Transactional Outbox Pattern
- [This Post] Queuing and Backpressure
- [Coming soon] Retries and Dead-Letter Queues
- [Coming soon] Callbacks and External Events
Why Queue?โ
In software architecture, simple is almost always better. With fewer moving parts, there are less chances for failure, less things to debug, and fewer pieces of infrastructure. So when and why would you introduce queues to your architecture?
Queues are useful when building services that need to accept a request from a client and then execute some processing which has any of the following characteristics:
- Slow to execute.
- Flakey, not always-available, or in need of retries.
- Have a rate limit or cannot gracefully handle spikey workloads (backpressure).
- Have multiple steps that need to all complete before the processing is finalized.
Crucially, if your service enqueues requests, you need to make sure that the caller of your API doesn't need to wait for their entire request to be processed: a simple promise that it will get done should be sufficient. As we will see with a practical example, this is feasible in many business cases.
Example: Reviews Applicationโ
Consider a product reviews widget on an e-commerce site. In this application, users can submit reviews of a product. However, before a review can be approved to be displayed, it must first be checked for offensive content by a third-party AI service. Sometimes, this third-party service often has response times of over 10 seconds, and sometimes even goes down and is fully unavailable.
A naive web app endpoint to handle this use-case might be:
@PostMapping("/review")
public ResponseEntity<String> postReview(@RequestBody PostReviewRequest request) {
// Call the third-party AI service, which takes a long time and is flakey
try {
ReviewAnalysisResponse reviewAnalysis = thirdPartyService.analyzeReview(request);
} catch(OffensiveReviewException exn) {
return ResponseEntity.status(400);
} catch(Exception exn) {
return ResponseEntity.status(500);
}
// If we got here, the review is valid
reviewService.save(request);
return ResponseEntity.status(HttpStatus.CREATED);
}
As promised ( ๐ ), this endpoint implementation has a sub-optimal user experience. Many times, when the flakey third-party AI service is unavailable, users will simply be unable to post reviews. Even when it is up, users will see the spinning waiting wheel for multiple seconds.
The solution? Enqueue the request for processing later by some external system, and then respond immediately to the client's request. That can be done in two ways:
- Traditional Queuing: simply put a record on some queue, streaming system, or event bus (such as Apache Pulsar, Apache Kafka, or AWS SQS).
- Workflow Execution: tell a workflow orchestration engine like LittleHorse to start executing a process!
Once the request is enqueued, there will be a system polling the queue to call the third-party analytics API and then either reject or approve the review. This system will be responsible for throttling requests according to the API's service limits, retrying failed messages, and waiting for the API to come back online in the case of an intermittent outage.
Orchestrators vs. Plain Old Queuesโ
Workflow engines internally use message queues on their own! So what's the difference from the user perspective?
You can think of a workflow engine as a super-smart message queue, with certain clear advantages over message queues including advanced monitoring and better support for multi-step processes.
The next post in this series will take a deep-dive into retries, idempotency, and failure handling, which is another area in which workflow engines shine above and beyond Plain Old Queues.
Monitoring and Debuggingโ
Workflow engines provide more insight and oversight into your processes than do message queues. In our reviews application, if an angry user (anakin@jeditemple.com
) calls customer support to complain that his review hadn't been processed in over two days, it would be tricky to find the exact cause with a pure message queue.
However, with LittleHorse, you just search for the WfRun
where user-id == anakin@jeditemple.com
:
and then look on the dashboard to see what went wrong:
We are also working on workflow metrics that will allow you to use LittleHorse to answer questions such as:
- How long does the
process-review
workflow take on average? - How long does each
analyze-review
task attempt take on average, and what percentage of calls fail (i.e. how responsive is the API)? - What percentage of reviews are approved versus rejected?
These will likely not be available until March 2025; however, we have nearly finalized the designs for them and have scheduled the implementation to start in January.
Multi-Step Processesโ
So far, the use-case we've discussed involves only two "steps" to be executed:
- Analyze the product review.
- Post the review to the site.
You could arguably execute both steps at once: the only problem we are trying to solve is that we have a flakey API and we don't want our customers to have to wait for it. In theory, the same consumer which calls the external API could also update the visibility of the review to APPROVED
.
But what if the business requirements change, and we need to do some post-processing, such as notify a separately-managed (and also flakey) analytics service of what happened? That would require adding another queue:
- Edit our original consumer to publish to a new queue.
- Write a new consumer that subscribes to the second queue and notifies the flakey analytics service.
- Instrument monitoring for the new queue infrastructure.
This gets especially tricky when we want to handle intermittent availability from the analytics service: we'll have to copy the same boilerplate to handle retries and dead-letter-queues (more on that in the next post).
However, with the workflow-driven approach, all you need to do is add a single line to your WfSpec
:
wf.execute("notify-analytics-service", userId, review, approvalStatus);
Wrapping Upโ
Queueing is a great tool to improve the client experience of your API's when you can respond to your callers before all of your processing has been done. Workflow engines like LittleHorse can actually be thought of as a super-smart queueing system, which provides all of the advantages of queueing plus better observability and support for multi-step processes.
Get Involved!โ
Stay tuned for the next post, which will cover retries and dead-letter queues! In the meantime:
- Try out our Quickstarts
- Join us on Slack
- Give us a star on GitHub!