arrow_back

Leveraging NetApp Cloud Volume ONTAP Remote Caching Capabilities for EDA Workloads

Join Sign in
Test and share your knowledge with our community!
done
Get access to over 700 hands-on labs, skill badges, and courses

Leveraging NetApp Cloud Volume ONTAP Remote Caching Capabilities for EDA Workloads

Lab 1 hour 30 minutes universal_currency_alt 1 Credit show_chart Introductory
Test and share your knowledge with our community!
done
Get access to over 700 hands-on labs, skill badges, and courses

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.

GSP1066

Google Cloud self-paced labs logo

Overview

In this lab, you will learn how to take advantage of NetApp’s caching capability, also known as FlexCache. With NetApp FlexCache, only actively-read data is cached, either locally or at geographically dispersed remote sites, rather than entire files or volumes. The capability is built into any ONTAP flavor, and used for cloud bursting, improving productivity, and collaboration across multiple locations and increasing data throughput for read-intensive workloads such as media rendering, EDA, seismic analysis and financial simulations.

This lab is derived from the BlueXP and ONTAP documentation published by NetApp: https://docs.netapp.com/us-en/occm/task_getting_started_gcp.html
https://docs.netapp.com/us-en/ontap/flexcache/index.html

Objectives

In this lab, you will configure and access FlexCached volumes using Cloud Volume ONTAP for Google Cloud. You learn how to perform the following tasks:

  • Create a cluster peer relationship between two ONTAP systems
  • Create a Storage Virtual Machine (SVM) peer relationship for FlexCache
  • Create a FlexCache volume
  • Access the FlexCache volume from a Linux VM using NFS

Prerequisites

This is an introductory lab and no prior knowledge is required. It is recommended to be familiar with using NetApp BlueXP and knowing how to perform foundational tasks in Google Cloud.

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 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.

To complete this lab, you need:

  • Access to a standard internet browser (Chrome browser recommended).
Note: Use an Incognito or private browser window to run this lab. This prevents any conflicts between your personal account and the Student account, which may cause extra charges incurred to your personal account.
  • Time to complete the lab---remember, once you start, you cannot pause a lab.
Note: If you already have your own personal Google Cloud account or project, do not use it for this lab to avoid extra charges to your account.

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 the Lab Details panel with the following:

    • The Open Google Cloud console button
    • Time remaining
    • The temporary credentials that you must use for this lab
    • Other information, if needed, to step through this lab
  2. Click Open Google Cloud console (or right-click and select Open Link in Incognito Window if you are running the Chrome browser).

    The lab spins up resources, and then opens another tab that shows the Sign in page.

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

    Note: If you see the Choose an account dialog, click Use Another Account.
  3. If necessary, copy the Username below and paste it into the Sign in dialog.

    {{{user_0.username | "Username"}}}

    You can also find the Username in the Lab Details panel.

  4. Click Next.

  5. Copy the Password below and paste it into the Welcome dialog.

    {{{user_0.password | "Password"}}}

    You can also find the Password in the Lab Details panel.

  6. Click Next.

    Important: You must use the credentials the lab provides you. Do not use your Google Cloud account credentials. Note: Using your own Google Cloud account for this lab may incur extra charges.
  7. 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 Google Cloud console opens in this tab.

Note: To view a menu with a list of Google Cloud products and services, click the Navigation menu at the top-left. Navigation menu icon

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.

  1. Click Activate Cloud Shell Activate Cloud Shell icon at the top of the Google Cloud console.

When you are connected, you are already authenticated, and the project is set to your Project_ID, . The output contains a line that declares the Project_ID for this session:

Your Cloud Platform project in this session is set to {{{project_0.project_id | "PROJECT_ID"}}}

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

  1. (Optional) You can list the active account name with this command:
gcloud auth list
  1. Click Authorize.

Output:

ACTIVE: * ACCOUNT: {{{user_0.username | "ACCOUNT"}}} To set the active account, run: $ gcloud config set account `ACCOUNT`
  1. (Optional) You can list the project ID with this command:
gcloud config list project

Output:

[core] project = {{{project_0.project_id | "PROJECT_ID"}}} Note: For full documentation of gcloud, in Google Cloud, refer to the gcloud CLI overview guide.

Network requirements for Cloud Volumes ONTAP in Google Cloud.

