How do database connections get allocated to different services in LinkedIn and Twitter?
-
From what I know, both companies have many backend services running on their system, communicating with each other and with front-end. Many of these services would be relying on same database which produces resource contention due to limited number of simultaneous connections available. So how is it decided which service gets what number of connections or does there exist a completely different methodology to share db resource among services? PS: I am particularly interested in LinkedIn and Twitter because they are quite open about their engineering efforts.
-
Answer:
A good example at Twitter is our use of https://github.com/twitter/gizzard with http://twitter.github.io/finagle/. The simple answer is services don't talk directly to databases. Between the DB and services that talk to the database is another service (a Gizzard app). Services speak thrift RPC to this app. The Gizzard app talks SQL to the backend databases and returns the result. This gives us many things (like with Gizzard we have a sharding and consistency framework). But in the context of managing DB questions, Finagle allows us to cap the number of connections and internally queue requests when the limit is reached. We can also embed other business logic in this app layer to do things like priority queuing for different types of operations.
David Barr at Quora Visit the source
Related Q & A:
- How To Find Connections Between People?Best solution by Quora
- How to create a generic View for different Models?Best solution by Stack Overflow
- How to make an image have a different color?Best solution by superuser.com
- What do you get paid for different jobs?
- How can I make the layout with different colors?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.