-
Notifications
You must be signed in to change notification settings - Fork 4.5k
[BEAM-242] Fix javadoc on Flink runner. #382
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -70,7 +70,7 @@ | |
| * where the BigQuery dataset you specify must already exist. | ||
| * | ||
| * <p> Optionally include the --input argument to specify a batch input file. | ||
| * See the --input default value for example batch data file, or use {@link injector.Injector} to | ||
| * See the --input default value for example batch data file, or use {@code injector.Injector} to | ||
| * generate your own batch data. | ||
| */ | ||
| public class UserScore { | ||
|
|
@@ -201,6 +201,8 @@ public static interface Options extends PipelineOptions { | |
| /** | ||
| * Create a map of information that describes how to write pipeline output to BigQuery. This map | ||
| * is passed to the {@link WriteToBigQuery} constructor to write user score sums. | ||
| * | ||
| * @return A map to fields written on big query. | ||
| */ | ||
| protected static Map<String, WriteToBigQuery.FieldInfo<KV<String, Integer>>> | ||
| configureBigQueryWrite() { | ||
|
|
@@ -216,6 +218,9 @@ public static interface Options extends PipelineOptions { | |
|
|
||
| /** | ||
| * Run a batch pipeline. | ||
| * | ||
| * @param args The main arguments. | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Also for |
||
| * @throws Exception in case of execution failure. | ||
| */ | ||
| // [START DocInclude_USMain] | ||
| public static void main(String[] args) throws Exception { | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should really disable whatever requirement is for this. The statement is often redundant with the basic javadoc and just adds burden. It is useful for inheritance situations because it is separate from
{@inheritDoc}but otherwise I don't think it matters much.