Task 1. Set up service accounts

  1. To start, in your Cloud Shell window, run the following commands to set some environment variables:
export PROJECT_ID=$(gcloud config get-value project) export serviceAccount="netapp-cloud-manager@"$PROJECT_ID".iam.gserviceaccount.com" export serviceAccount2="netapp-cvo@"$PROJECT_ID".iam.gserviceaccount.com"
  1. Next, run the following commands to assign roles to the pre-created netapp-cloud-manager service account:
# assign roles to the netapp-cloud-manager service account gcloud projects add-iam-policy-binding $PROJECT_ID \ --member="serviceAccount:${serviceAccount}" \ --role='roles/iam.serviceAccountAdmin' gcloud projects add-iam-policy-binding $PROJECT_ID \ --member="serviceAccount:${serviceAccount}" \ --role='roles/storage.objectAdmin' gcloud projects add-iam-policy-binding $PROJECT_ID \ --member="serviceAccount:${serviceAccount}" \ --role='roles/deploymentmanager.editor' gcloud projects add-iam-policy-binding $PROJECT_ID \ --member="serviceAccount:${serviceAccount}" \ --role='roles/logging.admin' gcloud projects add-iam-policy-binding $PROJECT_ID \ --member="serviceAccount:${serviceAccount}" \ --role='roles/compute.admin' gcloud projects add-iam-policy-binding $PROJECT_ID \ --member="serviceAccount:${serviceAccount}" \ --role='roles/cloudkms.admin' gcloud projects add-iam-policy-binding $PROJECT_ID \ --member="serviceAccount:${serviceAccount}" \ --role='roles/storage.admin'

Click Check my progress to verify the objective. Assign roles to service account

  1. Lastly, create the netapp-cvo service account and assign it the relevant roles:
# create netapp-cvo service account gcloud iam service-accounts create netapp-cvo --display-name=netapp-cvo gcloud projects add-iam-policy-binding $PROJECT_ID \ --member="serviceAccount:${serviceAccount2}" \ --role='roles/storage.objectAdmin' gcloud projects add-iam-policy-binding $PROJECT_ID \ --member="serviceAccount:${serviceAccount2}" \ --role='roles/storage.admin' gcloud iam service-accounts add-iam-policy-binding ${serviceAccount2} --member="serviceAccount:${serviceAccount}" --role='roles/iam.serviceAccountUser'

Click Check my progress to verify the objective. Set up Service Accounts

Task 2. Set up two new ONTAP storage environments

In this section you will log into NetApp BlueXP, NetApp’s data landscape management platform, and create two new Cloud Volumes ONTAP storage environments on Google Cloud infrastructure. One Cloud Volumes ONTAP instance will host the source volume (FlexCache origin) the other will host the destination volume (FlexCache target).

  1. From the Google Cloud Console Navigation Menu, go to Compute Engine > VM instances. You should see the cloudmanager VM already deployed for you.

    cloud-manager
  2. Click the External IP to connect to the VM in a new window. Use http://<IP Address>/.

    Note: If Chrome gives you a privacy error, continue by clicking Advanced, then Proceed.
  3. Once you are on the BlueXP SaaS setup page, you can set up your NetApp Account.

    First click Sign Up, then enter in your lab credentials. Fill out the rest of the fields to authenticate yourself with NetApp’s Cloud Central and click Sign Up to log in to BlueXP.

The Log In to NetApp Cloud Central dialog

  1. Next, you will be prompted to create an Connector name and a Account name. For these, just use user. Click Let's Start and then click Lets go to BlueXP. You should now be redirected to the BlueXP SaaS page. If prompted click continue.

  2. Before you add a working environment, navigate to the gear icon on the top-right of the page then click Connector Settings > General.

    Note: If Connector Settings is not clickable wait a couple of minutes and try to refresh the page.
  3. For Automatic Cloud Volumes ONTAP update during deployment, click the box and then uncheck the Automatically update Cloud Volumes ONTAP box to turn the updates off. Click Save. Your configuration settings should resemble the following:

    The configurations displayed on the Connector Settings page

    This page may take a few minutes to load after the values are changed.

  4. Click BlueXP on the top left to navigate to the home page. Click Add Working Environment to create the first Cloud Volumes ONTAP instance that will serve as your source.

    add working environment If you happen to run into any issues adding a Working Environment (i.e server fault), this can be due to BlueXP automatically updating. If this happens, wait a few minutes, refresh the page, and try again.
  5. Add New Working Environment: select Google Cloud Platform.

    Choose location
  6. Choose Type: Cloud Volumes ONTAP Single Node by click on Add New next to it.

    Choose Type
  7. On the Details and Credentials page, specify a Working Environment Name, optionally add labels, and then specify a new Password for the default admin account. Click Continue. Make sure to record the password, since you would need it later on in the lab.

    Note: The service account netapp-cvo (with the Storage Admin role) that you created in the previous section(in Task 1) is automatically associated with your instance. This Service Account allows Cloud Volumes ONTAP to automatically move cold data to Google Cloud Storage.
Details and Credentials page
  1. On the Services page, disable the Data Sense & Compliance, and Backup to Cloud and click Continue.
Services page
  1. Location & Connectivity:
  • For the Google Cloud Region and Google Cloud Zone, use and , respectively.

  • For the VPC select default.

  • For the Subnet, and Firewall Policy, leave as default.

  • Select the checkbox to confirm network connectivity to Google Cloud storage for data tiering

  • Click Continue.

    Location  connectivity
  1. Cloud Volumes ONTAP Charging Methods & NSS Account: Select Freemium (Up to 500 GiB) and click on Continue.
Freemium charging method
  1. Preconfigured Packages: click Change Configuration.

  2. On the Licensing section:

  • First click Change version and select ONTAP-9.7P5 version from the dropdown.

  • Click Apply.

  • Next, from the Machine Type dropdown list select n1-highmem-4.

  • Click Continue.

    Version and machine type
  1. Underlying Storage Resources: Choose Standard and for the Google Cloud Disk Size select 100 GB. Click Continue.
Underlying storage resources
  1. WORM (write once, read many): keep the settings as default and click Continue.

  2. Create Volume: Skip as you will later create the necessary storage volumes.

  3. Review & Approve: Review and confirm your selections:

  • Review details about the configuration.
  • Click More information to review details about support and the Google Cloud resources that BlueXP will purchase.
  • Select both checkboxes.
  • Click Go.

Click Check my progress to verify the objective. Set up a new ONTAP Storage Environment

  1. While the first instance is being deployed,Repeat steps 7-19 to create the second Cloud Volumes ONTAP instance, that will serve as the destination and host the FlexCache volume you will create later on.

Click Check my progress to verify the objective. Set up a second ONTAP Storage Environment You’re done. You can take a break while BlueXP deploys your Cloud Volumes ONTAP systems on top of Google Cloud’s Compute Engine and Persistent Disks + Cloud Storage.

Task 3. Prepping the origin volume

In this section you will first create a Cloud Volumes ONTAP volume and then populate it with some data. This volume will serve as the source volume, containing the source data, that later in this lab will be cached to a FlexCache volume located on the destination Cloud Volumes ONTAP system.

  1. Back on BlueXP’s Storage Canvas, double-click on the source Cloud Volumes ONTAP working environment (or click it once and then use the Enter Working Environment button that will appear at the bottom right), to enter the Volumes page.

  2. On the Volumes page, Add Volume, on the right hand side, and select New Volume.

    new volume button location

  3. Volume Details, Protection & Tags:

  • Name your volume data1

  • Set size to 10 (size set in GB)

  • Leave Snapshot Policy with default

  • Leave Storage VM (SVM)

  • Click Next

    Volume details

  1. Volumes Protocol:
  • Select NFS as protocol

  • Verify Access Control is set to Custom export policy

  • Click Next

    Volumes protocol

  1. Select Disk Type:
  • Keep Disk Type as PD-Standard

  • Click Next

    disk type

  1. Usage Profile, & Tiering Policy:
  • Verify the Storage Efficiency is marked as enabled

  • Click Next

    usag profile and tiering policy page

  1. Review:
  • Review and click Add to create the volume. Once the Operational Approval pop-up appears, click the Approve button.

    review page

You have just created your source Cloud Volumes ONTAP volume to store your applications data.

