gcloud CLI를 사용하여 Pub/Sub 주제 만들기
이 페이지에서는 Google Cloud CLI를 사용하여 Pub/Sub에서 다음 작업을 수행하는 방법을 보여줍니다.
- 주제 및 구독을 만듭니다.
- 주제에 메시지를 게시합니다.
- 구독에서 메시지를 수신합니다.
Google Cloud Console에서 직접 이 태스크를 수행하는 방법에 대한 단계별 안내를 보려면 둘러보기를 클릭합니다.
다음 섹션에서는 둘러보기를 클릭할 때와 동일한 단계를 수행합니다.
시작하기 전에
- 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
주제 만들기
ID가 my-topic
인 주제를 만듭니다.
gcloud pubsub topics create my-topic
구독 만들기
ID가 my-sub
인 구독을 만들고 my-topic
에 연결합니다.
gcloud pubsub subscriptions create my-sub --topic=my-topic
메시지 게시
my-topic
에 메시지를 게시합니다.
gcloud pubsub topics publish my-topic --message="hello"
메시지 수신
my-sub
에서 메시지를 수신합니다.
gcloud pubsub subscriptions pull my-sub --auto-ack
gcloud CLI는 명령줄에 메시지를 인쇄합니다.
어땠나요?
다음 단계
주제 및 구독 관리 방법을 알아보세요.
주제에 메시지 게시 및 구독에서 메시지 수신에 대해 자세히 알아보세요.
Pub/Sub 개요를 참조하세요.
Pub/Sub 시스템의 엔드 투 엔드 예시를 살펴보세요.
Pub/Sub의 gcloud CLI 참조를 살펴보세요.