Publicar e receber mensagens no Pub/Sub usando a CLI gcloud
Nesta página, mostramos como realizar as seguintes operações no Pub/Sub usando a Google Cloud CLI:
- Criar um tópico e uma inscrição.
- Publicar mensagens no tópico.
- Receber mensagens da assinatura.
Para seguir as instruções passo a passo desta tarefa diretamente no console do Google Cloud, clique em Orientação:
Antes de começar
- 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.
-
Set up a Google Cloud console 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.
- Install the Google Cloud CLI.
-
To initialize the gcloud CLI, run the following command:
gcloud init
-
Set up a Google Cloud console 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.
- Install the Google Cloud CLI.
-
To initialize the gcloud CLI, run the following command:
gcloud init
Crie um tópico
Crie um tópico com o ID my-topic
:
gcloud pubsub topics create my-topic
Crie uma assinatura
Crie uma assinatura com o ID my-sub
e anexe-a ao my-topic
:
gcloud pubsub subscriptions create my-sub --topic=my-topic
Publicar mensagens
Publique uma mensagem em my-topic
:
gcloud pubsub topics publish my-topic --message="hello"
Receber mensagens
Receba a mensagem de my-sub
:
gcloud pubsub subscriptions pull my-sub --auto-ack
A CLI gcloud mostra a mensagem na linha de comando.
Como foi?
A seguir
Confira todos os comandos da CLI do gCloud disponíveis para o Pub/Sub.
Saiba mais sobre os conceitos do Pub/Sub discutidos nesta página.
Leia os conceitos básicos do serviço Pub/Sub.
Trabalhe com um exemplo completo de um sistema do Pub/Sub.
Tente outro guia de início rápido do Pub/Sub que Usa bibliotecas de cliente ou o console.
Escolha um tipo de assinatura.
Saiba mais sobre as APIs Pub/Sub.