How to move data to/from a Google bucket

Allie Hajian
  • Updated

Explore how to add data to - or download from - a Google bucket (your Workspace bucket or an external bucket). The best approach depends on how many files you have and what size they are, whether you're moving to or from local storage, and how comfortable you are with different options. 

Transfer between local storage and a workspace bucket in Terra

Uploading/downloading data in Terra Only for transfers between workspace storage and local storage (e.g., laptop).

Recommended only for small numbers of small data files.


Note: This is the sort of transfer you often see where you upload or download a file from the internet. Because your local storage has no cloud-native  "path", you can only transfer files stored on the system running your browser. 

  • 1. Start in the workspace Data page.

    2. Select the "Files" icon on the lower left side.
    Screenshot of workspace data tab highlighting the files icon at the bottom left

    3. In the "files" section, click on the upload button with a cloud icon in the upper right corner.

    4. Use the finder window to select the file(s) to upload.
  • 1. Start from the workspace Data page.

    2. Select the "Files" icon on the bottom of the left column (underneath "Other Data").

    3. Find the file you want to download (you may have to navigate down many levels of file folders) to access the file you want.
    Screenshot of the contents of a directory in the Files section of a Terra workspace's data tab. Two files are listed in clickable links. Click on these links to download the files.

    4. Click on the file to download. This will open a pop-up window with instructions for downloading the data in multiple ways, and the cost of the download.

  • 1. Start from the workspace Data page.

    2. Click on the table with the data to download on the left side of the screen. The example below is for the sample table.

    Any files available for download will be shown as a link in the sample row.
    Screenshot of sample table with two rows. In the first column is the unique sample ID (NA12878 and template_sample). In the second cram column is a clickable link to download the file.

    3. Click on a file link to open a pop-up window describing the size of the file, instructions for downloading the data in multiple ways, and the cost of the download. For example, in the screenshot below the file could be downloaded via a terminal command or by clicking a button.
    Screenshot of a pop-up window that appears when clicking on a file linked from a data table. The window lists the file's name, a preview of its contents, and the cost of downloading it. In addition, there are two ways to download the file: a button that says 'Download for <$0.01' and a copyable terminal command.

    4. Click on the “Download for [cost to download your file]” button to initiate the download. Note: This button starts the download immediately. You won't get another opportunity to verify before the download starts. However, you can cancel the download at any time during the process. 

    5. Repeat for any additional files you would like to download.

Transfer using gsutil

When to use gsutil

  • Works well for all size transfers
  • Ideal for large file sizes or 1000s of files
  • Can be used for transfers between local storage and a bucket, workspace virtual machine (VM) or persistent disk and a Google bucket, as well as between Google buckets (external and workspace)

Diagram of three locations for data: local storage, workspace cloud storage (Google bucket) and Cloud Environment (VM disk or persistent disk). An arrow between the Cloud Environment and workspace storage shows that you can use workspace tools (cloud environemnt terminal) to move or copy files between the cloud environment and workspace storage.

What is gsutil? gsutil is a Python application that lets you access Cloud Storage from the command line in a terminal.

The terminal you use can be run on your local machine (local instance) or built into the workspace Cloud Environment (workspace instance).

gsutil in a terminal - Step-by-step instructions

Step 1. Open gsutil in a terminal

You can run a terminal locally or in your workspace. Which you use depends on where your data are located

Which terminal instance should you use?

 

Moving data to or from the Cloud Environment VM/PD?
Use the workspace terminal instance.

Moving data to or from local storage?
Use a local terminal instance.

Google bucket to Google bucket transfer?
You can use either instance.

  • Use for moving data to/from a cloud environment

    1.1. Start a Cloud Environment if one is not already running, as this is the virtual machine the terminal runs on.

    1.2. Scroll to the right of your workspace page to see these icons, which will lead you to one of the best-kept secrets of Terra - a command line interface. Click on the (>_) icon  and you can access what resembles a UNIX terminal.

    Screenshot of right sidebar with (from the top) the cloud environment rate, the cloud environment lightening logo, and the terminal logo

    1.3. From here, you can perform command-line tasks including gsutil.

     

  • Use for moving data to/from local storage

    1.1. Follow Google’s instructions to install Google SDK, which includes gsutil.

    1.2. Open a Google Cloud SDK shell and run gcloud init to authenticate. You will be asked to sign into your Google Cloud account and select your Google Cloud project.

    1.3. Set a default project name using gcloud config set project MY_PROJECT.

    1.4.Verify gsutil installation. To do this, run gsutil ls to see all of the Cloud Storage buckets you have access to.

    List the buckets for a specific projectRun gsutil ls -p PROJECT_NAME to list buckets for a specific project. You will need to have owner access to the project to run this command.  

Step 2. Run gsutil commands 

Once in a terminal (either on your local machine or in a Terra workspace), you can copy data from one place to another using the cp command:

gsutil cp WHERE_TO_COPY_DATA_FROM/FILENAME WHERE_TO_COPY_DATA_TO 

For example, to copy a file from one location in the workspace bucket to a folder called 'favorites' in the same bucket, your command would look something like this: gsutil cp gs://fc-3dfd2d6a-d382-4c2b-b593-39651709b7bf/myFile.txt gs://fc-3dfd2d6a-d382-4c2b-b593-39651709b7bf/favorites

Finding the full path to workspace bucket

In Terra, you can find the full path to the workspace bucket in the Cloud Information box on the right-hand side of the workspace's Dashboard tab. Copy this path by clicking the clipboard icon in the right side of the path. 

Screenshot of clipboard icon to copy the full path to the workspace bucket to the clipboard.

Additional details on the gsutil cp command can be found in the official Google gsutil documentation.

You must be an Owner or Writer to upload to a Google bucket, including the workspace bucket!

  • To generate a manifest when uploading, use the - L option.

    gsutil cp - L WHERE_TO_COPY_DATA_FROM/FILENAME WHERE_TO_COPY_DATA_TO
  • To copy the file "Example.bam" from an external bucket gs://My_GCP_bucket" into the "gene_files" folder in a workspace bucket "gs://fc-7ac2cfe6-4ac5-4a00-add1-c9b3c84a36b7", use the command

    gsutil cp gs://MY_GOOGLE_BUCKET/EXAMPLE.bam gs://fc-7ac2cfe6-4ac5-4a00-add1-c9b3c84a36b7

    Note: To do this, you must use gsutil in a terminal on your local machine.

  • To download data from a bucket, reverse the order of the bucket URL and local file path, use 

    gsutil cp [bucket URL]/[file name] [local file path] 

    Make sure to leave a space between the the bucket URL and the file path.

    gsutil cp gs://WorkspaceBucket/GeneFiles/example.bam /Users/Documents

    Note that operating systems specify local file paths differently -- for example, on a Windows system the local path in the example above might be Users\Documents.

    To download data from a bucket that is enabled with requester-pays, run the command this way.

    gsutil -u GOOGLE_BILLING_PROJECT cp gs://BUCKET_URL/FILE_NAME LOCAL_FILE_PATH

    To learn more about accessing files from a requester-pays enabled Google bucket, see the  Google requester pays docs.

  • If you're downloading folders, you'll need to use the -R flag to copy the folder and its contents

    gsutil cp -R gs://EXAMPLE_BUCKET/FOLDER_1 LOCAL_FILE_PATH

    You can to use the -m flag to copy the files in parallel.

    gsutil -m cp -R gs://EXAMPLE_BUCKET/FOLDER_1 LOCAL_FILE_PATH

    More gsutil instructions working with large data can be found here and an explanation of -mcan be found here.

    It's also possible to to maximize parallelization by configuring thread count using -o.Try this article about large file download optimization.

    gsutil -o ‘GSUtil:parallel_thread_count=1’ -o ‘GSUtil:sliced_object_download_max_components=8’ cp gs://BUCKET_URL/FILE_NAME LOCAL_FILE_PATH

File validation / checksum generation

At the end of every upload or download, the gsutil cp command validates that the checksum it computes for the source file/object matches the checksum the service computes. If the checksums do not match, gsutil will delete the corrupted object and print a warning message. You can learn more about this from Google's documentation. This very rarely happens, but if it does, please contact gs-team@google.com.

Troubleshooting

The following are the most common errors our users encounter when moving data using gsutil. If you experience a different error, please note the error in the comments of this article and contact Frontline Support by clicking on contact us under Support in the main Terra menu.

Screenshot of the menu used to contact Frontline Support. From the main Terra menu (three horizontal lines at the top left of any Terra window), expand the Support section and click on Contact Us, which is highlighted with an orange rectangle. 

  • You may have trouble accessing your Terra workspaces if you authorized your gcloud sdk installation with a Google Account that is not registered in Terra and applied to your workspace.  You can verify which Google Account you’ve authorized with gcloud by running the following command: gcloud auth list.

    1. If the Google ID returned matches the one on your Terra workspace, you should be able to access your workspace.  If it doesn't, please contact your Project Manager.
    2. If the Google ID returned does not match the one on your Terra workspace, run the following command to specify the correct account:
      gcloud auth login GOOGLE_ACCOUNT
    3.  
  • When working on a Unix system, you need to to tell it not to try to start a browser. Once you do that, you should receive a url you can paste into your desktop browser. 

    To tell the system not to start a browser, use the command gcloud auth login --no-launch-browser

Was this article helpful?

Comments

0 comments

Please sign in to leave a comment.