Микросервисы / распределенные системы
4.22K subscribers
107 photos
1 video
21 files
318 links
Мысли, новости и ссылки по распределенным система и распределенной разработке.

Рекламу не размещаю.
Download Telegram
Не совсем по теме канала, но это просто бомба 😍

askgit is a command-line tool for running SQL queries on git repositories. It's meant for ad-hoc querying of git repositories on disk through a common interface (SQL), as an alternative to patching together various shell commands. It can execute queries that look like:

-- how many commits have been authored by user@email.com?
SELECT count(*) FROM commits WHERE author_email = 'user@email.com'


-- Returns author emails with lines added/removed, ordered by total number of commits in the history (excluding merges):
SELECT count(DISTINCT commits.hash) AS commits, SUM(additions) AS additions, SUM(deletions) AS deletions, author_email
FROM commits LEFT JOIN stats('', commits.hash)
WHERE commits.parents < 2
GROUP BY author_email ORDER BY commits


…..

https://github.com/askgitdev/askgit
Послезавтра вечером поговорим с Сашей и всеми желающими о компетенции архитектора.

Вот если так подумать, то какие компетенции архитектора являются универсальными?
А ведь немало компаний пытаются оценить компетенции архитектора. Какие?
Ну а сможет ли верховный гуру-архитектор из одной компании перейти в другую таким же верховным гуру-архитектором? А если отбросить знание особенностей внутренних систем и того, что с ними связано, какие компетенции останутся при переходе из компании в компанию?

Вот о компетенциях о пообщаемся 🙂
Подключиться к беседе смогут все желающие, больше мнений - выше польза.


Кстати, вот для архитектора, проектирующего микросервисные решения уже проще с компетенциями, чем для архитектора в принципе :)

https://archdays.ru/#online
Пообщались, получился клабхаусный формат =)
https://www.youtube.com/watch?v=GRwcQ88-3FY
Свежак, SRE Doesn’t Scale 🤷‍♂️

«My advice is to stop thinking about SRE as an implementation specifically and instead think about the problems it’s solving a bit more abstractly. It’s unlikely your organization has Google-level resources, so you need to consider the constraints. You need to think about the roles and responsibilities of developers as well as your ops folks. They will change significantly with microservices and cloud out of necessity. »

https://bravenewgeek.com/sre-doesnt-scale/
Forwarded from Vlad
O’Reilly дают плюшку в честь выхода моей книги: бесплатный доступ в O’Reilly Online Learning на месяц.
За месяц можно почитать мою книгу, и еще кучу всего что они там выкладыют (все свои книги, addisson-wesley, manning, курсы, онлайн-треннинги, и т.д.) Промокод: LDDD21
Регистрация: https://learning.oreilly.com/get-learning/?code=LDDD21
Forwarded from Антон Бевзюк
28 октября выйдет новая книга Vaughn Vernon, Tomasz Jaskuła - Strategic Monoliths and Microservices: Driving Innovation Using Purposeful Architecture. Предзаказ доступен на амазоне: https://www.amazon.com/Strategic-Monoliths-Microservices-Innovation-Architecture-ebook-dp-B09D2YW2HG/dp/B09D2YW2HG/ref=mt_other?_encoding=UTF8&me=&qid=1634370996
У Мартина Фаулера новая полезная статья за авторством Andrew Harmel-Law

Architecture need not be a monologue; delivered top-down from the minds and mouths of a centralised few. This article describes another way to do architecture; as a series of conversations, driven by a decentralised and empowering decision-making technique, and supported by four learning and alignment mechanisms: Decision Records, Advisory Forum, Team-sourced Principles, and a Technology Radar

https://martinfowler.com/articles/scaling-architecture-conversationally.html
Статья от инженеров uber про производительность в микросервисах
https://eng.uber.com/crisp-critical-path-analysis-for-microservice-architectures/
Организация разработки микросервисов в Lyft

Part One: History of development and test environments
https://eng.lyft.com/scaling-productivity-on-microservices-at-lyft-part-1-a2f5d9a77813

Part Two: Optimizing for fast local development
https://eng.lyft.com/scaling-productivity-on-microservices-at-lyft-part-2-optimizing-for-fast-local-development-9f27a98b47ee
Forwarded from Event Storming
Шпаргалка по событиям 👌
Предлагаю в комментариях к этому сообщению поделиться друг с другом полезными и интересными Telegram-каналами, которые читаете :)
Всех с наступающим Новым Годом! 🎄
Пусть системы будут надежными, а их пользователи - довольными :)