I have services on 10 machines that stores data in database on these machines. And I have main server that needs to pull that data from these ten machines. What is better for this. Implement some rpc or use replication?
Tell me more
×
Programmers Stack Exchange is a question and answer site for
professional programmers interested in conceptual questions about software development. It's 100% free, no registration required.
|
It depends on how much data you need to get and how often. If your data has to be updated often and there aren't peaks, then Remote Procedure Call or Web Services or File Transfer are a good solution. You could also try to post your question to: http://dba.stackexchange.com/ |
|||
|
|