Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
4answers
594 views

What are the faster Paxos-related algorithms for consensus in distributed systems?

I've read Lamport's paper on Paxos. I've also heard that it isn't used much in practice, for reasons of performance. What algorithms are commonly used for consensus in distributed systems?
2
votes
1answer
60 views

What's the difference between safe, regular and atomic registers?

Can anyone provide exhaustive explanation, please? I'm diving into concurrent programming and met those registers while trying to understand consensus. From Lamport's "On interprocess communication": ...
2
votes
1answer
159 views

What is the proper behaviour for a Paxos agent in this scenario?

I'm looking into Paxos and I'm confused about how the algorithm should behave in this contrived example. I hope the diagram below explains the scenario. A few points: Each agent acts as a ...
1
vote
2answers
200 views

When to use Paxos (real practical use cases)?

Could someone give me a list of real use cases of Paxos. That is real problems that require consensus as part of a bigger problem. Is the following a use case of Paxos? Suppose there are two clients ...
1
vote
1answer
37 views

Collection should return null or empty upon a Db load ending with no records found?

If you have a method that queries the Db and returns a collection populated with the records found, what should be returned upon no records found? A new collection with .Count == 0 or null Is ...