Memory.settled()
The .settled() method resolves once all background work the Memory instance started has finished. Some memory work continues after an agent run returns:
- Observational memory cycles (buffered observation and reflection, including the nested agent runs they spawn)
- Vector cleanup started by
deleteThread()anddeleteMessages()
Await this method before closing a storage connection you own. Without it, background statements can run against a closed connection.
The method is declared on the base memory class, so it's also available on the MastraMemory instance returned by agent.getMemory().
Usage exampleDirect link to Usage example
await agent.generate('Hello', {
memory: { thread: 'thread-123', resource: 'user-456' },
})
await memory.settled()
await store.close()
ParametersDirect link to Parameters
This method takes no parameters.
ReturnsDirect link to Returns
void:
Extended usage exampleDirect link to Extended usage example
Test suites and short-lived processes are the most common places to need this, since they close the store immediately after a run finishes.
import { Memory } from '@mastra/memory'
import { PostgresStore } from '@mastra/pg'
const store = new PostgresStore({ connectionString })
const memory = new Memory({ storage: store })
// ... run your agent ...
// Wait for observational memory and vector cleanup to finish before closing.
await memory.settled()
await store.close()
settled() joins the work that had started by the time you called it, plus any
work that work enqueues. It does not prevent new work from starting afterwards,
so call it once the agent runs you care about have returned.