I have created a chat Mongoose model for my chat API. I stored each chat json to messages field of the chat model. I think that when the messages field filled with json the document size increase and it will exceed the 16MB capacity. In that moment I want to create a new document and I want to save the chat messages to that document and i will track these document in other document. So how can i handle the exceed error. I think that i can handle with that error by using try/catch for that reason what is the name of this exception?
Note: I just store the text message there is no binary mesage like video or photograph.