-
|
I'm trying to store references in icechunk to a publicly accessible http dataset. I can write the reference to icechunk fine, but when opening repo as a zarr store and accessing the data, I get an error that I haven't authorized virtual chunk access. I see there are credential classes for the various cloud providers, but how do I signal that no credentials are needed to access an http_store? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
|
Thank you for your question @groutr . There is some reference documentation in repo = Repository.open(..., authorize_virtual_chunk_access={"https://your-url-to-the-chunks", None})The reason why we force you to pass that silly last argument is security, we want users to opt-in into letting Icechunk fetch virtual chunks for them. |
Beta Was this translation helpful? Give feedback.
Thank you for your question @groutr . There is some reference documentation in
Repository.open, but bottom line, when you open the repo you pass something like:The reason why we force you to pass that silly last argument is security, we want users to opt-in into letting Icechunk fetch virtual chunks for them.