Reputation: 4275
I am getting the following console log and the process stops
com.google.cloud.dataflow.sdk.runners.DataflowPipelineRunner fromOptions
INFO: PipelineOptions.filesToStage was not specified. Defaulting to files from the classpath: will stage 69 files. Enable logging at DEBUG level to see which files will be staged.
My execution parameters are as follows
--project=xyz-123 --stagingLocation=gs://xxx/staging/ --output=yyy:zzz.aa --runner=BlockingDataflowPipelineRunner
I have run pipelines without specifying staging file list but all of a sudden this happens.
Upvotes: 0
Views: 883
Reputation: 4275
Even though all the logs are in red, there is nothing wrong with the log or the code. I had simply forgotten to run my pipeline.
Maybe a lint or marker error in Eclipse might help in avoiding this kind of scenario.
Solution:
p.run();
had to be added since, I accidentally deleted that line.
Upvotes: 1