Issue #7250 : Document that UNC paths are not reliably supported - #7909
Merged
hansva merged 1 commit intoAug 12, 2026
Merged
Conversation
vfs.adoc claimed the opposite of the actual behaviour: UNC names are supported under Windows. That sentence describes Apache VFS, which the surrounding table is taken from, not Hop. On apache#7250 a user lost time to an Excel Input transform that could not open a UNC path while another transform read the same file, and hansva confirmed UNC paths are not supported in Hop -- they work in some cases and mostly do not -- and asked for it to be documented. Corrects the sentence, and adds a Windows UNC paths section giving the reason the behaviour looks inconsistent (different transforms reach the file system by different routes), a warning against relying on it unattended, and the mounted-drive workaround hansva recommended, with a variable example so the same pipeline runs on Windows and Linux.
Contributor
|
thansk @vbhanuchander-lang |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes #7250
@hansva you asked on that issue for this to be documented ("I don't think it is properly documented, let's keep this ticket to do that"). While writing it I found the docs were not silent on UNC — they claimed the opposite:
Where `absolute-path` is a valid absolute file name for the local platform. UNC names are supported under Windows.That sentence is accurate about Apache VFS, which the surrounding table is taken from ("The table below lists the file system types provided by the default Apache VFS implementation"), but not about Hop. So a user following the docs had every reason to expect
\\some.network.folder\my_excel.xlsxto work, which is how #7250 happened.Two changes:
1. Correct the claim rather than leave a true-of-upstream statement that misleads in context, pointing at the new section instead.
2. Add a
Windows UNC pathssection covering what the issue actually revealed:Docs only, no code. Cross-reference uses the
<<id, Text>>form to match the rest of the manual, and**bold**as used elsewhere in these pages.If you would rather this were phrased as a flat "not supported" with no explanation of the inconsistency, say so and I will trim it — I erred toward explaining the failure mode because that is what the reporter was missing.