Skip to main content

Selector

Random Select

Picks one option uniformly at random from a list each time the node runs.

Round Robin

Returns the next option in order on each run—cycles through the list. Often paired with stored state for fair rotation.

Balanced Select

Chooses the option with the lowest current count so counts stay even over time. Can manage counters internally or accept manual balance inputs depending on configuration.