在Dataflow上运行时缺少路径中的对象或存储桶

Tho*_*roh 5 google-cloud-dataflow apache-beam

尝试在Dataflow服务上运行管道时,我在命令行上指定了staging和temp buckets(在GCS中).当程序执行时,我在管道运行之前得到一个RuntimeException,其根本原因是我在路径中遗漏了一些东西.

Caused by: java.lang.RuntimeException: Failed to construct instance from factory method DataflowRunner#fromOptions(interface org.apache.beam.sdk.options.PipelineOptions) ... Caused by: java.lang.IllegalArgumentException: Missing object or bucket in path: 'gs://df-staging-bucket-57763/', did you mean: 'gs://some-bucket/df-staging-bucket-57763'?

gs://df-staging-bucket-57763/已存在于我的项目中,我可以访问它.我需要添加什么才能使其工作?

Tho*_*roh 8

DataflowRunner要求分段位置和临时位置是存储桶中的位置,而不是存储桶的顶级位置.在参数中添加目录(例如--stagingLocation=gs://df-staging-bucket-57763/stagingor --tempLocation=gs://df-staging-bucket-57763/temp)(对于每个stagingLocationgcpTempLocation参数)将足以运行管道.