1) Cloud PubSub with Cloud Console
Chúng ta đã tạo được topic và subscriptions
giờ chúng input messages vào topic manual nhé!
2) Cloud PubSub with Cloud Terraform
sau đây à phần code terraform.
resource "google_pubsub_topic" "topic_tf" { name = "topic_tf" } resource "google_pubsub_subscription" "sub_tf" { name = "sub_tf" topic = google_pubsub_topic.topic_tf.name }
3) schemas
syntax = "proto2"; message ProtocolBuffer { string name = 1; int32 age = 2; }
Bạn tưởng tượng phần này sẽ là model hay là định nghĩa các messages khi ghi vào topic thì phải có kiểu dữ liệu như đã khai báo trong schema.
Chúng ta sẽ thực hiện test message là bạn hiểu ngay.
Giờ chúng ta cần liên kết topic với schema