When you are in the Pipeline Editor page of a standard or streaming pipeline, you might
want to rearrange the order that the blocks appear in the notebook. This could help with
organizing your pipeline or allow you to group your blocks a certain way.Keep in mind that reordering the blocks from the UI will change the order of
the blocks in your pipeline’s metadata.yaml configuration file.
Go to your pipeline’s Edit page (/pipelines/[pipeline_uuid]/edit).
Click on the block header of the block you want to move, and drag it
over the block whose position you want to move it to.
Dragging a block from below another block will move it to the position
above that block. Dragging a block from above another block will move it
to the position below that block.
Once you have the block in the position you want, drop the block.
The updated block order should be reflected in your pipeline’s
metadata.yaml file.
Reordering upstream blocks received as positional arguments
If a block has multiple upstream blocks, you can access the upstream blocks’ outputs via
the positional arguments of the downstream block’s decorated function. You can rearrange
these positional arguments by dragging and dropping the associated blocks using the same
steps as above for reordering blocks.