├── .gitignore ├── BeamAvro ├── pom.xml └── src │ └── main │ └── java │ └── com │ └── google │ └── cloud │ └── solutions │ └── beamavro │ └── AvroToBigQuery.java ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── env.sh ├── generator ├── gen.py └── requirements.txt └── orderdetails.avsc /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | *.iml 3 | target/ -------------------------------------------------------------------------------- /BeamAvro/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/bigquery-ingest-avro-dataflow-sample/HEAD/BeamAvro/pom.xml -------------------------------------------------------------------------------- /BeamAvro/src/main/java/com/google/cloud/solutions/beamavro/AvroToBigQuery.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/bigquery-ingest-avro-dataflow-sample/HEAD/BeamAvro/src/main/java/com/google/cloud/solutions/beamavro/AvroToBigQuery.java -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/bigquery-ingest-avro-dataflow-sample/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/bigquery-ingest-avro-dataflow-sample/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/bigquery-ingest-avro-dataflow-sample/HEAD/README.md -------------------------------------------------------------------------------- /env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/bigquery-ingest-avro-dataflow-sample/HEAD/env.sh -------------------------------------------------------------------------------- /generator/gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/bigquery-ingest-avro-dataflow-sample/HEAD/generator/gen.py -------------------------------------------------------------------------------- /generator/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/bigquery-ingest-avro-dataflow-sample/HEAD/generator/requirements.txt -------------------------------------------------------------------------------- /orderdetails.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/bigquery-ingest-avro-dataflow-sample/HEAD/orderdetails.avsc --------------------------------------------------------------------------------