scottyscripts

scottyscripts

Question about processing batches of messages using Broadway and SQS FIFO queue

I am currently building a Broadway pipeline using Broadway SQS (BroadwaySQS.Producer) and an SQS FIFO queue.

My SQS queue contains messages of:

  • type_a
  • type_b
  • type_c

When the message is added to the queue, I am adding a custom message attribute “type” which is a string representing one of the above types.
Using a FIFO queue since it is important that messages are processed in order, despite their types.
All messages have the same Message Group Id to ensure they are processed in order within my FIFO queue.

I have a handle_message callback for each message “type”. I put messages into one of three batches (one batch per each type)

  def handle_message(_, %{metadata: %{message_attributes: %{"type" => %{value: "type_a"}}}} = message, _) do
    IO.puts("message of type_a")
    message
    |> Message.put_batcher(:type_a)
  end
  
  def handle_message(_, %{metadata: %{message_attributes: %{"type" => %{value: "type_b"}}}} = message, _) do
    IO.puts("message of type_b")
    message
    |> Message.put_batcher(:type_b)
  end

  def handle_message(_, %{metadata: %{message_attributes: %{"type" => %{value: "type_c"}}}} = message, _) do
    IO.puts("message of type_c")
    message
    |> Message.put_batcher(:type_c)
  end

Messages are being received in an expected order. (Verified with puts statements)

i.e. If I enqueue

  1. message type_a
  2. message type_b
  3. message type_c
  4. message type_c
  5. message type_a
    The IO.puts statement from each handle_message callback prints messages in this order in my console.

However, in this example, my handle_batch callback is firing in the following order:

  1. handle_batch for :type_b
  2. handle_batch for :type_a
  3. handle_batch for :type_c

This creates a problem since the first message put in my FIFO queue (message type_a) is actually being processed after the second message (message type_b).

Is there a way that I can force my handle_batch callbacks fire in the order I would want, ensuring that message batches are processed based on the order of messages in my queue?

  1. handle_batch for :type_a
  2. handle_batch for :type_b
  3. handle_batch for :type_c

Perhaps this is not possible with Broadway, or I should be using a different pattern?
Do I need to create my own GenStage producer implementation?

Thanks!

Update:
I guess I could use one batcher, split up messages in the single handle_batch callback, and process my different “type” messages in that same callback… Something like

  def handle_message(_, message, _) do
    message
    |> Message.update_data(# update data)
  end

  def handle_batch(_, messages, _, _) do
    messages_by_type = messages |> Enum.group_by(
      fn m -> m.metadata.message_attributes["type"].value end,
      fn m -> m.data end
    )

   if Map.has_key?(messages_by_type, "type_a") do
    messages_by_type
    |> Map.fetch!("type_a")
    |> # process batch of type a
  end

   if Map.has_key?(messages_by_type, "type_b") do
    messages_by_type
    |> Map.fetch!("type_b")
    |> # process batch of type b
  end

   if Map.has_key?(messages_by_type, "type_c") do
    messages_by_type
    |> Map.fetch!("type_c")
    |> # process batch of type c
  end
  messages
end

The only problem here is that if processing of type_a messages succeeds, but processing of batch b throws an error, the messages of type_a will be marked as failed, even though they were successfully processed… There has to be a better solution

Most Liked

msaraiva

msaraiva

Broadway Core Team

Hi @scottyscripts!

Broadway will only be able to guarantee message ordering after we add producer-based partitioning/hashing. We’re already working on this issue since it’s a requirement for the Kafka connector.

msaraiva

msaraiva

Broadway Core Team

The problem is that this pattern cannot guarantee order either unless you have just one stage for each layer (i.e. 1 producer, 1 processor and so on). Otherwise, the batcher can still receive chunks of messages that, even after sorting, will have gaps in the sequence due to messages that took longer to process and will arrive in a later chunk. I believe you’ll be able to see this more clearly if you start consuming a lot of data. So, in short, if you want to use Broadway and keep the order of messages you have to:

  1. Define one stage throughout the whole pipeline (no parallelism)
  2. If you need parallelism, you’ll have to start multiple pipelines

that will be until we have partitioning built-in.

msaraiva

msaraiva

Broadway Core Team

Support for partition_by in processors and batchers has been added to v0.5.0.

Where Next?

Popular in Questions Top

Tee
can someone please explain to me how Enum.reduce works with maps
New
bsollish-terakeet
Credo is smart enough to check for (something like) this: assert length(the_list) == 0 with this response: Checking if an enum is empt...
New
albydarned
Hello all! I am typing this post from my new MacBook Pro with the M1 chip. I’m loving it so far, and will probably use it as my daily dr...
New
ycv005
I have followed this StackOverflow post to install the specific version of Erlang. And When I am running mix ecto.setup then getting fol...
New
New
Harrisonl
We have an ECS cluster with 4 services, where each task joins a single cluster, via discovery ECS discovery service. Currently when I de...
New
mcarvalho
What is the difference between System.get_env and Application.get_env? For example, what are best practices to use one versus another.
New
minhajuddin
I have seen a lot of code which picks the first element from a list using Enum.at(0) instead of List.first. Is there a reason why people ...
New
baxterw3b
Hi guys, i’m new in the Elixir world, and i have to say, that i love it! i’m having some problem to understand anonymous functions with ...
New
joeerl
Hello again - after a longish gap I’ve decided I really must dig into Elixir and see what’s been happening here - so I have a few questio...
New

Other popular topics Top

JDanielMartinez
Hi! May someone helps me, please! I have two apps into an umbrella project: the first one is Database, which manages queries, and the se...
New
peerreynders
Manning 2016 Halloween weekend sale via Deal of the Day Friday, October 28 - Half off all MEAPs - code WM102816LT Saturday, October 29 ...
326 29600 154
New
srinivasu
How to handle excepions in elixir? Suppose i have A, B, C ,D, E modules. and each module has get() function. A.get() method will call th...
New
grych
Hi folks, Few months ago I have announced the proof-of-concept of the library to manipulate the browsers DOM objects directly from Elixi...
639 49522 488
New
malloryerik
Hi, this is for people who, like me, have had some friction using .html.heex templates in VSCode. The solution seems to be, in a hyphena...
New
minhajuddin
I have seen a lot of code which picks the first element from a list using Enum.at(0) instead of List.first. Is there a reason why people ...
New
ashish173
I am using Ecto timestamps with postgres, I can see the timestamps() use the :naive_dateime but for my use case I wanted to store the ti...
New
alice
Hey, Just curious what are the main benefits of Elixir compared to Clojure? When is Elixir more useful than Clojure and vice versa? Th...
New
stefanluptak
Hello everybody, usually, I use a 29" ultra-wide monitor for VSCode which can easily accomodate explorer (files panel) + file with code ...
New
magnetic
Hey :wave:t3: Elixir community, I’ve been learning Elixir, and working on some side projects. My editor of choice is VSCode, and althoug...
New

We're in Beta

About us Mission Statement