Last active
January 24, 2019 03:00
-
-
Save polleyg/e5f8b6f39e81a9b762aceecebaf64ef1 to your computer and use it in GitHub Desktop.
beam_sql_part1
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
[..] | |
PipelineOptionsFactory.register(DataflowPipelineOptions.class); | |
DataflowPipelineOptions options = PipelineOptionsFactory | |
.fromArgs(args) | |
.withValidation() | |
.as(DataflowPipelineOptions.class); | |
Pipeline pipeline = Pipeline.create(options); | |
pipeline.apply("read_from_gcs", TextIO.read().from("gs://batch-pipeline-sql/input/*")) | |
[..] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment