- scalibility → Ability of the system to handle increased load by adding resources (horizontal/vertical scaling).
- stability → Predictable behavior under fluctuating or sudden load; avoids meltdown and cascading failures.
- availability → Percentage of time a system is up and reachable (uptime metric).
- durability → Guarantees that once data is written, it will never be lost—even during failures.
- fault tolerance → Ability of the system to continue operating even when components fail. → Fault tolerance improves availability but is not equal to availability.
- reliability → Ability of the system to operate correctly and failure-free over time. → Measured by MTBF (Mean Time Between Failures). → Reliability ≠ availability metric.
- consistency → Every read returns the most recent write (for strong consistency). → Or follows the defined consistency model (eventual, causal, etc.).
- latency → Time taken for the system to respond to a request.
- performance → Performance = how fast the system processes work (latency + throughput + resource usage).
- efficiency → How optimally the system uses CPU, memory, network, storage.
- maintainability → How easy it is to update, debug, refactor, and extend the system.
- observability → Ability to understand the internal state of a system from its external outputs (logs, metrics, traces). Not just logging
- security → Protecting the system against unauthorized access, misuse, attacks, and data breaches.
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)