FIFO Queues

In the current version of Sybline there is only one type of queue, the “Mirrored FIFO-ish” Queue. This may seem a bit odd at first, but we will explain each of the terms to make this make more sense.

Mirrored

Sybline’s Queues are mirror, or replicated across clusters. This means that if one event happens in the “leader”, the same action is applied to the “follower”. Sybline uses the Raft consensus Algorithm to achieve this.

FIFO-ish

FIFO stands for “First-In-First-Out”

The queue offered by Sybline works in a FIFO style, but doesn’t the follow the exact specification of a traditional FIFO.

Items added to the queue are added to the end, but items at the beginning are not always removed first. Items at the front of the queue are selected and “locked” by a consumer, but items after the front of the queue can be remove.