aster.cloud aster.cloud
  • /
  • Platforms
    • Public Cloud
    • On-Premise
    • Hybrid Cloud
    • Data
  • Architecture
    • Design
    • Solutions
    • Enterprise
  • Engineering
    • Automation
    • Software Engineering
    • Project Management
    • DevOps
  • Programming
    • Learning
  • Tools
  • About
  • /
  • Platforms
    • Public Cloud
    • On-Premise
    • Hybrid Cloud
    • Data
  • Architecture
    • Design
    • Solutions
    • Enterprise
  • Engineering
    • Automation
    • Software Engineering
    • Project Management
    • DevOps
  • Programming
    • Learning
  • Tools
  • About
aster.cloud aster.cloud
  • /
  • Platforms
    • Public Cloud
    • On-Premise
    • Hybrid Cloud
    • Data
  • Architecture
    • Design
    • Solutions
    • Enterprise
  • Engineering
    • Automation
    • Software Engineering
    • Project Management
    • DevOps
  • Programming
    • Learning
  • Tools
  • About
  • Cloud-Native

Top 9 Overlooked Questions When Designing Your Stateful Cloud Native Network Application

  • aster.cloud
  • September 28, 2022
  • 4 minute read

When designing a stateful cloud native applications, and especially a stateful cloud native network application, you must determine which data model matches the functional requirements of the system. There is often confusion about vocabulary within the telco and networking space when it comes to data (for instance, there are stateful protocols like tcp/ip and stateful data like that which is saved into a database). The confusion is exacerbated when these concepts are combined with cloud native non-functional requirements, such as resilience and availability. The telecommunications space is exceptionally difficult to navigate because requirements are usually outlined in RFPs instead of in an iterative agile development cycle.  The following nine questions are often overlooked when considering cloud native statefulness, so we provide them here.

Correctness

When talking about stateful applications, correctness comes into play. Traditionally, relational database management systems (RDBMS) handle the issue of correctness of data, but with the low latency (1 ms) requirements of telecommunication network components, some RDBMSs may not be up to the task.


Partner with aster.cloud
for your next big idea.
Let us know here.



From our partners:

CITI.IO :: Business. Institutions. Society. Global Political Economy.
CYBERPOGO.COM :: For the Arts, Sciences, and Technology.
DADAHACKS.COM :: Parenting For The Rest Of Us.
ZEDISTA.COM :: Entertainment. Sports. Culture. Escape.
TAKUMAKU.COM :: For The Hearth And Home.
ASTER.CLOUD :: From The Cloud And Beyond.
LIWAIWAI.COM :: Intelligence, Inside and Outside.
GLOBALCLOUDPLATFORMS.COM :: For The World's Computing Needs.
FIREGULAMAN.COM :: For The Fire In The Belly Of The Coder.
ASTERCASTER.COM :: Supra Astra. Beyond The Stars.
BARTDAY.COM :: Prosperity For Everyone.

1) How safe must your system be?

The difference between a cloud native system and a traditional application can be described as the difference, on a spectrum, between safety and liveness.  Safety is related to correctness in that it describes stopping something undesirable from happening.  In other words it puts a constraint on the system.  Liveness is the ability of the system to return to a desired state. Cloud native systems opt for the liveness side of the spectrum, otherwise known as anti-fragility, over safety.

2) Do you require strong consistency?

There are some problems, oftentimes in the financial space, that require strong consistency. The double spending problem, or making sure that a resource isn’t used twice, is a specific example of this.

Read More  The New Kubernetes Gateway API And Its Use Cases

3) Can you tolerate write skew?

When strong consistency is not required, relaxing the constraints on correctness can often increase other properties, such as performance.  Write skew is when data is writing data based on a decision from an outdated premise. This can sometimes be tolerated because the data can be fixed after the write.

4) How do you address write skew?

The decision to allow write skew should be based on if the solution for the write skew is good enough for your domain.  For instance, for a phone call where the packets sometimes are received out of order, a solution that drops the packets (i.e. first write wins) is often tolerable. For a shopping cart that has many items added at the same time, but the writes were received out of order or delayed, a solution to merge the items (e.g. a solution that uses Conflict-free Replicated Data Types) into the cart as they are received is also often tolerable.

Performance

Performance is mandatory for network applications in the telco space. A common requirement base requirement is for network applications to be ‘line speed’ which means any software should not interfere if the speed of the network cards, which can be at 400G at this point.  This puts heavy requirements on the bottleneck of the system, which is often the data.

5) Are there latency sensitive parts of the system where the updates can be applied in any order, such as incrementation?

Latency sensitive data that can be applied in any order can often be addressed with merge solutions such as Conflict-free Replicated Data Types (CRDTs).  Incrementation and decrementation of a resource are examples of this.

Read More  WasmEdge And OpenYurt Bring Cloud Computing To The Edge

6) Is your data write heavy?

Write-heavy data has latency benefits from using write-friendly data models, such as append-only datastores.  Read-heavy data has latency benefits from using column databases if your data model supports it.

