Hi,
Assume that I have a streaming delta table. Is there any way to get snapshot of the streaming table as a static table?
Reason is that I need to join this streaming table with a static table by:
output = output.join(country_information, ["Country"], "left")
"Output" is a static table and "country_information" is the streaming table.
But, I get the error:
Append mode error: LeftOuter join with a streaming DataFrame/Dataset on the right and a static DataFrame/Dataset on the left is not supported;
Also, I cannot change the the above code into:
country_information = country_information.join(output, ["Country"], "left")
Because the logic doesn't work.
Thanks.