Bird
0
0

Which gcloud command correctly creates a Bigtable instance named ts-instance in zone us-central1-b with 3 nodes?

easy📝 Configuration Q3 of 15
GCP - Cloud Firestore and Bigtable
Which gcloud command correctly creates a Bigtable instance named ts-instance in zone us-central1-b with 3 nodes?
Agcloud bigtable instances create ts-instance --cluster=ts-cluster --cluster-zone=us-central1-b --display-name="Time Series Instance" --cluster-num-nodes=3
Bgcloud bigtable instances create ts-instance --zone=us-central1-b --nodes=3
Cgcloud bigtable clusters create ts-instance --zone=us-central1-b --num-nodes=3
Dgcloud bigtable instances create ts-instance --cluster-zone=us-central1-b --num-nodes=3
Step-by-Step Solution
Solution:
  1. Step 1: Identify the correct command structure

    The gcloud bigtable instances create command requires specifying a cluster name, cluster zone, display name, and number of nodes.
  2. Step 2: Verify the options

    gcloud bigtable instances create ts-instance --cluster=ts-cluster --cluster-zone=us-central1-b --display-name="Time Series Instance" --cluster-num-nodes=3 correctly uses --cluster, --cluster-zone, --display-name, and --cluster-num-nodes flags.
  3. Final Answer:

    Option A -> Option A
  4. Quick Check:

    Correct flags and syntax used [OK]
Quick Trick: Use 'gcloud bigtable instances create' with cluster flags [OK]
Common Mistakes:
  • Using 'gcloud bigtable clusters create' instead of instances
  • Omitting cluster name or zone
  • Using incorrect flags like --nodes instead of --cluster-num-nodes

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More GCP Quizzes