-
-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add functionality to configure structure/hierarchy of modules base directory #456
Comments
@jacquikeane one thing to try is that this morning I just merged adding a .version file - which would set the level of the organization to use versions (and not go into the level of the module file). I don't remember if this is for lua or tcl but it's worth a pull and try to see if that simple tweak resolves your issue! |
Mmm, I think I may not be explaining my requirement very well! This is a separate request to the version issue. Perhaps a screenshot will help. When I use shpc at the moment to install software, running module avail gives me: Ideally I want to configure the directory hierarchy so when I do the install and run module avail I get a list like this: Basically I only want the name of the software without biocontainers in the name. But perhaps this is not a fix for shpc but with how I am using modules? |
That’s what I am talking about too! When we added the .version file it tells the module software that the level shown should be at the version directory. But I forget if that is for lmod or tcl. Anyway let’s get feedback from others about this - I agree we need a better solution. |
Ok, I will checkout the latest version and give it a try. Thanks! |
Oh just a quick note (sorry didn't mention this before!) the current version doesn't have a release yet, so it's just the main branch here. |
I am using tcl so I don't think this works for me. |
I get Jacqui point on conventions, let me start from a couple of aspects:
On the 1st one above, the recent change in #451 (no SHPC release yet) tackles it, through the setting "default_version" true/false, by adding that .version file as described in the PR (or related issue). However, I get point 2. may be of interest, too.
Hope this can help :) I have another reflection to share , in a following comment below |
On shortening the module structure, eg I have 2 ideas
These comments on the tree depth could eventually merge up with the one above on modulefile naming, to become something like the highly configurable module naming scheme in Spack - see "Projections" here: https://spack.readthedocs.io/en/latest/module_file_support.html#customize-the-naming-of-modules . |
I am digging in the functionalities of EnvModules and Lmod, I think I will be able to share some suggested nice implementations soon, around default versions and module file conventions. |
Thanks @marcodelapierre ! With respect to making the paths shorter, we do have the namespace command, but that's just for management of the modules (they install to the same long paths). The issue with modifying the install namespace is what you stated - if there are two containers with the same name under different top level folders, there is a clash. I thought about allowing the user to specify a custom name, but then it would be much harder to programatically discover those that are installed. E.g., let's say you install ghcr.io/autamus/clingo to just be clingo, and let's say there are a few different clingos. How would you reliably link back? I think what I can do now is prepare a PR to test that makes the changes to the structure to support the version named files, and then we can discuss further! And I'm going to merge and release #455 because it does fix several real issues. I'll ping here when I have a second PR. |
okay, so I gave that a shot #458 and it didn't work out great - a lot of detail work and debugging that I don't think I have the attention for today (kind of want to work on fun things!) but I did some tweaks to fix a bug I found with adding a singularity container, and also the CircleCI tests, so we are better of than where we started! #459. If the version file doesn't fix this issue, we at least have a good start and I'll have the bandwidth to return after the holiday at some point. Happy 🦃 day! |
thanks for your thoughts Vanessa! I agree it is good to start with tackling the default version thing, by trying the modulefile as a version approach. As we're considering user interface changes in this space anyway, a couple of suggestions to make the modulefile more concise:
|
we can definitely do that, but what extension should they have?
Hmm, so this is just my opinion, but my preference is to name things clearly and understandably, so if mod has multiple meanings (and m isn't clear) I wouldn't go in that direction. module.(lua|tcl) is longer but it's clear what it is! |
on the latter point, thanks for discussing this, I agree with your point on clarity! on the 1st one, tcl modules do not need any extension at all. We have both tcl and lmod in various clusters here at the moment, let me show you 2 examples. Tcl:
Lmod:
See how lmod takes out the .lua extension when looking for modules; that one is needed.
I think the EnvModules docs never state it explicitly, but in the examples modulefiles typically don't have any extension (https://modules.readthedocs.io/) |
Ah, newbie mistake on my part! I’ll prepare a PR to remove the extension. |
okay here is a test! #460 Before I was using the extension to distinguish the types, and this will still work as long as we don't add another module system without an extension. |
Cool! I am off without computer for a long weekend, will try and give it a go next week. One thing that comes to mind around the proposed change to |
@marcodelapierre @jacquikeane I think we investigated removing the extension and it didn't work - are there other ideas to brainstorm or other ways we can help? |
Hi. What about using symlinks to maintain an alternate, simplified, module tree ? Essentially, there would still be a module directory with the full namespaces and no risk of version clashes. In parallel there would be another directory tree structured as I've given it a try, and it works :) !
|
oh that's a neat idea - so essentially someone might be able to do: shpc insall ghcr.io/singularityhub/github-ci --symlink and given some
And then the user would just load github-ci, but instead of:
it would be
and we'd only run into trouble given an equivalent container name, e.g.,:
In which case if the user had the first installed (and symlinked) samtools it would say: shpc insall ghcr.io/autamus/samtools --symlink
You've already installed the "samtools" namespace. Would you like to:
1. Stop and abort.
2. Remove previous install and replace
3. Install at a different namespace (will be prompted to enter after number):
Enter your choice: @marcodelapierre would this work with our newly refactored module_dir - or did you already test using that @muffato ? |
🤔 Not sure I understand. What are the
I had in mind that there could still be multiple versions of the same software in different symlinks, cf |
Sorry bad example and a typo! module/ should have been the module file, and latest is akin to a version tag. And we do have the .version tag, although it's just created by default to specify the level of the directory to define versions (right now it's an empty file) but that could be customized further. I haven't used it beyond that use case so let me know your thoughts for how we could change it / make it better. And I was thinking we could have a fourth open "install to same namespace" (with a "proceed at your own risk" ) sort of deal - if the user is installing a particular tag they could largely avoid the conflicts. Anyway I'm throwing together an implementation for us to test, back in a bit! |
Okay testing PR is in! #502 I'm about to head off for the evening (almost 11pm here) but I'm excited to pick up on this! |
This sounds like a great idea indeed! |
I think this issue has been addressed now that views are in |
Agree! @georgiastuart please try this out, and it’s the most basic version so open a new issue to discuss additional features you’d like! |
I am managing the software on a HPC for a large research group and intend to do this via modules and singularity so the shpc application looks ideal for me (thanks!). However, I would like to have my modules organised as groupname/software/version regardless of where I take the container from (I intend to take from quay.io/biocontainers where possible and not build and maintain my own registry/containers). Having a consistent (and shorter) naming of the modules when typing module load will make it easier for our users.
As far as I understand the application creates a directory structure under the modules base directory according to registry/software/version which is taken from the container.yaml file so I cannot organise via groupname/software/version? It would be really useful if this data hierarchy was configurable.
The text was updated successfully, but these errors were encountered: