我正在尝试使用谷歌云调度程序来安排工作。根据文档,我们可以将有效负载发布到 pub/sub,但是有没有办法发送消息属性?
问问题
2327 次
1 回答
3
您可以使用gcloud
beta 命令行工具来设置属性:
https://cloud.google.com/sdk/gcloud/reference/beta/scheduler/jobs/create/pubsub
gcloud beta scheduler jobs create pubsub <JOB> --schedule "0 9 1 * *" --topic <TOPIC> --message-body "test" --attributes key1=value1,key2,value2
于 2019-04-23T14:39:05.040 回答