-
Notifications
You must be signed in to change notification settings - Fork 312
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
Feature/Enhancement Request - Support for cost and user tracking #6523
Comments
Another way to do this would be to use an RDS database for Slurm accounting. It would cost a bit for the database, but it might be worth it if you want to track usage and costs. https://docs.aws.amazon.com/parallelcluster/latest/ug/slurm-accounting-v3.html |
Thank you for the feature request. Our team will discuss this. |
I had users add the below to their sbatch submission file, the goal being to track costs in AWS Cost Explorer. - Not ideal but it works. |
@maestro7879 Does that work with sbatch as well? I think it should. |
Yes, that's what we are using. #!/bin/bash FILENAME: mpi_test.sub#SBATCH --nodes=2 #SBATCH --partition= partition6 #SBATCH --ntasks-per-node=8 MyInstID=$(srun --nodes=2 ec2-metadata --instance-id | cut -d " " -f 2) |
Hello Team,
I understand that ParallelCluster does not support user or cost tracking natively at this moment, therefore I would like to put in this feature request of allowing:
Currently the below blog has been suggested as a potential workaround:
https://swsmith.cc/posts/cost-explorer-pcluster.html
However I would like this to be a native feature.
The text was updated successfully, but these errors were encountered: