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