Trending

#distributedsystems

Latest posts tagged with #distributedsystems on Bluesky

Posts tagged #distributedsystems

Preview
Building Scalable Applications with Azure Kubernetes Service (AKS) In today’s fast-paced digital era, scalability is a critical component of any application architecture. Businesses need applications that can handle varying workloads, ensure minimal downtime...

Building Scalable Applications with Azure Kubernetes Service (AKS)

www.ekascloud.com/our-blog/bui...
#BackendDevelopment #SoftwareEngineering #AppDevelopment #DistributedSystems #Scalability #SystemDesign

0 0 0 0
Preview
The Fencing Gap: Why Your Distributed Lock Isn't Safe (and How to Fix It)

Your distributed lock is silently failing. Learn how GC pauses and clock skew break DynamoDB, Redis, and ZooKeeper locks and how fencing tokens close the gap. #distributedsystems

1 0 0 0
Preview
The correlation when building anything; Go 📖Chapter 1 summary of pragprog.com/titles/tjgo/distributed-services-with-go/ The correlation when building anything Every server you ever build has exactly three layers: LAYER 1 DATA "what do I st...

The correlation when building anything:

what needs to exist? -> your data structures (Layer 1)
what can it do? -> your logic/methods (Layer 2)
how does the world -> your transport (Layer 3)
reach it?

more: ashwiniag.com/the-correlat...

#golang #distributedsystems #buildinpublic

2 1 0 0

... #MachineLearning #
-
How do you #trust a chaotic #mobile P2P network? Enter "Nodes of Truth." #Virtual, duplicated #consensus entities spanning multiple devices. If a user drops offline, the virtual node survives, securing the network's #state and #reputation. 🛡️🕸️
#DistributedSystems #P2P

2 0 0 0

also ask these

Is it a big struct? -> pointer
Will it be mutated? -> pointer
Is it simple data (int,
string, small struct)? -> value (no pointer)

#golang #distributedsystems #learninpublic #sre

1 0 0 0

I often notice confusion around when to use * and & in your code.

- define with * when the caller should share, not copy
- use & when creating something to return as a pointer

github.com/ashwiniag/go...

#golang #distributedsystems #learninpublic #sre

0 0 1 0
Post image

designing a JSON/HTTP handler comes down to 3 steps.

So, why define structs at all?
- compiler checks field names (typos caught at compile time)
- self-documenting the struct IS the API contract
- it's also where to make "illegal states unrepresentable"!

#golang #distributedsystems #buildinpublic

2 1 0 0
Preview
Distributed Services with Go Master the techniques, tools, and tricks that skilled Go programmers use every day.

🧵 took up a new challenge building "Distributed Services with Go" by @travisjeffery.bsky.social

following the book, writing as I learn and sharing what my curious mind finds along the way...

pragprog.com/titles/tjgo/distributed-services-with-go/

#golang #distributedsystems #learninpublic #sre

3 0 6 0
Preview
uint64 what and why uint = unsigned integer, no negative numbers. Range is 0 to a very large positive number. var x int // -9,223,372,036,854,775,808 to +9,223,372,036,854,775,807 var x uint64 // 0 to 18,446,744...

a log offset is defined as uint64 in Go. not int. not int64.

because an offset can never be -ve, index -3 makes no sense. By choosing uint64, the compiler refuses it for you

So, your types are encoding business rules. wow!

ashwiniag.com/uint64-what-...

#golang #distributedsystems #buildinpublic

4 1 1 1
Preview
Which Mutex to use in Go Let's understand this with log structure example. A commit log is just an append-only slice // at its heart, this is all a log is type Log struct { records []string } func (l *Log) Append(reco...

which Mutex should you use in Go?

None? or sync.Mutex or sync.RWMutex, the answer comes from one question: who is touching this data concurrently?

wrote about how to reason through it 👇
ashwiniag.com/which-mutex-to-use-in-go/

#golang #distributedsystems #buildinpublic #learninpublic

1 0 0 1

🚀 Distributed Systems Engineer @ E2B – Build the next cloud platform for AI agents! Work on billions of sandboxes, <200ms startup, deep Linux kernel (eBPF, Firecracker). 📍 Prague, Czech Republic. #DistributedSystems #Go #Rust #OpenSource #TechJobs #AI aihackerjobs.com/company/e2bd...

1 0 0 0
Preview
Why Your Retry Logic Is Taking Down Your System (And How to Fix It)

Naive retry logic can cause retry storms in distributed systems, amplifying failures and leading to cascading outages. Learn safer retry strategies.C #distributedsystems

0 0 0 0
Preview
The Future of Cloud Without Data Centers Cloud computing has become the backbone of the modern digital world. From streaming services and mobile apps to enterprise software and artificial intelligence, almost everything today runs on cl...

The Future of Cloud Without Data Centers
www.ekascloud.com/our-blog/the...
#CloudComputing #EdgeComputing #Serverless #FutureTech #Decentralization #DistributedSystems #Web3 #Blockchain #CloudInnovation #TechTrends #DigitalTransformation #AI #IoT #FogComputing #NextGenTech #CloudFuture #DataLess

1 0 0 0
Preview
Discord Engineers Add Distributed Tracing to Elixir's Actor Model Without Performance Penalty Discord engineering detailed how they added distributed tracing to Elixir's actor model. Their custom Transport library wraps messages with trace context and uses dynamic sampling to handle million-us...

Discord shared how they added distributed tracing to their Elixir infrastructure at scale. The challenge: Elixir's actor model lacks a built-in metadata layer for trace context, such as HTTP headers. #elixir #distributedsystems #observability #opentelemetry #discord www.infoq.com/news/2026/03...

4 1 0 0
Preview
AGI Won't Live in a Datacenter While corporations race to build $500 billion datacenters, we've been quietly building something...

AGI Won't Live in a Datacenter While corporations race to build $500 billion datacenters, we've been quietly building something different: the infrastructure for AI minds that own themselve...

#ai #opensource #webassembly #distributedsystems

Origin | Interest | Match

1 0 0 0
Preview
Why Predictability Defines Distributed Systems | Aerospike Scalability and availability are no longer enough. Learn why predictability is becoming the key to building stable, high-performance systems in the AI era.

Predictability is becoming the new standard for modern systems.

AI drives unpredictable workloads where one request fans out into many, making tail latency the real challenge.
At Aerospike, we focus on consistent low-latency at scale.

Read more: https://monkeylink.co/d894f8

#DistributedSystems

0 0 0 0
Preview
Kolejność wiadomości w systemach rozproszonych - devszczepaniak.pl Kolejność wiadomości obok exactly-once delivery to największy problem systemów rozproszonych. Poznaj analizę problemu i jego rozwiązania.

Rozproszone systemy mają duże zalety i są zasadne, ale przynoszą też zupełnie nowy wachlarz wyzwań, takich jak np. kolejność wiadomości. Jak sobie z tym poradzić - oto refleksje.

#DistributedSystems #architekturaOprogramowania #programowanie

devszczepaniak.pl/kolejnosc-wi...

0 0 0 0
What Functional Programmers Get Wrong About Systems - Ian Duncan Type systems verify properties of programs. Production correctness is a property of systems. The gap between these is where the interesting failures live.

I just spent 1 1/2 hours reading this absolutely amazing blog post by @iankduncan.com: www.iankduncan.com/engineering/...

And if you're likely to get nerdsniped by me mentioning #distributedsystems, #functionalprogramming, you definitely should read it too.

1 0 1 0
Preview
Systems Engineering in the Age of AI Resilient, but Not Immune

Full analysis:
helayoty.substack.com/p/systems-en...

#Kubernetes #AI #DistributedSystems #kubecon #CloudNative

0 0 0 0

Do not to force both parties to use a single protocol when different codecs are encountered, but instead build a shared interface upon which both can interact.

#distributedsystems

0 0 1 0
How this small German village got dirt-cheap energy prices
How this small German village got dirt-cheap energy prices YouTube video by DW Planet A

✨How Germany’s Feldheim went from an agricultural village to a clean energy role model.. youtu.be/NW_ThUR7Wus (DW News) #Germany #Energiewende #Distributedsystems #Renewables #Resilience

