Reputation: 8820
When you submit an Apache Beam program to Google Cloud Platform's Dataflow product, you can see a graph of the various stages of your pipeline, whether they are running and how quickly, etc (see screenshot at bottom).
Sometimes a stage will have the status Part Running
. Sometimes it can even have that status before the previous stage is Running
. What does Part Running
mean?
Upvotes: 0
Views: 73
Reputation: 469
Part Running means "Partial Running", when using transforms that contains multiple nested sub-transforms, it is called composite transforms.
If you open the step you could see other transformations running or waiting, when both states occur, you are getting "Part running"
Upvotes: -1
Reputation: 75890
If you expend the step (with the arrow in the upper right) you could see all the steps that compose this macro step. Some are running, other are waiting.
By the way, the summary of the macro step is "partial running".
Upvotes: 2