Last active
June 5, 2018 21:59
-
-
Save davideanastasia/dece85a5e2dfdd80bb57ac40fbed0ac8 to your computer and use it in GitHub Desktop.
Apache Beam Getting Standard - #1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class Indexer { | |
| public static void main(String[] args) throws Exception { | |
| Options options = PipelineOptionsFactory.fromArgs(args) | |
| .withValidation() | |
| .as(Options.class); | |
| Pipeline p = Pipeline.create(options); | |
| // ... | |
| p.run().waitUntilFinish(); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment