Schedule a Display & Video 360 transfer
The BigQuery Data Transfer Service for Display & Video 360 connector lets you automatically schedule and manage recurring load jobs for Display & Video 360 reporting and configuration data.
Supported reports
The BigQuery Data Transfer Service for Display & Video 360 supports the following reporting option:
For information about how Display & Video 360 reports are transformed into BigQuery tables and views, see Display & Video 360 data transformation.
Reporting option | Support |
---|---|
Repeat frequency | Daily, at the time the data transfer is first created (default) You can configure the time of day. |
Refresh window | Last 2 days Not configurable |
Maximum backfill duration | Last 60 days |
Supported configuration data
In addition to the reporting data, BigQuery Data Transfer Service also transfers the following configuration data from Display & Video 360. Configuration data is retrieved from Display & Video 360 API v3.
- Partner
- Advertiser
- LineItem
- LineItemTargeting
- Campaign
- CampaignTargeting
- InsertionOrder
- InsertionOrderTargeting
- AdGroup
- AdGroupTargeting
- AdGroupAd
- Creative
For more information about each type of configuration data, see the following links:
- About Partners
- Create an advertiser
- Create a line item
- Create a campaign
- Create an insertion order
- About YouTube & partners line items
- Manage creatives
Data ingestion from Display & Video 360 transfers
When you transfer data from Display & Video 360 into BigQuery, the data is loaded into BigQuery tables that are partitioned by date. The table partition that the data is loaded into corresponds to the date from the data source. If you schedule multiple transfers for the same date, BigQuery Data Transfer Service overwrites the partition for that specific date with the latest data. Multiple transfers in the same day or running backfills don't result in duplicate data, and partitions for other dates are not affected.Refresh windows
A refresh window is the number of days that a data transfer retrieves data when a data transfer occurs. For example, if the refresh window is three days and a daily transfer occurs, the BigQuery Data Transfer Service retrieves all data from your source table from the past three days. In this example, when a daily transfer occurs, the BigQuery Data Transfer Service creates a new BigQuery destination table partition with a copy of your source table data from the current day, then automatically triggers backfill runs to update the BigQuery destination table partitions with your source table data from the past two days. The automatically triggered backfill runs will either overwrite or incrementally update your BigQuery destination table, depending on whether or not incremental updates are supported in the BigQuery Data Transfer Service connector.
When you run a data transfer for the first time, the data transfer retrieves all source data available within the refresh window. For example, if the refresh window is three days and you run the data transfer for the first time, the BigQuery Data Transfer Service retrieves all source data within three days.
Refresh windows are mapped to the TransferConfig.data_refresh_window_days
API field.
To retrieve data outside the refresh window, such as historical data, or to recover data from any transfer outages or gaps, you can initiate or schedule a backfill run.
Before you begin
Review the following prerequisites and information before you create a Display & Video 360 data transfer.
Prerequisites
- Verify that you have completed all actions required to enable the BigQuery Data Transfer Service.
- Create a BigQuery dataset to store Display & Video 360 data.
- Ensure that you have either your Display & Video 360 Partner ID or Advertiser ID. The partner ID is the parent in the hierarchy.
- Ensure that you have read permissions to access partner or advertiser data from the Display and Video API.
Ensure that your organization has access to Display & Video 360 Data Transfer v2 (Display & Video 360 DTv2) files. These files are delivered by the Display & Video 360 team in a Cloud Storage bucket. Requesting access to the Display & Video 360 DTv2 files depends on whether or not you have a direct contract with Display & Video 360. In both cases, additional charges might apply.
- If you have a contract with Display & Video 360, contact Display & Video 360 support to set up Display & Video 360 DTv2 files.
- If you don't have a contract with Display & Video 360, contact your agency for access to Display & Video 360 DTv2 files.
- After completing this step, you will receive either of the following
Cloud Storage bucket name, depending if your setup is for a partner
or an advertiser:
gs://dcdt_-dbm_partnerPARTNER_ID
gs://dcdt_-dbm_advertiserADVERTISER_ID
To set up transfer run notifications for Pub/Sub, you must have
pubsub.topics.setIamPolicy
permissions. For more information, see BigQuery Data Transfer Service run notifications.
Find your Display & Video 360 ID
To retrieve your Display & Video 360 ID, navigate to the Cloud Storage Buckets page in the Google Cloud console and examine the files in your Display & Video 360 data transfer Cloud Storage bucket. The Display & Video 360 ID is used to match files in the provided Cloud Storage bucket. The ID is embedded in the filename, not the Cloud Storage bucket name. For example:
- In a file named
dbm_partner123_activity_*
, the ID is123
. - In a file named
dbm_advertiser567_activity_*
, the ID is567
.
Finding your filename prefix
In some cases, the files in your Cloud Storage bucket might have custom, nonstandard file names that were set up for you by the Google Marketing Platform services team. For example:
In a file named dbm_partner123456custom_activity_*
, the prefix is
dbm_partner123456custom
.
For any assistance regarding filename prefixes, contact Display & Video 360 support.
Set up a Display & Video 360 data transfer
Select one of the following options:
Console
Go to the Data transfers page in the Google Cloud console.
Click
Create transfer.On the Create transfer page, do the following:
- In the Source type section, for Source, choose Display & Video 360.
- In the Transfer config name section, for Display name, enter a name for the data transfer. The transfer name can be any value that lets you identify the transfer if you need to modify it later.
In the Schedule options section:
- Select either Start now or Start at set time, then provide a start date and run time.
- For Repeats, choose an option for how often to run the
data transfer. If you select Days, provide a valid time in UTC.
- Hours
- Days
- On-demand
In the Destination settings section, in the Destination dataset menu, select the dataset that you created to store your data.
In the Data source details section:
- In the DV360 DTV2 Cloud Storage bucket field, enter the Cloud Storage bucket that contains the Display & Video 360 DTv2 files. If you need to set up this bucket, contact Display & Video 360 support.
- In the DV360 Partner/Advertiser ID field, enter the Partner ID or Advertiser ID.
- Optional: In the Notification options section:
- Click the toggle to enable email notifications. When you enable this option, the transfer administrator receives an email notification when a transfer run fails.
- Click the toggle to enable Pub/Sub notifications. For Select a Cloud Pub/Sub topic, choose your topic name or click Create a topic. This option configures Pub/Sub run notifications for your transfer.
Click Save.
bq
Enter the bq mk
command and supply the transfer creation flag —
--transfer_config
. The following flags are required:
--data_source
--target_dataset
--display_name
--params
bq mk --transfer_config \ --project_id=PROJECT_ID \ --target_dataset=DATASET \ --display_name=NAME \ --params='PARAMETERS' \ --data_source=DATA_SOURCE
Where:
- PROJECT_ID: your project ID.
- DATASET: the target dataset for the data transfer configuration.
- NAME: the display name for the data transfer configuration. The transfer name can be any value that lets you identify the transfer if you need to modify it later.
- PARAMETERS: the parameters for the created data transfer
configuration in JSON format.
For example—
--params='{"param":"param_value"}'
. For Display & Video 360 transfers, thebucket
anddisplayvideo_id
parameters are required. Thefile_name_prefix
parameter is optional and used for rare, custom file names only. - DATA_SOURCE: the data source —
displayvideo
.
For example, the following command creates a Display & Video 360 data transfer
named My Transfer
using Display & Video 360 ID 123456
, Cloud Storage
bucket dcdt_-dbm_partner123456
, and target dataset mydataset
.
The data transfer is created in the default project:
bq mk --transfer_config \ --target_dataset=mydataset \ --display_name='My Transfer' \ --params='{"bucket":"dcdt_-dbm_partner123456","displayvideo_id": "123456","file_name_prefix":"YYY"}' \ --data_source=displayvideo
After running the command, you receive a message like the following:
[URL omitted] Please copy and paste the above URL into your web browser and
follow the instructions to retrieve an authentication code.
Follow the instructions in the message and paste the authentication code on the command line.
API
Use the
projects.locations.transferConfigs.create
method and supply an instance of the
TransferConfig
resource.
Query your data
When your data is transferred to BigQuery, the data is written to ingestion-time partitioned tables. For more information, see Introduction to partitioned tables.
We recommend that you query the auto-generated views instead of querying the
tables directly. However, if you want to query your tables directly, you must
use the _PARTITIONTIME
pseudocolumn in your query. For more
information, see Querying partitioned tables.