An Azure service that provides a general-purpose, serverless container platform.
@SriRaghavendran Prabhakaran Thanks for reaching out. Yes, the Dapr state store can increase the memory usage of container apps. The state store is used to store and retrieve state data for your application, and it can consume memory as it stores more data. This is likely why you’re seeing higher memory usage for App1 compared to App2, as App2 does not use a state store.
To reduce the memory usage of your application, you can try optimizing the size and complexity of the state data being stored, or reducing the number of instances of your application that are running. You can also consider using an external state store, such as Azure Cache for Redis or Azure Cosmos DB, which can provide more scalable and efficient storage for your state data.
Please let me know if you have any further queries.
Please 'Accept as answer' and ‘Upvote’ if it helped so that it can help others in the community looking for help on similar topics.