HackerTrans
トップ新着トレンドコメント過去質問紹介求人

ReclusiveCoder

no profile record

投稿

Skip Elasticsearch: Build Fast Full-Text Search Right in Supabase

7 ポイント·投稿者 ReclusiveCoder·9 か月前·1 コメント

コメント

ReclusiveCoder
·7 か月前·議論
Well said!

Every service boundary replaces a function call with a network request. That one choice cascades into distributed transactions, eventual consistency, and operational overhead most teams don't need. ¯\_(ツ)_/¯
ReclusiveCoder
·7 か月前·議論
That's the right approach. This is what the article suggests:

>> For most systems, well-structured modular monoliths (for most common applications, including startups) or SOA (enterprises) deliver comparable scalability and resilience as microservices, without the distributed complexity tax. Alternatively, you may also consider well-sized services (macroservices, or what Gartner proposed as miniservices) instead of tons of microservices.
ReclusiveCoder
·7 か月前·議論
Try sharing it with them anyway!:D
ReclusiveCoder
·7 か月前·議論
Indeed, that's whatthe article captures here:

>> Microservices make sense in very specific scenarios where distinct business capabilities need independent scaling and deployment. For example, payment processing (security-critical, rarely updated) differs fundamentally from recommendation engine (memory-intensive, constantly A/B tested). These components have different scaling patterns, deployment cycles, and risk profiles, which justify separate services.