How to debug a NotATable exception #1325
Replies: 1 comment
-
While typing this, it occured to me that I might not actually be getting the path right - you know, that part where you get the insight to your problem as you tell someone or write it out. Well, I checked and confirmed there was a difference in the base of the paths. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I have a remote storage bucket hosted with MinIO with delta table. The problem is when I call it, I get the following error
Error: NotATable("No snapshot or version 0 found, perhaps s3://path/to/table is an empty dir?")
This is the storage options being used
and opening it with
Since I can actually navigate to the path, I can confirm that the path does exist and it is not empty...and even more curious, if I download the directory at the path, and upload it to a locally running MinIO, and I change the storage_options to point to locahost:9000, it works!!! I am able to download the data!
So basically same path, same directory downloaded from remote and uploaded to local, but when I query it on remote, I get a reponse of empty table but on local, it works fine.
I am not sure where to start debugging this. Any ideas?
Beta Was this translation helpful? Give feedback.
All reactions