• Что бы вступить в ряды "Принятый кодер" Вам нужно:
    Написать 10 полезных сообщений или тем и Получить 10 симпатий.
    Для того кто не хочет терять время,может пожертвовать средства для поддержки сервеса, и вступить в ряды VIP на месяц, дополнительная информация в лс.

  • Пользаватели которые будут спамить, уходят в бан без предупреждения. Спам сообщения определяется администрацией и модератором.

  • Гость, Что бы Вы хотели увидеть на нашем Форуме? Изложить свои идеи и пожелания по улучшению форума Вы можете поделиться с нами здесь. ----> Перейдите сюда
  • Все пользователи не прошедшие проверку электронной почты будут заблокированы. Все вопросы с разблокировкой обращайтесь по адресу электронной почте : info@guardianelinks.com . Не пришло сообщение о проверке или о сбросе также сообщите нам.

? How Would You Design Google Docs? (Plus: Deployment Strategies, Trends & a Book Giveaway!)

Lomanu4 Оффлайн

Lomanu4

Команда форума
Администратор
Регистрация
1 Мар 2015
Сообщения
1,481
Баллы
155
In this edition, we dive into real-world system design, safe deployment strategies, a signed book giveaway, and the latest trends in software architecture ?


Пожалуйста Авторизируйтесь или Зарегистрируйтесь для просмотра скрытого текста.


? How to Deploy Services Without Downtime
Deploying services can be risky. Choosing the right deployment strategy matters:

? Multi-Service Deployment
Simple to implement, but high risk — all services are upgraded at once, and rollbacks are complex.

? Blue-Green Deployment
Two identical environments: “blue” for staging, “green” for production. After testing, traffic is routed to the new version. Easier rollback, but expensive.

? Canary Deployment
Roll out updates gradually to small user groups. Safer and cheaper than blue-green but harder to monitor.

? A/B Testing
Multiple versions run simultaneously for user segments. Great for experimentation — but needs careful handling to avoid accidental exposure.

? Over to you – Which strategy do you use in production? Any horror stories?


Пожалуйста Авторизируйтесь или Зарегистрируйтесь для просмотра скрытого текста.


? Google Docs: Real-Time Collaborative Editing Architecture
Designing a real-time editor like Google Docs isn’t trivial:

1️⃣ Clients send edits via WebSocket.
2️⃣ WebSocket Server manages real-time communication.
3️⃣ Operations go to a Message Queue for durability.
4️⃣ A File Operation Server applies collaboration algorithms.
5️⃣ Data stored: metadata, content, and edit history.

Conflict resolution algorithms include:
? Operational Transformation (used by Google Docs)
? Differential Synchronization
? CRDT (actively researched)

? Have you ever faced issues using Google Docs? What do you think caused them?

? Software Architecture Trends – What’s Changing?
Insights from InfoQ’s Architecture & Design Trends Report:

? "Data + Architecture" – Architects now consider data pipelines, quality & traceability alongside systems.

? Architecture is becoming a shared responsibility — not just for those with “architect” in their title.

? Asynchronous collaboration (like ADRs) is a positive shift from remote work culture.

? Better distributed teams = Better distributed systems.

? What trends are you seeing in 2022 and beyond?

Let’s connect and share insights on system design, cloud architecture, and engineering leadership!


Пожалуйста Авторизируйтесь или Зарегистрируйтесь для просмотра скрытого текста.

 
Вверх Снизу