I am planning to use mysql replication, with 1 master and 1 slave. My application is written in PHP. I have added a layer which redirects all writes to master and all reads to slave server. I am afraid of the latency here. My application is a order management system. What will be the issue with such a architecture and how do i over come it.
Performance/Latency when using mysql replication
315 Views Asked by Hacker At
1
There are 1 best solutions below
Related Questions in PHP
- How to know a Pod's own IP address from inside a container in the Pod?
- Who will decide the "specified number of pods" for replication controller in kubernetes?
- Access other containers of a pod in Kubernetes
- Kubernetes cluster using Vagrant not working after restart
- kubectl not installed with gcloud SDK
- How do I access the Kubernetes api from within a pod container?
- Exposing several services with Vagrant and Kubernetes on my own server
- Does Kubernetes provision new VMs for pods on my cloud platform?
- Any suggestion for running Aerospike on Kubernetes on CoreOS on GCE?
- Kubernetes - kubectl exec bash - session drop and line width
Related Questions in MYSQL
- How to know a Pod's own IP address from inside a container in the Pod?
- Who will decide the "specified number of pods" for replication controller in kubernetes?
- Access other containers of a pod in Kubernetes
- Kubernetes cluster using Vagrant not working after restart
- kubectl not installed with gcloud SDK
- How do I access the Kubernetes api from within a pod container?
- Exposing several services with Vagrant and Kubernetes on my own server
- Does Kubernetes provision new VMs for pods on my cloud platform?
- Any suggestion for running Aerospike on Kubernetes on CoreOS on GCE?
- Kubernetes - kubectl exec bash - session drop and line width
Related Questions in REPLICATION
- How to know a Pod's own IP address from inside a container in the Pod?
- Who will decide the "specified number of pods" for replication controller in kubernetes?
- Access other containers of a pod in Kubernetes
- Kubernetes cluster using Vagrant not working after restart
- kubectl not installed with gcloud SDK
- How do I access the Kubernetes api from within a pod container?
- Exposing several services with Vagrant and Kubernetes on my own server
- Does Kubernetes provision new VMs for pods on my cloud platform?
- Any suggestion for running Aerospike on Kubernetes on CoreOS on GCE?
- Kubernetes - kubectl exec bash - session drop and line width
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Depending on how you use your master (and how loaded your infrastructure is) there will be replication lag, there is no way to avoid that. Even if it is a "only" 100ms, it might be enough to mess with you for one or more pageviews.
There is a lot of technique out there to try to avoid causing the lag in the first place, eg this article, but that still leaves you in a pickle if it happens and your code is not ready for it.
You'll have to implement some way of being able to temporarily select newly added data from the master if a fetch from the slave fails. So if the
select
failed to return data, but there is (for example) an indicator of new data in the session, you would try to query the master. If theselect
succeeds and the switch is there, remove it. This selects new data from the master until it is confirmed on the slave.Obviously this only needs to happen for the very important records only (a user registration for example, otherwise they'd be logged out on the next pageview). A single order in a users' account is not important enough to warrant this. It is not a problem that it only appears in the overview after a couple of seconds.
One thing though: If you decide to store your users sessions in the database: double issue! If the replication is lagging, the added variables will not be there either when you reload it the next page.
Overall there's going to be some issues with newly added data, but as long as your code assumes it won't be there "for a while" you should be okay. IMO the advantages still outweigh the problems, especially for heavily visited sites.