1 1 0 0
Microgrids and Resilience
Microgrids and Resilience YouTube video by Tech Knowlogy

✨ ''Resilience in this context, refers to the ability of a power system to withstand and recover from disruptions, caused by extreme events or other disturbances'' youtu.be/w85G7yJHrQo #distributedsystems
#microgrids #resilience #futurescapes #climate #security #complexity

2 1 0 0
Preview
Event Sourcing Bought separately

Event Sourcing by Martin Dilger and Greg Young is the featured bundle on Leanpub!

Link: leanpub.com/b/eventsourc...

#SoftwareEngineering #EventDrivenArchitecture #SoftwareArchitecture #Software #DistributedSystems

3 0 0 0
Preview
What Nvidia's Latest Announcements Tell Us About AI Infrastructure Lock-In Jensen Huang’s keynote at GTC last week was, as ever, a presentation masterclass.

What Nvidia's Latest Announcements Tell Us About AI Infrastructure Lock-In

whyaiman.substack.com/p/what-nvidi...

#EnterpriseAI #AIArchitecture #AIINfrastructure #DistributedSystems

0 0 0 0
Post image

#Netflix built Graph Abstraction - a high-throughput system designed to manage large scale graph data in real time.

• Millisecond latency across 650TB+ of data
• Global Availability via asynchronous replication
• Design for high-scale performance

🔗 bit.ly/47UDXDF

#InfoQ #DistributedSystems

2 0 0 0
Preview
How Reality Breaks Every Beautiful System You Think You Designed The First Four Phases of Building Aletheia One In any serious architecture, there’s a...

The first 4 phases of AletheiaOne weren’t progress. They were constraint, failure, and rewriting everything that couldn’t survive reality.
If your invariants don’t hold under adversarial conditions, you don’t have a system. You have a story.
dev.to/doomhammerhe...

#DistributedSystems #FormalMethods

0 0 0 0
Preview
QCon London 2026: Introducing Tansu.io — Rethinking Kafka for Lean Operations Peter Morgan introduced Tansu at QCon London, an open-source, Kafka-compatible, stateless, leaderless broker that scales to zero, with pluggable storage (S3, SQLite, Postgres), broker-side schema vali...

Peter Morgan at QCon London: what if Kafka brokers had no state? Tansu keeps Kafka's protocol but replaces replication and leader elections with pluggable storage — S3, SQLite, or Postgres. www.infoq.com/news/2026/03...

#kafka #opensource #postgres #dataengineering #streaming #distributedsystems

2 0 1 0
Preview
QCon London 2026: Kleppmann on Mitigating Europe's Cloud Dependency with Local-First Software Europe is completely dependent on US cloud services, Martin Kleppmann told QCon London. His fix: commoditise everything. He walked through three technologies he's helped build: multi-cloud via de fact...

Martin Kleppmann's QCon London keynote:

www.infoq.com/news/2026/03...

#techsovereignty #localfirst #atprotocol #distributedsystems #multicloud

0 0 0 0
如果服务器悄悄“猝死”,你的系统还能活几秒?揭秘分布式集群的“续命”保底机制 - Tony Bai 本文永久链接 - https://tonybai.com/2026/03/20/heartbeats-in-distributed-systems 大家好,我是Tony Bai。 在开发单体应用时,我们很少操心“服务器死没死”的问题——进程挂了就是挂了,整个服务直接 502。但在

如果服务器悄悄“猝死”,你的系统还能活几秒?揭秘分布式集群的“续命”保底机制 本文永久链接 – tonybai.com/2026/03/20/heartbeats-in...

#技术志 #DistributedSystems #etcd #FailureDetection #Go #Golang #GossipProtocol #Gossip协议 #heartbeat #HeartbeatInterval #HighAvailability

Origin | Interest | Match

0 1 0 0
Post image

Your 'detailed' spec might be sabotaging your distributed system. Learn why natural language fails to prevent critical architectural flaws, even with LLMs generating code.

thepixelspulse.com/posts/detailed-spec-is-c...

#distributedsystems #llms #codegeneration

1 0 0 0