home.social

#microservices — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #microservices, aggregated by home.social.

fetched live
  1. 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.

    #aiSlop

  2. 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.

    #aiSlop

  3. 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 #InfoQbit.ly/4x0Hrzc

    #DistributedSystems #SoftwareArchitecture #Kafka #Microservices

  4. 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 bit.ly/4x0Hrzc

  5. 𝗙𝗹𝗲𝘅𝗶𝗯𝗹𝗲 𝗔𝗿𝗰𝗵𝗶𝘁𝗲𝗰𝘁𝘂𝗿𝗲 𝗠𝗼𝗱𝗲𝗹𝘀: 𝗜𝗻𝘁𝗲𝗿𝘃𝗶𝗲𝘄 𝘄𝗶𝘁𝗵 𝗘𝗯𝗲𝗿𝗵𝗮𝗿𝗱 𝗪𝗼𝗹𝗳𝗳 🔄 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 👉 t1p.de/brtyj

    #iSAQB #SoftwareArchitecture

  6. 𝗙𝗹𝗲𝘅𝗶𝗯𝗹𝗲 𝗔𝗿𝗰𝗵𝗶𝘁𝗲𝗰𝘁𝘂𝗿𝗲 𝗠𝗼𝗱𝗲𝗹𝘀: 𝗜𝗻𝘁𝗲𝗿𝘃𝗶𝗲𝘄 𝘄𝗶𝘁𝗵 𝗘𝗯𝗲𝗿𝗵𝗮𝗿𝗱 𝗪𝗼𝗹𝗳𝗳 🔄 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 👉 t1p.de/brtyj

    #iSAQB #SoftwareArchitecture

  7. 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.

    graylog.org/post/troubleshooti

    #Microservices #Observability #DevOps #SIEM

  8. 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.

    graylog.org/post/troubleshooti

    #Microservices #Observability #DevOps #SIEM

  9. Мониторинг удалённых объектов без интернета: 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. В настройках «Мобильная точка доступа и модем» есть название сети и пароль (или вы сами их можете задать), которые необходимы для подключения к сети и нужен для написания кода на микроконтроллере.

    habr.com/ru/articles/1068218/

    #Mackdroid #esp32 #esp8266 #android #micropython #microservices #microcontrollers #мониторинг #мониторинг_сервера

  10. 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: bit.ly/4clIAsx

    📄 #transcript included

    #SoftwareArchitecture #InfoQ

  11. Why do so many platform engineering initiatives fail, even in high-performing engineering organizations?

    Chris Richardson explains how to combine with 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: bit.ly/4clIAsx

    📄 included

  12. In microservice architectures, single-receiver, request/response calls over HTTP or gRPC are the most common synchronous style, per Microsoft's .NET architecture guidance.

    #Microservices #Fintech

  13. In microservice architectures, single-receiver, request/response calls over HTTP or gRPC are the most common synchronous style, per Microsoft's .NET architecture guidance.

    #Microservices #Fintech

  14. A practical guide to dead-letter queues: catching poison messages, choosing retry vs discard policies, and designing safe replay strategies.

    #Dev #Microservices

    glukhov.org/app-architecture/i

  15. A practical guide to dead-letter queues: catching poison messages, choosing retry vs discard policies, and designing safe replay strategies.

    glukhov.org/app-architecture/i

  16. 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: bit.ly/44R1GTt

    #Microservices #Azure #PlatformEngineering #SoftwareArchitecture

  17. 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 article covers:
    🔹 Pull-based migration architecture
    🔹 Cost-saving deployment tactics
    🔹 Key tools & hard-learned lessons

    📰 Read the case study: bit.ly/44R1GTt

  18. 𝗝𝗛𝗶𝗽𝘀𝘁𝗲𝗿:

    #JS #Microservices #JHipster

    thewhale.cc/posts/jhipster

    JHipster is a development platform to generate, develop and deploy Spring Boot + Angular/React Web applications and Spring microservices.

  19. 𝗝𝗛𝗶𝗽𝘀𝘁𝗲𝗿:

    #JS #Microservices #JHipster

    thewhale.cc/posts/jhipster

    JHipster is a development platform to generate, develop and deploy Spring Boot + Angular/React Web applications and Spring microservices.

  20. 🤔 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. 🚀
    var0.xyz/posts/what-even-are-m #softwarearchitecture #techdebate #Schrödingerscat #codinghumor #devcommunity #HackerNews #ngated

  21. 🤔 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. 🚀
    var0.xyz/posts/what-even-are-m #softwarearchitecture #techdebate #Schrödingerscat #codinghumor #devcommunity #HackerNews #ngated

  22. 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: leanpub.com/courses/leanpub/mi

    #Computer_programming #Microservices #Digital_transformation

  23. 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: leanpub.com/courses/leanpub/mi

    #Computer_programming #Microservices #Digital_transformation

  24. 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
  25. 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
  26. 𝗠𝗶𝗰𝗿𝗼𝗸𝘂𝗯𝗲𝘀:

    #Framework #Microservices #Microkubes

    thewhale.cc/posts/microkubes

    Microkubes is an open source framework, for building data management platforms by using microservices.

  27. 𝗠𝗶𝗰𝗿𝗼𝗸𝘂𝗯𝗲𝘀:

    #Framework #Microservices #Microkubes

    thewhale.cc/posts/microkubes

    Microkubes is an open source framework, for building data management platforms by using microservices.

  28. 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.

    #Fintech #DDD #Microservices

  29. 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.

    #Fintech #DDD #Microservices

  30. Decompose by subdomain is a microservices pattern that defines services corresponding to domain-driven design subdomains rather than business capabilities.

    #Fintech #DDD #Microservices

  31. Decompose by subdomain is a microservices pattern that defines services corresponding to domain-driven design subdomains rather than business capabilities.

    #Fintech #DDD #Microservices

  32. 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.

    #Fintech #Microservices #BusinessCapability

  33. 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.

    #Fintech #Microservices #BusinessCapability

  34. Applying decompose by business capability requires enough insight into an organization's business units, typically drawing on subject matter experts for each unit.

    #Fintech #Microservices #Architecture

  35. Applying decompose by business capability requires enough insight into an organization's business units, typically drawing on subject matter experts for each unit.

    #Fintech #Microservices #Architecture

  36. 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.

    #Fintech #Microservices #BusinessCapability

  37. 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.

    #Fintech #Microservices #BusinessCapability

  38. 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 microservices

    Can’t wait to see what the community submits this year. 🙌

    CFP & Registration 👉 jakartaone.jakarta.ee/jakartao

    #JakartaEE #Java #opensource #cloudnative #AI #microservices

  39. 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 microservices

    Can’t wait to see what the community submits this year. 🙌

    CFP & Registration 👉 jakartaone.jakarta.ee/jakartao

    #JakartaEE #Java #opensource #cloudnative #AI #microservices

  40. 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: leanpub.com/courses/leanpub/mi

    #Computer_programming #Microservices #Digital_transformation

  41. 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.

    #Fintech #Microservices #DDD