Created
August 1, 2022 17:29
-
-
Save taufiqibrahim/4a93ccef04eeae0d7b0b2fc92df67174 to your computer and use it in GitHub Desktop.
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
gcloud pubsub schemas create mysql.inventory.products-schema \ | |
--type=AVRO \ | |
--definition=' | |
{ | |
"type" : "record", | |
"name" : "MysqlInventoryProductsSchema", | |
"fields" : [ | |
{ | |
"type": "int", | |
"optional": false, | |
"name": "id" | |
}, | |
{ | |
"type": "string", | |
"optional": false, | |
"name": "name" | |
}, | |
{ | |
"type": "string", | |
"optional": true, | |
"name": "description" | |
}, | |
{ | |
"type": "float", | |
"optional": true, | |
"name": "weight" | |
}, | |
{ | |
"type": "string", | |
"optional": true, | |
"name": "__op" | |
}, | |
{ | |
"type": "string", | |
"optional": true, | |
"name": "__table" | |
}, | |
{ | |
"type": "int", | |
"optional": true, | |
"name": "__source_ts_ms" | |
}, | |
{ | |
"type": "string", | |
"optional": true, | |
"name": "__deleted" | |
} | |
] | |
}' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment