Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 755 Bytes

stateful-apps.md

File metadata and controls

16 lines (13 loc) · 755 Bytes
title status category tags
Stateful Apps
Completed
Property
fundamental
application
property

When we speak of stateful (and stateless) apps, state refers to any data the app needs to store to function as designed. Any kind of online shop that remembers your cart is a stateful app for example.

Today, most applications we use are at least partly stateful. In cloud native environments though, stateful apps are a challenge. This is because cloud native apps are very dynamic. They can be scaled up and down, restarted, and moved around but still need to be able to access their state.

Therefore, stateful apps needs some kind of storage that is accessible from anywhere, like databases.