DataflowJavaSDK
DataflowJavaSDK copied to clipboard
filling default.string() with getoutput()
I am not a Java guru I am having a problem to fill the values on this script on the description level , on how to fill the value on description.string with getoutput() and setoutput () every time I do so I have error please help . @Description("BigQuery table to write to, specified as " + "dev6celbux:dev6celbux.shakespeare_copy. The dataset must already exist.") @Validation.Required @Default.String(OUTPUTDATA) String getOutput(); void setOutput(String value); }
and this one on the description level:
private static interface Options extends PipelineOptions { @Description("Path of the file to write to") @Validation.Required String getOutput(); void setOutput(String value); }
Please hep
@demousteven, I'm not really sure I understand the question.
@Description is an optional annotation on PipelineOptions to enable getting help for pipeline options on the command-line. You never need to change it, ever.