Google Drive Sink
The Google Drive sink plugin is available in the Hub.
Plugin version: 1.4.1
Sink plugin saves files from the pipeline to Google Drive directory via Google Drive API.
Configuration
Property | Macro Enabled? | Version Introduced | Description |
---|---|---|---|
Reference Name | No | Â | Required. Name used to uniquely identify this sink for lineage, annotating metadata, etc. |
File Body Field | Yes | Â | Required. Name of the schema field (should be BYTES type) which will be used as body of file. The minimal input schema should contain only this field. |
File Name Field | Yes | Â | Optional. Name of the schema field (should be STRING type) which will be used as name of file. In the case it is not set files have randomly generated 16-symbols names. |
File Mime Field | Yes |  | Optional. Name of the schema field (should be STRING type) which will be used as MIME type of file. All MIME types are supported except Google Drive types. In the case it is not set Google API will try to recognize file’s MIME type automatically. |
Directory Identifier | No | Â | Required. Identifier of the destination folder. This comes after https://drive.google.com/drive/folders/1dyUEebJaFnWa3Z4n0BFMVAXQ7mfUH11g?resourcekey=0-XVijrJSp3E3gkdJp20MpCQ Then the Directory Identifier would be |
Authentication Type | No | Â | Required. Type of authentication used to access Google API. Select OAuth2 and Service Account types are available. Make sure that:
OAuth2 client credentials can be generated on Google Cloud Credentials Page. For more information about OAuth2, see Google Drive API Documentation. Default is OAuth2. |
Client ID | No | Â | Optional. OAuth2 Client ID used to identify the application. |
Client Secret | No | Â | Optional. OAuth2 Client Secret used to access the authorization server. |
Refresh Token | No | Â | Optional. OAuth2 Refresh Token to acquire new access tokens. |
Service Account Type | Yes | 6.3.0/1.3.0 | Optional. Select one of the following options:
Make sure that the Google Drive Folder is shared with the service account email. To write files to a Private Google Drive, grant the |
Service Account File Path | Yes | 6.3.0/1.3.0 | Optional. Path on the local file system of the service account key used for authorization. Can be set to 'auto-detect' when running on a Dataproc cluster which needs to be created with the following scopes: When running on other clusters, the file must be present on every node in the cluster. Default is |
Service Account JSON | Yes | 1.4.0 | Optional. Contents of the service account JSON file. Service Account JSON can be generated on Google Cloud Service Account page. |
Steps to Generate OAuth2 Credentials
Create credentials for the Client ID and Client Secret properties here.
On the Create OAuth client ID page, under Authorized redirect URIs, specify a URI of
http://localhost:8080
. This is just to generate therefresh token
.Click
Create
. The OAuth client is created. For more information, see this doc.Copy the Client ID and Client Secret to the plugin properties.
To get the Refresh Token, follow these steps:
Authenticate and authorize with the Google Auth server to get an authorization
code
.Use that authorization code with the Google Token server to get a
refresh token
that the plugin will use to get future access tokens.
To get the authorization code, you can copy the URL below, change to use your
client_id
, and then open that URL in a browser window.https://accounts.google.com/o/oauth2/v2/auth? scope=https%3A//www.googleapis.com/auth/drive& access_type=offline& include_granted_scopes=true& response_type=code& state=state_parameter_passthrough_value& redirect_uri=http%3A//localhost:8080& client_id=199375159079-st8toco9pfu1qi5b45fkj59unc5th2v1.apps.googleusercontent.com
This will prompt you to login, authorize this client for specified scopes, and then redirect you to
http://localhost:8080
. It will look like an error page, but notice that the URL of the error page redirected to include thecode
. In a normal web application, that is how the authorization code is returned to the requesting web application.For example, URL of the page will be something like
http://localhost:8080/?state=state_parameter_passthrough_value&code=4/0AX4XfWi6PsiJiPO4MjltrcD6uoRgwci-HX16aL1-Ax-tgqYgC47NnjtCCKRoVzv46m8aJw&scope=https://www.googleapis.com/auth/drive
Here, code=
4/0AX4XfWi6PsiJiPO4MjltrcD6uoRgwci-HX16aL1-Ax-tgqYgC47NnjtCCKRoVzv46m8aJw
.Note: If you see an error like this
Authorization Error — Error 400: admin_policy_enforced
, then the GCP User’s organization has a policy that restricts you from using Client IDs for third party products. In that case, they’ll need to get that restriction lifted, or use a different GCP user in a different org.With that authorization code, you can now call the Google Token server to get the
access token
and therefresh token
in the response. Set thecode
,client_id
, andclient_secret
in the curl command below and run it in a Cloud Shell terminal.Now, you will have your
refresh_token
, which is the last OAuth 2.0 property that the Google Drive Batch Sink needs to authorize with the Google Drive API.
Created in 2020 by Google Inc.