Use rasa run – cors “*” to start the service, and rasa run actions – debug to start the rasa Actions,submitting a request to http://127.0.0.1:5005/webhooks/rest/webhook , when more than 30 requests are concurrent, the following prompt will appear. About 10 requests have timed out, and the rasa Actions cannot receive the request:
2022-09-27 10:45:01 INFO root - Rasa server is up and running.
Building prefix dict from the default dictionary ...
Loading model from cache C:\Users\User\AppData\Local\Temp\jieba.cache
Loading model cost 1.547 seconds.
Prefix dict has been built successfully.
2022-09-27 12:00:01 ERROR rasa.core.channels.rest - Message handling timed out for user message .......
2022-09-27 12:01:07 ERROR rasa.core.channels.rest - Message handling timed out for user message......
2022-09-27 12:01:08 ERROR rasa.core.channels.rest - Message handling timed out for user message.......
Assumed solutions: 1. Perform data preprocessing from the client, filter and control the number of requests sent. 2. Implement nginx services to achieve load balanced forwarding. 3. Provide support from the Rasa framework? Please guide