목표
이 튜토리얼에서는 Dataproc Jupyter 구성요소를 새 클러스터에 설치한 다음 Dataproc 구성요소 게이트웨이를 사용하여 로컬 브라우저의 클러스터에서 실행 중인 Jupyter 노트북 UI에 연결하는 방법을 보여줍니다.
비용
이 문서에서는 비용이 청구될 수 있는 다음과 같은 Google Cloud 구성요소를 사용합니다.
프로젝트 사용량을 기준으로 예상 비용을 산출하려면 가격 계산기를 사용하세요.
시작하기 전에
아직 만들지 않았다면 Google Cloud 프로젝트와 Cloud Storage 버킷을 만듭니다.
프로젝트 설정
- 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.
-
In the Google Cloud console, on the project selector page, select or create a Google Cloud project.
-
Enable the Dataproc, Compute Engine, and Cloud Storage APIs.
- Install the Google Cloud CLI.
-
To initialize the gcloud CLI, run the following command:
gcloud init
-
In the Google Cloud console, on the project selector page, select or create a Google Cloud project.
-
Enable the Dataproc, Compute Engine, and Cloud Storage APIs.
- Install the Google Cloud CLI.
-
To initialize the gcloud CLI, run the following command:
gcloud init
프로젝트에 이 가이드에서 만든 노트북을 저장할 Cloud Storage 버킷 만들기
- In the Google Cloud console, go to the Cloud Storage Buckets page.
- Click Create bucket.
- On the Create a bucket page, enter your bucket information. To go to the next
step, click Continue.
- For Name your bucket, enter a name that meets the bucket naming requirements.
-
For Choose where to store your data, do the following:
- Select a Location type option.
- Select a Location option.
- For Choose a default storage class for your data, select a storage class.
- For Choose how to control access to objects, select an Access control option.
- For Advanced settings (optional), specify an encryption method, a retention policy, or bucket labels.
- Click Create. 노트북이
gs://bucket-name/notebooks/jupyter
의 Cloud Storage에 저장됩니다.
클러스터를 만들고 Jupyter 구성요소 설치하기
설치된 Jupyter 구성요소가 포함된 클러스터를 만듭니다.
Jupyter 및 JupyterLab UI 열기
Google Cloud 콘솔에서 Google Cloud 콘솔 구성요소 게이트웨이 링크를 클릭하여 클러스터의 마스터 노드에서 실행되는 Jupyter 노트북 또는 JupyterLab UI를 엽니다.
Jupyter 인스턴스에서 표시하는 최상위 디렉터리는 Cloud Storage 버킷 또는 로컬 파일 시스템의 콘텐츠를 볼 수 있는 가상 디렉터리입니다. Cloud Storage의 경우 GCS 링크를, 클러스터에 포함된 마스터 노드의 로컬 파일 시스템의 경우 로컬 디스크를 클릭하여 위치를 선택할 수 있습니다.
- GCS 링크를 클릭합니다. Jupyter 노트북 웹 UI는 이 튜토리얼에서 만든 노트북을 포함하여 Cloud Storage 버킷에 저장된 노트북을 표시합니다.
삭제
튜토리얼을 완료한 후에는 만든 리소스를 삭제하여 할당량 사용을 중지하고 요금이 청구되지 않도록 할 수 있습니다. 다음 섹션은 이러한 리소스를 삭제하거나 사용 중지하는 방법을 설명합니다.
프로젝트 삭제
비용이 청구되지 않도록 하는 가장 쉬운 방법은 튜토리얼에서 만든 프로젝트를 삭제하는 것입니다.
프로젝트를 삭제하는 방법은 다음과 같습니다.
- In the Google Cloud console, go to the Manage resources page.
- In the project list, select the project that you want to delete, and then click Delete.
- In the dialog, type the project ID, and then click Shut down to delete the project.
클러스터 삭제
- 클러스터를 삭제하는 방법은 다음과 같습니다.
gcloud dataproc clusters delete cluster-name \ --region=${REGION}
버킷 삭제
- 버킷에 저장된 노트북을 포함해 시작하기 전에 2단계에서 만든 Cloud Storage 버킷을 삭제하려면 다음 안내를 따르세요.
gcloud storage rm gs://${BUCKET_NAME} --recursive