Conversation
axelboc
commented
Dec 15, 2025
| /cypress/snapshots/**/__diff_output__ | ||
| /cypress/snapshots/**/__received_output__ | ||
|
|
||
| /support/hsds/root/ |
Contributor
Author
There was a problem hiding this comment.
root is the name of the default bucket,a s configured in support/hsds/config/override.yml
Member
There was a problem hiding this comment.
maybe use a more explicit name e.g. test-bucket
| "support:sample": "poetry -C support/sample run python create_h5_sample.py", | ||
| "support:h5grove": "poetry -C support/h5grove run python tornado_app.py --basedir ../sample/dist", | ||
| "support:hsds": "rm -rf support/hsds/hs.log && poetry -C support/hsds run hsds --root_dir . --config_dir ./config --password_file ./config/passwd.txt", | ||
| "support:hsds:load": "rm -rf support/hsds/root/* && poetry -C support/hsds run hsload -e http://localhost:5101 -u test -p test --link ../sample/dist/sample-hsds.h5 /", |
Contributor
Author
There was a problem hiding this comment.
- The
testadmin user's password is defined inconfig/passwd.txt - The file is loaded into the root folder of the bucket
/andhsloadautomatically creates a new "domain" for the file called/sample-hsds.h5 - From what I understand,
--linkmeans that the data stays in the file
| private readonly baseURL: string, | ||
| filepath: string, | ||
| private readonly fetcher: Fetcher, | ||
| private readonly fetcher = createBasicFetcher(), |
Contributor
Author
There was a problem hiding this comment.
I've managed to configure the HSDS support server to allow unauthenticated requests, so I'm making the fetcher parameter optional so I don't have to pass it in hsds-api.ts.
axelboc
commented
Dec 15, 2025
Contributor
Author
There was a problem hiding this comment.
This is the snapshot file. I've already identified a few issues/inconsistencies with other providers, like a few "Unknown" dtypes, which I'll try to fix.
t20100
approved these changes
Dec 18, 2025
| /cypress/snapshots/**/__diff_output__ | ||
| /cypress/snapshots/**/__received_output__ | ||
|
|
||
| /support/hsds/root/ |
Member
There was a problem hiding this comment.
maybe use a more explicit name e.g. test-bucket
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.
support/hsdswith hsds and h5pydsupport/hsds/config)--hsdsflag tocreate_h5_sample.pyto createsample-hsds.h5without datasets not supported byhsloadsupport:hsdsandsupport:hsds:loadscripts to respectively start the HSDS support server and loadsample-hsds.h5into HSDShsds-api.test.tsfile and run test to create Vitest snapshot fileOpening as draft as I'm having issues in the CI: the HSDS support server won't fully start for some reason. Also, I'm installing and testing the latest version of
hsds(andh5pyd), but the demo server on Bosquet still runs an older version.