实验设置说明和要求
保护您的账号和进度。请务必在无痕浏览器窗口中,使用实验凭证运行此实验。

Resizing a Google Cloud NetApp Volumes volume

实验 40 分钟 universal_currency_alt 1 个点数 show_chart 入门级
info 此实验可能会提供 AI 工具来支持您学习。
此内容尚未针对移动设备进行优化。
为获得最佳体验,请在桌面设备上访问通过电子邮件发送的链接。

This lab was developed with our partner, NetApp. Your personal information may be shared with NetApp, the lab sponsor, if you have opted-in to receive product updates, announcements, and offers in your Account Profile.

GSP1310

Google Cloud Self-Paced Labs

Overview

Google Cloud NetApp Volumes is a fully managed data storage service that lets you move file-based applications to Google Cloud. It has support for Network File System (NFSv3 and NFSv4.1) and Server Message Block (SMB) protocols built-in, so you don't need to re-architect your applications and can continue to get persistent storage for your applications.

In this lab you will learn how to resize the Google Cloud NetApp Volumes capacity.

Objectives

In this lab you will learn how to:

  • Grow the Google Cloud NetApp Volumes volume capacity.
  • Shrink the Google Cloud NetApp Volumes volume capacity.
  • Understand the performance impact of the volume resize.

Prerequisites

Setup and requirements

Before you click the Start Lab button

Read these instructions. Labs are timed and you cannot pause them. The timer, which starts when you click Start Lab, shows how long Google Cloud resources will be made available to you.

This Qwiklabs hands-on lab lets you do the lab activities yourself in a real cloud environment, not in a simulation or demo environment. It does so by giving you new, temporary credentials that you use to sign in and access Google Cloud for the duration of the lab.

What you need

To complete this lab, you need:

  • Access to a standard internet browser (Chrome browser recommended).
  • Time to complete the lab.

Note: If you already have your own personal Google Cloud account or project, do not use it for this lab.

Note: If you are using a Pixelbook, open an Incognito window to run this lab.

How to start your lab and sign in to the Google Cloud Console

  1. Click the Start Lab button. If you need to pay for the lab, a pop-up opens for you to select your payment method. On the left is a panel populated with the temporary credentials that you must use for this lab.

    Open Google Console

  2. Copy the username, and then click Open Google Console. The lab spins up resources, and then opens another tab that shows the Sign in page.

    Sign in

    Tip: Open the tabs in separate windows, side-by-side.

  3. In the Sign in page, paste the username that you copied from the Connection Details panel. Then copy and paste the password.

    Important: You must use the credentials from the Connection Details panel. Do not use your Qwiklabs credentials. If you have your own Google Cloud account, do not use it for this lab (avoids incurring charges).

  4. Click through the subsequent pages:

    • Accept the terms and conditions.
    • Do not add recovery options or two-factor authentication (because this is a temporary account).
    • Do not sign up for free trials.

After a few moments, the Cloud Console opens in this tab.

Activate Cloud Shell

Cloud Shell is a virtual machine that is loaded with development tools. It offers a persistent 5GB home directory and runs on the Google Cloud. Cloud Shell provides command-line access to your Google Cloud resources.

In the Cloud Console, in the top right toolbar, click the Activate Cloud Shell button.

Cloud Shell icon

Click Continue.

cloudshell_continue.png

It takes a few moments to provision and connect to the environment. When you are connected, you are already authenticated, and the project is set to your PROJECT_ID. For example:

Cloud Shell Terminal

gcloud is the command-line tool for Google Cloud. It comes pre-installed on Cloud Shell and supports tab-completion.

You can list the active account name with this command:

gcloud auth list

(Output)

Credentialed accounts: - <myaccount>@<mydomain>.com (active)

(Example output)

Credentialed accounts: - google1623327_student@qwiklabs.net

You can list the project ID with this command:

gcloud config list project

(Output)

[core] project = <project_ID>

(Example output)

[core] project = qwiklabs-gcp-44776a13dea667a6

Task 1. Mount the volume

  1. In the Google Cloud console search bar (google cloud console search bar icon), type NetApp Volumes and select the result to open the service.

  2. In the navigation pane, click Volumes. A volume (volume1) has already been created for this lab.

  3. Open Compute Engine → VM Instances in a new browser tab and click the SSH button for vm1.

  4. Return to the NetApp Volumes page. In the row for the volume (volume1), click the overflow menu (overflow menu icon), then select Mount Instructions.

  5. Run the following commands from the Mount instructions into the SSH window in the following order:

  • Install the nfs utilities on the Linux VM:
sudo apt-get install nfs-common -y
  • Create a directory in the VM:
sudo mkdir /share1
  • Mount the volume by copying the sudo mount command from the Mount instructions and running it in the SSH terminal. The command includes the unique IP address of the volume. It will look like the command below:
sudo mount -t nfs -o rw,hard,rsize=65536,wsize=65536,vers=3,tcp <IP_ADDRESS>:/share1 /share1 Note: Please run the mount command exactly as it appears in your specific Mount instructions panel, as the IP address in this command is unique to your volume.
  • Verify that the volume has been mounted to your VM successfully:
df -h | grep share1

Click Check my progress to verify that you've performed the above task. Mount the volume

Task 2. Test the performance

The NetApp Volumes Premium and Extreme service levels provide performance based on the provisioned volume capacity. The volume capacity defines the throughput limit, independent of the storage pool capacity.

Adding or removing volume capacity to or from an existing volume increases or decreases the maximum throughput limit of the volume.

  1. To test the maximum performance of the existing 1 TiB Premium volume, run the following command in the SSH terminal:
sudo fio --directory=/share1 --ioengine=libaio --rw=write --bs=64k --iodepth=24 --size=50g --fallocate=none --direct=1 --runtime=9000 --time_based --ramp_time=5 --numjobs=8 --name=netappvolumes

The last line of the output shows that the maximum performance the volume can achieve is around 64 MiBps ([w=64.0MiB/s]). This is because the Premium service level provides up to 64 KiBps per GiB of provisioned volume capacity and the volume capacity is 1024 GiB.

The performance is calculated as follows:

  • Performance = Volume capacity x Service Level performance
  • Performance = 1024 GiB x 64 KiBps/GiB = 64 MiBps
  1. To stop the performance test, press CTRL+C.

Task 3. Grow the Google Cloud NetApp Volumes capacity

  1. Go to the NetApp Volumes page in the Google Cloud console.
  2. In the navigation pane, click Volumes.
  3. Click volume1, then click Edit.
  4. Under Volume details, set the volume capacity to 2048, then click Save.
  5. To verify that the virtual machine sees the new 2 TiB capacity without any modification or downtime, run the following command in the SSH terminal:
df -h | grep share1
  1. To test the maximum performance of the current 2 TiB Premium volume, run the following command:
sudo fio --directory=/share1 --ioengine=libaio --rw=write --bs=64k --iodepth=24 --size=50g --fallocate=none --direct=1 --runtime=9000 --time_based --ramp_time=5 --numjobs=8 --name=netappvolumes

The last line of the output shows that the maximum performance the volume can achieve is around 128 MiBps ([w=128.0MiB/s]). This is because the Premium service level provides up to 64 KiBps per GiB of provisioned volume capacity and the volume capacity is 2048 GiB.

The performance is calculated as follows:

  • Performance = Volume capacity x Service Level performance
  • Performance = 2048 GiB x 64 KiBps/GiB = 128 MiBps
  1. To stop the performance test, press CTRL+C.

Click Check my progress to verify that you've performed the above task. Grow the volume capacity

Task 4. Shrink the Google Cloud NetApp Volumes capacity

  1. Go to the NetApp Volumes page in the Google Cloud console.
  2. In the navigation pane, click Volumes.
  3. Click volume1, then click Edit.
  4. Under Volume details, set the volume capacity to 512, then click Save.
  5. To verify that the virtual machine sees the new 512 GiB capacity without any modification or downtime, run the following command in the SSH terminal:
df -h | grep share1
  1. To test the maximum performance of the current 512 GiB Premium volume, run the following command:
sudo fio --directory=/share1 --ioengine=libaio --rw=write --bs=64k --iodepth=24 --size=50g --fallocate=none --direct=1 --runtime=9000 --time_based --ramp_time=5 --numjobs=8 --name=netappvolumes

The last line of the output shows that the maximum performance the volume can achieve is around 32 MiBps ([w=32.0MiB/s]). This is because the Premium service level provides up to 64 KiBps per GiB of provisioned volume capacity and the volume capacity is 512 GiB.

The performance is calculated as follows:

  • Performance = Volume capacity x Service Level performance
  • Performance = 512 GiB x 64 KiBps/GiB = 32 MiBps
  1. To stop the performance test, press CTRL+C.

Click Check my progress to verify that you've performed the above task. Shrink the volume capacity

Congratulations!

You have learned how to grow and shrink a volume without any modification or downtime, and the performance implication based in the volume capacity.

Next steps / Learn more

Be sure to check out the official NetApp Volumes documentation:

Google Cloud training and certification

...helps you make the most of Google Cloud technologies. Our classes include technical skills and best practices to help you get up to speed quickly and continue your learning journey. We offer fundamental to advanced level training, with on-demand, live, and virtual options to suit your busy schedule. Certifications help you validate and prove your skill and expertise in Google Cloud technologies.

Manual last updated January 6, 2026

Manual Last tested January 6, 2026

Copyright 2024 Google LLC All rights reserved. Google and the Google logo are trademarks of Google LLC. All other company and product names may be trademarks of the respective companies with which they are associated.

准备工作

  1. 实验会创建一个 Google Cloud 项目和一些资源,供您使用限定的一段时间
  2. 实验有时间限制,并且没有暂停功能。如果您中途结束实验,则必须重新开始。
  3. 在屏幕左上角,点击开始实验即可开始

使用无痕浏览模式

  1. 复制系统为实验提供的用户名密码
  2. 在无痕浏览模式下,点击打开控制台

登录控制台

  1. 使用您的实验凭证登录。使用其他凭证可能会导致错误或产生费用。
  2. 接受条款,并跳过恢复资源页面
  3. 除非您已完成此实验或想要重新开始,否则请勿点击结束实验,因为点击后系统会清除您的工作并移除该项目

此内容目前不可用

一旦可用,我们会通过电子邮件告知您

太好了!

一旦可用,我们会通过电子邮件告知您

一次一个实验

确认结束所有现有实验并开始此实验

使用无痕浏览模式运行实验

使用无痕模式或无痕浏览器窗口是运行此实验的最佳方式。这可以避免您的个人账号与学生账号之间发生冲突,这种冲突可能导致您的个人账号产生额外费用。