-
Notifications
You must be signed in to change notification settings - Fork 4.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Facebook Conversion Data Missing #5190
Comments
@manavkohli it seems like the issue is that when the FB connector queries for action_attribution_windows of 28days then empty data can be returned. I think the answer is to stop querying for 28day attribution windows altogether but I'm not 100% sure yet. needs more research. Adding this to our current sprint. |
helpful context: https://developers.facebook.com/docs/marketing-api/insights#sample see the notice about iOS 14 in these docs |
@sherifnada good to know - will try that as well |
@sherifnada fyi running into a handful of errors with the Facebook Marketing connector as I dug deeper, what's the best way to proceed here? Namely:
|
@manavkohli will prioritize this failure asap, can you share the full logs from the failling normalization job? |
Awesome, thanks! Also I dug deeper, I think the normalization job was an issue with the generated catalog/actually received data for the report I built. So is not something affecting the source/production build, sorry about raising the alarm there. That all being said, attaching the logs if helpful. |
thanks for the heads up, will look into the first issue also |
Definitely! Also to clarify earlier comment, all the jobs are still failing in production, but the normalization process after fixing seemed due to my changes |
@sherifnada do you have an idea of when the underlying data issue may be deployed? That's still blocking us from being able to use the connector |
@manavkohli hi, I'm working on task and try to reproduce issue. Could you please provide more details about ads for which data is missing. |
@vitaliizazmic definitely, basically all conversion data after mid April. If you look at the |
@sherifnada @vitaliizazmic I opened a PR that addressed both issues. Was able to verify data loaded into my DB that included conversion data. Query below (note that the tables are prepended with ( SELECT
date_start as date,
SUM(value)
FROM fb921_ads_insights_action_type_actions a
LEFT JOIN fb921_ads_insights_action_type b ON b._airbyte_fb921_ads_i__ts_action_type_hashid = a._airbyte_fb921_ads_i__ts_action_type_hashid
WHERE action_type LIKE 'omni_purchase'
GROUP BY date
ORDER BY date DESC |
…llers for AdsInsights streams if not presented in records
…st_sequential_reads * Source Facebook Marketing #5190 - estimate cost_per_estimated_ad_recallers for AdsInsights streams if not presented in records * Source Facebook Marketing #5190 - add ignored fields to full refresh test * Source Facebook Marketing #5190 - annotations * Source Facebook Marketing #5190 - reformat * SAT #5190 - delete remove_ignored_fields * Source Facebook Marketing #5190 - use dpath util for excluding fields * Facebook marketing #5190 - follow EAFP principle * Facebook Marketing #5190 - add unit tests. * Source Facebook Marketing #5190 - fixing according to PR * Source Facebook Marketing #5190 - support ignored fields by stream * Source Facebook Marketing #5190 - update docs * Source Facebook Marketing #5190 - merge conflicts * Source Facebook Marketing #5190 - bump SAT version * Source Facebook Marketing #5190 - fixing unit tests * Source Facebook Marketing #5190 - bump
* Source Google Directory #7415 - migrate to the CDK * Source Google Directory #5190 - fix timeout error * Source Google Directory #7415 - fix according to PR review * Source Google Directory #7415 - added etag and lastLoginTime to ignored fields for full refresh acceptance test * Source Google Directory #7415 - fix full refresh acceptance test config * Source Google Directory #7415 - bump version
* Source Google Directory #7415 - migrate to the CDK * Source Google Directory #5190 - fix timeout error * Source Google Directory #7415 - fix according to PR review * Source Google Directory #7415 - added etag and lastLoginTime to ignored fields for full refresh acceptance test * Source Google Directory #7415 - fix full refresh acceptance test config * Source Google Directory #7415 - bump version
* Source Google Directory #6265 - add oauth support * Source Google Directory #6265 - update credentials * Source Google Directory #6265 - fixing according to PR * Source Google directory #6265 - update docs * Source Google directory #5190 - update doc * Source Google Directory #6265 - resolve merge conflict * Source Google Directory #6265 - SAT for oauth * Source Google Directory #6265 - bump version and update changelog * Source Google Directory #6265 - bump version and update changelog (update publish)
* Drift airbytehq#5190 - migrate to CDK, add acceptance tests * Source Drift airbytehq#7041 - fixing according to PR review * Source Drift airbytehq#7041 - bump version and update changelogs
…st_sequential_reads * Source Facebook Marketing airbytehq#5190 - estimate cost_per_estimated_ad_recallers for AdsInsights streams if not presented in records * Source Facebook Marketing airbytehq#5190 - add ignored fields to full refresh test * Source Facebook Marketing airbytehq#5190 - annotations * Source Facebook Marketing airbytehq#5190 - reformat * SAT airbytehq#5190 - delete remove_ignored_fields * Source Facebook Marketing airbytehq#5190 - use dpath util for excluding fields * Facebook marketing airbytehq#5190 - follow EAFP principle * Facebook Marketing airbytehq#5190 - add unit tests. * Source Facebook Marketing airbytehq#5190 - fixing according to PR * Source Facebook Marketing airbytehq#5190 - support ignored fields by stream * Source Facebook Marketing airbytehq#5190 - update docs * Source Facebook Marketing airbytehq#5190 - merge conflicts * Source Facebook Marketing airbytehq#5190 - bump SAT version * Source Facebook Marketing airbytehq#5190 - fixing unit tests * Source Facebook Marketing airbytehq#5190 - bump
* Source Google Directory airbytehq#7415 - migrate to the CDK * Source Google Directory airbytehq#5190 - fix timeout error * Source Google Directory airbytehq#7415 - fix according to PR review * Source Google Directory airbytehq#7415 - added etag and lastLoginTime to ignored fields for full refresh acceptance test * Source Google Directory airbytehq#7415 - fix full refresh acceptance test config * Source Google Directory airbytehq#7415 - bump version
* Source Google Directory airbytehq#6265 - add oauth support * Source Google Directory airbytehq#6265 - update credentials * Source Google Directory airbytehq#6265 - fixing according to PR * Source Google directory airbytehq#6265 - update docs * Source Google directory airbytehq#5190 - update doc * Source Google Directory airbytehq#6265 - resolve merge conflict * Source Google Directory airbytehq#6265 - SAT for oauth * Source Google Directory airbytehq#6265 - bump version and update changelog * Source Google Directory airbytehq#6265 - bump version and update changelog (update publish)
Enviroment
Current Behavior
After the rollout of iOS 14.5, Facebook added many restrictions to its API. In particular, it restricted fetching conversion data when breakdowns were present (see here: "No support for breakdowns: For both app and web conversions, delivery and action breakdowns, such as age, gender, region, and placement will not be supported.", source). In our warehouse we're at least seeing missing data for conversions after April.
Expected Behavior
There should be a report that does not use breakdowns and can expose conversion events.
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
Steps to Reproduce
Are you willing to submit a PR?
Yes
The text was updated successfully, but these errors were encountered: