【发布时间】:2022-12-01 13:00:33
【问题描述】:
I often see something like this v3io:// or `/v3io/some-directory, what are the differences?
【问题讨论】:
I often see something like this v3io:// or `/v3io/some-directory, what are the differences?
【问题讨论】:
The file at v3io://bigdata/my_file and /v3io/bigdata/my_file is exactly the same, but is accessed differently.
A path with v3io:// is accessed via the Iguazio V3IO protocol. This is generally more performant, but is not compatible with all libraries
A path with /v3io is accessed via a mounted filesystem. This is not as performant as the V3IO protocol, but is compatible with more libraries
I recommend using v3io:// where possible and falling back on /v3io when it is not
【讨论】: