-
Hi, I am running porefile on a server with 24 cores, but when I start the pipeline the load of the system quickly increases to >30 or 40. Best regards, |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
Hi! Not sure if I understand your issue. How come it is using more than 30 cpus if your server has only 24? The idea of nextflow is to run pipelines with a workload manager in the context of an hpc cluster or in the cloud, although it runs ok in a bare pc or server. The paradigm, however, is different as you set resources per process, and instances of processes are called as needed (as its inputs are available) and as the compute resources are available. You don't set a maximum limit of cpus as in traditional software or scripts. You need to create the configuration for your infrastructure. I can't help very much here. In the processes.nf script you can see the processes defined in porefile. You will see that some of them have a I hope you find these links useful, and sorry I can't provide a simpler answer. |
Beta Was this translation helpful? Give feedback.
-
Hi, Thank you again for your reply! I will have a look at the configuration documents and see if I can limit the load in that way. Best regards, |
Beta Was this translation helpful? Give feedback.
-
Actually, if you are using the nextflow run microgenlab/porefile --minimap -profile nagual ... |
Beta Was this translation helpful? Give feedback.
Hi! Not sure if I understand your issue. How come it is using more than 30 cpus if your server has only 24?
The idea of nextflow is to run pipelines with a workload manager in the context of an hpc cluster or in the cloud, although it runs ok in a bare pc or server. The paradigm, however, is different as you set resources per process, and instances of processes are called as needed (as its inputs are available) and as the compute resources are available. You don't set a maximum limit of cpus as in traditional software or scripts.
You need to create the configuration for your infrastructure. I can't help very much here. In the processes.nf script you can see the processes defined in porefi…