airbytehq / airbyte

The leading data integration platform for ETL / ELT data pipelines from APIs, databases & files to data warehouses, data lakes & data lakehouses. Both self-hosted and Cloud-hosted.
https://airbyte.com
Other
15.53k stars 4k forks source link

Webapp: Normalization Unsupported nested cursor field for cursor fields with dot #5088

Closed manavkohli closed 3 years ago

manavkohli commented 3 years ago
## Enviroment - **Airbyte version**: 0.22.0-alpha - **OS Version / Instance**: macOS 11.2.3 - **Deployment**: Docker local - **Source Connector and version**: Google Ads 0.1.4 - **Destination Connector and version**: Postgres 0.3.6 - **Severity**: Medium - **Step where error happened**: Sync job ## Current Behavior *Tell us what happens.* Currently, all of the columns for the `account_performance`, `ad_group_ad_report`, and `shopping_performance` reports are nested. As a result, the normalization step fails on [this line](https://github.com/airbytehq/airbyte/blob/master/airbyte-integrations/bases/base-normalization/normalization/transform_catalog/stream_processor.py#L560) as they try and set the primary keys for the table. ## Expected Behavior I expect that the default cursor field (`segments.date`) should be able to be used as a primary key. ## Logs *If applicable, please upload the logs from the failing operation. For sync jobs, you can download the full logs from the UI by going to the sync attempt page and clicking the download logs button at the top right of the logs display window.*
LOG ``` 2021-07-29 21:34:21 INFO () WorkerRun(call):62 - Executing worker wrapper. Airbyte version: 0.29.0-alpha 2021-07-29 21:34:21 INFO () TemporalAttemptExecution(get):110 - Executing worker wrapper. Airbyte version: 0.29.0-alpha 2021-07-29 21:34:21 INFO () DefaultReplicationWorker(run):102 - start sync worker. job id: 149 attempt id: 1 2021-07-29 21:34:21 INFO () DefaultReplicationWorker(run):111 - configured sync modes: {null.ad_group_ads=full_refresh - overwrite, null.account_performance_report=incremental - append_dedup, null.accounts=full_refresh - overwrite, null.ad_groups=full_refresh - append, null.campaigns=full_refresh - overwrite, null.ad_group_ad_report=incremental - append_dedup, null.shopping_performance_report=incremental - append_dedup} 2021-07-29 21:34:21 INFO () DefaultAirbyteDestination(start):78 - Running destination... 2021-07-29 21:34:21 INFO () LineGobbler(voidCall):85 - Checking if airbyte/destination-postgres:0.3.6 exists... 2021-07-29 21:34:21 INFO () LineGobbler(voidCall):85 - airbyte/destination-postgres:0.3.6 was found locally. 2021-07-29 21:34:21 INFO () DockerProcessFactory(create):146 - Preparing command: docker run --rm --init -i -v airbyte_workspace:/data -v /tmp/airbyte_local:/local -w /data/149/1 --network host --log-driver none airbyte/destination-postgres:0.3.6 write --config destination_config.json --catalog destination_catalog.json 2021-07-29 21:34:21 INFO () LineGobbler(voidCall):85 - Checking if airbyte/source-google-ads:0.1.4 exists... 2021-07-29 21:34:21 INFO () LineGobbler(voidCall):85 - airbyte/source-google-ads:0.1.4 was found locally. 2021-07-29 21:34:21 INFO () DockerProcessFactory(create):146 - Preparing command: docker run --rm --init -i -v airbyte_workspace:/data -v /tmp/airbyte_local:/local -w /data/149/1 --network host --log-driver none airbyte/source-google-ads:0.1.4 read --config source_config.json --catalog source_catalog.json 2021-07-29 21:34:21 INFO () DefaultReplicationWorker(lambda$getDestinationOutputRunnable$3):246 - Destination output thread started. 2021-07-29 21:34:21 INFO () DefaultReplicationWorker(run):139 - Waiting for source thread to join. 2021-07-29 21:34:21 INFO () DefaultReplicationWorker(lambda$getReplicationRunnable$2):210 - Replication thread started. 2021-07-29 21:34:22 INFO () DefaultAirbyteStreamFactory(lambda$create$0):73 - 2021-07-29 21:34:22 INFO i.a.i.d.p.PostgresDestination(main):83 - {} - starting destination: class io.airbyte.integrations.destination.postgres.PostgresDestination 2021-07-29 21:34:22 INFO () DefaultAirbyteStreamFactory(lambda$create$0):73 - 2021-07-29 21:34:22 INFO i.a.i.b.IntegrationRunner(run):78 - {} - Running integration: io.airbyte.integrations.destination.postgres.PostgresDestination 2021-07-29 21:34:22 INFO () DefaultAirbyteStreamFactory(lambda$create$0):73 - 2021-07-29 21:34:22 INFO i.a.i.b.IntegrationCliParser(parseOptions):135 - {} - integration args: {catalog=destination_catalog.json, write=null, config=destination_config.json} 2021-07-29 21:34:22 INFO () DefaultAirbyteStreamFactory(lambda$create$0):73 - 2021-07-29 21:34:22 INFO i.a.i.b.IntegrationRunner(run):82 - {} - Command: WRITE 2021-07-29 21:34:22 INFO () DefaultAirbyteStreamFactory(lambda$create$0):73 - 2021-07-29 21:34:22 INFO i.a.i.b.IntegrationRunner(run):83 - {} - Integration config: IntegrationConfig{command=WRITE, configPath='destination_config.json', catalogPath='destination_catalog.json', statePath='null'} 2021-07-29 21:34:22 INFO () DefaultAirbyteStreamFactory(lambda$create$0):73 - 2021-07-29 21:34:22 INFO i.a.i.d.b.BufferedStreamConsumer(startTracked):120 - {} - class io.airbyte.integrations.destination.buffered_stream_consumer.BufferedStreamConsumer started. 2021-07-29 21:34:22 INFO () DefaultAirbyteStreamFactory(lambda$create$0):73 - 2021-07-29 21:34:22 INFO i.a.i.d.j.JdbcBufferedConsumerFactory(lambda$onStartFunction$1):145 - {} - Preparing tmp tables in destination started for 7 streams 2021-07-29 21:34:22 INFO () DefaultAirbyteStreamFactory(lambda$create$0):73 - 2021-07-29 21:34:22 INFO i.a.i.d.j.JdbcBufferedConsumerFactory(lambda$onStartFunction$1):149 - {} - Preparing tmp table in destination started for stream google_ads_account_performance_report. schema: aswemove, tmp table name: _airbyte_1627594462366__airbyte__raw_google_ads_account_performa 2021-07-29 21:34:22 INFO () DefaultAirbyteStreamFactory(lambda$create$0):73 - 2021-07-29 21:34:22 INFO i.a.i.d.j.JdbcBufferedConsumerFactory(lambda$onStartFunction$1):149 - {} - Preparing tmp table in destination started for stream google_ads_accounts. schema: aswemove, tmp table name: _airbyte_1627594462369__airbyte_raw_google_ads_accounts 2021-07-29 21:34:22 INFO () DefaultAirbyteStreamFactory(lambda$create$0):73 - 2021-07-29 21:34:22 INFO i.a.i.d.j.JdbcBufferedConsumerFactory(lambda$onStartFunction$1):149 - {} - Preparing tmp table in destination started for stream google_ads_ad_group_ad_report. schema: aswemove, tmp table name: _airbyte_1627594462369__airbyte__raw_google_ads_ad_group_ad_repo 2021-07-29 21:34:22 INFO () DefaultAirbyteStreamFactory(lambda$create$0):73 - 2021-07-29 21:34:22 INFO i.a.i.d.j.JdbcBufferedConsumerFactory(lambda$onStartFunction$1):149 - {} - Preparing tmp table in destination started for stream google_ads_ad_group_ads. schema: aswemove, tmp table name: _airbyte_1627594462369__airbyte_raw_google_ads_ad_group_ads 2021-07-29 21:34:22 INFO () DefaultAirbyteStreamFactory(lambda$create$0):73 - 2021-07-29 21:34:22 INFO i.a.i.d.j.JdbcBufferedConsumerFactory(lambda$onStartFunction$1):149 - {} - Preparing tmp table in destination started for stream google_ads_ad_groups. schema: aswemove, tmp table name: _airbyte_1627594462369__airbyte_raw_google_ads_ad_groups 2021-07-29 21:34:22 INFO () DefaultAirbyteStreamFactory(lambda$create$0):73 - 2021-07-29 21:34:22 INFO i.a.i.d.j.JdbcBufferedConsumerFactory(lambda$onStartFunction$1):149 - {} - Preparing tmp table in destination started for stream google_ads_campaigns. schema: aswemove, tmp table name: _airbyte_1627594462370__airbyte_raw_google_ads_campaigns 2021-07-29 21:34:22 INFO () DefaultAirbyteStreamFactory(lambda$create$0):73 - 2021-07-29 21:34:22 INFO i.a.i.d.j.JdbcBufferedConsumerFactory(lambda$onStartFunction$1):149 - {} - Preparing tmp table in destination started for stream google_ads_shopping_performance_report. schema: aswemove, tmp table name: _airbyte_1627594462370__airbyte__raw_google_ads_shopping_perform 2021-07-29 21:34:22 INFO () DefaultAirbyteStreamFactory(lambda$create$0):73 - 2021-07-29 21:34:22 INFO i.a.i.d.j.JdbcBufferedConsumerFactory(lambda$onStartFunction$1):155 - {} - Preparing tables in destination completed. 2021-07-29 21:34:33 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Starting syncing SourceGoogleAds 2021-07-29 21:34:33 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Syncing stream: account_performance_report 2021-07-29 21:34:33 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Setting state of account_performance_report stream to {} 2021-07-29 21:34:33 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Setting state of account_performance_report stream to {} 2021-07-29 21:34:33 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Setting state of account_performance_report stream to {} 2021-07-29 21:34:33 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Setting state of account_performance_report stream to {} 2021-07-29 21:34:33 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Setting state of account_performance_report stream to {} 2021-07-29 21:34:33 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Setting state of account_performance_report stream to {} 2021-07-29 21:34:33 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Setting state of account_performance_report stream to {} 2021-07-29 21:34:33 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Setting state of account_performance_report stream to {} 2021-07-29 21:34:33 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Setting state of account_performance_report stream to {} 2021-07-29 21:34:33 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Setting state of account_performance_report stream to {} 2021-07-29 21:34:33 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Setting state of account_performance_report stream to {} 2021-07-29 21:34:33 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Setting state of account_performance_report stream to {} 2021-07-29 21:34:33 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Setting state of account_performance_report stream to {} 2021-07-29 21:34:33 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Setting state of account_performance_report stream to {} 2021-07-29 21:34:33 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Setting state of account_performance_report stream to {} 2021-07-29 21:34:33 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Setting state of account_performance_report stream to {} 2021-07-29 21:34:36 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Setting state of account_performance_report stream to {'segments.date': '2021-05-03'} 2021-07-29 21:34:37 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Setting state of account_performance_report stream to {'segments.date': '2021-06-03'} 2021-07-29 21:34:38 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Setting state of account_performance_report stream to {'segments.date': '2021-07-03'} 2021-07-29 21:34:38 INFO () DefaultReplicationWorker(lambda$getReplicationRunnable$2):223 - Records read: 1000 2021-07-29 21:35:00 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Setting state of account_performance_report stream to {'segments.date': '2021-07-27'} 2021-07-29 21:35:00 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Read 1143 records from account_performance_report stream 2021-07-29 21:35:00 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Syncing stream: accounts 2021-07-29 21:35:00 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Read 1 records from accounts stream 2021-07-29 21:35:00 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Syncing stream: ad_group_ad_report 2021-07-29 21:35:00 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Setting state of ad_group_ad_report stream to {} 2021-07-29 21:35:00 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Setting state of ad_group_ad_report stream to {} 2021-07-29 21:35:00 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Setting state of ad_group_ad_report stream to {} 2021-07-29 21:35:00 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Setting state of ad_group_ad_report stream to {} 2021-07-29 21:35:00 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Setting state of ad_group_ad_report stream to {} 2021-07-29 21:35:00 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Setting state of ad_group_ad_report stream to {} 2021-07-29 21:35:00 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Setting state of ad_group_ad_report stream to {} 2021-07-29 21:35:00 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Setting state of ad_group_ad_report stream to {} 2021-07-29 21:35:00 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Setting state of ad_group_ad_report stream to {} 2021-07-29 21:35:00 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Setting state of ad_group_ad_report stream to {} 2021-07-29 21:35:00 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Setting state of ad_group_ad_report stream to {} 2021-07-29 21:35:00 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Setting state of ad_group_ad_report stream to {} 2021-07-29 21:35:00 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Setting state of ad_group_ad_report stream to {} 2021-07-29 21:35:00 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Setting state of ad_group_ad_report stream to {} 2021-07-29 21:35:00 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Setting state of ad_group_ad_report stream to {} 2021-07-29 21:35:00 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Setting state of ad_group_ad_report stream to {} 2021-07-29 21:35:01 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Setting state of ad_group_ad_report stream to {'segments.date': '2021-05-03'} 2021-07-29 21:35:03 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Setting state of ad_group_ad_report stream to {'segments.date': '2021-06-03'} 2021-07-29 21:35:05 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Setting state of ad_group_ad_report stream to {'segments.date': '2021-07-03'} 2021-07-29 21:35:06 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Setting state of ad_group_ad_report stream to {'segments.date': '2021-07-27'} 2021-07-29 21:35:06 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Read 378 records from ad_group_ad_report stream 2021-07-29 21:35:06 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Syncing stream: ad_group_ads 2021-07-29 21:35:06 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Read 8 records from ad_group_ads stream 2021-07-29 21:35:07 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Syncing stream: ad_groups 2021-07-29 21:35:07 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Read 8 records from ad_groups stream 2021-07-29 21:35:07 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Syncing stream: campaigns 2021-07-29 21:35:10 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Read 7 records from campaigns stream 2021-07-29 21:35:10 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Syncing stream: shopping_performance_report 2021-07-29 21:35:10 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Setting state of shopping_performance_report stream to {} 2021-07-29 21:35:10 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Setting state of shopping_performance_report stream to {} 2021-07-29 21:35:27 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Setting state of shopping_performance_report stream to {} 2021-07-29 21:35:27 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Setting state of shopping_performance_report stream to {} 2021-07-29 21:35:27 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Setting state of shopping_performance_report stream to {} 2021-07-29 21:35:27 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Setting state of shopping_performance_report stream to {} 2021-07-29 21:35:27 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Setting state of shopping_performance_report stream to {} 2021-07-29 21:35:27 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Setting state of shopping_performance_report stream to {} 2021-07-29 21:35:27 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Setting state of shopping_performance_report stream to {} 2021-07-29 21:35:27 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Setting state of shopping_performance_report stream to {} 2021-07-29 21:35:27 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Setting state of shopping_performance_report stream to {} 2021-07-29 21:35:27 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Setting state of shopping_performance_report stream to {} 2021-07-29 21:35:27 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Setting state of shopping_performance_report stream to {} 2021-07-29 21:35:27 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Setting state of shopping_performance_report stream to {} 2021-07-29 21:35:27 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Setting state of shopping_performance_report stream to {} 2021-07-29 21:35:27 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Setting state of shopping_performance_report stream to {} 2021-07-29 21:35:28 INFO () DefaultReplicationWorker(lambda$getReplicationRunnable$2):223 - Records read: 2000 2021-07-29 21:35:30 INFO () DefaultReplicationWorker(lambda$getReplicationRunnable$2):223 - Records read: 3000 2021-07-29 21:35:34 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Setting state of shopping_performance_report stream to {'segments.date': '2021-05-03'} 2021-07-29 21:35:34 INFO () DefaultReplicationWorker(lambda$getReplicationRunnable$2):223 - Records read: 4000 2021-07-29 21:35:36 INFO () DefaultReplicationWorker(lambda$getReplicationRunnable$2):223 - Records read: 5000 2021-07-29 21:35:39 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Setting state of shopping_performance_report stream to {'segments.date': '2021-06-03'} 2021-07-29 21:35:40 INFO () DefaultReplicationWorker(lambda$getReplicationRunnable$2):223 - Records read: 6000 2021-07-29 21:35:41 INFO () DefaultReplicationWorker(lambda$getReplicationRunnable$2):223 - Records read: 7000 2021-07-29 21:35:45 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Setting state of shopping_performance_report stream to {'segments.date': '2021-07-03'} 2021-07-29 21:35:45 INFO () DefaultReplicationWorker(lambda$getReplicationRunnable$2):223 - Records read: 8000 2021-07-29 21:35:47 INFO () DefaultReplicationWorker(lambda$getReplicationRunnable$2):223 - Records read: 9000 2021-07-29 21:35:48 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Setting state of shopping_performance_report stream to {'segments.date': '2021-07-27'} 2021-07-29 21:35:48 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Read 8006 records from shopping_performance_report stream 2021-07-29 21:35:48 INFO () DefaultAirbyteStreamFactory(internalLog):110 - Finished syncing SourceGoogleAds 2021-07-29 21:35:48 INFO () DefaultReplicationWorker(run):141 - Source thread complete. 2021-07-29 21:35:48 INFO () DefaultReplicationWorker(run):142 - Waiting for destination thread to join. 2021-07-29 21:35:48 INFO () DefaultAirbyteStreamFactory(lambda$create$0):73 - 2021-07-29 21:35:48 INFO i.a.i.b.FailureTrackingAirbyteMessageConsumer(close):80 - {} - Airbyte message consumer: succeeded. 2021-07-29 21:35:48 INFO () DefaultAirbyteStreamFactory(lambda$create$0):73 - 2021-07-29 21:35:48 INFO i.a.i.d.b.BufferedStreamConsumer(close):190 - {} - executing on success close procedure. 2021-07-29 21:35:49 INFO () DefaultAirbyteStreamFactory(lambda$create$0):73 - 2021-07-29 21:35:49 INFO i.a.i.d.j.JdbcBufferedConsumerFactory(lambda$onCloseFunction$3):182 - {} - Finalizing tables in destination started for 7 streams 2021-07-29 21:35:49 INFO () DefaultAirbyteStreamFactory(lambda$create$0):73 - 2021-07-29 21:35:49 INFO i.a.i.d.j.JdbcBufferedConsumerFactory(lambda$onCloseFunction$3):187 - {} - Finalizing stream google_ads_account_performance_report. schema aswemove, tmp table _airbyte_1627594462366__airbyte__raw_google_ads_account_performa, final table _airbyte_raw_google_ads_account_performance_report 2021-07-29 21:35:49 INFO () DefaultAirbyteStreamFactory(lambda$create$0):73 - 2021-07-29 21:35:49 INFO i.a.i.d.j.JdbcBufferedConsumerFactory(lambda$onCloseFunction$3):187 - {} - Finalizing stream google_ads_accounts. schema aswemove, tmp table _airbyte_1627594462369__airbyte_raw_google_ads_accounts, final table _airbyte_raw_google_ads_accounts 2021-07-29 21:35:49 INFO () DefaultAirbyteStreamFactory(lambda$create$0):73 - 2021-07-29 21:35:49 INFO i.a.i.d.j.JdbcBufferedConsumerFactory(lambda$onCloseFunction$3):187 - {} - Finalizing stream google_ads_ad_group_ad_report. schema aswemove, tmp table _airbyte_1627594462369__airbyte__raw_google_ads_ad_group_ad_repo, final table _airbyte_raw_google_ads_ad_group_ad_report 2021-07-29 21:35:49 INFO () DefaultAirbyteStreamFactory(lambda$create$0):73 - 2021-07-29 21:35:49 INFO i.a.i.d.j.JdbcBufferedConsumerFactory(lambda$onCloseFunction$3):187 - {} - Finalizing stream google_ads_ad_group_ads. schema aswemove, tmp table _airbyte_1627594462369__airbyte_raw_google_ads_ad_group_ads, final table _airbyte_raw_google_ads_ad_group_ads 2021-07-29 21:35:49 INFO () DefaultAirbyteStreamFactory(lambda$create$0):73 - 2021-07-29 21:35:49 INFO i.a.i.d.j.JdbcBufferedConsumerFactory(lambda$onCloseFunction$3):187 - {} - Finalizing stream google_ads_ad_groups. schema aswemove, tmp table _airbyte_1627594462369__airbyte_raw_google_ads_ad_groups, final table _airbyte_raw_google_ads_ad_groups 2021-07-29 21:35:49 INFO () DefaultAirbyteStreamFactory(lambda$create$0):73 - 2021-07-29 21:35:49 INFO i.a.i.d.j.JdbcBufferedConsumerFactory(lambda$onCloseFunction$3):187 - {} - Finalizing stream google_ads_campaigns. schema aswemove, tmp table _airbyte_1627594462370__airbyte_raw_google_ads_campaigns, final table _airbyte_raw_google_ads_campaigns 2021-07-29 21:35:49 INFO () DefaultAirbyteStreamFactory(lambda$create$0):73 - 2021-07-29 21:35:49 INFO i.a.i.d.j.JdbcBufferedConsumerFactory(lambda$onCloseFunction$3):187 - {} - Finalizing stream google_ads_shopping_performance_report. schema aswemove, tmp table _airbyte_1627594462370__airbyte__raw_google_ads_shopping_perform, final table _airbyte_raw_google_ads_shopping_performance_report 2021-07-29 21:35:49 INFO () DefaultAirbyteStreamFactory(lambda$create$0):73 - 2021-07-29 21:35:49 INFO i.a.i.d.j.JdbcBufferedConsumerFactory(lambda$onCloseFunction$3):200 - {} - Executing finalization of tables. 2021-07-29 21:35:49 INFO () DefaultAirbyteStreamFactory(lambda$create$0):73 - 2021-07-29 21:35:49 INFO i.a.i.d.j.JdbcBufferedConsumerFactory(lambda$onCloseFunction$3):202 - {} - Finalizing tables in destination completed. 2021-07-29 21:35:49 INFO () DefaultAirbyteStreamFactory(lambda$create$0):73 - 2021-07-29 21:35:49 INFO i.a.i.d.j.JdbcBufferedConsumerFactory(lambda$onCloseFunction$3):205 - {} - Cleaning tmp tables in destination started for 7 streams 2021-07-29 21:35:49 INFO () DefaultAirbyteStreamFactory(lambda$create$0):73 - 2021-07-29 21:35:49 INFO i.a.i.d.j.JdbcBufferedConsumerFactory(lambda$onCloseFunction$3):209 - {} - Cleaning tmp table in destination started for stream google_ads_account_performance_report. schema aswemove, tmp table name: _airbyte_1627594462366__airbyte__raw_google_ads_account_performa 2021-07-29 21:35:49 INFO () DefaultAirbyteStreamFactory(lambda$create$0):73 - 2021-07-29 21:35:49 INFO i.a.i.d.j.JdbcBufferedConsumerFactory(lambda$onCloseFunction$3):209 - {} - Cleaning tmp table in destination started for stream google_ads_accounts. schema aswemove, tmp table name: _airbyte_1627594462369__airbyte_raw_google_ads_accounts 2021-07-29 21:35:49 INFO () DefaultAirbyteStreamFactory(lambda$create$0):73 - 2021-07-29 21:35:49 INFO i.a.i.d.j.JdbcBufferedConsumerFactory(lambda$onCloseFunction$3):209 - {} - Cleaning tmp table in destination started for stream google_ads_ad_group_ad_report. schema aswemove, tmp table name: _airbyte_1627594462369__airbyte__raw_google_ads_ad_group_ad_repo 2021-07-29 21:35:49 INFO () DefaultAirbyteStreamFactory(lambda$create$0):73 - 2021-07-29 21:35:49 INFO i.a.i.d.j.JdbcBufferedConsumerFactory(lambda$onCloseFunction$3):209 - {} - Cleaning tmp table in destination started for stream google_ads_ad_group_ads. schema aswemove, tmp table name: _airbyte_1627594462369__airbyte_raw_google_ads_ad_group_ads 2021-07-29 21:35:49 INFO () DefaultAirbyteStreamFactory(lambda$create$0):73 - 2021-07-29 21:35:49 INFO i.a.i.d.j.JdbcBufferedConsumerFactory(lambda$onCloseFunction$3):209 - {} - Cleaning tmp table in destination started for stream google_ads_ad_groups. schema aswemove, tmp table name: _airbyte_1627594462369__airbyte_raw_google_ads_ad_groups 2021-07-29 21:35:49 INFO () DefaultAirbyteStreamFactory(lambda$create$0):73 - 2021-07-29 21:35:49 INFO i.a.i.d.j.JdbcBufferedConsumerFactory(lambda$onCloseFunction$3):209 - {} - Cleaning tmp table in destination started for stream google_ads_campaigns. schema aswemove, tmp table name: _airbyte_1627594462370__airbyte_raw_google_ads_campaigns 2021-07-29 21:35:49 INFO () DefaultAirbyteStreamFactory(lambda$create$0):73 - 2021-07-29 21:35:49 INFO i.a.i.d.j.JdbcBufferedConsumerFactory(lambda$onCloseFunction$3):209 - {} - Cleaning tmp table in destination started for stream google_ads_shopping_performance_report. schema aswemove, tmp table name: _airbyte_1627594462370__airbyte__raw_google_ads_shopping_perform 2021-07-29 21:35:49 INFO () DefaultAirbyteStreamFactory(lambda$create$0):73 - 2021-07-29 21:35:49 INFO i.a.i.d.j.JdbcBufferedConsumerFactory(lambda$onCloseFunction$3):214 - {} - Cleaning tmp tables in destination completed. 2021-07-29 21:35:49 INFO () DefaultReplicationWorker(lambda$getDestinationOutputRunnable$3):251 - state in DefaultReplicationWorker from Destination: io.airbyte.protocol.models.AirbyteMessage@6743f193[type=STATE,log=,spec=,connectionStatus=,catalog=,record=,state=io.airbyte.protocol.models.AirbyteStateMessage@27dea44f[data={"account_performance_report":{"segments.date":"2021-07-27"},"ad_group_ad_report":{"segments.date":"2021-07-27"},"shopping_performance_report":{"segments.date":"2021-07-27"}},additionalProperties={}],additionalProperties={}] 2021-07-29 21:35:49 INFO () DefaultAirbyteStreamFactory(lambda$create$0):73 - 2021-07-29 21:35:49 INFO i.a.i.b.IntegrationRunner(run):118 - {} - Completed integration: io.airbyte.integrations.destination.postgres.PostgresDestination 2021-07-29 21:35:49 INFO () DefaultAirbyteStreamFactory(lambda$create$0):73 - 2021-07-29 21:35:49 INFO i.a.i.d.p.PostgresDestination(main):85 - {} - completed destination: class io.airbyte.integrations.destination.postgres.PostgresDestination 2021-07-29 21:35:49 INFO () DefaultReplicationWorker(run):144 - Destination thread complete. 2021-07-29 21:35:49 INFO () DefaultReplicationWorker(run):172 - sync summary: io.airbyte.config.ReplicationAttemptSummary@4a7b4667[status=completed,recordsSynced=9551,bytesSynced=24036526,startTime=1627594461344,endTime=1627594549565] 2021-07-29 21:35:49 INFO () DefaultReplicationWorker(run):179 - Source output at least one state message 2021-07-29 21:35:49 INFO () DefaultReplicationWorker(run):185 - State capture: Updated state to: Optional[io.airbyte.config.State@60b31f99[state={"account_performance_report":{"segments.date":"2021-07-27"},"ad_group_ad_report":{"segments.date":"2021-07-27"},"shopping_performance_report":{"segments.date":"2021-07-27"}}]] 2021-07-29 21:35:49 INFO () TemporalAttemptExecution(get):133 - Stopping cancellation check scheduling... 2021-07-29 21:35:49 INFO () RetryingTemporalAttemptExecution(get):118 - Last output present: true. Should attempt again: false 2021-07-29 21:35:49 INFO () SyncWorkflow$ReplicationActivityImpl(replicate):202 - attempt summaries: [io.airbyte.config.ReplicationOutput@4395c08f[replicationAttemptSummary=io.airbyte.config.ReplicationAttemptSummary@4a7b4667[status=completed,recordsSynced=9551,bytesSynced=24036526,startTime=1627594461344,endTime=1627594549565],state=io.airbyte.config.State@60b31f99[state={"account_performance_report":{"segments.date":"2021-07-27"},"ad_group_ad_report":{"segments.date":"2021-07-27"},"shopping_performance_report":{"segments.date":"2021-07-27"}}],outputCatalog=io.airbyte.protocol.models.ConfiguredAirbyteCatalog@7ff6f3f8[streams=[io.airbyte.protocol.models.ConfiguredAirbyteStream@aabd6f8[stream=io.airbyte.protocol.models.AirbyteStream@17f69302[name=google_ads_account_performance_report,jsonSchema={"type":"object","$schema":"http://json-schema.org/draft-07/schema#","properties":{"customer.id":{"type":["null","integer"]},"metrics.ctr":{"type":["null","number"]},"segments.date":{"type":["null","string"],"format":"datetime"},"segments.week":{"type":["null","string"]},"segments.year":{"type":["null","integer"]},"metrics.clicks":{"type":["null","integer"]},"segments.month":{"type":["null","string"]},"segments.device":{"type":["null","string"]},"customer.manager":{"type":["null","boolean"]},"segments.quarter":{"type":["null","string"]},"customer.time_zone":{"type":["null","string"]},"metrics.average_cpc":{"type":["null","number"]},"metrics.average_cpe":{"type":["null","number"]},"metrics.average_cpm":{"type":["null","number"]},"metrics.average_cpv":{"type":["null","number"]},"metrics.conversions":{"type":["null","number"]},"metrics.cost_micros":{"type":["null","integer"]},"metrics.engagements":{"type":["null","integer"]},"metrics.impressions":{"type":["null","integer"]},"metrics.video_views":{"type":["null","integer"]},"metrics.average_cost":{"type":["null","number"]},"metrics.interactions":{"type":["null","integer"]},"segments.day_of_week":{"type":["null","string"]},"customer.test_account":{"type":["null","boolean"]},"customer.currency_code":{"type":["null","string"]},"metrics.active_view_cpm":{"type":["null","number"]},"metrics.active_view_ctr":{"type":["null","number"]},"metrics.all_conversions":{"type":["null","number"]},"metrics.engagement_rate":{"type":["null","number"]},"metrics.video_view_rate":{"type":["null","number"]},"metrics.interaction_rate":{"type":["null","number"]},"segments.ad_network_type":{"type":["null","string"]},"customer.descriptive_name":{"type":["null","string"]},"metrics.conversions_value":{"type":["null","number"]},"metrics.cost_per_conversion":{"type":["null","number"]},"metrics.value_per_conversion":{"type":["null","number"]},"customer.auto_tagging_enabled":{"type":["null","boolean"]},"metrics.all_conversions_value":{"type":["null","number"]},"metrics.active_view_impressions":{"type":["null","integer"]},"metrics.active_view_viewability":{"type":["null","number"]},"metrics.interaction_event_types":{"type":["null","array"],"items":{"type":"string"}},"metrics.search_impression_share":{"type":["null","number"]},"metrics.content_impression_share":{"type":["null","number"]},"metrics.cost_per_all_conversions":{"type":["null","number"]},"metrics.cross_device_conversions":{"type":["null","number"]},"metrics.view_through_conversions":{"type":["null","integer"]},"metrics.active_view_measurability":{"type":["null","number"]},"metrics.value_per_all_conversions":{"type":["null","number"]},"metrics.search_rank_lost_impression_share":{"type":["null","number"]},"metrics.active_view_measurable_cost_micros":{"type":["null","integer"]},"metrics.active_view_measurable_impressions":{"type":["null","integer"]},"metrics.content_rank_lost_impression_share":{"type":["null","number"]},"metrics.conversions_from_interactions_rate":{"type":["null","number"]},"metrics.search_budget_lost_impression_share":{"type":["null","number"]},"metrics.search_exact_match_impression_share":{"type":["null","number"]},"metrics.content_budget_lost_impression_share":{"type":["null","number"]},"metrics.all_conversions_from_interactions_rate":{"type":["null","number"]}}},supportedSyncModes=[full_refresh, incremental],sourceDefinedCursor=true,defaultCursorField=[segments.date],sourceDefinedPrimaryKey=[],namespace=,additionalProperties={}],syncMode=incremental,cursorField=[segments.date],destinationSyncMode=append_dedup,primaryKey=[[segments, date], [customer, id]],additionalProperties={}], io.airbyte.protocol.models.ConfiguredAirbyteStream@7a8ab8cb[stream=io.airbyte.protocol.models.AirbyteStream@32abfd51[name=google_ads_accounts,jsonSchema={"type":"object","$schema":"http://json-schema.org/draft-07/schema#","properties":{"customer.id":{"type":["null","integer"]},"customer.manager":{"type":["null","boolean"]},"customer.time_zone":{"type":["null","string"]},"customer.test_account":{"type":["null","boolean"]},"customer.currency_code":{"type":["null","string"]},"customer.resource_name":{"type":["null","string"]},"customer.descriptive_name":{"type":["null","string"]},"customer.final_url_suffix":{"type":["null","string"]},"customer.has_partners_badge":{"type":["null","boolean"]},"customer.optimization_score":{"type":["null","number"]},"customer.auto_tagging_enabled":{"type":["null","boolean"]},"customer.tracking_url_template":{"type":["null","string"]},"customer.optimization_score_weight":{"type":["null","number"]},"customer.remarketing_setting.google_global_site_tag":{"type":["null","string"]},"customer.call_reporting_setting.call_conversion_action":{"type":["null","string"]},"customer.call_reporting_setting.call_reporting_enabled":{"type":["null","boolean"]},"customer.pay_per_conversion_eligibility_failure_reasons":{"type":["null","array"],"items":{"type":"string"}},"customer.conversion_tracking_setting.conversion_tracking_id":{"type":["null","integer"]},"customer.call_reporting_setting.call_conversion_reporting_enabled":{"type":["null","boolean"]},"customer.conversion_tracking_setting.cross_account_conversion_tracking_id":{"type":["null","integer"]}}},supportedSyncModes=[full_refresh],sourceDefinedCursor=,defaultCursorField=[],sourceDefinedPrimaryKey=[[customer.id]],namespace=,additionalProperties={}],syncMode=full_refresh,cursorField=[],destinationSyncMode=overwrite,primaryKey=[[customer.id]],additionalProperties={}], io.airbyte.protocol.models.ConfiguredAirbyteStream@6663e1ea[stream=io.airbyte.protocol.models.AirbyteStream@45ae00a7[name=google_ads_ad_group_ad_report,jsonSchema={"type":"object","$schema":"http://json-schema.org/draft-07/schema#","properties":{"campaign.id":{"type":["null","integer"]},"customer.id":{"type":["null","integer"]},"metrics.ctr":{"type":["null","number"]},"ad_group.name":{"type":["null","string"]},"campaign.name":{"type":["null","string"]},"segments.date":{"type":["null","string"],"format":"datetime"},"segments.week":{"type":["null","string"]},"segments.year":{"type":["null","integer"]},"metrics.clicks":{"type":["null","integer"]},"segments.month":{"type":["null","string"]},"ad_group.status":{"type":["null","string"]},"campaign.status":{"type":["null","string"]},"segments.quarter":{"type":["null","string"]},"ad_group_ad.ad.id":{"type":["null","integer"]},"ad_group_ad.status":{"type":["null","string"]},"customer.time_zone":{"type":["null","string"]},"ad_group_ad.ad.type":{"type":["null","string"]},"metrics.average_cpc":{"type":["null","number"]},"metrics.average_cpe":{"type":["null","number"]},"metrics.average_cpm":{"type":["null","number"]},"metrics.average_cpv":{"type":["null","number"]},"metrics.bounce_rate":{"type":["null","number"]},"metrics.conversions":{"type":["null","number"]},"metrics.cost_micros":{"type":["null","integer"]},"metrics.engagements":{"type":["null","integer"]},"metrics.gmail_saves":{"type":["null","integer"]},"metrics.impressions":{"type":["null","integer"]},"metrics.video_views":{"type":["null","integer"]},"ad_group_ad.ad_group":{"type":["null","string"]},"metrics.average_cost":{"type":["null","number"]},"metrics.interactions":{"type":["null","integer"]},"segments.day_of_week":{"type":["null","string"]},"ad_group.base_ad_group":{"type":["null","string"]},"campaign.base_campaign":{"type":["null","string"]},"customer.currency_code":{"type":["null","string"]},"metrics.gmail_forwards":{"type":["null","integer"]},"ad_group_ad.ad_strength":{"type":["null","string"]},"metrics.active_view_cpm":{"type":["null","number"]},"metrics.active_view_ctr":{"type":["null","number"]},"metrics.all_conversions":{"type":["null","number"]},"metrics.engagement_rate":{"type":["null","number"]},"metrics.video_view_rate":{"type":["null","number"]},"metrics.interaction_rate":{"type":["null","number"]},"segments.ad_network_type":{"type":["null","string"]},"ad_group_ad.ad.final_urls":{"type":["null","array"]},"customer.descriptive_name":{"type":["null","string"]},"metrics.conversions_value":{"type":["null","number"]},"ad_group_ad.ad.display_url":{"type":["null","string"]},"metrics.average_page_views":{"type":["null","number"]},"metrics.cost_per_conversion":{"type":["null","number"]},"ad_group_ad.ad.app_ad.images":{"type":["null","array"]},"ad_group_ad.ad.image_ad.name":{"type":["null","string"]},"metrics.average_time_on_site":{"type":["null","number"]},"metrics.percent_new_visitors":{"type":["null","number"]},"metrics.value_per_conversion":{"type":["null","number"]},"metrics.all_conversions_value":{"type":["null","number"]},"metrics.gmail_secondary_clicks":{"type":["null","integer"]},"ad_group_ad.ad.app_ad.headlines":{"type":["null","array"]},"ad_group_ad.ad.text_ad.headline":{"type":["null","string"]},"metrics.active_view_impressions":{"type":["null","integer"]},"metrics.active_view_viewability":{"type":["null","number"]},"metrics.interaction_event_types":{"type":["null","array"]},"metrics.video_quartile_p25_rate":{"type":["null","number"]},"metrics.video_quartile_p50_rate":{"type":["null","number"]},"metrics.video_quartile_p75_rate":{"type":["null","number"]},"ad_group_ad.ad.device_preference":{"type":["null","string"]},"ad_group_ad.ad.final_mobile_urls":{"type":["null","array"]},"metrics.cost_per_all_conversions":{"type":["null","number"]},"metrics.cross_device_conversions":{"type":["null","number"]},"metrics.video_quartile_p100_rate":{"type":["null","number"]},"metrics.view_through_conversions":{"type":["null","integer"]},"ad_group_ad.ad.image_ad.image_url":{"type":["null","string"]},"ad_group_ad.ad.image_ad.mime_type":{"type":["null","string"]},"metrics.active_view_measurability":{"type":["null","number"]},"metrics.top_impression_percentage":{"type":["null","number"]},"metrics.value_per_all_conversions":{"type":["null","number"]},"ad_group_ad.ad.added_by_google_ads":{"type":["null","boolean"]},"ad_group_ad.ad.app_ad.descriptions":{"type":["null","array"]},"ad_group_ad.ad.image_ad.pixel_width":{"type":["null","integer"]},"ad_group_ad.ad.text_ad.description1":{"type":["null","string"]},"ad_group_ad.ad.text_ad.description2":{"type":["null","string"]},"ad_group_ad.ad.app_ad.youtube_videos":{"type":["null","array"]},"ad_group_ad.ad.gmail_ad.header_image":{"type":["null","string"]},"ad_group_ad.ad.image_ad.pixel_height":{"type":["null","integer"]},"ad_group_ad.ad.tracking_url_template":{"type":["null","string"]},"ad_group_ad.ad.url_custom_parameters":{"type":["null","array"]},"ad_group_ad.ad.expanded_text_ad.path1":{"type":["null","string"]},"ad_group_ad.ad.expanded_text_ad.path2":{"type":["null","string"]},"ad_group_ad.ad.app_ad.mandatory_ad_text":{"type":["null","string"]},"ad_group_ad.ad.gmail_ad.marketing_image":{"type":["null","string"]},"ad_group_ad.ad.gmail_ad.teaser.headline":{"type":["null","string"]},"ad_group_ad.ad.app_ad.html5_media_bundles":{"type":["null","array"]},"ad_group_ad.ad.gmail_ad.teaser.logo_image":{"type":["null","string"]},"ad_group_ad.ad.responsive_search_ad.path1":{"type":["null","string"]},"ad_group_ad.ad.responsive_search_ad.path2":{"type":["null","string"]},"ad_group_ad.ad.gmail_ad.teaser.description":{"type":["null","string"]},"ad_group_ad.policy_summary.approval_status":{"type":["null","string"]},"metrics.active_view_measurable_cost_micros":{"type":["null","integer"]},"metrics.active_view_measurable_impressions":{"type":["null","integer"]},"metrics.conversions_from_interactions_rate":{"type":["null","number"]},"ad_group_ad.ad.expanded_text_ad.description":{"type":["null","string"]},"ad_group_ad.ad.expanded_text_ad.description2":{"type":["null","string"]},"ad_group_ad.ad.gmail_ad.teaser.business_name":{"type":["null","string"]},"metrics.current_model_attributed_conversions":{"type":["null","number"]},"ad_group_ad.ad.responsive_search_ad.headlines":{"type":["null","array"]},"ad_group_ad.ad.system_managed_resource_source":{"type":["null","string"]},"ad_group_ad.ad.expanded_text_ad.headline_part1":{"type":["null","string"]},"ad_group_ad.ad.expanded_text_ad.headline_part2":{"type":["null","string"]},"ad_group_ad.ad.expanded_text_ad.headline_part3":{"type":["null","string"]},"ad_group_ad.ad.responsive_display_ad.headlines":{"type":["null","array"]},"metrics.all_conversions_from_interactions_rate":{"type":["null","number"]},"ad_group_ad.ad.responsive_display_ad.main_color":{"type":["null","string"]},"ad_group_ad.ad.responsive_display_ad.promo_text":{"type":["null","string"]},"ad_group_ad.ad.gmail_ad.marketing_image_headline":{"type":["null","string"]},"ad_group_ad.ad.responsive_display_ad.logo_images":{"type":["null","array"]},"ad_group_ad.ad.responsive_search_ad.descriptions":{"type":["null","array"]},"ad_group_ad.ad.responsive_display_ad.accent_color":{"type":["null","string"]},"ad_group_ad.ad.responsive_display_ad.descriptions":{"type":["null","array"]},"ad_group_ad.ad.responsive_display_ad.price_prefix":{"type":["null","string"]},"ad_group_ad.ad.responsive_display_ad.business_name":{"type":["null","string"]},"ad_group_ad.ad.responsive_display_ad.long_headline":{"type":["null","string"]},"metrics.current_model_attributed_conversions_value":{"type":["null","number"]},"ad_group_ad.ad.gmail_ad.marketing_image_description":{"type":["null","string"]},"ad_group_ad.ad.responsive_display_ad.format_setting":{"type":["null","string"]},"ad_group_ad.ad.responsive_display_ad.youtube_videos":{"type":["null","array"]},"metrics.cost_per_current_model_attributed_conversion":{"type":["null","number"]},"ad_group_ad.ad.expanded_dynamic_search_ad.description":{"type":["null","string"]},"ad_group_ad.ad.responsive_display_ad.marketing_images":{"type":["null","array"]},"metrics.value_per_current_model_attributed_conversion":{"type":["null","number"]},"ad_group_ad.ad.legacy_responsive_display_ad.logo_image":{"type":["null","string"]},"ad_group_ad.ad.legacy_responsive_display_ad.main_color":{"type":["null","string"]},"ad_group_ad.ad.legacy_responsive_display_ad.promo_text":{"type":["null","string"]},"ad_group_ad.ad.responsive_display_ad.square_logo_images":{"type":["null","array"]},"ad_group_ad.ad.legacy_responsive_display_ad.accent_color":{"type":["null","string"]},"ad_group_ad.ad.legacy_responsive_display_ad.price_prefix":{"type":["null","string"]},"ad_group_ad.ad.responsive_display_ad.call_to_action_text":{"type":["null","string"]},"ad_group_ad.ad.legacy_responsive_display_ad.business_name":{"type":["null","string"]},"ad_group_ad.ad.legacy_responsive_display_ad.long_headline":{"type":["null","string"]},"ad_group_ad.ad.responsive_display_ad.allow_flexible_color":{"type":["null","boolean"]},"ad_group_ad.ad.legacy_responsive_display_ad.format_setting":{"type":["null","string"]},"ad_group_ad.ad.legacy_responsive_display_ad.short_headline":{"type":["null","string"]},"ad_group_ad.ad.legacy_responsive_display_ad.marketing_image":{"type":["null","string"]},"ad_group_ad.ad.responsive_display_ad.square_marketing_images":{"type":["null","array"]},"ad_group_ad.ad.legacy_responsive_display_ad.square_logo_image":{"type":["null","string"]},"ad_group_ad.ad.legacy_responsive_display_ad.call_to_action_text":{"type":["null","string"]},"ad_group_ad.ad.legacy_responsive_display_ad.allow_flexible_color":{"type":["null","boolean"]},"ad_group_ad.ad.legacy_responsive_display_ad.square_marketing_image":{"type":["null","string"]},"ad_group_ad.ad.gmail_ad.marketing_image_display_call_to_action.text":{"type":["null","string"]},"ad_group_ad.ad.gmail_ad.marketing_image_display_call_to_action.text_color":{"type":["null","string"]}}},supportedSyncModes=[full_refresh, incremental],sourceDefinedCursor=true,defaultCursorField=[segments.date],sourceDefinedPrimaryKey=[],namespace=,additionalProperties={}],syncMode=incremental,cursorField=[segments.date],destinationSyncMode=append_dedup,primaryKey=[[campaign, id], [campaign, status], [campaign, name], [ad_group, name], [ad_group, status], [ad_group_ad, status], [ad_group_ad, ad, id], [segments, date]],additionalProperties={}], io.airbyte.protocol.models.ConfiguredAirbyteStream@6a4db439[stream=io.airbyte.protocol.models.AirbyteStream@7e18d54[name=google_ads_ad_group_ads,jsonSchema={"type":"object","$schema":"http://json-schema.org/draft-07/schema#","properties":{"ad_group_ad.ad.id":{"type":["null","integer"]},"ad_group_ad.labels":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.status":{"type":["null","string"]},"ad_group_ad.ad.name":{"type":["null","string"]},"ad_group_ad.ad.type":{"type":["null","string"]},"ad_group_ad.ad_group":{"type":["null","string"]},"ad_group_ad.ad.hotel_ad":{"type":["null","string"]},"ad_group_ad.ad_strength":{"type":["null","string"]},"ad_group_ad.ad.final_urls":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.resource_name":{"type":["null","string"]},"ad_group_ad.ad.display_url":{"type":["null","string"]},"ad_group_ad.ad.app_ad.images":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.ad.call_ad.path1":{"type":["null","string"]},"ad_group_ad.ad.call_ad.path2":{"type":["null","string"]},"ad_group_ad.ad.image_ad.name":{"type":["null","string"]},"ad_group_ad.ad.resource_name":{"type":["null","string"]},"ad_group_ad.ad.final_app_urls":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.ad.local_ad.path1":{"type":["null","string"]},"ad_group_ad.ad.local_ad.path2":{"type":["null","string"]},"ad_group_ad.ad.local_ad.videos":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.ad.url_collections":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.ad.app_ad.headlines":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.ad.final_url_suffix":{"type":["null","string"]},"ad_group_ad.ad.text_ad.headline":{"type":["null","string"]},"ad_group_ad.ad.call_ad.headline1":{"type":["null","string"]},"ad_group_ad.ad.call_ad.headline2":{"type":["null","string"]},"ad_group_ad.ad.device_preference":{"type":["null","string"]},"ad_group_ad.ad.final_mobile_urls":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.ad.shopping_smart_ad":{"type":["null","string"]},"ad_group_ad.ad.image_ad.image_url":{"type":["null","string"]},"ad_group_ad.ad.image_ad.mime_type":{"type":["null","string"]},"ad_group_ad.ad.local_ad.headlines":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.ad.added_by_google_ads":{"type":["null","boolean"]},"ad_group_ad.ad.app_ad.descriptions":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.ad.shopping_product_ad":{"type":["null","string"]},"ad_group_ad.ad.video_ad.media_file":{"type":["null","string"]},"ad_group_ad.ad.call_ad.call_tracked":{"type":["null","boolean"]},"ad_group_ad.ad.call_ad.country_code":{"type":["null","string"]},"ad_group_ad.ad.call_ad.description1":{"type":["null","string"]},"ad_group_ad.ad.call_ad.description2":{"type":["null","string"]},"ad_group_ad.ad.call_ad.phone_number":{"type":["null","string"]},"ad_group_ad.ad.image_ad.pixel_width":{"type":["null","integer"]},"ad_group_ad.ad.local_ad.logo_images":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.ad.text_ad.description1":{"type":["null","string"]},"ad_group_ad.ad.text_ad.description2":{"type":["null","string"]},"ad_group_ad.ad.app_ad.youtube_videos":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.ad.call_ad.business_name":{"type":["null","string"]},"ad_group_ad.ad.gmail_ad.header_image":{"type":["null","string"]},"ad_group_ad.ad.image_ad.pixel_height":{"type":["null","integer"]},"ad_group_ad.ad.legacy_app_install_ad":{"type":["null","string"]},"ad_group_ad.ad.local_ad.descriptions":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.ad.tracking_url_template":{"type":["null","string"]},"ad_group_ad.ad.url_custom_parameters":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.ad.expanded_text_ad.path1":{"type":["null","string"]},"ad_group_ad.ad.expanded_text_ad.path2":{"type":["null","string"]},"ad_group_ad.ad.gmail_ad.product_images":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.ad.gmail_ad.product_videos":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.ad.app_ad.mandatory_ad_text":{"type":["null","string"]},"ad_group_ad.ad.app_engagement_ad.images":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.ad.app_engagement_ad.videos":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.ad.gmail_ad.marketing_image":{"type":["null","string"]},"ad_group_ad.ad.gmail_ad.teaser.headline":{"type":["null","string"]},"ad_group_ad.ad.local_ad.call_to_actions":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.ad.call_ad.conversion_action":{"type":["null","string"]},"ad_group_ad.ad.local_ad.marketing_images":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.policy_summary.review_status":{"type":["null","string"]},"ad_group_ad.ad.app_ad.html5_media_bundles":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.ad.gmail_ad.teaser.logo_image":{"type":["null","string"]},"ad_group_ad.ad.image_ad.preview_image_url":{"type":["null","string"]},"ad_group_ad.ad.responsive_search_ad.path1":{"type":["null","string"]},"ad_group_ad.ad.responsive_search_ad.path2":{"type":["null","string"]},"ad_group_ad.ad.video_responsive_ad.videos":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.ad.app_engagement_ad.headlines":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.ad.gmail_ad.teaser.description":{"type":["null","string"]},"ad_group_ad.ad.smart_campaign_ad.headlines":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.ad.video_ad.discovery.headline":{"type":["null","string"]},"ad_group_ad.policy_summary.approval_status":{"type":["null","string"]},"ad_group_ad.ad.expanded_text_ad.description":{"type":["null","string"]},"ad_group_ad.ad.image_ad.preview_pixel_width":{"type":["null","integer"]},"ad_group_ad.ad.video_ad.out_stream.headline":{"type":["null","string"]},"ad_group_ad.ad.expanded_text_ad.description2":{"type":["null","string"]},"ad_group_ad.ad.gmail_ad.teaser.business_name":{"type":["null","string"]},"ad_group_ad.ad.image_ad.preview_pixel_height":{"type":["null","integer"]},"ad_group_ad.ad.video_responsive_ad.headlines":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.ad.app_engagement_ad.descriptions":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.ad.display_upload_ad.media_bundle":{"type":["null","string"]},"ad_group_ad.ad.responsive_search_ad.headlines":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.ad.smart_campaign_ad.descriptions":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.ad.system_managed_resource_source":{"type":["null","string"]},"ad_group_ad.ad.call_ad.disable_call_conversion":{"type":["null","boolean"]},"ad_group_ad.ad.expanded_text_ad.headline_part1":{"type":["null","string"]},"ad_group_ad.ad.expanded_text_ad.headline_part2":{"type":["null","string"]},"ad_group_ad.ad.expanded_text_ad.headline_part3":{"type":["null","string"]},"ad_group_ad.ad.responsive_display_ad.headlines":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.ad.video_ad.discovery.description1":{"type":["null","string"]},"ad_group_ad.ad.video_ad.discovery.description2":{"type":["null","string"]},"ad_group_ad.ad.video_ad.out_stream.description":{"type":["null","string"]},"ad_group_ad.ad.responsive_display_ad.main_color":{"type":["null","string"]},"ad_group_ad.ad.responsive_display_ad.promo_text":{"type":["null","string"]},"ad_group_ad.ad.video_ad.bumper.companion_banner":{"type":["null","string"]},"ad_group_ad.ad.video_responsive_ad.descriptions":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.policy_summary.policy_topic_entries":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.ad.gmail_ad.marketing_image_headline":{"type":["null","string"]},"ad_group_ad.ad.responsive_display_ad.logo_images":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.ad.responsive_search_ad.descriptions":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.ad.call_ad.conversion_reporting_state":{"type":["null","string"]},"ad_group_ad.ad.responsive_display_ad.accent_color":{"type":["null","string"]},"ad_group_ad.ad.responsive_display_ad.descriptions":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.ad.responsive_display_ad.price_prefix":{"type":["null","string"]},"ad_group_ad.ad.video_ad.in_stream.action_headline":{"type":["null","string"]},"ad_group_ad.ad.video_responsive_ad.long_headlines":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.ad.responsive_display_ad.business_name":{"type":["null","string"]},"ad_group_ad.ad.responsive_display_ad.long_headline":{"type":["null","string"]},"ad_group_ad.ad.video_ad.in_stream.companion_banner":{"type":["null","string"]},"ad_group_ad.ad.video_responsive_ad.call_to_actions":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.ad.gmail_ad.marketing_image_description":{"type":["null","string"]},"ad_group_ad.ad.responsive_display_ad.format_setting":{"type":["null","string"]},"ad_group_ad.ad.responsive_display_ad.youtube_videos":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.ad.call_ad.phone_number_verification_url":{"type":["null","string"]},"ad_group_ad.ad.video_responsive_ad.companion_banners":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.ad.expanded_dynamic_search_ad.description":{"type":["null","string"]},"ad_group_ad.ad.responsive_display_ad.marketing_images":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.ad.video_ad.in_stream.action_button_label":{"type":["null","string"]},"ad_group_ad.ad.expanded_dynamic_search_ad.description2":{"type":["null","string"]},"ad_group_ad.ad.legacy_responsive_display_ad.logo_image":{"type":["null","string"]},"ad_group_ad.ad.legacy_responsive_display_ad.main_color":{"type":["null","string"]},"ad_group_ad.ad.legacy_responsive_display_ad.promo_text":{"type":["null","string"]},"ad_group_ad.ad.shopping_comparison_listing_ad.headline":{"type":["null","string"]},"ad_group_ad.ad.video_ad.non_skippable.companion_banner":{"type":["null","string"]},"ad_group_ad.ad.legacy_responsive_display_ad.description":{"type":["null","string"]},"ad_group_ad.ad.responsive_display_ad.square_logo_images":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.ad.legacy_responsive_display_ad.accent_color":{"type":["null","string"]},"ad_group_ad.ad.legacy_responsive_display_ad.price_prefix":{"type":["null","string"]},"ad_group_ad.ad.responsive_display_ad.call_to_action_text":{"type":["null","string"]},"ad_group_ad.ad.legacy_responsive_display_ad.business_name":{"type":["null","string"]},"ad_group_ad.ad.legacy_responsive_display_ad.long_headline":{"type":["null","string"]},"ad_group_ad.ad.responsive_display_ad.allow_flexible_color":{"type":["null","boolean"]},"ad_group_ad.ad.legacy_responsive_display_ad.format_setting":{"type":["null","string"]},"ad_group_ad.ad.legacy_responsive_display_ad.short_headline":{"type":["null","string"]},"ad_group_ad.ad.legacy_responsive_display_ad.marketing_image":{"type":["null","string"]},"ad_group_ad.ad.display_upload_ad.display_upload_product_type":{"type":["null","string"]},"ad_group_ad.ad.responsive_display_ad.square_marketing_images":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.ad.legacy_responsive_display_ad.square_logo_image":{"type":["null","string"]},"ad_group_ad.ad.legacy_responsive_display_ad.call_to_action_text":{"type":["null","string"]},"ad_group_ad.ad.legacy_responsive_display_ad.allow_flexible_color":{"type":["null","boolean"]},"ad_group_ad.ad.legacy_responsive_display_ad.square_marketing_image":{"type":["null","string"]},"ad_group_ad.ad.gmail_ad.marketing_image_display_call_to_action.text":{"type":["null","string"]},"ad_group_ad.ad.responsive_display_ad.control_spec.enable_autogen_video":{"type":["null","boolean"]},"ad_group_ad.ad.gmail_ad.marketing_image_display_call_to_action.text_color":{"type":["null","string"]},"ad_group_ad.ad.responsive_display_ad.control_spec.enable_asset_enhancements":{"type":["null","boolean"]},"ad_group_ad.ad.gmail_ad.marketing_image_display_call_to_action.url_collection_id":{"type":["null","string"]}}},supportedSyncModes=[full_refresh],sourceDefinedCursor=,defaultCursorField=[],sourceDefinedPrimaryKey=[[ad_group_ad.ad.id]],namespace=,additionalProperties={}],syncMode=full_refresh,cursorField=[],destinationSyncMode=overwrite,primaryKey=[[ad_group_ad.ad.id]],additionalProperties={}], io.airbyte.protocol.models.ConfiguredAirbyteStream@7ef440f3[stream=io.airbyte.protocol.models.AirbyteStream@4beaccb2[name=google_ads_ad_groups,jsonSchema={"type":"object","$schema":"http://json-schema.org/draft-07/schema#","properties":{"ad_group.id":{"type":["null","integer"]},"ad_group.name":{"type":["null","string"]},"ad_group.type":{"type":["null","string"]},"ad_group.labels":{"type":["null","array"],"items":{"type":"string"}},"ad_group.status":{"type":["null","string"]},"ad_group.campaign":{"type":["null","string"]},"ad_group.target_roas":{"type":["null","number"]},"ad_group.base_ad_group":{"type":["null","string"]},"ad_group.resource_name":{"type":["null","string"]},"ad_group.cpc_bid_micros":{"type":["null","integer"]},"ad_group.cpm_bid_micros":{"type":["null","integer"]},"ad_group.cpv_bid_micros":{"type":["null","integer"]},"ad_group.ad_rotation_mode":{"type":["null","string"]},"ad_group.final_url_suffix":{"type":["null","string"]},"ad_group.target_cpa_micros":{"type":["null","integer"]},"ad_group.target_cpm_micros":{"type":["null","integer"]},"ad_group.effective_target_roas":{"type":["null","number"]},"ad_group.tracking_url_template":{"type":["null","string"]},"ad_group.url_custom_parameters":{"type":["null","array"],"items":{"type":"string"}},"ad_group.percent_cpc_bid_micros":{"type":["null","integer"]},"ad_group.effective_target_cpa_micros":{"type":["null","integer"]},"ad_group.effective_target_cpa_source":{"type":["null","string"]},"ad_group.display_custom_bid_dimension":{"type":["null","string"]},"ad_group.effective_target_roas_source":{"type":["null","string"]},"ad_group.excluded_parent_asset_field_types":{"type":["null","array"],"items":{"type":"string"}},"ad_group.targeting_setting.target_restrictions":{"type":["null","array"],"items":{"type":"string"}},"ad_group.explorer_auto_optimizer_setting.opt_in":{"type":["null","boolean"]}}},supportedSyncModes=[full_refresh],sourceDefinedCursor=,defaultCursorField=[],sourceDefinedPrimaryKey=[[ad_group.id]],namespace=,additionalProperties={}],syncMode=full_refresh,cursorField=[],destinationSyncMode=append,primaryKey=[[ad_group.id]],additionalProperties={}], io.airbyte.protocol.models.ConfiguredAirbyteStream@4c01558a[stream=io.airbyte.protocol.models.AirbyteStream@4701fa73[name=google_ads_campaigns,jsonSchema={"type":"object","$schema":"http://json-schema.org/draft-07/schema#","properties":{"campaign.id":{"type":["null","integer"]},"campaign.name":{"type":["null","string"]},"campaign.labels":{"type":["null","array"],"items":{"type":"string"}},"campaign.status":{"type":["null","string"]},"campaign.end_date":{"type":["null","string"]},"campaign.manual_cpm":{"type":["null","string"]},"campaign.manual_cpv":{"type":["null","string"]},"campaign.start_date":{"type":["null","string"]},"campaign.target_cpm":{"type":["null","string"]},"campaign.payment_mode":{"type":["null","string"]},"campaign.base_campaign":{"type":["null","string"]},"campaign.resource_name":{"type":["null","string"]},"campaign.frequency_caps":{"type":["null","array"],"items":{"type":"string"}},"campaign.serving_status":{"type":["null","string"]},"campaign.campaign_budget":{"type":["null","string"]},"campaign.experiment_type":{"type":["null","string"]},"campaign.bidding_strategy":{"type":["null","string"]},"campaign.final_url_suffix":{"type":["null","string"]},"campaign.optimization_score":{"type":["null","number"]},"campaign.bidding_strategy_type":{"type":["null","string"]},"campaign.tracking_url_template":{"type":["null","string"]},"campaign.url_custom_parameters":{"type":["null","array"],"items":{"type":"string"}},"campaign.target_roas.target_roas":{"type":["null","number"]},"campaign.advertising_channel_type":{"type":["null","string"]},"campaign.accessible_bidding_strategy":{"type":["null","string"]},"campaign.app_campaign_setting.app_id":{"type":["null","string"]},"campaign.advertising_channel_sub_type":{"type":["null","string"]},"campaign.shopping_setting.merchant_id":{"type":["null","integer"]},"campaign.target_cpa.target_cpa_micros":{"type":["null","integer"]},"campaign.hotel_setting.hotel_center_id":{"type":["null","integer"]},"campaign.shopping_setting.enable_local":{"type":["null","boolean"]},"campaign.tracking_setting.tracking_url":{"type":["null","string"]},"campaign.ad_serving_optimization_status":{"type":["null","string"]},"campaign.app_campaign_setting.app_store":{"type":["null","string"]},"campaign.shopping_setting.sales_country":{"type":["null","string"]},"campaign.video_brand_safety_suitability":{"type":["null","string"]},"campaign.manual_cpc.enhanced_cpc_enabled":{"type":["null","boolean"]},"campaign.maximize_conversions.target_cpa":{"type":["null","integer"]},"campaign.target_cpa.cpc_bid_floor_micros":{"type":["null","integer"]},"campaign.dynamic_search_ads_setting.feeds":{"type":["null","array"],"items":{"type":"string"}},"campaign.percent_cpc.enhanced_cpc_enabled":{"type":["null","boolean"]},"campaign.real_time_bidding_setting.opt_in":{"type":["null","boolean"]},"campaign.target_impression_share.location":{"type":["null","string"]},"campaign.target_roas.cpc_bid_floor_micros":{"type":["null","integer"]},"campaign.target_spend.target_spend_micros":{"type":["null","integer"]},"campaign.vanity_pharma.vanity_pharma_text":{"type":["null","string"]},"campaign.commission.commission_rate_micros":{"type":["null","integer"]},"campaign.excluded_parent_asset_field_types":{"type":["null","array"],"items":{"type":"string"}},"campaign.target_cpa.cpc_bid_ceiling_micros":{"type":["null","integer"]},"campaign.percent_cpc.cpc_bid_ceiling_micros":{"type":["null","integer"]},"campaign.shopping_setting.campaign_priority":{"type":["null","integer"]},"campaign.target_roas.cpc_bid_ceiling_micros":{"type":["null","integer"]},"campaign.target_spend.cpc_bid_ceiling_micros":{"type":["null","integer"]},"campaign.maximize_conversion_value.target_roas":{"type":["null","number"]},"campaign.network_settings.target_google_search":{"type":["null","boolean"]},"campaign.targeting_setting.target_restrictions":{"type":["null","array"],"items":{"type":"string"}},"campaign.dynamic_search_ads_setting.domain_name":{"type":["null","string"]},"campaign.network_settings.target_search_network":{"type":["null","boolean"]},"campaign.network_settings.target_content_network":{"type":["null","boolean"]},"campaign.dynamic_search_ads_setting.language_code":{"type":["null","string"]},"campaign.selective_optimization.conversion_actions":{"type":["null","array"],"items":{"type":"string"}},"campaign.local_campaign_setting.location_source_type":{"type":["null","string"]},"campaign.vanity_pharma.vanity_pharma_display_url_mode":{"type":["null","string"]},"campaign.network_settings.target_partner_search_network":{"type":["null","boolean"]},"campaign.target_impression_share.cpc_bid_ceiling_micros":{"type":["null","integer"]},"campaign.app_campaign_setting.bidding_strategy_goal_type":{"type":["null","string"]},"campaign.geo_target_type_setting.negative_geo_target_type":{"type":["null","string"]},"campaign.geo_target_type_setting.positive_geo_target_type":{"type":["null","string"]},"campaign.target_impression_share.location_fraction_micros":{"type":["null","integer"]},"campaign.dynamic_search_ads_setting.use_supplied_urls_only":{"type":["null","boolean"]},"campaign.optimization_goal_setting.optimization_goal_types":{"type":["null","array"],"items":{"type":"string"}}}},supportedSyncModes=[full_refresh],sourceDefinedCursor=,defaultCursorField=[],sourceDefinedPrimaryKey=[[campaign.id]],namespace=,additionalProperties={}],syncMode=full_refresh,cursorField=[],destinationSyncMode=overwrite,primaryKey=[[campaign.id]],additionalProperties={}], io.airbyte.protocol.models.ConfiguredAirbyteStream@1baec9b8[stream=io.airbyte.protocol.models.AirbyteStream@63c0923[name=google_ads_shopping_performance_report,jsonSchema={"type":"object","$schema":"http://json-schema.org/draft-07/schema#","properties":{"ad_group.id":{"type":["null","integer"]},"campaign.id":{"type":["null","integer"]},"customer.id":{"type":["null","integer"]},"metrics.ctr":{"type":["null","number"]},"ad_group.name":{"type":["null","string"]},"campaign.name":{"type":["null","string"]},"segments.date":{"type":["null","string"],"format":"datetime"},"segments.week":{"type":["null","string"]},"segments.year":{"type":["null","integer"]},"metrics.clicks":{"type":["null","integer"]},"segments.month":{"type":["null","string"]},"ad_group.status":{"type":["null","string"]},"campaign.status":{"type":["null","string"]},"segments.device":{"type":["null","string"]},"segments.quarter":{"type":["null","string"]},"metrics.average_cpc":{"type":["null","number"]},"metrics.conversions":{"type":["null","number"]},"metrics.cost_micros":{"type":["null","integer"]},"metrics.impressions":{"type":["null","integer"]},"segments.click_type":{"type":["null","string"]},"segments.day_of_week":{"type":["null","string"]},"segments.product_brand":{"type":["null","string"]},"segments.product_title":{"type":["null","string"]},"metrics.all_conversions":{"type":["null","number"]},"segments.ad_network_type":{"type":["null","string"]},"segments.product_channel":{"type":["null","string"]},"segments.product_country":{"type":["null","string"]},"segments.product_item_id":{"type":["null","string"]},"segments.product_type_l1":{"type":["null","string"]},"segments.product_type_l2":{"type":["null","string"]},"segments.product_type_l3":{"type":["null","string"]},"segments.product_type_l4":{"type":["null","string"]},"segments.product_type_l5":{"type":["null","string"]},"customer.descriptive_name":{"type":["null","string"]},"metrics.conversions_value":{"type":["null","number"]},"segments.product_language":{"type":["null","string"]},"segments.product_store_id":{"type":["null","string"]},"segments.product_condition":{"type":["null","string"]},"metrics.cost_per_conversion":{"type":["null","number"]},"metrics.value_per_conversion":{"type":["null","number"]},"segments.product_merchant_id":{"type":["null","integer"]},"metrics.all_conversions_value":{"type":["null","number"]},"segments.product_aggregator_id":{"type":["null","integer"]},"metrics.cost_per_all_conversions":{"type":["null","number"]},"metrics.cross_device_conversions":{"type":["null","number"]},"metrics.value_per_all_conversions":{"type":["null","number"]},"segments.product_custom_attribute0":{"type":["null","string"]},"segments.product_custom_attribute1":{"type":["null","string"]},"segments.product_custom_attribute2":{"type":["null","string"]},"segments.product_custom_attribute3":{"type":["null","string"]},"segments.product_custom_attribute4":{"type":["null","string"]},"segments.product_channel_exclusivity":{"type":["null","string"]},"segments.product_bidding_category_level1":{"type":["null","string"]},"segments.product_bidding_category_level2":{"type":["null","string"]},"segments.product_bidding_category_level3":{"type":["null","string"]},"segments.product_bidding_category_level4":{"type":["null","string"]},"segments.product_bidding_category_level5":{"type":["null","string"]},"metrics.conversions_from_interactions_rate":{"type":["null","number"]},"metrics.all_conversions_from_interactions_rate":{"type":["null","number"]}}},supportedSyncModes=[full_refresh, incremental],sourceDefinedCursor=true,defaultCursorField=[segments.date],sourceDefinedPrimaryKey=[],namespace=,additionalProperties={}],syncMode=incremental,cursorField=[segments.date],destinationSyncMode=append_dedup,primaryKey=[[segments, date], [campaign, id], [ad_group, id], [ad_group, name], [ad_group, status], [campaign, status], [customer, id]],additionalProperties={}]],additionalProperties={}]]] 2021-07-29 21:35:49 INFO () SyncWorkflow$ReplicationActivityImpl(replicate):203 - sync summary: io.airbyte.config.StandardSyncOutput@65c3f2c8[standardSyncSummary=io.airbyte.config.StandardSyncSummary@3d08a42[status=completed,recordsSynced=9551,bytesSynced=24036526,startTime=1627594461344,endTime=1627594549565],state=io.airbyte.config.State@60b31f99[state={"account_performance_report":{"segments.date":"2021-07-27"},"ad_group_ad_report":{"segments.date":"2021-07-27"},"shopping_performance_report":{"segments.date":"2021-07-27"}}],outputCatalog=io.airbyte.protocol.models.ConfiguredAirbyteCatalog@7ff6f3f8[streams=[io.airbyte.protocol.models.ConfiguredAirbyteStream@aabd6f8[stream=io.airbyte.protocol.models.AirbyteStream@17f69302[name=google_ads_account_performance_report,jsonSchema={"type":"object","$schema":"http://json-schema.org/draft-07/schema#","properties":{"customer.id":{"type":["null","integer"]},"metrics.ctr":{"type":["null","number"]},"segments.date":{"type":["null","string"],"format":"datetime"},"segments.week":{"type":["null","string"]},"segments.year":{"type":["null","integer"]},"metrics.clicks":{"type":["null","integer"]},"segments.month":{"type":["null","string"]},"segments.device":{"type":["null","string"]},"customer.manager":{"type":["null","boolean"]},"segments.quarter":{"type":["null","string"]},"customer.time_zone":{"type":["null","string"]},"metrics.average_cpc":{"type":["null","number"]},"metrics.average_cpe":{"type":["null","number"]},"metrics.average_cpm":{"type":["null","number"]},"metrics.average_cpv":{"type":["null","number"]},"metrics.conversions":{"type":["null","number"]},"metrics.cost_micros":{"type":["null","integer"]},"metrics.engagements":{"type":["null","integer"]},"metrics.impressions":{"type":["null","integer"]},"metrics.video_views":{"type":["null","integer"]},"metrics.average_cost":{"type":["null","number"]},"metrics.interactions":{"type":["null","integer"]},"segments.day_of_week":{"type":["null","string"]},"customer.test_account":{"type":["null","boolean"]},"customer.currency_code":{"type":["null","string"]},"metrics.active_view_cpm":{"type":["null","number"]},"metrics.active_view_ctr":{"type":["null","number"]},"metrics.all_conversions":{"type":["null","number"]},"metrics.engagement_rate":{"type":["null","number"]},"metrics.video_view_rate":{"type":["null","number"]},"metrics.interaction_rate":{"type":["null","number"]},"segments.ad_network_type":{"type":["null","string"]},"customer.descriptive_name":{"type":["null","string"]},"metrics.conversions_value":{"type":["null","number"]},"metrics.cost_per_conversion":{"type":["null","number"]},"metrics.value_per_conversion":{"type":["null","number"]},"customer.auto_tagging_enabled":{"type":["null","boolean"]},"metrics.all_conversions_value":{"type":["null","number"]},"metrics.active_view_impressions":{"type":["null","integer"]},"metrics.active_view_viewability":{"type":["null","number"]},"metrics.interaction_event_types":{"type":["null","array"],"items":{"type":"string"}},"metrics.search_impression_share":{"type":["null","number"]},"metrics.content_impression_share":{"type":["null","number"]},"metrics.cost_per_all_conversions":{"type":["null","number"]},"metrics.cross_device_conversions":{"type":["null","number"]},"metrics.view_through_conversions":{"type":["null","integer"]},"metrics.active_view_measurability":{"type":["null","number"]},"metrics.value_per_all_conversions":{"type":["null","number"]},"metrics.search_rank_lost_impression_share":{"type":["null","number"]},"metrics.active_view_measurable_cost_micros":{"type":["null","integer"]},"metrics.active_view_measurable_impressions":{"type":["null","integer"]},"metrics.content_rank_lost_impression_share":{"type":["null","number"]},"metrics.conversions_from_interactions_rate":{"type":["null","number"]},"metrics.search_budget_lost_impression_share":{"type":["null","number"]},"metrics.search_exact_match_impression_share":{"type":["null","number"]},"metrics.content_budget_lost_impression_share":{"type":["null","number"]},"metrics.all_conversions_from_interactions_rate":{"type":["null","number"]}}},supportedSyncModes=[full_refresh, incremental],sourceDefinedCursor=true,defaultCursorField=[segments.date],sourceDefinedPrimaryKey=[],namespace=,additionalProperties={}],syncMode=incremental,cursorField=[segments.date],destinationSyncMode=append_dedup,primaryKey=[[segments, date], [customer, id]],additionalProperties={}], io.airbyte.protocol.models.ConfiguredAirbyteStream@7a8ab8cb[stream=io.airbyte.protocol.models.AirbyteStream@32abfd51[name=google_ads_accounts,jsonSchema={"type":"object","$schema":"http://json-schema.org/draft-07/schema#","properties":{"customer.id":{"type":["null","integer"]},"customer.manager":{"type":["null","boolean"]},"customer.time_zone":{"type":["null","string"]},"customer.test_account":{"type":["null","boolean"]},"customer.currency_code":{"type":["null","string"]},"customer.resource_name":{"type":["null","string"]},"customer.descriptive_name":{"type":["null","string"]},"customer.final_url_suffix":{"type":["null","string"]},"customer.has_partners_badge":{"type":["null","boolean"]},"customer.optimization_score":{"type":["null","number"]},"customer.auto_tagging_enabled":{"type":["null","boolean"]},"customer.tracking_url_template":{"type":["null","string"]},"customer.optimization_score_weight":{"type":["null","number"]},"customer.remarketing_setting.google_global_site_tag":{"type":["null","string"]},"customer.call_reporting_setting.call_conversion_action":{"type":["null","string"]},"customer.call_reporting_setting.call_reporting_enabled":{"type":["null","boolean"]},"customer.pay_per_conversion_eligibility_failure_reasons":{"type":["null","array"],"items":{"type":"string"}},"customer.conversion_tracking_setting.conversion_tracking_id":{"type":["null","integer"]},"customer.call_reporting_setting.call_conversion_reporting_enabled":{"type":["null","boolean"]},"customer.conversion_tracking_setting.cross_account_conversion_tracking_id":{"type":["null","integer"]}}},supportedSyncModes=[full_refresh],sourceDefinedCursor=,defaultCursorField=[],sourceDefinedPrimaryKey=[[customer.id]],namespace=,additionalProperties={}],syncMode=full_refresh,cursorField=[],destinationSyncMode=overwrite,primaryKey=[[customer.id]],additionalProperties={}], io.airbyte.protocol.models.ConfiguredAirbyteStream@6663e1ea[stream=io.airbyte.protocol.models.AirbyteStream@45ae00a7[name=google_ads_ad_group_ad_report,jsonSchema={"type":"object","$schema":"http://json-schema.org/draft-07/schema#","properties":{"campaign.id":{"type":["null","integer"]},"customer.id":{"type":["null","integer"]},"metrics.ctr":{"type":["null","number"]},"ad_group.name":{"type":["null","string"]},"campaign.name":{"type":["null","string"]},"segments.date":{"type":["null","string"],"format":"datetime"},"segments.week":{"type":["null","string"]},"segments.year":{"type":["null","integer"]},"metrics.clicks":{"type":["null","integer"]},"segments.month":{"type":["null","string"]},"ad_group.status":{"type":["null","string"]},"campaign.status":{"type":["null","string"]},"segments.quarter":{"type":["null","string"]},"ad_group_ad.ad.id":{"type":["null","integer"]},"ad_group_ad.status":{"type":["null","string"]},"customer.time_zone":{"type":["null","string"]},"ad_group_ad.ad.type":{"type":["null","string"]},"metrics.average_cpc":{"type":["null","number"]},"metrics.average_cpe":{"type":["null","number"]},"metrics.average_cpm":{"type":["null","number"]},"metrics.average_cpv":{"type":["null","number"]},"metrics.bounce_rate":{"type":["null","number"]},"metrics.conversions":{"type":["null","number"]},"metrics.cost_micros":{"type":["null","integer"]},"metrics.engagements":{"type":["null","integer"]},"metrics.gmail_saves":{"type":["null","integer"]},"metrics.impressions":{"type":["null","integer"]},"metrics.video_views":{"type":["null","integer"]},"ad_group_ad.ad_group":{"type":["null","string"]},"metrics.average_cost":{"type":["null","number"]},"metrics.interactions":{"type":["null","integer"]},"segments.day_of_week":{"type":["null","string"]},"ad_group.base_ad_group":{"type":["null","string"]},"campaign.base_campaign":{"type":["null","string"]},"customer.currency_code":{"type":["null","string"]},"metrics.gmail_forwards":{"type":["null","integer"]},"ad_group_ad.ad_strength":{"type":["null","string"]},"metrics.active_view_cpm":{"type":["null","number"]},"metrics.active_view_ctr":{"type":["null","number"]},"metrics.all_conversions":{"type":["null","number"]},"metrics.engagement_rate":{"type":["null","number"]},"metrics.video_view_rate":{"type":["null","number"]},"metrics.interaction_rate":{"type":["null","number"]},"segments.ad_network_type":{"type":["null","string"]},"ad_group_ad.ad.final_urls":{"type":["null","array"]},"customer.descriptive_name":{"type":["null","string"]},"metrics.conversions_value":{"type":["null","number"]},"ad_group_ad.ad.display_url":{"type":["null","string"]},"metrics.average_page_views":{"type":["null","number"]},"metrics.cost_per_conversion":{"type":["null","number"]},"ad_group_ad.ad.app_ad.images":{"type":["null","array"]},"ad_group_ad.ad.image_ad.name":{"type":["null","string"]},"metrics.average_time_on_site":{"type":["null","number"]},"metrics.percent_new_visitors":{"type":["null","number"]},"metrics.value_per_conversion":{"type":["null","number"]},"metrics.all_conversions_value":{"type":["null","number"]},"metrics.gmail_secondary_clicks":{"type":["null","integer"]},"ad_group_ad.ad.app_ad.headlines":{"type":["null","array"]},"ad_group_ad.ad.text_ad.headline":{"type":["null","string"]},"metrics.active_view_impressions":{"type":["null","integer"]},"metrics.active_view_viewability":{"type":["null","number"]},"metrics.interaction_event_types":{"type":["null","array"]},"metrics.video_quartile_p25_rate":{"type":["null","number"]},"metrics.video_quartile_p50_rate":{"type":["null","number"]},"metrics.video_quartile_p75_rate":{"type":["null","number"]},"ad_group_ad.ad.device_preference":{"type":["null","string"]},"ad_group_ad.ad.final_mobile_urls":{"type":["null","array"]},"metrics.cost_per_all_conversions":{"type":["null","number"]},"metrics.cross_device_conversions":{"type":["null","number"]},"metrics.video_quartile_p100_rate":{"type":["null","number"]},"metrics.view_through_conversions":{"type":["null","integer"]},"ad_group_ad.ad.image_ad.image_url":{"type":["null","string"]},"ad_group_ad.ad.image_ad.mime_type":{"type":["null","string"]},"metrics.active_view_measurability":{"type":["null","number"]},"metrics.top_impression_percentage":{"type":["null","number"]},"metrics.value_per_all_conversions":{"type":["null","number"]},"ad_group_ad.ad.added_by_google_ads":{"type":["null","boolean"]},"ad_group_ad.ad.app_ad.descriptions":{"type":["null","array"]},"ad_group_ad.ad.image_ad.pixel_width":{"type":["null","integer"]},"ad_group_ad.ad.text_ad.description1":{"type":["null","string"]},"ad_group_ad.ad.text_ad.description2":{"type":["null","string"]},"ad_group_ad.ad.app_ad.youtube_videos":{"type":["null","array"]},"ad_group_ad.ad.gmail_ad.header_image":{"type":["null","string"]},"ad_group_ad.ad.image_ad.pixel_height":{"type":["null","integer"]},"ad_group_ad.ad.tracking_url_template":{"type":["null","string"]},"ad_group_ad.ad.url_custom_parameters":{"type":["null","array"]},"ad_group_ad.ad.expanded_text_ad.path1":{"type":["null","string"]},"ad_group_ad.ad.expanded_text_ad.path2":{"type":["null","string"]},"ad_group_ad.ad.app_ad.mandatory_ad_text":{"type":["null","string"]},"ad_group_ad.ad.gmail_ad.marketing_image":{"type":["null","string"]},"ad_group_ad.ad.gmail_ad.teaser.headline":{"type":["null","string"]},"ad_group_ad.ad.app_ad.html5_media_bundles":{"type":["null","array"]},"ad_group_ad.ad.gmail_ad.teaser.logo_image":{"type":["null","string"]},"ad_group_ad.ad.responsive_search_ad.path1":{"type":["null","string"]},"ad_group_ad.ad.responsive_search_ad.path2":{"type":["null","string"]},"ad_group_ad.ad.gmail_ad.teaser.description":{"type":["null","string"]},"ad_group_ad.policy_summary.approval_status":{"type":["null","string"]},"metrics.active_view_measurable_cost_micros":{"type":["null","integer"]},"metrics.active_view_measurable_impressions":{"type":["null","integer"]},"metrics.conversions_from_interactions_rate":{"type":["null","number"]},"ad_group_ad.ad.expanded_text_ad.description":{"type":["null","string"]},"ad_group_ad.ad.expanded_text_ad.description2":{"type":["null","string"]},"ad_group_ad.ad.gmail_ad.teaser.business_name":{"type":["null","string"]},"metrics.current_model_attributed_conversions":{"type":["null","number"]},"ad_group_ad.ad.responsive_search_ad.headlines":{"type":["null","array"]},"ad_group_ad.ad.system_managed_resource_source":{"type":["null","string"]},"ad_group_ad.ad.expanded_text_ad.headline_part1":{"type":["null","string"]},"ad_group_ad.ad.expanded_text_ad.headline_part2":{"type":["null","string"]},"ad_group_ad.ad.expanded_text_ad.headline_part3":{"type":["null","string"]},"ad_group_ad.ad.responsive_display_ad.headlines":{"type":["null","array"]},"metrics.all_conversions_from_interactions_rate":{"type":["null","number"]},"ad_group_ad.ad.responsive_display_ad.main_color":{"type":["null","string"]},"ad_group_ad.ad.responsive_display_ad.promo_text":{"type":["null","string"]},"ad_group_ad.ad.gmail_ad.marketing_image_headline":{"type":["null","string"]},"ad_group_ad.ad.responsive_display_ad.logo_images":{"type":["null","array"]},"ad_group_ad.ad.responsive_search_ad.descriptions":{"type":["null","array"]},"ad_group_ad.ad.responsive_display_ad.accent_color":{"type":["null","string"]},"ad_group_ad.ad.responsive_display_ad.descriptions":{"type":["null","array"]},"ad_group_ad.ad.responsive_display_ad.price_prefix":{"type":["null","string"]},"ad_group_ad.ad.responsive_display_ad.business_name":{"type":["null","string"]},"ad_group_ad.ad.responsive_display_ad.long_headline":{"type":["null","string"]},"metrics.current_model_attributed_conversions_value":{"type":["null","number"]},"ad_group_ad.ad.gmail_ad.marketing_image_description":{"type":["null","string"]},"ad_group_ad.ad.responsive_display_ad.format_setting":{"type":["null","string"]},"ad_group_ad.ad.responsive_display_ad.youtube_videos":{"type":["null","array"]},"metrics.cost_per_current_model_attributed_conversion":{"type":["null","number"]},"ad_group_ad.ad.expanded_dynamic_search_ad.description":{"type":["null","string"]},"ad_group_ad.ad.responsive_display_ad.marketing_images":{"type":["null","array"]},"metrics.value_per_current_model_attributed_conversion":{"type":["null","number"]},"ad_group_ad.ad.legacy_responsive_display_ad.logo_image":{"type":["null","string"]},"ad_group_ad.ad.legacy_responsive_display_ad.main_color":{"type":["null","string"]},"ad_group_ad.ad.legacy_responsive_display_ad.promo_text":{"type":["null","string"]},"ad_group_ad.ad.responsive_display_ad.square_logo_images":{"type":["null","array"]},"ad_group_ad.ad.legacy_responsive_display_ad.accent_color":{"type":["null","string"]},"ad_group_ad.ad.legacy_responsive_display_ad.price_prefix":{"type":["null","string"]},"ad_group_ad.ad.responsive_display_ad.call_to_action_text":{"type":["null","string"]},"ad_group_ad.ad.legacy_responsive_display_ad.business_name":{"type":["null","string"]},"ad_group_ad.ad.legacy_responsive_display_ad.long_headline":{"type":["null","string"]},"ad_group_ad.ad.responsive_display_ad.allow_flexible_color":{"type":["null","boolean"]},"ad_group_ad.ad.legacy_responsive_display_ad.format_setting":{"type":["null","string"]},"ad_group_ad.ad.legacy_responsive_display_ad.short_headline":{"type":["null","string"]},"ad_group_ad.ad.legacy_responsive_display_ad.marketing_image":{"type":["null","string"]},"ad_group_ad.ad.responsive_display_ad.square_marketing_images":{"type":["null","array"]},"ad_group_ad.ad.legacy_responsive_display_ad.square_logo_image":{"type":["null","string"]},"ad_group_ad.ad.legacy_responsive_display_ad.call_to_action_text":{"type":["null","string"]},"ad_group_ad.ad.legacy_responsive_display_ad.allow_flexible_color":{"type":["null","boolean"]},"ad_group_ad.ad.legacy_responsive_display_ad.square_marketing_image":{"type":["null","string"]},"ad_group_ad.ad.gmail_ad.marketing_image_display_call_to_action.text":{"type":["null","string"]},"ad_group_ad.ad.gmail_ad.marketing_image_display_call_to_action.text_color":{"type":["null","string"]}}},supportedSyncModes=[full_refresh, incremental],sourceDefinedCursor=true,defaultCursorField=[segments.date],sourceDefinedPrimaryKey=[],namespace=,additionalProperties={}],syncMode=incremental,cursorField=[segments.date],destinationSyncMode=append_dedup,primaryKey=[[campaign, id], [campaign, status], [campaign, name], [ad_group, name], [ad_group, status], [ad_group_ad, status], [ad_group_ad, ad, id], [segments, date]],additionalProperties={}], io.airbyte.protocol.models.ConfiguredAirbyteStream@6a4db439[stream=io.airbyte.protocol.models.AirbyteStream@7e18d54[name=google_ads_ad_group_ads,jsonSchema={"type":"object","$schema":"http://json-schema.org/draft-07/schema#","properties":{"ad_group_ad.ad.id":{"type":["null","integer"]},"ad_group_ad.labels":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.status":{"type":["null","string"]},"ad_group_ad.ad.name":{"type":["null","string"]},"ad_group_ad.ad.type":{"type":["null","string"]},"ad_group_ad.ad_group":{"type":["null","string"]},"ad_group_ad.ad.hotel_ad":{"type":["null","string"]},"ad_group_ad.ad_strength":{"type":["null","string"]},"ad_group_ad.ad.final_urls":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.resource_name":{"type":["null","string"]},"ad_group_ad.ad.display_url":{"type":["null","string"]},"ad_group_ad.ad.app_ad.images":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.ad.call_ad.path1":{"type":["null","string"]},"ad_group_ad.ad.call_ad.path2":{"type":["null","string"]},"ad_group_ad.ad.image_ad.name":{"type":["null","string"]},"ad_group_ad.ad.resource_name":{"type":["null","string"]},"ad_group_ad.ad.final_app_urls":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.ad.local_ad.path1":{"type":["null","string"]},"ad_group_ad.ad.local_ad.path2":{"type":["null","string"]},"ad_group_ad.ad.local_ad.videos":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.ad.url_collections":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.ad.app_ad.headlines":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.ad.final_url_suffix":{"type":["null","string"]},"ad_group_ad.ad.text_ad.headline":{"type":["null","string"]},"ad_group_ad.ad.call_ad.headline1":{"type":["null","string"]},"ad_group_ad.ad.call_ad.headline2":{"type":["null","string"]},"ad_group_ad.ad.device_preference":{"type":["null","string"]},"ad_group_ad.ad.final_mobile_urls":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.ad.shopping_smart_ad":{"type":["null","string"]},"ad_group_ad.ad.image_ad.image_url":{"type":["null","string"]},"ad_group_ad.ad.image_ad.mime_type":{"type":["null","string"]},"ad_group_ad.ad.local_ad.headlines":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.ad.added_by_google_ads":{"type":["null","boolean"]},"ad_group_ad.ad.app_ad.descriptions":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.ad.shopping_product_ad":{"type":["null","string"]},"ad_group_ad.ad.video_ad.media_file":{"type":["null","string"]},"ad_group_ad.ad.call_ad.call_tracked":{"type":["null","boolean"]},"ad_group_ad.ad.call_ad.country_code":{"type":["null","string"]},"ad_group_ad.ad.call_ad.description1":{"type":["null","string"]},"ad_group_ad.ad.call_ad.description2":{"type":["null","string"]},"ad_group_ad.ad.call_ad.phone_number":{"type":["null","string"]},"ad_group_ad.ad.image_ad.pixel_width":{"type":["null","integer"]},"ad_group_ad.ad.local_ad.logo_images":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.ad.text_ad.description1":{"type":["null","string"]},"ad_group_ad.ad.text_ad.description2":{"type":["null","string"]},"ad_group_ad.ad.app_ad.youtube_videos":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.ad.call_ad.business_name":{"type":["null","string"]},"ad_group_ad.ad.gmail_ad.header_image":{"type":["null","string"]},"ad_group_ad.ad.image_ad.pixel_height":{"type":["null","integer"]},"ad_group_ad.ad.legacy_app_install_ad":{"type":["null","string"]},"ad_group_ad.ad.local_ad.descriptions":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.ad.tracking_url_template":{"type":["null","string"]},"ad_group_ad.ad.url_custom_parameters":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.ad.expanded_text_ad.path1":{"type":["null","string"]},"ad_group_ad.ad.expanded_text_ad.path2":{"type":["null","string"]},"ad_group_ad.ad.gmail_ad.product_images":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.ad.gmail_ad.product_videos":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.ad.app_ad.mandatory_ad_text":{"type":["null","string"]},"ad_group_ad.ad.app_engagement_ad.images":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.ad.app_engagement_ad.videos":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.ad.gmail_ad.marketing_image":{"type":["null","string"]},"ad_group_ad.ad.gmail_ad.teaser.headline":{"type":["null","string"]},"ad_group_ad.ad.local_ad.call_to_actions":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.ad.call_ad.conversion_action":{"type":["null","string"]},"ad_group_ad.ad.local_ad.marketing_images":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.policy_summary.review_status":{"type":["null","string"]},"ad_group_ad.ad.app_ad.html5_media_bundles":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.ad.gmail_ad.teaser.logo_image":{"type":["null","string"]},"ad_group_ad.ad.image_ad.preview_image_url":{"type":["null","string"]},"ad_group_ad.ad.responsive_search_ad.path1":{"type":["null","string"]},"ad_group_ad.ad.responsive_search_ad.path2":{"type":["null","string"]},"ad_group_ad.ad.video_responsive_ad.videos":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.ad.app_engagement_ad.headlines":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.ad.gmail_ad.teaser.description":{"type":["null","string"]},"ad_group_ad.ad.smart_campaign_ad.headlines":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.ad.video_ad.discovery.headline":{"type":["null","string"]},"ad_group_ad.policy_summary.approval_status":{"type":["null","string"]},"ad_group_ad.ad.expanded_text_ad.description":{"type":["null","string"]},"ad_group_ad.ad.image_ad.preview_pixel_width":{"type":["null","integer"]},"ad_group_ad.ad.video_ad.out_stream.headline":{"type":["null","string"]},"ad_group_ad.ad.expanded_text_ad.description2":{"type":["null","string"]},"ad_group_ad.ad.gmail_ad.teaser.business_name":{"type":["null","string"]},"ad_group_ad.ad.image_ad.preview_pixel_height":{"type":["null","integer"]},"ad_group_ad.ad.video_responsive_ad.headlines":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.ad.app_engagement_ad.descriptions":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.ad.display_upload_ad.media_bundle":{"type":["null","string"]},"ad_group_ad.ad.responsive_search_ad.headlines":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.ad.smart_campaign_ad.descriptions":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.ad.system_managed_resource_source":{"type":["null","string"]},"ad_group_ad.ad.call_ad.disable_call_conversion":{"type":["null","boolean"]},"ad_group_ad.ad.expanded_text_ad.headline_part1":{"type":["null","string"]},"ad_group_ad.ad.expanded_text_ad.headline_part2":{"type":["null","string"]},"ad_group_ad.ad.expanded_text_ad.headline_part3":{"type":["null","string"]},"ad_group_ad.ad.responsive_display_ad.headlines":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.ad.video_ad.discovery.description1":{"type":["null","string"]},"ad_group_ad.ad.video_ad.discovery.description2":{"type":["null","string"]},"ad_group_ad.ad.video_ad.out_stream.description":{"type":["null","string"]},"ad_group_ad.ad.responsive_display_ad.main_color":{"type":["null","string"]},"ad_group_ad.ad.responsive_display_ad.promo_text":{"type":["null","string"]},"ad_group_ad.ad.video_ad.bumper.companion_banner":{"type":["null","string"]},"ad_group_ad.ad.video_responsive_ad.descriptions":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.policy_summary.policy_topic_entries":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.ad.gmail_ad.marketing_image_headline":{"type":["null","string"]},"ad_group_ad.ad.responsive_display_ad.logo_images":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.ad.responsive_search_ad.descriptions":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.ad.call_ad.conversion_reporting_state":{"type":["null","string"]},"ad_group_ad.ad.responsive_display_ad.accent_color":{"type":["null","string"]},"ad_group_ad.ad.responsive_display_ad.descriptions":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.ad.responsive_display_ad.price_prefix":{"type":["null","string"]},"ad_group_ad.ad.video_ad.in_stream.action_headline":{"type":["null","string"]},"ad_group_ad.ad.video_responsive_ad.long_headlines":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.ad.responsive_display_ad.business_name":{"type":["null","string"]},"ad_group_ad.ad.responsive_display_ad.long_headline":{"type":["null","string"]},"ad_group_ad.ad.video_ad.in_stream.companion_banner":{"type":["null","string"]},"ad_group_ad.ad.video_responsive_ad.call_to_actions":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.ad.gmail_ad.marketing_image_description":{"type":["null","string"]},"ad_group_ad.ad.responsive_display_ad.format_setting":{"type":["null","string"]},"ad_group_ad.ad.responsive_display_ad.youtube_videos":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.ad.call_ad.phone_number_verification_url":{"type":["null","string"]},"ad_group_ad.ad.video_responsive_ad.companion_banners":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.ad.expanded_dynamic_search_ad.description":{"type":["null","string"]},"ad_group_ad.ad.responsive_display_ad.marketing_images":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.ad.video_ad.in_stream.action_button_label":{"type":["null","string"]},"ad_group_ad.ad.expanded_dynamic_search_ad.description2":{"type":["null","string"]},"ad_group_ad.ad.legacy_responsive_display_ad.logo_image":{"type":["null","string"]},"ad_group_ad.ad.legacy_responsive_display_ad.main_color":{"type":["null","string"]},"ad_group_ad.ad.legacy_responsive_display_ad.promo_text":{"type":["null","string"]},"ad_group_ad.ad.shopping_comparison_listing_ad.headline":{"type":["null","string"]},"ad_group_ad.ad.video_ad.non_skippable.companion_banner":{"type":["null","string"]},"ad_group_ad.ad.legacy_responsive_display_ad.description":{"type":["null","string"]},"ad_group_ad.ad.responsive_display_ad.square_logo_images":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.ad.legacy_responsive_display_ad.accent_color":{"type":["null","string"]},"ad_group_ad.ad.legacy_responsive_display_ad.price_prefix":{"type":["null","string"]},"ad_group_ad.ad.responsive_display_ad.call_to_action_text":{"type":["null","string"]},"ad_group_ad.ad.legacy_responsive_display_ad.business_name":{"type":["null","string"]},"ad_group_ad.ad.legacy_responsive_display_ad.long_headline":{"type":["null","string"]},"ad_group_ad.ad.responsive_display_ad.allow_flexible_color":{"type":["null","boolean"]},"ad_group_ad.ad.legacy_responsive_display_ad.format_setting":{"type":["null","string"]},"ad_group_ad.ad.legacy_responsive_display_ad.short_headline":{"type":["null","string"]},"ad_group_ad.ad.legacy_responsive_display_ad.marketing_image":{"type":["null","string"]},"ad_group_ad.ad.display_upload_ad.display_upload_product_type":{"type":["null","string"]},"ad_group_ad.ad.responsive_display_ad.square_marketing_images":{"type":["null","array"],"items":{"type":"string"}},"ad_group_ad.ad.legacy_responsive_display_ad.square_logo_image":{"type":["null","string"]},"ad_group_ad.ad.legacy_responsive_display_ad.call_to_action_text":{"type":["null","string"]},"ad_group_ad.ad.legacy_responsive_display_ad.allow_flexible_color":{"type":["null","boolean"]},"ad_group_ad.ad.legacy_responsive_display_ad.square_marketing_image":{"type":["null","string"]},"ad_group_ad.ad.gmail_ad.marketing_image_display_call_to_action.text":{"type":["null","string"]},"ad_group_ad.ad.responsive_display_ad.control_spec.enable_autogen_video":{"type":["null","boolean"]},"ad_group_ad.ad.gmail_ad.marketing_image_display_call_to_action.text_color":{"type":["null","string"]},"ad_group_ad.ad.responsive_display_ad.control_spec.enable_asset_enhancements":{"type":["null","boolean"]},"ad_group_ad.ad.gmail_ad.marketing_image_display_call_to_action.url_collection_id":{"type":["null","string"]}}},supportedSyncModes=[full_refresh],sourceDefinedCursor=,defaultCursorField=[],sourceDefinedPrimaryKey=[[ad_group_ad.ad.id]],namespace=,additionalProperties={}],syncMode=full_refresh,cursorField=[],destinationSyncMode=overwrite,primaryKey=[[ad_group_ad.ad.id]],additionalProperties={}], io.airbyte.protocol.models.ConfiguredAirbyteStream@7ef440f3[stream=io.airbyte.protocol.models.AirbyteStream@4beaccb2[name=google_ads_ad_groups,jsonSchema={"type":"object","$schema":"http://json-schema.org/draft-07/schema#","properties":{"ad_group.id":{"type":["null","integer"]},"ad_group.name":{"type":["null","string"]},"ad_group.type":{"type":["null","string"]},"ad_group.labels":{"type":["null","array"],"items":{"type":"string"}},"ad_group.status":{"type":["null","string"]},"ad_group.campaign":{"type":["null","string"]},"ad_group.target_roas":{"type":["null","number"]},"ad_group.base_ad_group":{"type":["null","string"]},"ad_group.resource_name":{"type":["null","string"]},"ad_group.cpc_bid_micros":{"type":["null","integer"]},"ad_group.cpm_bid_micros":{"type":["null","integer"]},"ad_group.cpv_bid_micros":{"type":["null","integer"]},"ad_group.ad_rotation_mode":{"type":["null","string"]},"ad_group.final_url_suffix":{"type":["null","string"]},"ad_group.target_cpa_micros":{"type":["null","integer"]},"ad_group.target_cpm_micros":{"type":["null","integer"]},"ad_group.effective_target_roas":{"type":["null","number"]},"ad_group.tracking_url_template":{"type":["null","string"]},"ad_group.url_custom_parameters":{"type":["null","array"],"items":{"type":"string"}},"ad_group.percent_cpc_bid_micros":{"type":["null","integer"]},"ad_group.effective_target_cpa_micros":{"type":["null","integer"]},"ad_group.effective_target_cpa_source":{"type":["null","string"]},"ad_group.display_custom_bid_dimension":{"type":["null","string"]},"ad_group.effective_target_roas_source":{"type":["null","string"]},"ad_group.excluded_parent_asset_field_types":{"type":["null","array"],"items":{"type":"string"}},"ad_group.targeting_setting.target_restrictions":{"type":["null","array"],"items":{"type":"string"}},"ad_group.explorer_auto_optimizer_setting.opt_in":{"type":["null","boolean"]}}},supportedSyncModes=[full_refresh],sourceDefinedCursor=,defaultCursorField=[],sourceDefinedPrimaryKey=[[ad_group.id]],namespace=,additionalProperties={}],syncMode=full_refresh,cursorField=[],destinationSyncMode=append,primaryKey=[[ad_group.id]],additionalProperties={}], io.airbyte.protocol.models.ConfiguredAirbyteStream@4c01558a[stream=io.airbyte.protocol.models.AirbyteStream@4701fa73[name=google_ads_campaigns,jsonSchema={"type":"object","$schema":"http://json-schema.org/draft-07/schema#","properties":{"campaign.id":{"type":["null","integer"]},"campaign.name":{"type":["null","string"]},"campaign.labels":{"type":["null","array"],"items":{"type":"string"}},"campaign.status":{"type":["null","string"]},"campaign.end_date":{"type":["null","string"]},"campaign.manual_cpm":{"type":["null","string"]},"campaign.manual_cpv":{"type":["null","string"]},"campaign.start_date":{"type":["null","string"]},"campaign.target_cpm":{"type":["null","string"]},"campaign.payment_mode":{"type":["null","string"]},"campaign.base_campaign":{"type":["null","string"]},"campaign.resource_name":{"type":["null","string"]},"campaign.frequency_caps":{"type":["null","array"],"items":{"type":"string"}},"campaign.serving_status":{"type":["null","string"]},"campaign.campaign_budget":{"type":["null","string"]},"campaign.experiment_type":{"type":["null","string"]},"campaign.bidding_strategy":{"type":["null","string"]},"campaign.final_url_suffix":{"type":["null","string"]},"campaign.optimization_score":{"type":["null","number"]},"campaign.bidding_strategy_type":{"type":["null","string"]},"campaign.tracking_url_template":{"type":["null","string"]},"campaign.url_custom_parameters":{"type":["null","array"],"items":{"type":"string"}},"campaign.target_roas.target_roas":{"type":["null","number"]},"campaign.advertising_channel_type":{"type":["null","string"]},"campaign.accessible_bidding_strategy":{"type":["null","string"]},"campaign.app_campaign_setting.app_id":{"type":["null","string"]},"campaign.advertising_channel_sub_type":{"type":["null","string"]},"campaign.shopping_setting.merchant_id":{"type":["null","integer"]},"campaign.target_cpa.target_cpa_micros":{"type":["null","integer"]},"campaign.hotel_setting.hotel_center_id":{"type":["null","integer"]},"campaign.shopping_setting.enable_local":{"type":["null","boolean"]},"campaign.tracking_setting.tracking_url":{"type":["null","string"]},"campaign.ad_serving_optimization_status":{"type":["null","string"]},"campaign.app_campaign_setting.app_store":{"type":["null","string"]},"campaign.shopping_setting.sales_country":{"type":["null","string"]},"campaign.video_brand_safety_suitability":{"type":["null","string"]},"campaign.manual_cpc.enhanced_cpc_enabled":{"type":["null","boolean"]},"campaign.maximize_conversions.target_cpa":{"type":["null","integer"]},"campaign.target_cpa.cpc_bid_floor_micros":{"type":["null","integer"]},"campaign.dynamic_search_ads_setting.feeds":{"type":["null","array"],"items":{"type":"string"}},"campaign.percent_cpc.enhanced_cpc_enabled":{"type":["null","boolean"]},"campaign.real_time_bidding_setting.opt_in":{"type":["null","boolean"]},"campaign.target_impression_share.location":{"type":["null","string"]},"campaign.target_roas.cpc_bid_floor_micros":{"type":["null","integer"]},"campaign.target_spend.target_spend_micros":{"type":["null","integer"]},"campaign.vanity_pharma.vanity_pharma_text":{"type":["null","string"]},"campaign.commission.commission_rate_micros":{"type":["null","integer"]},"campaign.excluded_parent_asset_field_types":{"type":["null","array"],"items":{"type":"string"}},"campaign.target_cpa.cpc_bid_ceiling_micros":{"type":["null","integer"]},"campaign.percent_cpc.cpc_bid_ceiling_micros":{"type":["null","integer"]},"campaign.shopping_setting.campaign_priority":{"type":["null","integer"]},"campaign.target_roas.cpc_bid_ceiling_micros":{"type":["null","integer"]},"campaign.target_spend.cpc_bid_ceiling_micros":{"type":["null","integer"]},"campaign.maximize_conversion_value.target_roas":{"type":["null","number"]},"campaign.network_settings.target_google_search":{"type":["null","boolean"]},"campaign.targeting_setting.target_restrictions":{"type":["null","array"],"items":{"type":"string"}},"campaign.dynamic_search_ads_setting.domain_name":{"type":["null","string"]},"campaign.network_settings.target_search_network":{"type":["null","boolean"]},"campaign.network_settings.target_content_network":{"type":["null","boolean"]},"campaign.dynamic_search_ads_setting.language_code":{"type":["null","string"]},"campaign.selective_optimization.conversion_actions":{"type":["null","array"],"items":{"type":"string"}},"campaign.local_campaign_setting.location_source_type":{"type":["null","string"]},"campaign.vanity_pharma.vanity_pharma_display_url_mode":{"type":["null","string"]},"campaign.network_settings.target_partner_search_network":{"type":["null","boolean"]},"campaign.target_impression_share.cpc_bid_ceiling_micros":{"type":["null","integer"]},"campaign.app_campaign_setting.bidding_strategy_goal_type":{"type":["null","string"]},"campaign.geo_target_type_setting.negative_geo_target_type":{"type":["null","string"]},"campaign.geo_target_type_setting.positive_geo_target_type":{"type":["null","string"]},"campaign.target_impression_share.location_fraction_micros":{"type":["null","integer"]},"campaign.dynamic_search_ads_setting.use_supplied_urls_only":{"type":["null","boolean"]},"campaign.optimization_goal_setting.optimization_goal_types":{"type":["null","array"],"items":{"type":"string"}}}},supportedSyncModes=[full_refresh],sourceDefinedCursor=,defaultCursorField=[],sourceDefinedPrimaryKey=[[campaign.id]],namespace=,additionalProperties={}],syncMode=full_refresh,cursorField=[],destinationSyncMode=overwrite,primaryKey=[[campaign.id]],additionalProperties={}], io.airbyte.protocol.models.ConfiguredAirbyteStream@1baec9b8[stream=io.airbyte.protocol.models.AirbyteStream@63c0923[name=google_ads_shopping_performance_report,jsonSchema={"type":"object","$schema":"http://json-schema.org/draft-07/schema#","properties":{"ad_group.id":{"type":["null","integer"]},"campaign.id":{"type":["null","integer"]},"customer.id":{"type":["null","integer"]},"metrics.ctr":{"type":["null","number"]},"ad_group.name":{"type":["null","string"]},"campaign.name":{"type":["null","string"]},"segments.date":{"type":["null","string"],"format":"datetime"},"segments.week":{"type":["null","string"]},"segments.year":{"type":["null","integer"]},"metrics.clicks":{"type":["null","integer"]},"segments.month":{"type":["null","string"]},"ad_group.status":{"type":["null","string"]},"campaign.status":{"type":["null","string"]},"segments.device":{"type":["null","string"]},"segments.quarter":{"type":["null","string"]},"metrics.average_cpc":{"type":["null","number"]},"metrics.conversions":{"type":["null","number"]},"metrics.cost_micros":{"type":["null","integer"]},"metrics.impressions":{"type":["null","integer"]},"segments.click_type":{"type":["null","string"]},"segments.day_of_week":{"type":["null","string"]},"segments.product_brand":{"type":["null","string"]},"segments.product_title":{"type":["null","string"]},"metrics.all_conversions":{"type":["null","number"]},"segments.ad_network_type":{"type":["null","string"]},"segments.product_channel":{"type":["null","string"]},"segments.product_country":{"type":["null","string"]},"segments.product_item_id":{"type":["null","string"]},"segments.product_type_l1":{"type":["null","string"]},"segments.product_type_l2":{"type":["null","string"]},"segments.product_type_l3":{"type":["null","string"]},"segments.product_type_l4":{"type":["null","string"]},"segments.product_type_l5":{"type":["null","string"]},"customer.descriptive_name":{"type":["null","string"]},"metrics.conversions_value":{"type":["null","number"]},"segments.product_language":{"type":["null","string"]},"segments.product_store_id":{"type":["null","string"]},"segments.product_condition":{"type":["null","string"]},"metrics.cost_per_conversion":{"type":["null","number"]},"metrics.value_per_conversion":{"type":["null","number"]},"segments.product_merchant_id":{"type":["null","integer"]},"metrics.all_conversions_value":{"type":["null","number"]},"segments.product_aggregator_id":{"type":["null","integer"]},"metrics.cost_per_all_conversions":{"type":["null","number"]},"metrics.cross_device_conversions":{"type":["null","number"]},"metrics.value_per_all_conversions":{"type":["null","number"]},"segments.product_custom_attribute0":{"type":["null","string"]},"segments.product_custom_attribute1":{"type":["null","string"]},"segments.product_custom_attribute2":{"type":["null","string"]},"segments.product_custom_attribute3":{"type":["null","string"]},"segments.product_custom_attribute4":{"type":["null","string"]},"segments.product_channel_exclusivity":{"type":["null","string"]},"segments.product_bidding_category_level1":{"type":["null","string"]},"segments.product_bidding_category_level2":{"type":["null","string"]},"segments.product_bidding_category_level3":{"type":["null","string"]},"segments.product_bidding_category_level4":{"type":["null","string"]},"segments.product_bidding_category_level5":{"type":["null","string"]},"metrics.conversions_from_interactions_rate":{"type":["null","number"]},"metrics.all_conversions_from_interactions_rate":{"type":["null","number"]}}},supportedSyncModes=[full_refresh, incremental],sourceDefinedCursor=true,defaultCursorField=[segments.date],sourceDefinedPrimaryKey=[],namespace=,additionalProperties={}],syncMode=incremental,cursorField=[segments.date],destinationSyncMode=append_dedup,primaryKey=[[segments, date], [campaign, id], [ad_group, id], [ad_group, name], [ad_group, status], [campaign, status], [customer, id]],additionalProperties={}]],additionalProperties={}]] 2021-07-29 21:35:49 INFO () TemporalAttemptExecution(get):110 - Executing worker wrapper. Airbyte version: 0.29.0-alpha 2021-07-29 21:35:49 INFO () DefaultNormalizationWorker(run):61 - Running normalization. 2021-07-29 21:35:49 INFO () LineGobbler(voidCall):85 - Checking if airbyte/normalization:0.1.38 exists... 2021-07-29 21:35:49 INFO () LineGobbler(voidCall):85 - airbyte/normalization:0.1.38 was found locally. 2021-07-29 21:35:49 INFO () DockerProcessFactory(create):146 - Preparing command: docker run --rm --init -i -v airbyte_workspace:/data -v /tmp/airbyte_local:/local -w /data/149/1/normalize --network host --log-driver none airbyte/normalization:0.1.38 run --integration-type postgres --config destination_config.json --catalog destination_catalog.json 2021-07-29 21:35:49 INFO () LineGobbler(voidCall):85 - Running: transform-config --config destination_config.json --integration-type postgres --out /data/149/1/normalize 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Namespace(config='destination_config.json', integration_type=, out='/data/149/1/normalize') 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - transform_postgres 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Running: transform-catalog --integration-type postgres --profile-config-dir /data/149/1/normalize --catalog destination_catalog.json --out /data/149/1/normalize/models/generated/ --json-column _airbyte_data 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Processing destination_catalog.json... 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating metrics.content_budget_lost_impression_share (#44) to metrics.content_budg__lost_impression_share (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating metrics.content_budget_lost_impression_share (#44) to metrics.content_budg__lost_impression_share (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating metrics.all_conversions_from_interactions_rate (#46) to metrics.all_conversi__rom_interactions_rate (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating metrics.all_conversions_from_interactions_rate (#46) to metrics.all_conversi__rom_interactions_rate (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating google_ads_account_performance_report_metrics_interaction_event_types (#69) to google_ads_account_p__teraction_event_types (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating customer.remarketing_setting.google_global_site_tag (#51) to customer.remarketing__oogle_global_site_tag (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating customer.remarketing_setting.google_global_site_tag (#51) to customer.remarketing__oogle_global_site_tag (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating customer.call_reporting_setting.call_conversion_action (#54) to customer.call_report__all_conversion_action (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating customer.call_reporting_setting.call_conversion_action (#54) to customer.call_report__all_conversion_action (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating customer.call_reporting_setting.call_reporting_enabled (#54) to customer.call_report__all_reporting_enabled (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating customer.call_reporting_setting.call_reporting_enabled (#54) to customer.call_report__all_reporting_enabled (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating customer.pay_per_conversion_eligibility_failure_reasons (#55) to customer.pay_per_con__ility_failure_reasons (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating customer.pay_per_conversion_eligibility_failure_reasons (#55) to customer.pay_per_con__ility_failure_reasons (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating customer.conversion_tracking_setting.conversion_tracking_id (#59) to customer.conversion___onversion_tracking_id (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating customer.conversion_tracking_setting.conversion_tracking_id (#59) to customer.conversion___onversion_tracking_id (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating customer.call_reporting_setting.call_conversion_reporting_enabled (#65) to customer.call_report__ion_reporting_enabled (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating customer.call_reporting_setting.call_conversion_reporting_enabled (#65) to customer.call_report__ion_reporting_enabled (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating customer.conversion_tracking_setting.cross_account_conversion_tracking_id (#73) to customer.conversion___onversion_tracking_id (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating customer.conversion_tracking_setting.cross_account_conversion_tracking_id (#73) to customer.conversion___onversion_tracking_id (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating customer.conversion_tracking_setting.cross_account_conversion_tracking_id_1 (#75) to customer.conversion___version_tracking_id_1 (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating customer.conversion_tracking_setting.cross_account_conversion_tracking_id_1 (#75) to customer.conversion___version_tracking_id_1 (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating google_ads_accounts_customer_pay_per_conversion_eligibility_failure_reasons (#75) to google_ads_accounts___ility_failure_reasons (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.expanded_text_ad.description2 (#44) to ad_group_ad.ad.expan___text_ad.description2 (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.expanded_text_ad.description2 (#44) to ad_group_ad.ad.expan___text_ad.description2 (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.gmail_ad.teaser.business_name (#44) to ad_group_ad.ad.gmail__.teaser.business_name (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.gmail_ad.teaser.business_name (#44) to ad_group_ad.ad.gmail__.teaser.business_name (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating metrics.current_model_attributed_conversions (#44) to metrics.current_mode__ttributed_conversions (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating metrics.current_model_attributed_conversions (#44) to metrics.current_mode__ttributed_conversions (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_search_ad.headlines (#45) to ad_group_ad.ad.respo__e_search_ad.headlines (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_search_ad.headlines (#45) to ad_group_ad.ad.respo__e_search_ad.headlines (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.system_managed_resource_source (#45) to ad_group_ad.ad.syste__naged_resource_source (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.system_managed_resource_source (#45) to ad_group_ad.ad.syste__naged_resource_source (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.expanded_text_ad.headline_part1 (#46) to ad_group_ad.ad.expan__ext_ad.headline_part1 (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.expanded_text_ad.headline_part1 (#46) to ad_group_ad.ad.expan__ext_ad.headline_part1 (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.expanded_text_ad.headline_part2 (#46) to ad_group_ad.ad.expan__ext_ad.headline_part2 (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.expanded_text_ad.headline_part2 (#46) to ad_group_ad.ad.expan__ext_ad.headline_part2 (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.expanded_text_ad.headline_part3 (#46) to ad_group_ad.ad.expan__ext_ad.headline_part3 (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.expanded_text_ad.headline_part3 (#46) to ad_group_ad.ad.expan__ext_ad.headline_part3 (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_display_ad.headlines (#46) to ad_group_ad.ad.respo___display_ad.headlines (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_display_ad.headlines (#46) to ad_group_ad.ad.respo___display_ad.headlines (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating metrics.all_conversions_from_interactions_rate (#46) to metrics.all_conversi__rom_interactions_rate (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating metrics.all_conversions_from_interactions_rate (#46) to metrics.all_conversi__rom_interactions_rate (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_display_ad.main_color (#47) to ad_group_ad.ad.respo__display_ad.main_color (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_display_ad.main_color (#47) to ad_group_ad.ad.respo__display_ad.main_color (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_display_ad.promo_text (#47) to ad_group_ad.ad.respo__display_ad.promo_text (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_display_ad.promo_text (#47) to ad_group_ad.ad.respo__display_ad.promo_text (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.gmail_ad.marketing_image_headline (#48) to ad_group_ad.ad.gmail__keting_image_headline (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.gmail_ad.marketing_image_headline (#48) to ad_group_ad.ad.gmail__keting_image_headline (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_display_ad.logo_images (#48) to ad_group_ad.ad.respo__isplay_ad.logo_images (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_display_ad.logo_images (#48) to ad_group_ad.ad.respo__isplay_ad.logo_images (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_search_ad.descriptions (#48) to ad_group_ad.ad.respo__earch_ad.descriptions (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_search_ad.descriptions (#48) to ad_group_ad.ad.respo__earch_ad.descriptions (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_display_ad.accent_color (#49) to ad_group_ad.ad.respo__splay_ad.accent_color (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_display_ad.accent_color (#49) to ad_group_ad.ad.respo__splay_ad.accent_color (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_display_ad.descriptions (#49) to ad_group_ad.ad.respo__splay_ad.descriptions (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_display_ad.descriptions (#49) to ad_group_ad.ad.respo__splay_ad.descriptions (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_display_ad.price_prefix (#49) to ad_group_ad.ad.respo__splay_ad.price_prefix (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_display_ad.price_prefix (#49) to ad_group_ad.ad.respo__splay_ad.price_prefix (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_display_ad.business_name (#50) to ad_group_ad.ad.respo__play_ad.business_name (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_display_ad.business_name (#50) to ad_group_ad.ad.respo__play_ad.business_name (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_display_ad.long_headline (#50) to ad_group_ad.ad.respo__play_ad.long_headline (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_display_ad.long_headline (#50) to ad_group_ad.ad.respo__play_ad.long_headline (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating metrics.current_model_attributed_conversions_value (#50) to metrics.current_mode__ted_conversions_value (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating metrics.current_model_attributed_conversions_value (#50) to metrics.current_mode__ted_conversions_value (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.gmail_ad.marketing_image_description (#51) to ad_group_ad.ad.gmail__ing_image_description (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.gmail_ad.marketing_image_description (#51) to ad_group_ad.ad.gmail__ing_image_description (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_display_ad.format_setting (#51) to ad_group_ad.ad.respo__lay_ad.format_setting (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_display_ad.format_setting (#51) to ad_group_ad.ad.respo__lay_ad.format_setting (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_display_ad.youtube_videos (#51) to ad_group_ad.ad.respo__lay_ad.youtube_videos (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_display_ad.youtube_videos (#51) to ad_group_ad.ad.respo__lay_ad.youtube_videos (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating metrics.cost_per_current_model_attributed_conversion (#52) to metrics.cost_per_cur__attributed_conversion (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating metrics.cost_per_current_model_attributed_conversion (#52) to metrics.cost_per_cur__attributed_conversion (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.expanded_dynamic_search_ad.description (#53) to ad_group_ad.ad.expan__search_ad.description (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.expanded_dynamic_search_ad.description (#53) to ad_group_ad.ad.expan__search_ad.description (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_display_ad.marketing_images (#53) to ad_group_ad.ad.respo__y_ad.marketing_images (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_display_ad.marketing_images (#53) to ad_group_ad.ad.respo__y_ad.marketing_images (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating metrics.value_per_current_model_attributed_conversion (#53) to metrics.value_per_cu__attributed_conversion (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating metrics.value_per_current_model_attributed_conversion (#53) to metrics.value_per_cu__attributed_conversion (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.legacy_responsive_display_ad.logo_image (#54) to ad_group_ad.ad.legac__display_ad.logo_image (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.legacy_responsive_display_ad.logo_image (#54) to ad_group_ad.ad.legac__display_ad.logo_image (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.legacy_responsive_display_ad.main_color (#54) to ad_group_ad.ad.legac__display_ad.main_color (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.legacy_responsive_display_ad.main_color (#54) to ad_group_ad.ad.legac__display_ad.main_color (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.legacy_responsive_display_ad.promo_text (#54) to ad_group_ad.ad.legac__display_ad.promo_text (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.legacy_responsive_display_ad.promo_text (#54) to ad_group_ad.ad.legac__display_ad.promo_text (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_display_ad.square_logo_images (#55) to ad_group_ad.ad.respo__ad.square_logo_images (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_display_ad.square_logo_images (#55) to ad_group_ad.ad.respo__ad.square_logo_images (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.legacy_responsive_display_ad.accent_color (#56) to ad_group_ad.ad.legac__splay_ad.accent_color (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.legacy_responsive_display_ad.accent_color (#56) to ad_group_ad.ad.legac__splay_ad.accent_color (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.legacy_responsive_display_ad.price_prefix (#56) to ad_group_ad.ad.legac__splay_ad.price_prefix (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.legacy_responsive_display_ad.price_prefix (#56) to ad_group_ad.ad.legac__splay_ad.price_prefix (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_display_ad.call_to_action_text (#56) to ad_group_ad.ad.respo__d.call_to_action_text (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_display_ad.call_to_action_text (#56) to ad_group_ad.ad.respo__d.call_to_action_text (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.legacy_responsive_display_ad.business_name (#57) to ad_group_ad.ad.legac__play_ad.business_name (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.legacy_responsive_display_ad.business_name (#57) to ad_group_ad.ad.legac__play_ad.business_name (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.legacy_responsive_display_ad.long_headline (#57) to ad_group_ad.ad.legac__play_ad.long_headline (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.legacy_responsive_display_ad.long_headline (#57) to ad_group_ad.ad.legac__play_ad.long_headline (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_display_ad.allow_flexible_color (#57) to ad_group_ad.ad.respo__.allow_flexible_color (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_display_ad.allow_flexible_color (#57) to ad_group_ad.ad.respo__.allow_flexible_color (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.legacy_responsive_display_ad.format_setting (#58) to ad_group_ad.ad.legac__lay_ad.format_setting (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.legacy_responsive_display_ad.format_setting (#58) to ad_group_ad.ad.legac__lay_ad.format_setting (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.legacy_responsive_display_ad.short_headline (#58) to ad_group_ad.ad.legac__lay_ad.short_headline (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.legacy_responsive_display_ad.short_headline (#58) to ad_group_ad.ad.legac__lay_ad.short_headline (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.legacy_responsive_display_ad.marketing_image (#59) to ad_group_ad.ad.legac__ay_ad.marketing_image (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.legacy_responsive_display_ad.marketing_image (#59) to ad_group_ad.ad.legac__ay_ad.marketing_image (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_display_ad.square_marketing_images (#60) to ad_group_ad.ad.respo__uare_marketing_images (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_display_ad.square_marketing_images (#60) to ad_group_ad.ad.respo__uare_marketing_images (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.legacy_responsive_display_ad.square_logo_image (#61) to ad_group_ad.ad.legac___ad.square_logo_image (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.legacy_responsive_display_ad.square_logo_image (#61) to ad_group_ad.ad.legac___ad.square_logo_image (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.legacy_responsive_display_ad.call_to_action_text (#63) to ad_group_ad.ad.legac__d.call_to_action_text (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.legacy_responsive_display_ad.call_to_action_text (#63) to ad_group_ad.ad.legac__d.call_to_action_text (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.legacy_responsive_display_ad.allow_flexible_color (#64) to ad_group_ad.ad.legac__.allow_flexible_color (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.legacy_responsive_display_ad.allow_flexible_color (#64) to ad_group_ad.ad.legac__.allow_flexible_color (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.legacy_responsive_display_ad.square_marketing_image (#66) to ad_group_ad.ad.legac__quare_marketing_image (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.legacy_responsive_display_ad.square_marketing_image (#66) to ad_group_ad.ad.legac__quare_marketing_image (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.gmail_ad.marketing_image_display_call_to_action.text (#67) to ad_group_ad.ad.gmail__y_call_to_action.text (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.gmail_ad.marketing_image_display_call_to_action.text (#67) to ad_group_ad.ad.gmail__y_call_to_action.text (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.gmail_ad.marketing_image_display_call_to_action.text_color (#73) to ad_group_ad.ad.gmail___to_action.text_color (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.gmail_ad.marketing_image_display_call_to_action.text_color (#73) to ad_group_ad.ad.gmail___to_action.text_color (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.expanded_text_ad.description2 (#44) to ad_group_ad.ad.expan___text_ad.description2 (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.expanded_text_ad.description2 (#44) to ad_group_ad.ad.expan___text_ad.description2 (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.gmail_ad.teaser.business_name (#44) to ad_group_ad.ad.gmail__.teaser.business_name (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.gmail_ad.teaser.business_name (#44) to ad_group_ad.ad.gmail__.teaser.business_name (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.image_ad.preview_pixel_height (#44) to ad_group_ad.ad.image__.preview_pixel_height (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.image_ad.preview_pixel_height (#44) to ad_group_ad.ad.image__.preview_pixel_height (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.video_responsive_ad.headlines (#44) to ad_group_ad.ad.video__sponsive_ad.headlines (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.video_responsive_ad.headlines (#44) to ad_group_ad.ad.video__sponsive_ad.headlines (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.app_engagement_ad.descriptions (#45) to ad_group_ad.ad.app_e__ement_ad.descriptions (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.app_engagement_ad.descriptions (#45) to ad_group_ad.ad.app_e__ement_ad.descriptions (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.display_upload_ad.media_bundle (#45) to ad_group_ad.ad.displ__pload_ad.media_bundle (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.display_upload_ad.media_bundle (#45) to ad_group_ad.ad.displ__pload_ad.media_bundle (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_search_ad.headlines (#45) to ad_group_ad.ad.respo__e_search_ad.headlines (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_search_ad.headlines (#45) to ad_group_ad.ad.respo__e_search_ad.headlines (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.smart_campaign_ad.descriptions (#45) to ad_group_ad.ad.smart__paign_ad.descriptions (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.smart_campaign_ad.descriptions (#45) to ad_group_ad.ad.smart__paign_ad.descriptions (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.system_managed_resource_source (#45) to ad_group_ad.ad.syste__naged_resource_source (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.system_managed_resource_source (#45) to ad_group_ad.ad.syste__naged_resource_source (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.call_ad.disable_call_conversion (#46) to ad_group_ad.ad.call___sable_call_conversion (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.call_ad.disable_call_conversion (#46) to ad_group_ad.ad.call___sable_call_conversion (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.expanded_text_ad.headline_part1 (#46) to ad_group_ad.ad.expan__ext_ad.headline_part1 (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.expanded_text_ad.headline_part1 (#46) to ad_group_ad.ad.expan__ext_ad.headline_part1 (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.expanded_text_ad.headline_part2 (#46) to ad_group_ad.ad.expan__ext_ad.headline_part2 (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.expanded_text_ad.headline_part2 (#46) to ad_group_ad.ad.expan__ext_ad.headline_part2 (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.expanded_text_ad.headline_part3 (#46) to ad_group_ad.ad.expan__ext_ad.headline_part3 (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.expanded_text_ad.headline_part3 (#46) to ad_group_ad.ad.expan__ext_ad.headline_part3 (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_display_ad.headlines (#46) to ad_group_ad.ad.respo___display_ad.headlines (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_display_ad.headlines (#46) to ad_group_ad.ad.respo___display_ad.headlines (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.video_ad.discovery.description1 (#46) to ad_group_ad.ad.video__iscovery.description1 (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.video_ad.discovery.description1 (#46) to ad_group_ad.ad.video__iscovery.description1 (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.video_ad.discovery.description2 (#46) to ad_group_ad.ad.video__iscovery.description2 (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.video_ad.discovery.description2 (#46) to ad_group_ad.ad.video__iscovery.description2 (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.video_ad.out_stream.description (#46) to ad_group_ad.ad.video__ut_stream.description (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.video_ad.out_stream.description (#46) to ad_group_ad.ad.video__ut_stream.description (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_display_ad.main_color (#47) to ad_group_ad.ad.respo__display_ad.main_color (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_display_ad.main_color (#47) to ad_group_ad.ad.respo__display_ad.main_color (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_display_ad.promo_text (#47) to ad_group_ad.ad.respo__display_ad.promo_text (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_display_ad.promo_text (#47) to ad_group_ad.ad.respo__display_ad.promo_text (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.video_ad.bumper.companion_banner (#47) to ad_group_ad.ad.video__mper.companion_banner (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.video_ad.bumper.companion_banner (#47) to ad_group_ad.ad.video__mper.companion_banner (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.video_responsive_ad.descriptions (#47) to ad_group_ad.ad.video__nsive_ad.descriptions (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.video_responsive_ad.descriptions (#47) to ad_group_ad.ad.video__nsive_ad.descriptions (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.policy_summary.policy_topic_entries (#47) to ad_group_ad.policy_s__.policy_topic_entries (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.policy_summary.policy_topic_entries (#47) to ad_group_ad.policy_s__.policy_topic_entries (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.gmail_ad.marketing_image_headline (#48) to ad_group_ad.ad.gmail__keting_image_headline (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.gmail_ad.marketing_image_headline (#48) to ad_group_ad.ad.gmail__keting_image_headline (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_display_ad.logo_images (#48) to ad_group_ad.ad.respo__isplay_ad.logo_images (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_display_ad.logo_images (#48) to ad_group_ad.ad.respo__isplay_ad.logo_images (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_search_ad.descriptions (#48) to ad_group_ad.ad.respo__earch_ad.descriptions (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_search_ad.descriptions (#48) to ad_group_ad.ad.respo__earch_ad.descriptions (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.call_ad.conversion_reporting_state (#49) to ad_group_ad.ad.call___rsion_reporting_state (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.call_ad.conversion_reporting_state (#49) to ad_group_ad.ad.call___rsion_reporting_state (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_display_ad.accent_color (#49) to ad_group_ad.ad.respo__splay_ad.accent_color (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_display_ad.accent_color (#49) to ad_group_ad.ad.respo__splay_ad.accent_color (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_display_ad.descriptions (#49) to ad_group_ad.ad.respo__splay_ad.descriptions (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_display_ad.descriptions (#49) to ad_group_ad.ad.respo__splay_ad.descriptions (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_display_ad.price_prefix (#49) to ad_group_ad.ad.respo__splay_ad.price_prefix (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_display_ad.price_prefix (#49) to ad_group_ad.ad.respo__splay_ad.price_prefix (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.video_ad.in_stream.action_headline (#49) to ad_group_ad.ad.video__tream.action_headline (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.video_ad.in_stream.action_headline (#49) to ad_group_ad.ad.video__tream.action_headline (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.video_responsive_ad.long_headlines (#49) to ad_group_ad.ad.video__ive_ad.long_headlines (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.video_responsive_ad.long_headlines (#49) to ad_group_ad.ad.video__ive_ad.long_headlines (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_display_ad.business_name (#50) to ad_group_ad.ad.respo__play_ad.business_name (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_display_ad.business_name (#50) to ad_group_ad.ad.respo__play_ad.business_name (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_display_ad.long_headline (#50) to ad_group_ad.ad.respo__play_ad.long_headline (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_display_ad.long_headline (#50) to ad_group_ad.ad.respo__play_ad.long_headline (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.video_ad.in_stream.companion_banner (#50) to ad_group_ad.ad.video__ream.companion_banner (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.video_ad.in_stream.companion_banner (#50) to ad_group_ad.ad.video__ream.companion_banner (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.video_responsive_ad.call_to_actions (#50) to ad_group_ad.ad.video__ve_ad.call_to_actions (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.video_responsive_ad.call_to_actions (#50) to ad_group_ad.ad.video__ve_ad.call_to_actions (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.gmail_ad.marketing_image_description (#51) to ad_group_ad.ad.gmail__ing_image_description (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.gmail_ad.marketing_image_description (#51) to ad_group_ad.ad.gmail__ing_image_description (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_display_ad.format_setting (#51) to ad_group_ad.ad.respo__lay_ad.format_setting (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_display_ad.format_setting (#51) to ad_group_ad.ad.respo__lay_ad.format_setting (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_display_ad.youtube_videos (#51) to ad_group_ad.ad.respo__lay_ad.youtube_videos (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_display_ad.youtube_videos (#51) to ad_group_ad.ad.respo__lay_ad.youtube_videos (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.call_ad.phone_number_verification_url (#52) to ad_group_ad.ad.call___mber_verification_url (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.call_ad.phone_number_verification_url (#52) to ad_group_ad.ad.call___mber_verification_url (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.video_responsive_ad.companion_banners (#52) to ad_group_ad.ad.video___ad.companion_banners (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.video_responsive_ad.companion_banners (#52) to ad_group_ad.ad.video___ad.companion_banners (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.expanded_dynamic_search_ad.description (#53) to ad_group_ad.ad.expan__search_ad.description (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.expanded_dynamic_search_ad.description (#53) to ad_group_ad.ad.expan__search_ad.description (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_display_ad.marketing_images (#53) to ad_group_ad.ad.respo__y_ad.marketing_images (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_display_ad.marketing_images (#53) to ad_group_ad.ad.respo__y_ad.marketing_images (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.video_ad.in_stream.action_button_label (#53) to ad_group_ad.ad.video__m.action_button_label (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.video_ad.in_stream.action_button_label (#53) to ad_group_ad.ad.video__m.action_button_label (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.expanded_dynamic_search_ad.description2 (#54) to ad_group_ad.ad.expan__earch_ad.description2 (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.expanded_dynamic_search_ad.description2 (#54) to ad_group_ad.ad.expan__earch_ad.description2 (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.legacy_responsive_display_ad.logo_image (#54) to ad_group_ad.ad.legac__display_ad.logo_image (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.legacy_responsive_display_ad.logo_image (#54) to ad_group_ad.ad.legac__display_ad.logo_image (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.legacy_responsive_display_ad.main_color (#54) to ad_group_ad.ad.legac__display_ad.main_color (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.legacy_responsive_display_ad.main_color (#54) to ad_group_ad.ad.legac__display_ad.main_color (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.legacy_responsive_display_ad.promo_text (#54) to ad_group_ad.ad.legac__display_ad.promo_text (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.legacy_responsive_display_ad.promo_text (#54) to ad_group_ad.ad.legac__display_ad.promo_text (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.shopping_comparison_listing_ad.headline (#54) to ad_group_ad.ad.shopp__n_listing_ad.headline (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.shopping_comparison_listing_ad.headline (#54) to ad_group_ad.ad.shopp__n_listing_ad.headline (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.video_ad.non_skippable.companion_banner (#54) to ad_group_ad.ad.video__able.companion_banner (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.video_ad.non_skippable.companion_banner (#54) to ad_group_ad.ad.video__able.companion_banner (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.legacy_responsive_display_ad.description (#55) to ad_group_ad.ad.legac__isplay_ad.description (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.legacy_responsive_display_ad.description (#55) to ad_group_ad.ad.legac__isplay_ad.description (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_display_ad.square_logo_images (#55) to ad_group_ad.ad.respo__ad.square_logo_images (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_display_ad.square_logo_images (#55) to ad_group_ad.ad.respo__ad.square_logo_images (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.legacy_responsive_display_ad.accent_color (#56) to ad_group_ad.ad.legac__splay_ad.accent_color (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.legacy_responsive_display_ad.accent_color (#56) to ad_group_ad.ad.legac__splay_ad.accent_color (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.legacy_responsive_display_ad.price_prefix (#56) to ad_group_ad.ad.legac__splay_ad.price_prefix (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.legacy_responsive_display_ad.price_prefix (#56) to ad_group_ad.ad.legac__splay_ad.price_prefix (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_display_ad.call_to_action_text (#56) to ad_group_ad.ad.respo__d.call_to_action_text (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_display_ad.call_to_action_text (#56) to ad_group_ad.ad.respo__d.call_to_action_text (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.legacy_responsive_display_ad.business_name (#57) to ad_group_ad.ad.legac__play_ad.business_name (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.legacy_responsive_display_ad.business_name (#57) to ad_group_ad.ad.legac__play_ad.business_name (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.legacy_responsive_display_ad.long_headline (#57) to ad_group_ad.ad.legac__play_ad.long_headline (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.legacy_responsive_display_ad.long_headline (#57) to ad_group_ad.ad.legac__play_ad.long_headline (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_display_ad.allow_flexible_color (#57) to ad_group_ad.ad.respo__.allow_flexible_color (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_display_ad.allow_flexible_color (#57) to ad_group_ad.ad.respo__.allow_flexible_color (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.legacy_responsive_display_ad.format_setting (#58) to ad_group_ad.ad.legac__lay_ad.format_setting (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.legacy_responsive_display_ad.format_setting (#58) to ad_group_ad.ad.legac__lay_ad.format_setting (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.legacy_responsive_display_ad.short_headline (#58) to ad_group_ad.ad.legac__lay_ad.short_headline (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.legacy_responsive_display_ad.short_headline (#58) to ad_group_ad.ad.legac__lay_ad.short_headline (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.legacy_responsive_display_ad.marketing_image (#59) to ad_group_ad.ad.legac__ay_ad.marketing_image (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.legacy_responsive_display_ad.marketing_image (#59) to ad_group_ad.ad.legac__ay_ad.marketing_image (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.display_upload_ad.display_upload_product_type (#60) to ad_group_ad.ad.displ__y_upload_product_type (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.display_upload_ad.display_upload_product_type (#60) to ad_group_ad.ad.displ__y_upload_product_type (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_display_ad.square_marketing_images (#60) to ad_group_ad.ad.respo__uare_marketing_images (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_display_ad.square_marketing_images (#60) to ad_group_ad.ad.respo__uare_marketing_images (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.legacy_responsive_display_ad.square_logo_image (#61) to ad_group_ad.ad.legac___ad.square_logo_image (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.legacy_responsive_display_ad.square_logo_image (#61) to ad_group_ad.ad.legac___ad.square_logo_image (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.legacy_responsive_display_ad.call_to_action_text (#63) to ad_group_ad.ad.legac__d.call_to_action_text (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.legacy_responsive_display_ad.call_to_action_text (#63) to ad_group_ad.ad.legac__d.call_to_action_text (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.legacy_responsive_display_ad.allow_flexible_color (#64) to ad_group_ad.ad.legac__.allow_flexible_color (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.legacy_responsive_display_ad.allow_flexible_color (#64) to ad_group_ad.ad.legac__.allow_flexible_color (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.legacy_responsive_display_ad.square_marketing_image (#66) to ad_group_ad.ad.legac__quare_marketing_image (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.legacy_responsive_display_ad.square_marketing_image (#66) to ad_group_ad.ad.legac__quare_marketing_image (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.gmail_ad.marketing_image_display_call_to_action.text (#67) to ad_group_ad.ad.gmail__y_call_to_action.text (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.gmail_ad.marketing_image_display_call_to_action.text (#67) to ad_group_ad.ad.gmail__y_call_to_action.text (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_display_ad.control_spec.enable_autogen_video (#70) to ad_group_ad.ad.respo__.enable_autogen_video (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_display_ad.control_spec.enable_autogen_video (#70) to ad_group_ad.ad.respo__.enable_autogen_video (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.gmail_ad.marketing_image_display_call_to_action.text_color (#73) to ad_group_ad.ad.gmail___to_action.text_color (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.gmail_ad.marketing_image_display_call_to_action.text_color (#73) to ad_group_ad.ad.gmail___to_action.text_color (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_display_ad.control_spec.enable_asset_enhancements (#75) to ad_group_ad.ad.respo__le_asset_enhancements (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.responsive_display_ad.control_spec.enable_asset_enhancements (#75) to ad_group_ad.ad.respo__le_asset_enhancements (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.gmail_ad.marketing_image_display_call_to_action.url_collection_id (#80) to ad_group_ad.ad.gmail__ion.url_collection_id (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group_ad.ad.gmail_ad.marketing_image_display_call_to_action.url_collection_id (#80) to ad_group_ad.ad.gmail__ion.url_collection_id (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating google_ads_ad_group_ads_ad_group_ad_ad_final_urls (#49) to google_ads_ad_group___roup_ad_ad_final_urls (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating google_ads_ad_group_ads_ad_group_ad_ad_app_ad_images (#52) to google_ads_ad_group___p_ad_ad_app_ad_images (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating google_ads_ad_group_ads_ad_group_ad_ad_final_app_urls (#53) to google_ads_ad_group____ad_ad_final_app_urls (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating google_ads_ad_group_ads_ad_group_ad_ad_local_ad_videos (#54) to google_ads_ad_group___ad_ad_local_ad_videos (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating google_ads_ad_group_ads_ad_group_ad_ad_url_collections (#54) to google_ads_ad_group___ad_ad_url_collections (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating google_ads_ad_group_ads_ad_group_ad_ad_app_ad_headlines (#55) to google_ads_ad_group___d_ad_app_ad_headlines (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating google_ads_ad_group_ads_ad_group_ad_ad_final_mobile_urls (#56) to google_ads_ad_group____ad_final_mobile_urls (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating google_ads_ad_group_ads_ad_group_ad_ad_local_ad_headlines (#57) to google_ads_ad_group___ad_local_ad_headlines (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating google_ads_ad_group_ads_ad_group_ad_ad_app_ad_descriptions (#58) to google_ads_ad_group___d_app_ad_descriptions (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating google_ads_ad_group_ads_ad_group_ad_ad_local_ad_logo_images (#59) to google_ads_ad_group____local_ad_logo_images (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating google_ads_ad_group_ads_ad_group_ad_ad_app_ad_youtube_videos (#60) to google_ads_ad_group___app_ad_youtube_videos (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating google_ads_ad_group_ads_ad_group_ad_ad_local_ad_descriptions (#60) to google_ads_ad_group___local_ad_descriptions (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating google_ads_ad_group_ads_ad_group_ad_ad_url_custom_parameters (#60) to google_ads_ad_group___url_custom_parameters (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating google_ads_ad_group_ads_ad_group_ad_ad_gmail_ad_product_images (#62) to google_ads_ad_group___ail_ad_product_images (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating google_ads_ad_group_ads_ad_group_ad_ad_gmail_ad_product_videos (#62) to google_ads_ad_group___ail_ad_product_videos (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating google_ads_ad_group_ads_ad_group_ad_ad_app_engagement_ad_images (#63) to google_ads_ad_group____engagement_ad_images (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating google_ads_ad_group_ads_ad_group_ad_ad_app_engagement_ad_videos (#63) to google_ads_ad_group____engagement_ad_videos (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating google_ads_ad_group_ads_ad_group_ad_ad_local_ad_call_to_actions (#63) to google_ads_ad_group___al_ad_call_to_actions (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating google_ads_ad_group_ads_ad_group_ad_ad_local_ad_marketing_images (#64) to google_ads_ad_group___l_ad_marketing_images (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating google_ads_ad_group_ads_ad_group_ad_ad_app_ad_html5_media_bundles (#65) to google_ads_ad_group___d_html5_media_bundles (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating google_ads_ad_group_ads_ad_group_ad_ad_video_responsive_ad_videos (#65) to google_ads_ad_group____responsive_ad_videos (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating google_ads_ad_group_ads_ad_group_ad_ad_app_engagement_ad_headlines (#66) to google_ads_ad_group___gagement_ad_headlines (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating google_ads_ad_group_ads_ad_group_ad_ad_smart_campaign_ad_headlines (#66) to google_ads_ad_group___campaign_ad_headlines (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating google_ads_ad_group_ads_ad_group_ad_ad_video_responsive_ad_headlines (#68) to google_ads_ad_group___sponsive_ad_headlines (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating google_ads_ad_group_ads_ad_group_ad_ad_app_engagement_ad_descriptions (#69) to google_ads_ad_group___ement_ad_descriptions (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating google_ads_ad_group_ads_ad_group_ad_ad_responsive_search_ad_headlines (#69) to google_ads_ad_group___e_search_ad_headlines (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating google_ads_ad_group_ads_ad_group_ad_ad_smart_campaign_ad_descriptions (#69) to google_ads_ad_group___paign_ad_descriptions (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating google_ads_ad_group_ads_ad_group_ad_ad_responsive_display_ad_headlines (#70) to google_ads_ad_group____display_ad_headlines (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating google_ads_ad_group_ads_ad_group_ad_ad_video_responsive_ad_descriptions (#71) to google_ads_ad_group___nsive_ad_descriptions (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating google_ads_ad_group_ads_ad_group_ad_policy_summary_policy_topic_entries (#71) to google_ads_ad_group____policy_topic_entries (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating google_ads_ad_group_ads_ad_group_ad_ad_responsive_display_ad_logo_images (#72) to google_ads_ad_group___isplay_ad_logo_images (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating google_ads_ad_group_ads_ad_group_ad_ad_responsive_search_ad_descriptions (#72) to google_ads_ad_group___earch_ad_descriptions (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating google_ads_ad_group_ads_ad_group_ad_ad_responsive_display_ad_descriptions (#73) to google_ads_ad_group___splay_ad_descriptions (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating google_ads_ad_group_ads_ad_group_ad_ad_video_responsive_ad_long_headlines (#73) to google_ads_ad_group___ive_ad_long_headlines (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating google_ads_ad_group_ads_ad_group_ad_ad_video_responsive_ad_call_to_actions (#74) to google_ads_ad_group___ve_ad_call_to_actions (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating google_ads_ad_group_ads_ad_group_ad_ad_responsive_display_ad_youtube_videos (#75) to google_ads_ad_group___lay_ad_youtube_videos (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating google_ads_ad_group_ads_ad_group_ad_ad_video_responsive_ad_companion_banners (#76) to google_ads_ad_group____ad_companion_banners (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating google_ads_ad_group_ads_ad_group_ad_ad_responsive_display_ad_marketing_images (#77) to google_ads_ad_group___y_ad_marketing_images (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating google_ads_ad_group_ads_ad_group_ad_ad_responsive_display_ad_square_logo_images (#79) to google_ads_ad_group___ad_square_logo_images (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating google_ads_ad_group_ads_ad_group_ad_ad_responsive_display_ad_square_marketing_images (#84) to google_ads_ad_group___uare_marketing_images (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group.targeting_setting.target_restrictions (#46) to ad_group.targeting_s__g.target_restrictions (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group.targeting_setting.target_restrictions (#46) to ad_group.targeting_s__g.target_restrictions (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group.explorer_auto_optimizer_setting.opt_in (#47) to ad_group.explorer_au__imizer_setting.opt_in (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating ad_group.explorer_auto_optimizer_setting.opt_in (#47) to ad_group.explorer_au__imizer_setting.opt_in (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating google_ads_ad_groups_ad_group_url_custom_parameters (#51) to google_ads_ad_groups__url_custom_parameters (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating google_ads_ad_groups_ad_group_excluded_parent_asset_field_types (#63) to google_ads_ad_groups__ent_asset_field_types (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating google_ads_ad_groups_ad_group_targeting_setting_target_restrictions (#67) to google_ads_ad_groups__g_target_restrictions (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating campaign.target_spend.cpc_bid_ceiling_micros (#44) to campaign.target_spen__pc_bid_ceiling_micros (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating campaign.target_spend.cpc_bid_ceiling_micros (#44) to campaign.target_spen__pc_bid_ceiling_micros (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating campaign.maximize_conversion_value.target_roas (#46) to campaign.maximize_co__ion_value.target_roas (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating campaign.maximize_conversion_value.target_roas (#46) to campaign.maximize_co__ion_value.target_roas (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating campaign.network_settings.target_google_search (#46) to campaign.network_set__.target_google_search (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating campaign.network_settings.target_google_search (#46) to campaign.network_set__.target_google_search (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating campaign.targeting_setting.target_restrictions (#46) to campaign.targeting_s__g.target_restrictions (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating campaign.targeting_setting.target_restrictions (#46) to campaign.targeting_s__g.target_restrictions (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating campaign.dynamic_search_ads_setting.domain_name (#47) to campaign.dynamic_sea__s_setting.domain_name (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating campaign.dynamic_search_ads_setting.domain_name (#47) to campaign.dynamic_sea__s_setting.domain_name (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating campaign.network_settings.target_search_network (#47) to campaign.network_set__target_search_network (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating campaign.network_settings.target_search_network (#47) to campaign.network_set__target_search_network (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating campaign.network_settings.target_content_network (#48) to campaign.network_set__arget_content_network (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating campaign.network_settings.target_content_network (#48) to campaign.network_set__arget_content_network (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating campaign.dynamic_search_ads_setting.language_code (#49) to campaign.dynamic_sea__setting.language_code (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating campaign.dynamic_search_ads_setting.language_code (#49) to campaign.dynamic_sea__setting.language_code (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating campaign.selective_optimization.conversion_actions (#50) to campaign.selective_o__on.conversion_actions (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating campaign.selective_optimization.conversion_actions (#50) to campaign.selective_o__on.conversion_actions (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating campaign.local_campaign_setting.location_source_type (#52) to campaign.local_campa__.location_source_type (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating campaign.local_campaign_setting.location_source_type (#52) to campaign.local_campa__.location_source_type (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating campaign.vanity_pharma.vanity_pharma_display_url_mode (#53) to campaign.vanity_phar__arma_display_url_mode (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating campaign.vanity_pharma.vanity_pharma_display_url_mode (#53) to campaign.vanity_phar__arma_display_url_mode (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating campaign.network_settings.target_partner_search_network (#55) to campaign.network_set__artner_search_network (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating campaign.network_settings.target_partner_search_network (#55) to campaign.network_set__artner_search_network (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating campaign.target_impression_share.cpc_bid_ceiling_micros (#55) to campaign.target_impr__pc_bid_ceiling_micros (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating campaign.target_impression_share.cpc_bid_ceiling_micros (#55) to campaign.target_impr__pc_bid_ceiling_micros (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating campaign.app_campaign_setting.bidding_strategy_goal_type (#56) to campaign.app_campaig__ng_strategy_goal_type (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating campaign.app_campaign_setting.bidding_strategy_goal_type (#56) to campaign.app_campaig__ng_strategy_goal_type (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating campaign.geo_target_type_setting.negative_geo_target_type (#57) to campaign.geo_target___ative_geo_target_type (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating campaign.geo_target_type_setting.negative_geo_target_type (#57) to campaign.geo_target___ative_geo_target_type (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating campaign.geo_target_type_setting.positive_geo_target_type (#57) to campaign.geo_target___itive_geo_target_type (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating campaign.geo_target_type_setting.positive_geo_target_type (#57) to campaign.geo_target___itive_geo_target_type (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating campaign.target_impression_share.location_fraction_micros (#57) to campaign.target_impr__ation_fraction_micros (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating campaign.target_impression_share.location_fraction_micros (#57) to campaign.target_impr__ation_fraction_micros (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating campaign.dynamic_search_ads_setting.use_supplied_urls_only (#58) to campaign.dynamic_sea__se_supplied_urls_only (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating campaign.dynamic_search_ads_setting.use_supplied_urls_only (#58) to campaign.dynamic_sea__se_supplied_urls_only (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating campaign.optimization_goal_setting.optimization_goal_types (#58) to campaign.optimizatio__timization_goal_types (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating campaign.optimization_goal_setting.optimization_goal_types (#58) to campaign.optimizatio__timization_goal_types (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating google_ads_campaigns_campaign_frequency_caps (#44) to google_ads_campaigns__mpaign_frequency_caps (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating google_ads_campaigns_campaign_url_custom_parameters (#51) to google_ads_campaigns__url_custom_parameters (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating google_ads_campaigns_campaign_dynamic_search_ads_setting_feeds (#62) to google_ads_campaigns__rch_ads_setting_feeds (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating google_ads_campaigns_campaign_excluded_parent_asset_field_types (#63) to google_ads_campaigns__ent_asset_field_types (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating google_ads_campaigns_campaign_targeting_setting_target_restrictions (#67) to google_ads_campaigns__g_target_restrictions (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating google_ads_campaigns_campaign_selective_optimization_conversion_actions (#71) to google_ads_campaigns__on_conversion_actions (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating google_ads_campaigns_campaign_optimization_goal_setting_optimization_goal_types (#79) to google_ads_campaigns__timization_goal_types (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating metrics.all_conversions_from_interactions_rate (#46) to metrics.all_conversi__rom_interactions_rate (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating metrics.all_conversions_from_interactions_rate (#46) to metrics.all_conversi__rom_interactions_rate (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating metrics.content_budget_lost_impression_share (#44) to metrics.content_budg__lost_impression_share (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating metrics.content_budget_lost_impression_share (#44) to metrics.content_budg__lost_impression_share (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating metrics.all_conversions_from_interactions_rate (#46) to metrics.all_conversi__rom_interactions_rate (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating metrics.all_conversions_from_interactions_rate (#46) to metrics.all_conversi__rom_interactions_rate (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Generating airbyte_ctes/aswemove/google_ads_account_performance_report_ab1.sql from google_ads_account_performance_report 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Generating airbyte_ctes/aswemove/google_ads_account_performance_report_ab2.sql from google_ads_account_performance_report 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating _airbyte_google_ads_account_performance_report_hashid (#53) to _airbyte_google_ads___ormance_report_hashid (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Generating airbyte_ctes/aswemove/google_ads_account_performance_report_ab3.sql from google_ads_account_performance_report 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Truncating _airbyte_google_ads_account_performance_report_hashid (#53) to _airbyte_google_ads___ormance_report_hashid (#43) 2021-07-29 21:35:50 INFO () LineGobbler(voidCall):85 - Generating airbyte_ctes/aswemove/google_ads_account_performance_report_ab4.sql from google_ads_account_performance_report 2021-07-29 21:35:50 ERROR () LineGobbler(voidCall):85 - Traceback (most recent call last): 2021-07-29 21:35:50 ERROR () LineGobbler(voidCall):85 - File "/usr/local/bin/transform-catalog", line 8, in 2021-07-29 21:35:50 ERROR () LineGobbler(voidCall):85 - sys.exit(main()) 2021-07-29 21:35:50 ERROR () LineGobbler(voidCall):85 - File "/usr/local/lib/python3.8/site-packages/normalization/transform_catalog/transform.py", line 102, in main 2021-07-29 21:35:50 ERROR () LineGobbler(voidCall):85 - TransformCatalog().run(args) 2021-07-29 21:35:50 ERROR () LineGobbler(voidCall):85 - File "/usr/local/lib/python3.8/site-packages/normalization/transform_catalog/transform.py", line 55, in run 2021-07-29 21:35:50 ERROR () LineGobbler(voidCall):85 - self.process_catalog() 2021-07-29 21:35:50 ERROR () LineGobbler(voidCall):85 - File "/usr/local/lib/python3.8/site-packages/normalization/transform_catalog/transform.py", line 82, in process_catalog 2021-07-29 21:35:50 ERROR () LineGobbler(voidCall):85 - processor.process(catalog_file=catalog_file, json_column_name=json_col, default_schema=schema) 2021-07-29 21:35:50 ERROR () LineGobbler(voidCall):85 - File "/usr/local/lib/python3.8/site-packages/normalization/transform_catalog/catalog_processor.py", line 93, in process 2021-07-29 21:35:50 ERROR () LineGobbler(voidCall):85 - nested_processors = stream_processor.process() 2021-07-29 21:35:50 ERROR () LineGobbler(voidCall):85 - File "/usr/local/lib/python3.8/site-packages/normalization/transform_catalog/stream_processor.py", line 231, in process 2021-07-29 21:35:50 ERROR () LineGobbler(voidCall):85 - self.generate_scd_type_2_model(from_table, column_names) + where_clause, 2021-07-29 21:35:50 ERROR () LineGobbler(voidCall):85 - File "/usr/local/lib/python3.8/site-packages/normalization/transform_catalog/stream_processor.py", line 515, in generate_scd_type_2_model 2021-07-29 21:35:50 ERROR () LineGobbler(voidCall):85 - primary_key=self.get_primary_key(column_names), 2021-07-29 21:35:50 ERROR () LineGobbler(voidCall):85 - File "/usr/local/lib/python3.8/site-packages/normalization/transform_catalog/stream_processor.py", line 538, in get_primary_key 2021-07-29 21:35:50 ERROR () LineGobbler(voidCall):85 - return ", ".join([self.get_primary_key_from_path(column_names, path) for path in self.primary_key]) 2021-07-29 21:35:50 ERROR () LineGobbler(voidCall):85 - File "/usr/local/lib/python3.8/site-packages/normalization/transform_catalog/stream_processor.py", line 538, in 2021-07-29 21:35:50 ERROR () LineGobbler(voidCall):85 - return ", ".join([self.get_primary_key_from_path(column_names, path) for path in self.primary_key]) 2021-07-29 21:35:50 ERROR () LineGobbler(voidCall):85 - File "/usr/local/lib/python3.8/site-packages/normalization/transform_catalog/stream_processor.py", line 560, in get_primary_key_from_path 2021-07-29 21:35:50 ERROR () LineGobbler(voidCall):85 - raise ValueError(f"Unsupported nested path {'.'.join(path)} for stream {self.stream_name}") 2021-07-29 21:35:50 ERROR () LineGobbler(voidCall):85 - ValueError: Unsupported nested path segments.date for stream google_ads_account_performance_report 2021-07-29 21:35:50 INFO () TemporalAttemptExecution(lambda$getWorkerThread$2):149 - Completing future exceptionally... io.airbyte.workers.WorkerException: Normalization Failed. at io.airbyte.workers.DefaultNormalizationWorker.run(DefaultNormalizationWorker.java:69) ~[io.airbyte-airbyte-workers-0.29.0-alpha.jar:?] at io.airbyte.workers.DefaultNormalizationWorker.run(DefaultNormalizationWorker.java:36) ~[io.airbyte-airbyte-workers-0.29.0-alpha.jar:?] at io.airbyte.workers.temporal.TemporalAttemptExecution.lambda$getWorkerThread$2(TemporalAttemptExecution.java:146) ~[io.airbyte-airbyte-workers-0.29.0-alpha.jar:?] at java.lang.Thread.run(Thread.java:832) [?:?] Caused by: io.airbyte.workers.WorkerException: Normalization Failed. at io.airbyte.workers.DefaultNormalizationWorker.run(DefaultNormalizationWorker.java:66) ~[io.airbyte-airbyte-workers-0.29.0-alpha.jar:?] ... 3 more Suppressed: io.airbyte.workers.WorkerException: Normalization process wasn't successful at io.airbyte.workers.normalization.DefaultNormalizationRunner.close(DefaultNormalizationRunner.java:151) ~[io.airbyte-airbyte-workers-0.29.0-alpha.jar:?] at io.airbyte.workers.DefaultNormalizationWorker.run(DefaultNormalizationWorker.java:60) ~[io.airbyte-airbyte-workers-0.29.0-alpha.jar:?] at io.airbyte.workers.DefaultNormalizationWorker.run(DefaultNormalizationWorker.java:36) ~[io.airbyte-airbyte-workers-0.29.0-alpha.jar:?] at io.airbyte.workers.temporal.TemporalAttemptExecution.lambda$getWorkerThread$2(TemporalAttemptExecution.java:146) ~[io.airbyte-airbyte-workers-0.29.0-alpha.jar:?] at java.lang.Thread.run(Thread.java:832) [?:?] 2021-07-29 21:35:50 INFO () TemporalAttemptExecution(get):133 - Stopping cancellation check scheduling... 2021-07-29 21:35:50 WARN () POJOActivityTaskHandler$POJOActivityImplementation(execute):243 - Activity failure. ActivityId=ba851165-2654-3571-8ba2-bf012f5ed589, activityType=Normalize, attempt=1 java.util.concurrent.ExecutionException: io.airbyte.workers.WorkerException: Normalization Failed. at java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:395) ~[?:?] at java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2063) ~[?:?] at io.airbyte.workers.temporal.TemporalAttemptExecution.get(TemporalAttemptExecution.java:131) ~[io.airbyte-airbyte-workers-0.29.0-alpha.jar:?] at io.airbyte.workers.temporal.SyncWorkflow$NormalizationActivityImpl.normalize(SyncWorkflow.java:321) ~[io.airbyte-airbyte-workers-0.29.0-alpha.jar:?] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:?] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] at java.lang.reflect.Method.invoke(Method.java:564) ~[?:?] at io.temporal.internal.sync.POJOActivityTaskHandler$POJOActivityInboundCallsInterceptor.execute(POJOActivityTaskHandler.java:277) ~[temporal-sdk-1.0.4.jar:?] at io.temporal.internal.sync.POJOActivityTaskHandler$POJOActivityImplementation.execute(POJOActivityTaskHandler.java:216) ~[temporal-sdk-1.0.4.jar:?] at io.temporal.internal.sync.POJOActivityTaskHandler.handle(POJOActivityTaskHandler.java:181) ~[temporal-sdk-1.0.4.jar:?] at io.temporal.internal.worker.ActivityWorker$TaskHandlerImpl.handle(ActivityWorker.java:192) ~[temporal-sdk-1.0.4.jar:?] at io.temporal.internal.worker.ActivityWorker$TaskHandlerImpl.handle(ActivityWorker.java:154) ~[temporal-sdk-1.0.4.jar:?] at io.temporal.internal.worker.PollTaskExecutor.lambda$process$0(PollTaskExecutor.java:73) ~[temporal-sdk-1.0.4.jar:?] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130) [?:?] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:630) [?:?] at java.lang.Thread.run(Thread.java:832) [?:?] Caused by: io.airbyte.workers.WorkerException: Normalization Failed. at io.airbyte.workers.DefaultNormalizationWorker.run(DefaultNormalizationWorker.java:69) ~[io.airbyte-airbyte-workers-0.29.0-alpha.jar:?] at io.airbyte.workers.DefaultNormalizationWorker.run(DefaultNormalizationWorker.java:36) ~[io.airbyte-airbyte-workers-0.29.0-alpha.jar:?] at io.airbyte.workers.temporal.TemporalAttemptExecution.lambda$getWorkerThread$2(TemporalAttemptExecution.java:146) ~[io.airbyte-airbyte-workers-0.29.0-alpha.jar:?] ... 1 more Caused by: io.airbyte.workers.WorkerException: Normalization Failed. at io.airbyte.workers.DefaultNormalizationWorker.run(DefaultNormalizationWorker.java:66) ~[io.airbyte-airbyte-workers-0.29.0-alpha.jar:?] at io.airbyte.workers.DefaultNormalizationWorker.run(DefaultNormalizationWorker.java:36) ~[io.airbyte-airbyte-workers-0.29.0-alpha.jar:?] at io.airbyte.workers.temporal.TemporalAttemptExecution.lambda$getWorkerThread$2(TemporalAttemptExecution.java:146) ~[io.airbyte-airbyte-workers-0.29.0-alpha.jar:?] ... 1 more Suppressed: io.airbyte.workers.WorkerException: Normalization process wasn't successful at io.airbyte.workers.normalization.DefaultNormalizationRunner.close(DefaultNormalizationRunner.java:151) ~[io.airbyte-airbyte-workers-0.29.0-alpha.jar:?] at io.airbyte.workers.DefaultNormalizationWorker.run(DefaultNormalizationWorker.java:60) ~[io.airbyte-airbyte-workers-0.29.0-alpha.jar:?] at io.airbyte.workers.DefaultNormalizationWorker.run(DefaultNormalizationWorker.java:36) ~[io.airbyte-airbyte-workers-0.29.0-alpha.jar:?] at io.airbyte.workers.temporal.TemporalAttemptExecution.lambda$getWorkerThread$2(TemporalAttemptExecution.java:146) ~[io.airbyte-airbyte-workers-0.29.0-alpha.jar:?] at java.lang.Thread.run(Thread.java:832) [?:?] ```
## Steps to Reproduce 1. Create a Google Ads Source 2. Create a Postgres Destination 3. Create a connection between the two 4. Select "Incremental | Deduped + history" as the sync mode 5. Choose any of the columns as the primary key ## Are you willing to submit a PR?

