However, I see that my AWS EC2 instance’s memory usage is growing. Eventually, I get the error that there is no space left on device. Is Rasa storing conversations in memory, even though I have configured it to output to DynamoDB? What can I do about this growing memory problem?
Hi @sum1l0st. Can you check if the conversations are being stored in the SQLite database? An easy way to do this might be to send a message to the assistant and then run the following commands:
sqlite3 rasa.db
SELECT MAX(latest_event_time) FROM conversation;
This will return the time of the latest conversation event in epochs, which you can convert to a human readable timestamp and find out if the message you just sent was stored in memory.