Topic 2 Question 45
Which of the following is not true about Dataflow pipelines?
Pipelines are a set of operations
Pipelines represent a data processing job
Pipelines represent a directed graph of steps
Pipelines can share data between instances
解説
The data and transforms in a pipeline are unique to, and owned by, that pipeline. While your program can create multiple pipelines, pipelines cannot share data or transforms Reference: https://cloud.google.com/dataflow/model/pipelines
コメント(3)
Answer: D Description: Pipeline cannot share data between instances
👍 8[Removed]2020/03/28Answer : D
👍 5[Removed]2020/03/21D: In the Dataflow SDKs, a pipeline represents a data processing job. You build a pipeline by writing a program using a Dataflow SDK. A pipeline consists of a set of operations that can read a source of input data, transform that data, and write out the resulting output. The data and transforms in a pipeline are unique to, and owned by, that pipeline. While your program can create multiple pipelines, pipelines cannot share data or transforms. https://cloud.google.com/dataflow/model/pipelines
👍 3daghayeghi2021/03/03
シャッフルモード