Trying to experiment a little bit with running multiple TTS instances at the same time using the docker image, I created 5 different containers, and trying to execute a TTS command on each of those running containers, but only 2 out of 5 produce an actual output, while the others simply log "Killed" and terminate.
Is there a limitation on a shared resource between those 5 separate containers? I though they are running on separate environments.
To Reproduce
Download the docker Image.
Create 5 different containers with the docker image.
Open each container in a different cmd window.
On each container past and run this command simultaneously tts --model_name tts_models/multilingual/multi-dataset/xtts_v2 --speaker_idx "Daisy Studious" --language_idx en --text "Hello world." --out_path "out.pcm" --use_cuda true.
Expected behavior
All 5 containers, reproduce 5 outputs separately.
Instead 3 gets killed and only 2 produce the outputs.
Logs
> tts_models/multilingual/multi-dataset/xtts_v2 is already downloaded.
> Using model: xtts
Killed
Describe the bug
Trying to experiment a little bit with running multiple TTS instances at the same time using the docker image, I created 5 different containers, and trying to execute a TTS command on each of those running containers, but only 2 out of 5 produce an actual output, while the others simply log "Killed" and terminate.
Is there a limitation on a shared resource between those 5 separate containers? I though they are running on separate environments.
To Reproduce
tts --model_name tts_models/multilingual/multi-dataset/xtts_v2 --speaker_idx "Daisy Studious" --language_idx en --text "Hello world." --out_path "out.pcm" --use_cuda true
.Expected behavior
All 5 containers, reproduce 5 outputs separately. Instead 3 gets killed and only 2 produce the outputs.
Logs
Additional context
No response