Happy to help - would love to connect with someone more familiar with this source as my first contribution here

marcosmarxm commented 3 years ago

@manavkohli thanks for reporting this. Looks is something with the stream name from Google Ads, did you choose segments.date as the primary key?

manavkohli commented 3 years ago

@marcosmarxm Yup that's what I chose!

sherifnada commented 3 years ago

my first guess is that this name is incompatible with normalization somehow. @ChristopheDuong are . allowed in column names?

ChristopheDuong commented 3 years ago

Special characters could be allowed in column names but if it’s failing on: raise ValueError(f"Unsupported nested path {'.'.join(path)} for stream {self.stream_name}")

then it’s because the primary key was given as: [['segments', 'date']] instead of [['segments.date']] maybe?

Do you have the catalog.json?

sherifnada commented 3 years ago

hey guys, just a heads up that we're actively figuring out a solution to this issue. Will give an update soon.

Obolrus commented 3 years ago

Hello. Are any updates here?

I have the same issue with Google Ads → Google BigQuery and Facebook → Google BigQuery. Basic normalization doesn't work.

m-ronchi commented 3 years ago

I have the same problem. basic normalization (with append or overwrite) generates a single table with columns named e.g. customer.id (schema declares them flattened), therefore I would expect a consistent handling of them.

my logs if needed: logs-306-2.txt

