Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save taufiqibrahim/4a93ccef04eeae0d7b0b2fc92df67174 to your computer and use it in GitHub Desktop.
Save taufiqibrahim/4a93ccef04eeae0d7b0b2fc92df67174 to your computer and use it in GitHub Desktop.
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