All Questions
Tagged with multithreading python
3 questions
2
votes
2
answers
2k
views
How to comprehend Cpus_allowed and thread id number?
Environment: OS --debian + python3.
All the output info below ommit unimportant.
Get my computer's cpu info with cat /proc/cpuinfo :
cat /proc/cpuinfo
processor : 0
vendor_id : GenuineIntel
cpu ...
4
votes
1
answer
18k
views
Running a python script 200,000 times in parallel using bash [duplicate]
I need to run my Python script 200,000 times. Is it possible to do parallel execution using bash? Since it's 200,000 times I would like to use at least 10 threads simultaneously
2
votes
3
answers
914
views
Linux - preventing an application from failing due to lack of disk space
Due to an unpredicted scenario I am currently in need of finding a solution to the fact that an application (which I do not wish to kill) is slowly hogging the entire disk space. To give more context
...