- is this your first time deploying Airbyte: No
- OS Version / Instance: AWS EC2
- Memory / Disk: 8Gb/30 GB
- Deployment: Docker
- Airbyte Version: 0.38.4-alpha
- Airbyte Source name/version: MySQL(0.6.0)
- Airbyte Destination name/version: BigQuery(1.1.11)
- Source name/version: AWS Aurora MySQL Serverless v2 (Compatible with MySQL 8.0.23)
- Destination name/version: Bigquery
- Step: Setting new connection, source / Replication/ Data Sources
- Description: I created a MySQL source. I want to create a connection from Mysql to BigQuery. Although I set it to fetch the views, too, the Airbyte found schema lacks only one of our required views. I also tried the refresh button but it did not find them at all.
MySQL source configs:
BigQuery destination:
And this is the view that is not displayed in found schema:
Blockquote
create view t_travellers.v_sales_register_summary as
selectt.idAStid,
concat(t2.first_name, ’ ',t2.last_name) ASfull_name,
t2.
t2.office_idASoffice_id,
a.countryAScountry,
e.divisionASdivision,
e.destinationASdestination,
e.trip_codeAStrip_code,
sr.idASid,
sr.cidAScid,
sr.sold_byASsold_by,
sr.sold_by_idASsold_by_id,
sr.sold_atASsold_at,
date_format(from_unixtime(sr.sold_at), ‘%d %b, %Y’) ASsold_at_formatted,
sr.first_callASfirst_call,
if(sr.first_call, ‘Yes’, ‘No’) ASfirst_call_formatted,
sr.statusASstatus,
t.deposit_completeASdeposit_complete,
t.statusAStraveller_trip_status,
if(t.deposit_complete, ‘Yes’, ‘No’) ASdeposit_complete_formatted,
sr.processedASprocessed,
coalesce(t_travellers.srpc.promotions, 0) ASpromotions,
sr._caAS_ca,
coalesce(t_billing.sta.amount, 0) ASsales_transaction_amount,
t_billing.sta.currencyASsales_transaction_currency,
i.deposit_paid_atASdeposit_paid_at,
date_format(from_unixtime(i.deposit_paid_at), ‘%d %b, %Y’) ASdeposit_paid_at_formatted,
(selectt_trips.significant_dates.date
fromt_trips.significant_dates
where ((t_trips.significant_dates.tid=t.id) and
(t_trips.significant_dates.type= ‘tentative_departure’))
limit 1) AStentative_departure_date,
(select date_format(from_unixtime(t_trips.significant_dates.date), ‘%d %b, %Y’)
fromt_trips.significant_dates
where ((t_trips.significant_dates.tid=t.id) and
(t_trips.significant_dates.type= ‘tentative_departure’))
limit 1) AStentative_departure_date_formatted
from ((((((((t_trips.tripstjoint_travellers.sales_registersr
on ((t.sales_register_id=sr.id))) joint_travellers.travellerst2
on ((sr.cid=t2.id))) left joint_billing.v_sales_transaction_amountssta
on ((t.id=t_billing.sta.tid))) joint_billing.invoicesi
on (((t.id=i.tid) and (i.type= ‘trip’) and
(i.deposit_paid_atis not null)))) left joint_travellers.addressesa
on ((t2.id=a.cid))) left joint_trips.experiencese
on ((t.id=e.tid))) left joint_travellers.v_sales_register_promotion_countssrpc
on ((t_travellers.srpc.id=sr.id))) left joint_trips.significant_dates
on ((t_trips.significant_dates.tid=t.id)))
group byt.id;
It’s strange that only this view is not recognized.
It would be great if you could help us ASAP with this issue.
Thanks a lot




