πŸ“„ to_list_by_commaΒΆ

Note

ID: processors.to_list_by_comma | Type: SequentialOperator

{
    "steps": [
        {
            "field": "prediction",
            "process_every_value": false,
            "type": "to_list_by_comma"
        },
        {
            "field": "references",
            "process_every_value": true,
            "type": "to_list_by_comma"
        }
    ],
    "type": "sequential_operator"
}

Explanation about SequentialOperatorΒΆ

A class representing a sequential operator in the streaming system.

A sequential operator is a type of MultiStreamOperator that applies a sequence of other operators to a MultiStream. It maintains a list of StreamingOperator`s and applies them in order to the `MultiStream.

Read more about catalog usage here.