galaxyproject / galaxy-helm

Minimal setup required to run Galaxy under Kubernetes
MIT License
38 stars 36 forks source link

Sets the mulled resolution cache lock dir to local #402

Closed pcm32 closed 1 year ago

pcm32 commented 1 year ago

The mulled cache lock dir is often accessed and it doesn't need to be on the shared file system. Then each galaxy process that needs it will have it's own and performance on local disk should be better than on the shared file system.

Helps with #399 .

pcm32 commented 1 year ago

On the current deployment, it created it on its own, but it was just a single level directory. I will restart my deployment with this path to confirm that the behaviour is recursive.

pcm32 commented 1 year ago

I can confirm that the directories requested get created by some process without the helm chart having to take care of it.

nuwang commented 1 year ago

Thanks @pcm32!