How long will Firebase Analytics Data be exported to BigQuery

血红的双手。 提交于 2020-12-13 11:32:49

问题


I have enabled the BigQuery integration in Firebase Console and I have some issues about this :

  1. How long will Firebase Analytics Data be exported to BigQuery ? I had the integration from Firebase to BigQuery, somehow Firebase Analytics Data export was disabled by somebody. I just enabled it yesterday around 17:00, and there is no data updated in BigQuery so far.

  2. Why Firebase Analytics Data will be updated even thought the data is moved from intraday data set to event data set ? I find the data will be updated in around 2 days.


回答1:


Regarding the latency, your first question, you should pay attention to two topics:

  1. Client to Server latency

Firebase does not stream down data from the client's device constantly. Instead, the analytics data is batched up and sent down to the Firebase server when the local data is one hour old. You can read more about it here.

  1. Firebase to BigQuery

After linking your Firebase project with BigQuery, the data will be streamed to BigQuery as soon as Firebase Analytics receives it, here.

The data flow and latency would be as follows (image taken from the documentation):

About your second question, everyday your data will be streamed in nearly real time to the appevents_intraday_ temporary table in BigQuery. This table collects all the data from the current day and it allows you to query against this data. At the end of the day, this data will be moved to its appevents_ permanent table and the temporary intra day table will be cleaned up.

I must point that, the only difference is that the intra day table do not have lifetime value data and campaign information (the traffic_source record), which is present in the appevents_ table.

I would also encourage you to have a look at this video provided by Firebase. It explains all the dynamics between Firebase and BigQuery.



来源:https://stackoverflow.com/questions/61673581/how-long-will-firebase-analytics-data-be-exported-to-bigquery

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!