Remove Database Remove Performance Remove Software Architecture Remove Systems
article thumbnail

Microservices vs. monolithic architecture: Understanding the difference

Dynatrace

Monolithic architecture is development where an application is built on a single codebase, and the code is unilateral. Generally speaking, monolithic architecture is composed of three parts: Database. This is usually a relational database management system. Monolithic architecture cons. Easier to deploy.

article thumbnail

ABAC on SpiceDB: Enabling Netflix’s Complex Identity Types

The Netflix TechBlog

By Chris Wolfe , Joey Schorr , and Victor Roldán Betancort Introduction The authorization team at Netflix recently sponsored work to add Attribute Based Access Control (ABAC) support to AuthZed’s open source Google Zanzibar inspired authorization system, SpiceDB. A cleanup process to prune stale relationships from the database.

Cache 249
Insiders

Sign Up for our Newsletter

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Trending Sources

article thumbnail

Data Consistency in Apache Cassandra — Part 1

Software Architecture

Consistency The topic and concept of consistency is very important when you work with a distributed database like Cassandra. When you’re working with a database which runs on only one server, consistency is a non-issue. For all these benefits, the price you pay is lower consistency. So, your consistency guarantees are much lower.

article thumbnail

Ready for changes with Hexagonal Architecture

The Netflix TechBlog

We had an interesting challenge on our hands: we needed to build the core of our app from scratch, but we also needed data that existed in many different systems. At one point, more than 30 developers were working on it, and it had well over 300 database tables. This decision was not geared by performance issues?—?but

article thumbnail

5 key areas for tech leaders to watch in 2020

O'Reilly

Software architecture, infrastructure, and operations are each changing rapidly. The shift to cloud native design is transforming both software architecture and infrastructure and operations. Trends in software architecture, infrastructure, and operations.

article thumbnail

Trends and Topics for 2022

Adrian Cockcroft

I did a few talks on this subject early in the year, and linked this to the sustainability advantages of serverless architectures. The need for systems to be resilient is still increasing, and chaos engineering tools and techniques are developing as a key way to validate that resilience is working as designed.

article thumbnail

Data Consistency in Apache Cassandra — Part 2

Software Architecture

Source: [link] Cassandra has tunable consistency which means that not only on the database level, you can tune the immediate and eventual consistency of your data per query/operation by setting the read CL (consistency level) and write CL. You get high performance reads and writes. You’d never want to set write CL = ALL, read CL = ALL.

Tuning 100