Membuat instance dan menulis data dengan CLI cbt
Jika ingin mempelajari Bigtable , Anda dapat mengikuti panduan memulai untuk memahami dasar-dasar yang akan Anda gunakan dalam skala besar di lingkungan produksi.
Dalam panduan memulai ini, Anda melakukan tindakan-tindakan berikut:
- Menghubungkan ke instance Bigtable.
- Melakukan tugas administratif dasar.
- Menulis data ke tabel.
- Membaca data dari tabel.
Sebelum memulai
- 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.
- Install the Google Cloud CLI.
-
To initialize the gcloud CLI, run the following command:
gcloud init
-
Buat atau pilih project Google Cloud.
-
Membuat project Google Cloud:
gcloud projects create PROJECT_ID
Ganti
PROJECT_ID
dengan nama untuk project Google Cloud yang Anda buat. -
Pilih project Google Cloud yang Anda buat:
gcloud config set project PROJECT_ID
Ganti
PROJECT_ID
dengan nama project Google Cloud Anda.
-
-
Make sure that billing is enabled for your Google Cloud project.
-
Aktifkan API Cloud Bigtable and Cloud Bigtable Admin:
gcloud services enable bigtable.googleapis.com
bigtableadmin.googleapis.com -
Grant roles to your user account. Run the following command once for each of the following IAM roles:
roles/bigtable.admin
gcloud projects add-iam-policy-binding PROJECT_ID --member="user:USER_IDENTIFIER" --role=ROLE
- Replace
PROJECT_ID
with your project ID. -
Replace
USER_IDENTIFIER
with the identifier for your user account. For example,user:myemail@example.com
. - Replace
ROLE
with each individual role.
- Replace
- Install the Google Cloud CLI.
-
To initialize the gcloud CLI, run the following command:
gcloud init
-
Buat atau pilih project Google Cloud.
-
Membuat project Google Cloud:
gcloud projects create PROJECT_ID
Ganti
PROJECT_ID
dengan nama untuk project Google Cloud yang Anda buat. -
Pilih project Google Cloud yang Anda buat:
gcloud config set project PROJECT_ID
Ganti
PROJECT_ID
dengan nama project Google Cloud Anda.
-
-
Make sure that billing is enabled for your Google Cloud project.
-
Aktifkan API Cloud Bigtable and Cloud Bigtable Admin:
gcloud services enable bigtable.googleapis.com
bigtableadmin.googleapis.com -
Grant roles to your user account. Run the following command once for each of the following IAM roles:
roles/bigtable.admin
gcloud projects add-iam-policy-binding PROJECT_ID --member="user:USER_IDENTIFIER" --role=ROLE
- Replace
PROJECT_ID
with your project ID. -
Replace
USER_IDENTIFIER
with the identifier for your user account. For example,user:myemail@example.com
. - Replace
ROLE
with each individual role.
- Replace
- Jalankan perintah berikut untuk menginstal CLI
cbt
:gcloud components install cbt
Membuat instance Bigtable
Buka halaman Create instance di konsol Google Cloud.
Untuk Instance name, masukkan
Quickstart instance
.Untuk Instance ID, masukkan
quickstart-instance
.Klik Lanjutkan.
Untuk Storage type, pilih SSD.
Klik Lanjutkan.
Untuk Cluster ID, masukkan
quickstart-instance-c1
.Untuk Wilayah, pilih wilayah di dekat Anda.
Untuk Zone, pilih Any.
Untuk Mode penskalaan node, pilih Alokasi manual.
Untuk Jumlah, pilih 1.
Klik Create untuk membuat instance.
Menghubungkan ke instance
Konfigurasikan
cbt
CLI untuk menggunakan project dan instance Anda dengan membuat file.cbtrc
, yang menggantikanPROJECT_ID
dengan ID untuk project tempat Anda membuat instance Bigtable:echo project = PROJECT_ID >> ~/.cbtrc && echo instance = quickstart-instance >> ~/.cbtrc
Pastikan Anda menyiapkan file
.cbtrc
dengan benar:cat ~/.cbtrc
Terminal akan menampilkan isi file
.cbtrc
, yang terlihat mirip dengan berikut ini:project = PROJECT_ID instance = quickstart-instance
Sekarang Anda dapat menggunakan CLI
cbt
dengan instance Anda.
Membaca dan menulis data
Bigtable menyimpan data dalam tabel, yang berisi baris. Setiap baris diidentifikasi oleh baris.
Data dalam baris diatur ke dalam kelompok kolom, yang merupakan kelompok kolom. Penentu kolom mengidentifikasi satu kolom dalam grup kolom.
Mungkin ada beberapa sel berstempel waktu di persimpangan baris dan kolom.
Buat tabel bernama
my-table
.cbt createtable my-table
Tampilkan daftar tabel Anda:
cbt ls
Perintah akan menampilkan output yang mirip dengan berikut ini:
my-table
Tambahkan satu grup kolom bernama
cf1
:cbt createfamily my-table cf1
Cantumkan grup kolom Anda:
cbt ls my-table
Perintah akan menampilkan output yang mirip dengan berikut ini:
Family Name GC Policy ----------- --------- cf1 <never>
Tulis nilai
test-value1
dantest-value2
ke barisr1
, menggunakan kelompok kolomcf1
dan penentu kolomc1
:cbt set my-table r1 cf1:c1=test-value1 cbt set my-table r1 cf1:c1=test-value2
Gunakan perintah
cbt read
untuk membaca data yang Anda tambahkan ke tabel:cbt read my-table
Shell akan menampilkan output yang mirip dengan berikut ini:
---------------------------------------- r1 cf1:c1 @ 2023/03/22-06:56:11.323000 "test-value1" cf1:c1 @ 2023/03/22-06:56:04.361000 "test-value2"
Dua nilai dengan stempel waktu disimpan untuk kolom yang sama di baris
r1
.
Pembersihan
Agar tidak menimbulkan biaya pada akun Google Cloud Anda untuk resource yang digunakan dalam panduan memulai ini, hapus instance tersebut. Dengan menghapus file .cbtrc
, Anda akan siap untuk mengerjakan project yang berbeda.
Hapus tabel
my-table
:cbt deletetable my-table
Hapus instance:
cbt deleteinstance quickstart-instance
Hapus file
.cbtrc
:rm ~/.cbtrc
Opsional: Cabut kredensial dari gcloud CLI:
gcloud auth revoke
Langkah selanjutnya
- Bekerja melalui codelab Bigtable.
- Lihat
dokumentasi referensi CLI
cbt
. - Lihat kode sumber contoh untuk kasus penggunaan deteksi penipuan.
- Tulis aplikasi Hello World di C#, C++, Go, Java, Node.js, PHP, Python, Ruby, atau menggunakan klien HBase untuk Java.