Last active
January 28, 2019 20:48
-
-
Save philsch/74e52772ff86f7cd813cd7a84526b8f5 to your computer and use it in GitHub Desktop.
Blogpost: How to update row keys in Google Big Table
This file contains 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
{ | |
"name": "avro_transform", | |
"description": "Pipeline to transform Big Table exported avro files", | |
"parameters": [ | |
{ | |
"name": "input", | |
"label": "Input Cloud Storage File(s)", | |
"help_text": "Path of the file pattern glob to read from. For example gs://bucket/test-*.avro", | |
"regexes": [ | |
"^gs:\/\/[^\n\r]+$" | |
], | |
"is_optional": false | |
}, | |
{ | |
"name": "output", | |
"label": "Output Cloud Storage File(s)", | |
"help_text": "Path of the file pattern glob to write to.", | |
"regexes": [ | |
"^gs:\/\/[^\n\r]+$" | |
], | |
"is_optional": false | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment