Overview
Data Catalog is a fully managed, scalable metadata management service within Dataplex.
It offers a simple and easy-to-use search interface for data discovery, a flexible and powerful cataloging system for capturing both technical and business metadata, and a strong security and compliance foundation with Cloud Data Loss Prevention (DLP) and Cloud Identity and Access Management (IAM) integrations.
BigQuery is an enterprise data warehouse that enables super-fast SQL queries using the processing power of Google's infrastructure.
Simply move your data into BigQuery and let us handle the hard work. You can control access to both the project and your data based on your business needs, such as giving others the ability to view or query your data.
Using Data Catalog
There are two main ways you interact with Data Catalog:
Searching for data assets that you have access to.
Tagging assets with metadata.
Data Catalog use case
Imagine you are a data engineer in your company. It is your job to ensure all datasets can be easily discovered and used by colleagues, such as data scientists or business analysts. When a new dataset comes in, you annotate it with important information—this could be whether or not it contains PII data, who owns the dataset, how many rows the dataset contains, etc.
You can annotate this information by adding tags to your dataset and tables. Data Catalog allows you to create tag templates to let you define what kind of attributes you want to tag. This allows you to easily access, map, and discover pertinent information from your datasets and tables.
What you will learn
In this lab, you will learn how to:
Enable the Data Catalog API so that you can use this service in your Google Cloud project.
Create a dataset with BigQuery.
Copy a public New York Taxi table to your dataset.
Create a Data Catalog tag template.
Tag your newly created table with the newly created tags.
Prerequisites
Note: Before starting this lab, log out of your personal or corporate gmail account, or run this lab in Incognito.
This prevents sign-in confusion while the lab is running.
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
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
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.
If necessary, copy the Username below and paste it into the Sign in dialog.
student-04-7eefeb66a687@qwiklabs.net
Copied!content_copy
You can also find the Username in the Lab Details panel.
Click Next.
Copy the Password below and paste it into the Welcome dialog.
bxlEXvvvdYSp
Copied!content_copy
You can also find the Password in the Lab Details panel.
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.
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.
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.
Click Activate Cloud Shell
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, qwiklabs-gcp-01-d66c20da3cbb
. The output contains a line that declares the Project_ID for this session:
Your Cloud Platform project in this session is set to qwiklabs-gcp-01-d66c20da3cbb
gcloud
is the command-line tool for Google Cloud. It comes pre-installed on Cloud Shell and supports tab-completion.
- (Optional) You can list the active account name with this command:
gcloud auth list
Copied!content_copy
- Click Authorize.
Output:
ACTIVE: *
ACCOUNT: student-04-7eefeb66a687@qwiklabs.net
To set the active account, run:
$ gcloud config set account `ACCOUNT`
- (Optional) You can list the project ID with this command:
gcloud config list project
Copied!content_copy
Output:
[core]
project = qwiklabs-gcp-01-d66c20da3cbb
Note: For full documentation of gcloud
, in Google Cloud, refer to the gcloud CLI overview guide.
Task 1. Enable the Data Catalog API
From the navigation menu, select APIs and Services > Library.
In the search bar, enter in
Data Catalog
and select Google Cloud Data Catalog API.Then click Enable.
If you run into the following error after trying to enable the Data Catalog API:
Click Close.
Refresh your browser tab.
Click Enable again.
The Data Catalog API should be successfully enabled:
Open the BigQuery console
- In the Google Cloud Console, select Navigation menu > BigQuery.
The Welcome to BigQuery in the Cloud Console message box opens. This message box provides a link to the quickstart guide and the release notes.
- Click Done.
The BigQuery console opens.
Task 2. Create a dataset
- In the left navigation pane of BigQuery, click on view actions next to your project id, then click CREATE DATASET.
- In the Create Dataset dialog:
For Dataset ID, enter
demo_dataset
For Data location, select
US (multiple regions in United States)
.
- Then click Create dataset.
Note: You cannot add a description or a label when you create a dataset using the Cloud Console. After the dataset is created, you can add a description and label.
Click Check my progress to verify the objective.
Create a dataset
Check my progress
Task 3. Copy a public New York Taxi table to your dataset.
From the left-hand panel, click + ADD > Public datasets.
In the search bar, enter in NYC TLC Trips and click on the result that appears:
For this lab, you will be using a table from this dataset which contains NYC yellow cab trip data from 2018.
Click out of the side panel to close it as soon as you're ready to continue.
Copy the
tlc_yellow_trips_2018
table by running this command in your Cloud Shell panel. Click Authorize.
bq cp bigquery-public-data:new_york_taxi_trips.tlc_yellow_trips_2018 $(gcloud config get project):demo_dataset.trips
Copied!content_copy
The previous command used the bq command line tool
to copy the public table into your project and organized it in the demo_dataset
you created earlier.
- Refresh your
BigQuery
browser page.
- Confirm that the trips table is listed in your
demo_dataset
.
You will add Data Catalog tags to the table in the next section.
Click Check my progress to verify the objective.
Copy a public New York taxi table to your dataset
Check my progress
Task 4. Create a Data Catalog tag template
Create a tag template from the Data Catalog UI.
- Open the Navigation menu and click on Data Catalog > Tag Templates. Then click + CREATE TAG TEMPLATE:
- Fill in the template form to define a "Demo Tag Template".
Template display name: Demo Tag Template
Template ID: demo_tag_template
Location:
europe-west1
Next, create four tag attributes (also called tag "fields").
- Click Add a Field.
Create four attributes with the values listed below. Note that the "source" attribute defines a required tag attribute. You can use lower case letters and underscores to define attribute names:
Field display name: Source of data asset
Field ID: source_of_data_asset
Make this field required: Checked
Type: String
Click Done.
Now click Add a Field and enter in:
Field display name: Number of rows in data asset
Field ID: number_of_rows_in_data_asset
Make this field required: Not checked
Type: Double
Click Done.
Then click Add a Field and enter in:
Field display name: Has PII
Field ID: has_pii
Make this field required: Not checked
Type: Boolean
Click Done.
Then click Add a Field and enter in:
Field display name: PII type
Field ID: pii_type
Make this field required: Not checked
Type: Enumerated
- Add 3 values to this attribute:
Email
Social Security Number
None
- Then click Done.
The completed tag template form should list the four tag attributes:
- Click CREATE.
The Data Catalog Tag template page displays template details and attributes:
Click Check my progress to verify the objective.
Create a tag template
Check my progress
Task 5. Tag your table with the newly created tags
To attach a tag to a table in your dataset, click on the Data Catalog icon in the top left corner.
In Left pane, select Search and type
demo_dataset
in the Search box.Click Search:
The demo_dataset and the trips table that you copied into the dataset are displayed in the search results.
- Open the trips table by clicking on the name:
The Entry details page opens.
- Click ATTACH TAGS.
From the Attach Tags dialog, under "Choose what to tag" select
trips
table, and click Ok.select the Demo Tag Template for tag templates.
Next, insert or select the following values for each tag attribute:
source_of_data_asset: tlc_yellow_trips_2018
pii_type: NONE
Click Save.
Click on
Demo Tag Template
to view the tag attributes listed on the Entry details page.
Click Check my progress to verify the objective.
Attach the tag to your table
Solution of Lab
export LOCATION=
curl -LO raw.githubusercontent.com/QUICK-GCP-LAB/2-Minutes-Labs-Solutions/main/Data%20Catalog%20Qwik%20Start/gsp729.sh
sudo chmod +x gsp729.sh
./gsp729.sh