https://airbytehq.slack.com/archives/C01MFR03D5W/p1629733295044200

marcosmarxm commented 3 years ago

I tried to created a sync using Google Ads Integration Credentials. The resulting catalog is, from source should be customer.id and becomes ["customer", "id"]:

            "cursor_field": [
                "segments.date"
            ],
            "destination_sync_mode": "append_dedup",
            "primary_key": [
                [
                    "customer",
                    "id"
                ]
            ]
        }

I looked in the CDK code and there is no function splitting the primary key. So I tried to check the request from the webapp and looks there is a function splitting the primary key and also the cursor field using var.split(".")

https://github.com/airbytehq/airbyte/blob/cfb4f422c1abeacba09d52478275c3fb5ba68569/airbyte-webapp/src/views/Connection/CatalogTree/FieldRow.tsx#L40-L48

This is not happening with the cursor field because is sourceDefined.

https://github.com/airbytehq/airbyte/blob/cfb4f422c1abeacba09d52478275c3fb5ba68569/airbyte-webapp/src/views/Connection/CatalogTree/StreamHeader.tsx#L91-L94

Screenshot from 2021-08-25 20-30-11

@Jamakase WDYT?

manavkohli commented 3 years ago

@sherifnada @marcosmarxm do you know if there's any update here possibly?

jamakase commented 3 years ago

@manavkohli this issue is in my todo list for this week. We hope to get it done within next few days.

manavkohli commented 3 years ago

@Jamakase amazing, thanks!

manavkohli commented 3 years ago

@cgardens do you have an idea of when this will go out? At this point this is blocking us from being able to use any bookmarking capabilities with the Google Ads source

jamakase commented 3 years ago

@manavkohli we already have a quick fix and it will be merged today.