Task 4. Populating the Origin Volume with Data

  1. Back on the Volumes page, locate the data1 volume and click on its triple-bar.

    data1 volume

  2. From the list of operations revealed, click on Mount Command, and then click Copy to copy the command to your clipboard.

    mount command

    mount vol

  3. From the Google Cloud Console navigation menu, navigate to Compute Engine in the COMPUTE section and choose VM instances from the menu.

    vm instance

  4. On the VM instances page, locate the preconfigured linuxvm and connect to it by clicking on SSH.

    vm instances page

  5. Once logged into linuxvm, use the following command to install the nfs-common package, which installs the NFS client needed to mount the volume.

    sudo apt install nfs-common -y
  6. On your linux VM, create a local directory under /mnt named data1 that would serve as a mount point by executing the command:

    sudo mkdir /mnt/data1
  7. Next, paste the Mount Command, copied in step 2, and replace <dest_dir> with the /mnt/data1 directory, and add the option -o nfsvers=3 to use NFSv3. Then, click on enter to mount the Cloud Volumes ONTAP volume using NFS.

    sudo mount -o nfsvers=3 <IP>:/data1 /mnt/data1 Note: In the version of ONTAP used in this lab (9.7P5) while regular ONTAP volumes can be accessed with any NFS version, FlexCache volumes only support NFSv3. So, for a consistent view of files’ ownership, later on in the lab, we will also use NFSv3 to access the source volume.
  8. To verify that you have mounted the cloud volume correctly, check the output of the df -h command for a filesystem mounted on /mnt/data1:

    check output

  9. Now that the source volume is mounted to your linuxvm, it’s time to put some data in it. Use the following command to create multiple files, in your volume:

    sudo dd if=/dev/urandom bs=1024 count=10240 | sudo split -a 4 -b 1024k - /mnt/data1/file.
  10. Use the following command to verify that your volume was populated:

    ls -l /mnt/data1

    The output should look like this:

    Verify volume was populated

Create the FlexCache target volume on the destination Cloud Volumes ONTAP

Now that your source volume was created and is populated with data, you can proceed to the next section and see how the data is easily cached, on-demand, on a different ONTAP environment that can be located anywhere (on-premises, cloud, and different region).

Task 5. Create the FlexCache Target Volume on the Destination Cloud Volumes ONTAP

In this section you will learn how to enable and use NetApp FlexCache technology built into any ONTAP-based system, including Cloud Volumes ONTAP. Before creating the FlexCache target volume, you will establish a peering relationship that enables secure communication between the Cloud Volumes ONTAP systems. To perform these tasks you will use Cloud Volumes ONTAP’s CLI, accessible via SSH.

Establish Peering Relationships

To establish the peering relationship, you will first locate the necessary IP addresses on each system - the Cluster Management IP that will be used to SSH into Cloud Volumes ONTAP, and the Intercluster IP used for the secure inter-cluster communication channel.

Locating the IP Addresses

  1. Back on BlueXP, enter the Volumes page on the source Cloud Volumes ONTAP Working Environment. From the Storage Canvas, double-click on the working environment (or click it once and then use the Enter Working Environment button that will appear at the bottom right).

  2. Next, click on the triple-bar menu at the top right hand side and select Information.

    gcp managed encryption page

  3. Under the Access section, locate and record the Cluster Management IP address (will be used to SSH the system) and the intercluster IP address (will be used for secure communication between the systems).

    cluster access

  4. Now, go back to BlueXP’s Canvas, and double-click on the destination Cloud Volumes ONTAP Working Environment, to enter its Volumes page.

  5. Repeat steps 2-3 on the destination system, to locate and record its cluster management and the intercluster IP addresses.

