Adding a Google Data Catalog Connection
Prerequisites
Supported Versions
The Google Data Catalog connector has been successfully tested with the Web version.
Installing the Plugin
Declaring the Connection
Creating and configuring connectors is done through a dedicated configuration file located in the /connections folder of the relevant scanner.
In order to establish a connection with Google Data Catalog instance, specifying the following parameters in the dedicated file is required:
| |
|---|
| The name that will be displayed to catalog users for this connection |
| Unique identifier of the connection on the Zeenea platform. Once registered on the platform, this code must not be modified or the connection will be considered as new and the old one removed from the scanner. |
| The type of connector to be used for the connection. Here, the value must be google-cloud.data-catalog. This value must not be modified. |
| JSON Key. **Careful**: use three double quotes to encapsulate the JSON key. Example: `"""{my:"json"}"""` |
| Depending on the proxy, http or https |
| |
| |
| |
| |
| Reads per minute quota value.
Default value: 6000 (default value of Google Data Catalog). |
quota.search_per_user_per_minute | Search quota value per user per minute.
Default value: 180 (default value in Google Data Catalog). |
| Maximum waiting time when waiting for the availability of a quota.
Default value: 10 minutes. |
| Maximum number of retries when a request encounters a quota expiration error |
|
User Permissions
In order to collect metadata, the running user's permissions must allow them to access and read databases that need cataloging.
Role
To extract metadata, the technical account must have the following predefined role:
Collected Metadata
Inventory
Will collect the list of tables and views accessible by the user.
Dataset
A dataset can be a table or a view.
Name
Source Description
Technical Data:
Project Id
Dataset Id
Table Id
Origin
Dataset Type
Field
Dataset field.
Name
Source Description
Type
Can be null: Depending on the field settings.
Multivalued: true for array fields, false otherwise.
Primary Key: Not supported. Default value false.
Tags
It's possible to get all the tags applied to your Data Catalog objects through a specified configuration in your dedicated scanner. You just need to define the tag model you want to get into your Zeenea Data Catalog in the application.conf file of your scanner.
Here is an example of a configuration file application.conf that retrieves select tags:
connector.google_data_catalog.tags = """
[
{
"id": "data_governance",
"name": "Data Governance",
"fields": [
{
"id": "data_governor",
"name": "Data Governor",
"type": "STRING"
},
{
"id": "data_classification",
"name": "Data Classification",
"type": "ENUM"
},
{
"id": "approved_by_governance",
"name": "Approved By Governance",
"type": "BOOL"
},
{
"id": "approved_by_governance_date",
"name": "Date of Governance Approval",
"type": "DATETIME"
}
]
}
]"""
Object Identification Keys
An identification key is associated with each object in the catalog. In the case of the object being created by a connector, the connector builds it.
Object | Identification Key | Description |
|---|
Dataset | code/bigquery/project id/dataset id/table id | - code: Unique identifier of the connection noted in the configuration file - project id: BigQuery project id - dataset id: BigQuery dataset name - table id: Table name |
Field | code/bigquery/project id/dataset id/table id/field name | - code: Unique identifier of the connection noted in the configuration file - project id: BigQuery project name - dataset id: BigQuery dataset name - table id: Table name - field name |
Last modified date: 11/28/2025