Memublikasikan dan menerima pesan di Pub/Sub menggunakan gcloud CLI

Halaman ini menunjukkan cara melakukan operasi berikut di Pub/Sub menggunakan Google Cloud CLI:

  • Buat topik dan langganan.
  • Publikasikan pesan ke topik.
  • Menerima pesan dari langganan.

Untuk mengikuti panduan langkah demi langkah tugas ini langsung di Google Cloud konsol, klik Pandu saya:

Pandu saya


Sebelum memulai

  1. Sign in to your Google Cloud account. If you're new to Google Cloud, create an account to evaluate how our products perform in real-world scenarios. New customers also get $300 in free credits to run, test, and deploy workloads.
  2. Set up a Google Cloud console project.

    Set up a project

    Click to:

    • Create or select a project.
    • Enable the Pub/Sub API for that project.

    You can view and manage these resources at any time in the Google Cloud console.

  3. Install the Google Cloud CLI.

  4. Jika Anda menggunakan penyedia identitas (IdP) eksternal, Anda harus login ke gcloud CLI dengan identitas gabungan Anda terlebih dahulu.

  5. Untuk melakukan inisialisasi gcloud CLI, jalankan perintah berikut:

    gcloud init
  6. Set up a Google Cloud console project.

    Set up a project

    Click to:

    • Create or select a project.
    • Enable the Pub/Sub API for that project.

    You can view and manage these resources at any time in the Google Cloud console.

  7. Install the Google Cloud CLI.

  8. Jika Anda menggunakan penyedia identitas (IdP) eksternal, Anda harus login ke gcloud CLI dengan identitas gabungan Anda terlebih dahulu.

  9. Untuk melakukan inisialisasi gcloud CLI, jalankan perintah berikut:

    gcloud init
  10. Membuat topik

    Buat topik dengan ID my-topic:

    gcloud pubsub topics create my-topic

    Membuat langganan

    Buat langganan dengan ID my-sub dan lampirkan ke my-topic:

    gcloud pubsub subscriptions create my-sub --topic=my-topic

    Memublikasikan pesan

    Publikasikan pesan ke my-topic:

    gcloud pubsub topics publish my-topic --message="hello"

    Menerima pesan

    Menerima pesan dari my-sub:

    gcloud pubsub subscriptions pull my-sub --auto-ack

    gcloud CLI mencetak pesan ke command line.

    Bagaimana hasilnya?

    Langkah berikutnya