You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
to_bigquery() should only be calling _upload_entity_df_and_get_entity_schema() once, Otherwise it should not "reupload" the entity_df as it already exists
Current Behavior
I am having a weird issue where when I call to_bigquery(), it's calling query_generator() twice an try to create a tmp dataset in BQ twice using _upload_entity_df_and_get_entity_schema()
That's when I import pdb in the lib. We can see that I am getting set_trace(); working twice when I am within the function def query_generator() (this line of code)
And therefore _upload_entity_df_and_get_entity_schema() is called twice with the exact same parameters
Specifications
Version:
Platform:
Subsystem:
Possible Solution
The text was updated successfully, but these errors were encountered:
Expected Behavior
to_bigquery()
should only be calling_upload_entity_df_and_get_entity_schema()
once, Otherwise it should not "reupload" the entity_df as it already existsCurrent Behavior
I am having a weird issue where when I call to_bigquery(), it's calling query_generator() twice an try to create a tmp dataset in BQ twice using _upload_entity_df_and_get_entity_schema()
Steps to reproduce
That's when I import pdb in the lib. We can see that I am getting set_trace(); working twice when I am within the function
def query_generator()
(this line of code)And therefore
_upload_entity_df_and_get_entity_schema()
is called twice with the exact same parametersSpecifications
Possible Solution
The text was updated successfully, but these errors were encountered: