Bas Beelen
02/15/2023, 9:40 AMchange-data-feed
is enabled. And it has been working fine.
Today though, for one of the tables we get a weird error message when we try to use table_changes("the_table", <commit>)
, namely:
No file found in the directory: <gs://bucket/raw/.../_delta_log>
1. The _delta_log
is at the location
2. I can query the table itself select * from the_table
3. I can load previous versions select * from the_table@v100
4. But this fails: select * from table_changes("the_table", 100)
, with the above mentioned error
Nothing in our logic has changed for the specific table where this is happening for. Other tables that run on the same logic of ingestion etc. don't have this specific issue.
Anyone an idea what could be going on?
We use Databricks on GCPYatharth Maheshwari
02/15/2023, 10:32 AMBas Beelen
02/15/2023, 11:01 AM