Topic 1 Question 72
Your data is stored in Cloud Storage buckets. Fellow developers have reported that data downloaded from Cloud Storage is resulting in slow API performance. You want to research the issue to provide details to the GCP support team. Which command should you run?
gsutil test ג€"o output.json gs://my-bucket
gsutil perfdiag ג€"o output.json gs://my-bucket
gcloud compute scp example-instance:~/test-data ג€"o output.json gs://my-bucket
gcloud services test ג€"o output.json gs://my-bucket
ユーザの投票
コメント(4)
- 👍 12donchick2020/12/21
- 正解だと思う選択肢: B
B is correct
👍 2tomato1232022/08/19 B. gsutil perfdiag -o output.json gs://my-bucket
The gsutil perfdiag command is used to diagnose performance issues with Cloud Storage. It can be used to perform various tests such as download, upload, and metadata operations. By using the -o flag, you can specify an output file where the results of the tests will be stored in JSON format. This output file can then be provided to the GCP support team to help them investigate the issue.
👍 2omermahgoub2023/01/08
シャッフルモード