#microservices — Public Fediverse posts
Live and recent posts from across the Fediverse tagged #microservices, aggregated by home.social.
-
I have the (somewhat biased) hunch that #monorepos drive up LLM token usage, because there is so much code to look at and everything related to testing requires the LLM to understand how testing for a huge project works. Working on a backend task and asking for e2e test additions, it needed to know that the frontend Playwright tests are not the right place to put the test.
#Microservices with dedicated repos will not have this problem.
-
I have the (somewhat biased) hunch that #monorepos drive up LLM token usage, because there is so much code to look at and everything related to testing requires the LLM to understand how testing for a huge project works. Working on a backend task and asking for e2e test additions, it needed to know that the frontend Playwright tests are not the right place to put the test.
#Microservices with dedicated repos will not have this problem.
-
How Netflix redesigned its Service Topology pipeline to scale real-time service mapping:
🔹 Separates resolution from enrichment & persistence
🔹 Propagates backpressure to Kafka (zero record drops)
🔹 Swaps gRPC for SSE on high-volume internal transfers📖 Read the full deep dive on #InfoQ ⇨ https://bit.ly/4x0Hrzc
#DistributedSystems #SoftwareArchitecture #Kafka #Microservices
-
How Netflix redesigned its Service Topology pipeline to scale real-time service mapping:
🔹 Separates resolution from enrichment & persistence
🔹 Propagates backpressure to Kafka (zero record drops)
🔹 Swaps gRPC for SSE on high-volume internal transfers📖 Read the full deep dive on #InfoQ ⇨ https://bit.ly/4x0Hrzc
#DistributedSystems #SoftwareArchitecture #Kafka #Microservices
-
𝗙𝗹𝗲𝘅𝗶𝗯𝗹𝗲 𝗔𝗿𝗰𝗵𝗶𝘁𝗲𝗰𝘁𝘂𝗿𝗲 𝗠𝗼𝗱𝗲𝗹𝘀: 𝗜𝗻𝘁𝗲𝗿𝘃𝗶𝗲𝘄 𝘄𝗶𝘁𝗵 𝗘𝗯𝗲𝗿𝗵𝗮𝗿𝗱 𝗪𝗼𝗹𝗳𝗳 🔄 What makes an architecture truly flexible? @ewolff, initiator of the #CPSA Advanced Level Module #FLEX, discusses domain boundaries, #microservices, moduliths & why flexibility is key to systems that can evolve.
Watch now 👉 https://t1p.de/brtyj
-
𝗙𝗹𝗲𝘅𝗶𝗯𝗹𝗲 𝗔𝗿𝗰𝗵𝗶𝘁𝗲𝗰𝘁𝘂𝗿𝗲 𝗠𝗼𝗱𝗲𝗹𝘀: 𝗜𝗻𝘁𝗲𝗿𝘃𝗶𝗲𝘄 𝘄𝗶𝘁𝗵 𝗘𝗯𝗲𝗿𝗵𝗮𝗿𝗱 𝗪𝗼𝗹𝗳𝗳 🔄 What makes an architecture truly flexible? @ewolff, initiator of the #CPSA Advanced Level Module #FLEX, discusses domain boundaries, #microservices, moduliths & why flexibility is key to systems that can evolve.
Watch now 👉 https://t1p.de/brtyj
-
Ten common micro-services issues, broken down by what to actually look for when debugging each one.
Covers distributed tracing gaps, cascade failures, API contract drift, deployment coordination, secrets management, service discovery, and more.
https://graylog.org/post/troubleshooting-the-top-10-microservices-issues/
-
Ten common micro-services issues, broken down by what to actually look for when debugging each one.
Covers distributed tracing gaps, cascade failures, API contract drift, deployment coordination, secrets management, service discovery, and more.
https://graylog.org/post/troubleshooting-the-top-10-microservices-issues/
-
A Step-by-Step Guide to Building a Microservices Architecture
Read more 👉 https://lttr.ai/At5B5
-
Мониторинг удалённых объектов без интернета: ESP, MacroDroid и старый Android
«SIM800/900 против старого телефона: битва за дачу» В системах удалённого мониторинга часто требуется передача данных из точек без покрытия интернета. Классическое решение — GSM-модули семейства SIM800/SIM900, управляемые через AT-команды, но у этого подхода, на мой личный взгляд и опыт, есть недостаток - написать кучу AT-команд. Одна из альтернатив — использование старого Android-смартфона как GSM-шлюза. У него уже есть: сотовая связь (для SMS), Wi-Fi (для локальной сети без интернета с ESP), установленное приложение MacroDroid и аккумулятор, зарядкой которого тоже можно управлять через MacroDroid Осталось только «подружить» его с микроконтроллером. В этой статье я предлагаю архитектуру двусторонней связи между ESP и телефоном через SMS с использованием HTTP-протокола в локальной сети. Рассмотрены сценарии: Запрос статуса от пользователя (SMS от пользователя → Телефон с MacroDroid → ESP → Телефон с MacroDroid → SMS пользователю) Экстренные уведомления от ESP (ESP → Телефон с MacroDroid → SMS пользователю) Всё работает без интернета, без облачных сервисов, без SIM800/900. Только ESP c MicroPython и старый сотовый телефон с MacroDroid, в который мы вдохнем жизнь и пусть он проведет остаток своей жизни с пользой. Прежде чем приступить к описанию сценариев, необходимо уточнить несколько технических моментов. 1. Схема сети Телефон работает в режиме точки доступа (AP) название в телефоне примерно «Мобильная точка доступа и модем», WiFi должен быть отключен (желательно в настройках убрать галочку с Автоматическое включение WiFi). В созданной телефоном локальной сети телефон (он же роутер) обычно имеет IP-адрес 192.168.43.1. В настройках «Мобильная точка доступа и модем» есть название сети и пароль (или вы сами их можете задать), которые необходимы для подключения к сети и нужен для написания кода на микроконтроллере.
https://habr.com/ru/articles/1068218/
#Mackdroid #esp32 #esp8266 #android #micropython #microservices #microcontrollers #мониторинг #мониторинг_сервера
-
Why do so many platform engineering initiatives fail, even in high-performing engineering organizations?
Chris Richardson explains how to combine #TeamTopologies with #microservices patterns to reduce cognitive load and accelerate delivery speed.
Learn why platform teams fall into the "infinity pool of technology" and how to build a “Thinnest Viable Platform” (TVP) that genuinely supports stream-aligned teams.
🎬 Watch now: https://bit.ly/4clIAsx
📄 #transcript included
-
Why do so many platform engineering initiatives fail, even in high-performing engineering organizations?
Chris Richardson explains how to combine #TeamTopologies with #microservices patterns to reduce cognitive load and accelerate delivery speed.
Learn why platform teams fall into the "infinity pool of technology" and how to build a “Thinnest Viable Platform” (TVP) that genuinely supports stream-aligned teams.
🎬 Watch now: https://bit.ly/4clIAsx
📄 #transcript included
-
In microservice architectures, single-receiver, request/response calls over HTTP or gRPC are the most common synchronous style, per Microsoft's .NET architecture guidance.
-
In microservice architectures, single-receiver, request/response calls over HTTP or gRPC are the most common synchronous style, per Microsoft's .NET architecture guidance.
-
A practical guide to dead-letter queues: catching poison messages, choosing retry vs discard policies, and designing safe replay strategies.
https://www.glukhov.org/app-architecture/integration-patterns/dead-letter-queues/
-
A practical guide to dead-letter queues: catching poison messages, choosing retry vs discard policies, and designing safe replay strategies.
https://www.glukhov.org/app-architecture/integration-patterns/dead-letter-queues/
-
How do you migrate 3 monoliths to 120+ microservices without a dedicated migration budget?
A payroll & HR software team pulled it off over 5 years with a single strategy: The Hard-Stop Rule.
💡 Instead of modifying the old monoliths, every new feature was built as its own standalone service.
The #InfoQ article covers:
🔹 Pull-based migration architecture
🔹 Cost-saving deployment tactics
🔹 Key tools & hard-learned lessons📰 Read the case study: https://bit.ly/44R1GTt
#Microservices #Azure #PlatformEngineering #SoftwareArchitecture
-
How do you migrate 3 monoliths to 120+ microservices without a dedicated migration budget?
A payroll & HR software team pulled it off over 5 years with a single strategy: The Hard-Stop Rule.
💡 Instead of modifying the old monoliths, every new feature was built as its own standalone service.
The #InfoQ article covers:
🔹 Pull-based migration architecture
🔹 Cost-saving deployment tactics
🔹 Key tools & hard-learned lessons📰 Read the case study: https://bit.ly/44R1GTt
#Microservices #Azure #PlatformEngineering #SoftwareArchitecture
-
𝗝𝗛𝗶𝗽𝘀𝘁𝗲𝗿:
https://thewhale.cc/posts/jhipster
JHipster is a development platform to generate, develop and deploy Spring Boot + Angular/React Web applications and Spring microservices.
-
𝗝𝗛𝗶𝗽𝘀𝘁𝗲𝗿:
https://thewhale.cc/posts/jhipster
JHipster is a development platform to generate, develop and deploy Spring Boot + Angular/React Web applications and Spring microservices.
-
🤔 So, apparently, #microservices are the Schrödinger's cat of software architecture: everyone knows what they are, but nobody can define them. 🙄 Cue the endless debates over whether your service should be the size of a peanut or a planet, while we all nod sagely as if anyone actually knows. 🚀
https://var0.xyz/posts/what-even-are-microservices.html #softwarearchitecture #techdebate #Schrödingerscat #codinghumor #devcommunity #HackerNews #ngated -
🤔 So, apparently, #microservices are the Schrödinger's cat of software architecture: everyone knows what they are, but nobody can define them. 🙄 Cue the endless debates over whether your service should be the size of a peanut or a planet, while we all nod sagely as if anyone actually knows. 🚀
https://var0.xyz/posts/what-even-are-microservices.html #softwarearchitecture #techdebate #Schrödingerscat #codinghumor #devcommunity #HackerNews #ngated -
software-architektur.tv: Kollaborative Modellierung, EventStorming im Praxistest
In dieser Episode diskutiert Eberhard Wolff mit Tom Asel und Daniel Sack darüber, wie EventStorming als Baustein der kollaborativen Modellierung funktioniert.
#AgileSoftwareentwicklung #IT #Journal #Microservices #Softwarearchitektur #news
-
software-architektur.tv: Kollaborative Modellierung, EventStorming im Praxistest
In dieser Episode diskutiert Eberhard Wolff mit Tom Asel und Daniel Sack darüber, wie EventStorming als Baustein der kollaborativen Modellierung funktioniert.
#AgileSoftwareentwicklung #IT #Journal #Microservices #Softwarearchitektur #news
-
Microservices Masterclass by David Farley is the featured course 🎓 on Leanpub!
Microservices are a great approach for building software at scale. But although the ideas at the root of microservices may sound simple, this is not a simple approach.
Link: https://leanpub.com/courses/leanpub/microservicesmasterclass
#Computer_programming #Microservices #Digital_transformation
-
Microservices Masterclass by David Farley is the featured course 🎓 on Leanpub!
Microservices are a great approach for building software at scale. But although the ideas at the root of microservices may sound simple, this is not a simple approach.
Link: https://leanpub.com/courses/leanpub/microservicesmasterclass
#Computer_programming #Microservices #Digital_transformation
-
Partage, veille et lecture : Fault : injecter du chaos dans vos microservices | Une tasse de café https://une-tasse-de.cafe/blog/fault/ Découvrez fault, un proxy de chaos engineering qui injecte des pannes réseau entre vos services pour révéler leurs faiblesses avant la production. #ChaosEngineering #Resilience #Microservices #Python #Docker #Shaarli https://dryusdan.link/shaare/8ILgNg -
Partage, veille et lecture : Fault : injecter du chaos dans vos microservices | Une tasse de café https://une-tasse-de.cafe/blog/fault/ Découvrez fault, un proxy de chaos engineering qui injecte des pannes réseau entre vos services pour révéler leurs faiblesses avant la production. #ChaosEngineering #Resilience #Microservices #Python #Docker #Shaarli https://dryusdan.link/shaare/8ILgNg -
𝗠𝗶𝗰𝗿𝗼𝗸𝘂𝗯𝗲𝘀:
#Framework #Microservices #Microkubes
https://thewhale.cc/posts/microkubes
Microkubes is an open source framework, for building data management platforms by using microservices.
-
𝗠𝗶𝗰𝗿𝗼𝗸𝘂𝗯𝗲𝘀:
#Framework #Microservices #Microkubes
https://thewhale.cc/posts/microkubes
Microkubes is an open source framework, for building data management platforms by using microservices.
-
Why decompose by subdomain instead of by business capability? Both patterns address the same underlying problem: how to define correct, loosely coupled service boundaries in a complex application.
-
Why decompose by subdomain instead of by business capability? Both patterns address the same underlying problem: how to define correct, loosely coupled service boundaries in a complex application.
-
Decompose by subdomain is a microservices pattern that defines services corresponding to domain-driven design subdomains rather than business capabilities.
-
Decompose by subdomain is a microservices pattern that defines services corresponding to domain-driven design subdomains rather than business capabilities.
-
A business capability refers to a business activity aimed at generating value, for example order management or customer management, and each can map to its own microservice.
-
A business capability refers to a business activity aimed at generating value, for example order management or customer management, and each can map to its own microservice.
-
Applying decompose by business capability requires enough insight into an organization's business units, typically drawing on subject matter experts for each unit.
-
Applying decompose by business capability requires enough insight into an organization's business units, typically drawing on subject matter experts for each unit.
-
Decompose by business capability is a microservices pattern that defines services corresponding to what a business does to generate value, such as payments, accounts, or customer service.
-
Decompose by business capability is a microservices pattern that defines services corresponding to what a business does to generate value, such as payments, accounts, or customer service.
-
Excited to be a part of #JakartaOne Livestream 2026 Program Committee, alongside an incredible group of community members!
We're especially looking forward to reviewing sessions covering:
🔹 Jakarta EE
🔹 Cloud-native Java
🔹 AI and enterprise development
🔹 Modernisation and microservicesCan’t wait to see what the community submits this year. 🙌
CFP & Registration 👉 https://jakartaone.jakarta.ee/jakartaone-livestream-2026/
#JakartaEE #Java #opensource #cloudnative #AI #microservices
-
Excited to be a part of #JakartaOne Livestream 2026 Program Committee, alongside an incredible group of community members!
We're especially looking forward to reviewing sessions covering:
🔹 Jakarta EE
🔹 Cloud-native Java
🔹 AI and enterprise development
🔹 Modernisation and microservicesCan’t wait to see what the community submits this year. 🙌
CFP & Registration 👉 https://jakartaone.jakarta.ee/jakartaone-livestream-2026/
#JakartaEE #Java #opensource #cloudnative #AI #microservices
-
Microservices Masterclass by David Farley is the featured course 🎓 on Leanpub!
Microservices are a great approach for building software at scale. But although the ideas at the root of microservices may sound simple, this is not a simple approach.
Link: https://leanpub.com/courses/leanpub/microservicesmasterclass
#Computer_programming #Microservices #Digital_transformation
-
How are microservice boundaries identified? One documented approach starts with a bounded context, then examines the aggregates inside it, since aggregates often make good candidates for individual services.