Bird
0
0

Which of the following is the correct way to define a Bigtable instance using gcloud CLI for time-series data?

easy📝 Configuration Q12 of 15
GCP - Cloud Firestore and Bigtable
Which of the following is the correct way to define a Bigtable instance using gcloud CLI for time-series data?
Agcloud bigtable instance create my-instance --cluster=my-cluster --zone=us-central1-b
Bgcloud bigtable create instance my-instance --zone=us-central1-b --type=DEVELOPMENT
Cgcloud bigtable instances new my-instance --cluster-zone=us-central1-b --instance-type=PRODUCTION
Dgcloud bigtable instances create my-instance --cluster=my-cluster --cluster-zone=us-central1-b --display-name="My Instance" --instance-type=PRODUCTION
Step-by-Step Solution
Solution:
  1. Step 1: Review gcloud CLI syntax for Bigtable instance creation

    The correct command uses 'gcloud bigtable instances create' with required flags for cluster, zone, display name, and instance type.
  2. Step 2: Compare options with correct syntax

    gcloud bigtable instances create my-instance --cluster=my-cluster --cluster-zone=us-central1-b --display-name="My Instance" --instance-type=PRODUCTION matches the official syntax exactly, including cluster and zone flags.
  3. Final Answer:

    gcloud bigtable instances create my-instance --cluster=my-cluster --cluster-zone=us-central1-b --display-name="My Instance" --instance-type=PRODUCTION -> Option D
  4. Quick Check:

    Correct gcloud syntax = gcloud bigtable instances create my-instance --cluster=my-cluster --cluster-zone=us-central1-b --display-name="My Instance" --instance-type=PRODUCTION [OK]
Quick Trick: Use 'gcloud bigtable instances create' with cluster and zone [OK]
Common Mistakes:
  • Using incorrect command verbs like 'create instance' or 'instances new'
  • Missing required flags like --cluster-zone
  • Confusing instance type flags

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More GCP Quizzes