Cloud Console을 사용하여 Pub/Sub 라이트 주제 만들기
이 페이지에서는 다음을 수행하는 방법을 보여줍니다.
- Google Cloud Console을 사용하여 라이트 예약, 라이트 주제, 라이트 구독을 만듭니다.
- Go, 자바, Python용 Pub/Sub 라이트 클라이언트 라이브러리를 사용하여 메시지를 주고받습니다.
시작하기 전에
- Google Cloud 계정에 로그인합니다. Google Cloud를 처음 사용하는 경우 계정을 만들고 Google 제품의 실제 성능을 평가해 보세요. 신규 고객에게는 워크로드를 실행, 테스트, 배포하는 데 사용할 수 있는 $300의 무료 크레딧이 제공됩니다.
-
In the Google Cloud console, on the project selector page, select or create a Google Cloud project.
-
Enable the Pub/Sub Lite API.
-
Create a service account:
-
In the Google Cloud console, go to the Create service account page.
Go to Create service account - Select your project.
-
In the Service account name field, enter a name. The Google Cloud console fills in the Service account ID field based on this name.
In the Service account description field, enter a description. For example,
Service account for quickstart
. - Click Create and continue.
-
Grant the Project > Owner role to the service account.
To grant the role, find the Select a role list, then select Project > Owner.
- Click Continue.
-
Click Done to finish creating the service account.
Do not close your browser window. You will use it in the next step.
-
-
Create a service account key:
- In the Google Cloud console, click the email address for the service account that you created.
- Click Keys.
- Click Add key, and then click Create new key.
- Click Create. A JSON key file is downloaded to your computer.
- Click Close.
-
GOOGLE_APPLICATION_CREDENTIALS
환경 변수를 사용자 인증 정보가 포함된 JSON 파일의 경로로 설정합니다. 이 변수는 현재 셸 세션에만 적용되므로 새 세션을 열면 변수를 다시 설정합니다. -
In the Google Cloud console, on the project selector page, select or create a Google Cloud project.
-
Enable the Pub/Sub Lite API.
-
Create a service account:
-
In the Google Cloud console, go to the Create service account page.
Go to Create service account - Select your project.
-
In the Service account name field, enter a name. The Google Cloud console fills in the Service account ID field based on this name.
In the Service account description field, enter a description. For example,
Service account for quickstart
. - Click Create and continue.
-
Grant the Project > Owner role to the service account.
To grant the role, find the Select a role list, then select Project > Owner.
- Click Continue.
-
Click Done to finish creating the service account.
Do not close your browser window. You will use it in the next step.
-
-
Create a service account key:
- In the Google Cloud console, click the email address for the service account that you created.
- Click Keys.
- Click Add key, and then click Create new key.
- Click Create. A JSON key file is downloaded to your computer.
- Click Close.
-
GOOGLE_APPLICATION_CREDENTIALS
환경 변수를 사용자 인증 정보가 포함된 JSON 파일의 경로로 설정합니다. 이 변수는 현재 셸 세션에만 적용되므로 새 세션을 열면 변수를 다시 설정합니다.
클라이언트 라이브러리 설치
Go
go get cloud.google.com/go/pubsublite
자바
If you are using Maven, add
the following to your pom.xml
file. For more information about
BOMs, see The Google Cloud Platform Libraries BOM.
If you are using Gradle, add the following to your dependencies:
If you are using sbt, add the following to your dependencies:
If you're using Visual Studio Code, IntelliJ, or Eclipse, you can add client libraries to your project using the following IDE plugins:
The plugins provide additional functionality, such as key management for service accounts. Refer to each plugin's documentation for details.
Python
pip install --upgrade google-cloud-pubsublite
라이트 예약 만들기
Cloud Console을 사용하여 라이트 예약을 만들려면 다음 단계를 따르세요.
Cloud Console에서 라이트 예약 페이지로 이동합니다.
라이트 예약 만들기를 클릭합니다.
리전을 선택하세요.
이름 섹션에서 라이트 주제 ID로
your-lite-reservation
을 입력합니다.만들기를 클릭합니다.
라이트 주제 만들기
Cloud Console을 사용하여 라이트 주제를 만들려면 다음 단계를 따르세요.
Cloud Console에서 라이트 주제 페이지로 이동합니다.
라이트 주제 만들기를 클릭합니다.
리전과 리전의 영역을 선택합니다.
이름 섹션에서 라이트 주제 ID로
your-lite-topic
를 입력합니다.만들기를 클릭합니다.
라이트 구독 만들기
Cloud Console을 사용하여 라이트 구독을 만들려면 다음 단계를 따르세요.
Cloud Console에서 라이트 구독 페이지로 이동합니다.
라이트 구독 만들기를 클릭합니다.
라이트 구독 ID 필드에
your-lite-subscription
을 입력합니다.메시지를 수신할 라이트 주제를 선택합니다.
전송 요구사항 섹션에서 저장 후 메시지 전송을 선택합니다.
만들기를 클릭합니다.
라이트 구독은 라이트 주제와 동일한 영역에 있습니다.
메시지 전송
다음 게시자 애플리케이션을 사용하여 라이트 주제로 메시지를 전송합니다.
Go
자바
Python
게시자가 100개의 메시지를 라이트 주제로 전송하고 Pub/Sub 라이트 서비스가 수신하는 메시지 수를 출력합니다.
메시지 수신
다음 구독자 애플리케이션을 사용하여 라이트 구독에서 메시지를 수신합니다.
Go
자바
Python
구독자가 메시지를 수신하면 구독자는 메시지 ID와 메시지 데이터를 출력합니다.
삭제
이 페이지에서 사용한 리소스 비용이 Google Cloud 계정에 청구되지 않도록 하려면 다음 단계를 수행합니다.
Cloud Console에서 라이트 주제 페이지로 이동합니다.
your-lite-topic을 클릭합니다.
주제 세부정보 페이지에서 삭제를 클릭합니다.
표시되는 필드에
delete
를 입력하여 라이트 주제를 삭제할지 여부를 확인합니다.삭제를 클릭합니다.
다음 단계
- 라이트 주제 및 라이트 구독 자세히 알아보기
- 메시지 전송 및 수신 자세히 알아보기
- 클라이언트 라이브러리의 코드 샘플 자세히 살피기