-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharchitecture.html
More file actions
47 lines (46 loc) · 1.67 KB
/
architecture.html
File metadata and controls
47 lines (46 loc) · 1.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
---
layout: default
title: Architecture - Cassandra Docs
description: Learn about Cassandra's scalable microservices architecture.
---
<section class="py-20 bg-anthracite text-blanc">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 fade-in">
<h1 class="text-4xl md:text-5xl font-bold text-center mb-12">
Scalable Microservices Architecture
</h1>
<div class="text-center mb-12">
<p class="text-xl mb-8">
Built on Google Cloud for enterprise-grade performance, security, and
reliability.
</p>
<img
src="/Cassandra Schema.png"
alt="Cassandra Architecture Schema"
class="rounded-lg shadow-lg mx-auto mb-8"
/>
</div>
<h3 class="text-2xl font-semibold mb-6 text-center">INFRASTRUCTURE:</h3>
<div class="grid md:grid-cols-2 gap-8">
<div class="flex items-center">
<i class="fas fa-box text-2xl text-bleu-glacier mr-4"></i>
<p class="text-lg">Containerized microservices</p>
</div>
<div class="flex items-center">
<i class="fas fa-bolt text-2xl text-bleu-glacier mr-4"></i>
<p class="text-lg">Event-driven pipeline</p>
</div>
<div class="flex items-center">
<i class="fas fa-cloud text-2xl text-bleu-glacier mr-4"></i>
<p class="text-lg">Cloud-native storage</p>
</div>
<div class="flex items-center">
<i class="fas fa-infinity text-2xl text-bleu-glacier mr-4"></i>
<p class="text-lg">Infinite scalability</p>
</div>
</div>
<p class="text-center text-lg mt-12 italic">
While one doctor waits hours per patient, Cassandra processes entire
caseloads in parallel.
</p>
</div>
</section>