如何在Cloud Scheduler中使用发布/订阅消息属性

时间:2019-03-01 18:15:32

标签: google-cloud-platform google-cloud-scheduler

我正在尝试使用Google Cloud Scheduler来安排工作。根据文档,我们可以将有效负载发布到pub / sub,但是有没有办法发送消息属性?

1 个答案:

答案 0 :(得分:0)

您可以使用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