7) How fast should your responses be?

For network applications (and especially network components that are heavily dependent upon), 1 millisecond latency or latency measured in microseconds can often be the requirement.  This is rarely a requirement in traditional DBMS systems.  So when designing these systems you really need to ask if the system requires 1ms latency response times. What are the latency requirements for the 99th percentile?  Do you have any hard real time guarantees?

8) Will the users be distributed geographically?

Geographic distribution is a challenge and an opportunity. The challenge comes from finding and implementation that is smart enough to geographically replicate and partition. The opportunity comes from the latency reduction that comes from the proximity of data to the application.

9) How secure must your system be?

A compromised node can wreak havoc on your consensus algorithm if it doesn’t have byzantine fault tolerance. If a compromised node requests to become the leader and proceeds to act destructively, it will bring your system down.

Conclusion

If you are designing or in the market to purchase a stateful cloud native system, and especially a stateful cloud native network application, you would do well to ask some of these questions.  The design of the system will vary greatly based on the answers.

 

 

Community post by W. Watson from CNCF’s cloud native network function working group
Source CNCF

Read More  Top 11 Things You Didn’t Know About Cloud Native Statefulness

 


For enquiries, product placements, sponsorships, and collaborations, connect with us at [email protected]. We'd love to hear from you!

Our humans need coffee too! Your support is highly appreciated, thank you!

aster.cloud

Related Topics
  • Cloud Native Computing
  • Cloud Native Computing Foundation
  • CNCF
You May Also Like
View Post
  • Cloud-Native
  • Multi-Cloud

Oracle Expands Multicloud Capabilities with AWS, Google Cloud, and Microsoft Azure

  • September 11, 2024
Cloud computing concept image double exposure Digitally Enhanced Smart City Concept with Cloud Computing
View Post
  • Cloud-Native
  • Computing
  • Hybrid Cloud
  • Multi-Cloud
  • Public Cloud

Make Your Business Resilient By Integrating These Best Practices Into Your Cloud Architecture

  • July 29, 2024
Huawei Cloud Cairo Region Goes Live
View Post
  • Cloud-Native
  • Computing
  • Platforms

Huawei Cloud Goes Live in Egypt

  • May 24, 2024
View Post
  • Cloud-Native
  • Computing
  • Engineering

10 Cloud Development Gotchas To Watch Out For

  • March 29, 2024
Storage Ceph
View Post
  • Cloud-Native
  • Data

The Growth Of IBM Storage Ceph – The Ideal Foundation For A Modern Data Lakehouse

  • January 30, 2024
Clouds
View Post
  • Cloud-Native
  • Platforms
  • Software Engineering

Microsoft Releases Azure Migrate Assessment Tool For .NET Application

  • January 14, 2024
View Post
  • Cloud-Native
  • Engineering
  • Platforms

Top Highlights From AWS Worldwide Public Sector Partners At Re:Invent 2023

  • December 27, 2023
View Post
  • Cloud-Native
  • Computing

Supercharging IBM’s Cloud-Native AI Supercomputer

  • December 24, 2023

Stay Connected!
LATEST
  • 1
    Enterprises are keen on cloud repatriation – but not for all workloads
    • June 4, 2025
  • 2
    The Summer Adventures : Hiking and Nature Walks Essentials
    • June 2, 2025
  • 3
    Just make it scale: An Aurora DSQL story
    • May 29, 2025
  • 4
    Reliance on US tech providers is making IT leaders skittish
    • May 28, 2025
  • Examine the 4 types of edge computing, with examples
    • May 28, 2025
  • AI and private cloud: 2 lessons from Dell Tech World 2025
    • May 28, 2025
  • 7
    TD Synnex named as UK distributor for Cohesity
    • May 28, 2025
  • Weigh these 6 enterprise advantages of storage as a service
    • May 28, 2025
  • 9
    Broadcom’s ‘harsh’ VMware contracts are costing customers up to 1,500% more
    • May 28, 2025
  • 10
    Pulsant targets partner diversity with new IaaS solution
    • May 23, 2025
about
Hello World!

We are aster.cloud. We’re created by programmers for programmers.

Our site aims to provide guides, programming tips, reviews, and interesting materials for tech people and those who want to learn in general.

We would like to hear from you.

If you have any feedback, enquiries, or sponsorship request, kindly reach out to us at:

[email protected]
Most Popular
  • Understand how Windows Server 2025 PAYG licensing works
    • May 20, 2025
  • By the numbers: How upskilling fills the IT skills gap
    • May 21, 2025
  • 3
    Cloud adoption isn’t all it’s cut out to be as enterprises report growing dissatisfaction
    • May 15, 2025
  • 4
    Hybrid cloud is complicated – Red Hat’s new AI assistant wants to solve that
    • May 20, 2025
  • 5
    Google is getting serious on cloud sovereignty
    • May 22, 2025
  • /
  • Technology
  • Tools
  • About
  • Contact Us

Input your search keywords and press Enter.