I have a remote class like (using ray API)
@ray.remote
class className
....
And I want to start 60 or more instances of this class and let them do some work simultaneously.
However, I can't start more than 50 instances of this class at the same time.
How can I change the max. number of threads allowed at any given time from inside of the python script?