Hi,
I integrated my firebase project to Bigquery and using data via it.
What I have been saw is :
[1] when the new day comes, new events_intraday_YYYYMMDD table is created for that day, in my Bigquery project dataset.
[2] when the next day comes, events_intraday_YYYYMMDD for yesterday is transferred to events_* table, in my Bigquery project dataset. (the time of merge is vary everyday)
[3] events_intraday_* for yesterday is deleted after the transfer.
But today I recognized that is not happened today,
events_intraday_20220825 and events_20220825 do not exist .
events_intraday_20220826 is created and streaming works normally,
and on firebase console, I can see events for 2022-08-25 normally also.
What want to know are :
- do I just need to wait ?
- if it is not the right way, how can I transfer events raw data for 2022-08-25 manually?
The table events_ contains all your data for different dates, the table events_intraday_ is a temporary table, which its data is moved into events.
You can see more about this information in the next video.