Creating the Peering Relationship

  1. Next, you will need two SSH-in-browser sessions to the linuxvm. Use the following to open an in-browser SSH session:

    • From the Google Cloud Console navigation menu, navigate to Compute Engine in the COMPUTE section and choose VM instances from the menu.
    • On the VM instances page, locate the preconfigured linux VM and connect to it by clicking on SSH.
    Note: before continuing to the next step, make sure you have two SSH-in-browser sessions.
  2. On one SSH-in-browser session, open an SSH session to the source Cloud Volumes ONTAP using its Cluster Management IP. Use the following command to establish an SSH session with the source:

    ssh admin@<source-cluster-manamgemet-ip>

    (replace <source-cluster-management-ip> with the IP you recorded earlier)

    Establish an SSH session with the source

    Use the password you specified when creating the source system to log in.

  3. Switch to the other SSH-in-browser session, and open an SSH session to the destination Cloud Volumes ONTAP using its Cluster Management IP. Use the following command to establish an SSH session with the destination:

    ssh admin@<destination-cluster-manamgemet-ip>

    (replace <destination-cluster-management-ip> with the IP you recorded earlier)

    Open an SSH session to the destination

  4. Now that you’re connected to both Cloud Volumes ONTAPs’ CLI (aka Clustershell), you’ll initiate a request to create an authenticated peering relationship. Run the following CLI command, on the source Cloud Volumes ONTAP:

    cluster peer create -peer-addrs <destination-intercluster-ip>

    (replace <destination-intercluster-ip> with the IP you recorded earlier)

    Enter a passphrase when prompted, and record it. You will use it in the next step

    Create an authenticated peering relationship - source

  5. Next, you’ll initiate the same request from the destination system. Run the following CLI command, on the destination Cloud Volumes ONTAP:

    cluster peer create -peer-addrs <source-intercluster-ip>

    (replace <source-intercluster-ip> with the IP you recorded earlier)

    When prompted for a passphrase, enter the passphrase you used in the previous step.

    Create an authenticated peering relationship - destination

  6. Verify that the peering relationship was properly created. Run the following command on either the source or destination system:

    cluster peer show

    The output should look like the following (with your system’s name) where Availability shows ‘Available’ and Authentication shows ‘ok’:

    Verify the peering relationship creation

  7. The cluster peering was formed and what’s left is to create a Storage Virtual Machine (SVM) peering relationship. Run the following command from the ONTAP CLI session of your destination system, the request a peering relationship:

    vserver peer create -vserver svm_<destination-cvo-name> -peer-vserver svm_<source-cvo-name> -peer-cluster <source-cvo-name> -applications flexcache

    (replace <destination-cvo-name> and <source-cvo-name> with the names you provided to the destination and source systems, respectively).

    Create Storage Virtual Machine peering relationship

    Note: An SVM (aka *vserver*) is an ONTAP entity that contains volumes and IP addresses and you can create multiple SVMs on a single Cloud Volumes ONTAP system for various use cases such as secure multi-tenancy, workload separation and management delegation.
  8. Back to on the ONTAP CLI session of your source system, run the following command to accept the request for the SVM peering relationship:

    vserver peer accept -vserver svm_<source-cvo-name> -peer-vserver svm_<destination-cvo-name>

    (replace <source-cvo-name> and <destination-cvo-name> with the names you provided to the destination and source systems, respectively).

    Accept SVM peering relationship request

  9. Lastly, let’s verify that the peering relationship was properly created. Run the following command on either the source or destination system:

    vserver peer show

    The output should look like the following (with your SVM/vserver and system name) where Peer State shows ’peered’ and Peering Applications shows ‘flexcache’:

    Verify the peering relationship was properly created

Create FlexCache Target Volume On Destination

  1. Back on the ONTAP CLI session of the destination system, run the following command to create the FlexCache volume:

    volume flexcache create -volume cache -vserver svm_<destination-cvo-name> -origin-volume data1 -origin-vserver svm_<source-cvo-name> -junction-path /cache -aggr-list aggr1

    (replace <destination-cvo-name> and <source-cvo-name> with the names you provided to the destination and source systems, respectively).

    Create Flexcache volume

  2. Next, verify that the FlexCache volume was properly created. On the ONTAP CLI session of the destination system, run the following command:

    volume flexcache show

    The output should look like the following (with your SVM/vserver and system names):

    Verify flexcache volume created

  3. To make your FlexCache volume accessible via NFS, create an export policy with an export rule and associate it with the FlexCache volume. On the ONTAP CLI session of the destination system, run the following commands:

    • Create the export policy:

      vserver export-policy create -vserver svm_<destination-cvo-name> -policyname flexcache_policy

      (Replace <destination-cvo-name> with the name you provided to the destination).

    • Create a rule within the export policy to allow access to the Linux machine:

      vserver export-policy rule create -vserver svm_<destination-cvo-name> -policyname flexcache_policy -ruleindex 1 -protocol nfs -clientmatch 10.128.0.0/20 -rorule any -rwrule any -superuser any

      (Replace <destination-cvo-name> with the name you provided to the destination).

    • Assign the Export Policy to the FlexCache volume.

      volume modify -vserver svm_<destination-cvo-name> -volume cache -policy flexcache_policy

      (Replace <destination-cvo-name> with the name you provided to the destination).

  4. To verify that your FlexCache volume was properly assigned with the export policy, run the following command from the ONTAP CLI session of the destination system:

    volume show cache -fields policy

    The output should look like the following (with your SVM/vserver name):

    Verify Flexcache volume properly assigned with the export policy

Hurray! Your FlexCache target volume is provisioned and ready to be mounted!

Task 6. Mount and use the FlexCache Target Volume

In this section you will see how the remote caching technology works by accessing and performing read and write operations on the FlexCache target volume, which corresponds with the source volume. In addition, you will see how the source volume is automatically updated when changes or writes are made to the FlexCache target volume.

  1. Back on BlueXP, enter the Volumes page on the destination Cloud Volumes ONTAP Working Environment. From the Storage Canvas, double-click on the working environment (or click it once and then use the Enter Working Environment button that will appear at the bottom right).

  2. Next, click on the triple-bar menu at the top right hand side and select Information.

    Select Information menu item

  3. Under the Access section, locate and record the Data (nfs, cifs) IP address

    Locate Data (nfs, cifs) IP address under Access

  4. Back on the ONTAP CLI session of the destination system, run the command exit to get back to the CLI of the linuxvm.

  5. On the linuxvm run the following command to create a directory to serve as an NFS mount point:

    sudo mkdir /mnt/cache
  6. Next, mount the FlexCache volume using the following command:

    sudo mount -t nfs -o nfsvers=3 <data-ip>:/cache /mnt/cache

    (Replace <date-ip> with the IP address you recorded on step 3).

  7. Now, let’s confirm that we can see all the file content of the source volume through the FlexCache volume’s mount point. Use the following command to list the content of your target volume:

    ls -l /mnt/cache

    The output should look like this: (The content shown should be identical to the source)

    List Content of target volume

    Note: at the moment, only files and directory metadata are cached in the target volume. Once you will start reading files, ONTAP will automatically cache each and every block that was read in the target volume. On subsequent reads operations that performance would dramatically improve since the data is already cached.
  8. Let’s continue and see what happens when data is added or changed in the FlexCache target volume. Use the following command to create some new files on the target volume you’ve just mounted:

    sudo dd if=/dev/urandom bs=1024 count=10240 | sudo split -a 4 -b 1024k - /mnt/cache/newfile
  9. Now, use the following command to verify the new files are shown on your target volume:

    ls -l /mnt/cache

    The output should look like this:

    Verify the new files are shown on target volume

  10. Lastly, use the following command to verify that the new files, you created in step 8, were written to the source volume:

    ls -l /mnt/data1

    The output should look like this: (The content shown should be identical to the destination)

    Verify the new files created were written to the source volume

Hurray! You have created and used a FlexCache volume that reflects the data stored on the source volume located on a different ONTAP environment. As you saw, data created on the source can be read from the FlexCache volume, and when a change is made to existing data, or when new data is added, via the target FlexCache volume, it is immediately available on the source.

Congratulations!

In this lab, you learned the basics of ONTAP’s intelligent remote caching technology called FlexCache. With FlexCache data can be cached, either locally or at geographically dispersed remote sites and used for cloud bursting, improving productivity and collaboration across multiple locations and increasing data throughput for read-intensive workloads such as media rendering, EDA, seismic analysis and financial simulations. By leveraging two Cloud Volumes ONTAP instances (as mentioned previously, that caching relationship can be established between any flavor of ONTAP located anywhere) you configured an active caching relationship between two volumes - a source and its cached destination (FlexCache target), where data from the source is automatically cached on the target volume (based on your applications’ read operations) and when changes are made to cached data (or new data is added) the source volume is immediately and automatically updated.

End your lab

Now that you're finished with the lab, click on the End Lab button at the top of this page, then use the stars to rate your lab experience:

End lab

Leave comments about your experiences in the Comment window, Google always appreciates thoughtful feedback.

Ending a lab will remove your access to the Google Cloud project as well as the services and work you've done in it. If you go back to the console, you will see that you've been signed out automatically. You can close that tab now.

Next Steps / Learn More

Be sure to check out the following for more information and to get started:

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 March 07, 2023

Lab Last Tested March 07, 2023

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.