Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ashwanikumar04/good-to-read
This is a collections of blogs, articles related to system design
https://github.com/ashwanikumar04/good-to-read
system-design
Last synced: about 8 hours ago
JSON representation
This is a collections of blogs, articles related to system design
- Host: GitHub
- URL: https://github.com/ashwanikumar04/good-to-read
- Owner: ashwanikumar04
- License: mit
- Created: 2018-10-27T13:49:13.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2024-10-22T18:02:06.000Z (17 days ago)
- Last Synced: 2024-10-23T11:45:42.960Z (16 days ago)
- Topics: system-design
- Size: 796 KB
- Stars: 2
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: news-in-short.md
- License: LICENSE
Awesome Lists containing this project
README
This is a list of articles/ blog posts for best practices, system designs etc.
- [*System Design*](#system-design)
- [How to deliver messages exactly once on scale](#how-to-deliver-messages-exactly-once-on-scale)
- [Scalable task queues](#scalable-task-queues)
- [An Approach to Designing a Distributed, Fault-Tolerant, Horizontally Scalable Event Scheduler](#an-approach-to-designing-a-distributed-fault-tolerant-horizontally-scalable-event-scheduler)
- [Scalable task scheduler](#scalable-task-scheduler)
- [How to count unique in billions of keys with very less memory print](#how-to-count-unique-in-billions-of-keys-with-very-less-memory-print)
- [Scaling websockets](#scaling-websockets)
- [Builing a highest Query per Second GeoSearch Service](#builing-a-highest-query-per-second-geosearch-service)
- [*Best Practices*](#best-practices)
- [Build](#build)## *System Design*
### How to deliver messages exactly once on scale
This article explains how to deliver billions of messages exactly once. On high level, in order to achieve exactly once guarantee, the messages are not consumed directly from the message cluster to which they are produced instead a middle de-duplication layer is used to consume these messages and this layer publishes messages which are not duplicate to another cluster which are later consumed.
> #### More detail is available [here](https://segment.com/blog/exactly-once-delivery/)
### Scalable task queues
This article explains a scalable architecture for task queues. A kafka cluster in front of a redis cluster is used to provide write safety.
> #### More detail is available [here](https://slack.engineering/scaling-slacks-job-queue-687222e9d100)
### An Approach to Designing a Distributed, Fault-Tolerant, Horizontally Scalable Event Scheduler
This article explains an approach for a scalable event scheduler using a home-grown application on top of cassandra.
> #### More detail is available [here](https://medium.com/walmartlabs/an-approach-to-designing-distributed-fault-tolerant-horizontally-scalable-event-scheduler-278c9c380637)
### Scalable task scheduler
These articles explains a fault tolerant and highly scalable design for a task scheduler using kafka, cassandra and akka.
> #### More detail is available
> - [Part1](https://www.pagerduty.com/eng/distributed-task-scheduling-pt1/)
> - [Part2](https://www.pagerduty.com/eng/distributed-task-scheduling-pt2/)
> - [Part3](https://www.pagerduty.com/eng/distributed-task-scheduling-3/)
> - [Talk](https://www.youtube.com/watch?v=s3GfXTnzG_Y)### How to count unique in billions of keys with very less memory print
This article explains the approach of counting unique keys with a very less error using very small memory.
> #### More details is available [here](http://highscalability.com/blog/2012/4/5/big-data-counting-how-to-count-a-billion-distinct-objects-us.html)
### Scaling websockets
In this article, an approach for horizontally scaling websockets is discussed.
> #### More details [here](https://hackernoon.com/scaling-websockets-9a31497af051)
### Builing a highest Query per Second GeoSearch Service
This article explains an approach to develop a highly scalable gea-fencing service.
> #### More details [here](https://eng.uber.com/go-geofence/)
## *Best Practices*
### Build
Often, we need to build projects which require a specialized environment to build. Reproducing the build environment becomes a tedious job over time.
One of the better approach is to use docker container to build the projects.
This article explains how to use docker container to build a project.> #### More detail is available
> - [here](https://mikulskibartosz.name/how-to-build-a-project-inside-a-docker-container-fd575058bf4a)
> - [here](https://dzone.com/articles/maven-build-local-project-with-docker-why)