A が出力を生成しない場合に、PTransform B を PTransform A に依存させる方法はありますか? それとも、副入力として B に供給されるダミー出力を A に生成させる必要がありますか? ユースケースの例は、次のパイプラインが必要な場合です。
Z = read file
A = count lines in file, and throw error if there are no lines
B = do something with the file
A が終了した後にのみ B を開始したいのですが、A は B にとって有用な出力 PCollection を生成しません。