Skip to content

Instantly share code, notes, and snippets.

@Atrix1987
Last active February 9, 2017 12:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Atrix1987/402843d494ae387e09bf1d1d706a7fb3 to your computer and use it in GitHub Desktop.
Save Atrix1987/402843d494ae387e09bf1d1d706a7fb3 to your computer and use it in GitHub Desktop.
Snippet of an amplitude data import pipeline
//Configuring the options etc
Pipeline p = Pipeline.create(options);
p.apply(TextIO.Read.named("ReadFiles").from(options.getInputFile()).withCompressionType(CompressionType.GZIP))
.apply(new ProcessRecords(eventType))
.apply(BigQueryIO.Write.to(table.getTableReference()).withSchema(table.getSchema())
.withCreateDisposition(BigQueryIO.Write.CreateDisposition.CREATE_IF_NEEDED)
.withWriteDisposition(BigQueryIO.Write.WriteDisposition.WRITE_APPEND));
p.run();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment