Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
2answers
1k views

Eventual Consistency

I am in the early stages of design of an application that has to be highly available and scalable. I want to use an eventual consistency data model for this for a number of reasons. I know and ...
5
votes
1answer
71 views

Anyone know of a good pattern for keeping a user interface consistent whilst using eventually consistent data updates

Scenario is a grid with a list of contacts. User clicks on 'send email' from grid, sends an email. We drop a message in a queue to update some aggregates (which are also displayed on the list). ...
5
votes
2answers
440 views

How to handle set based consistency validation in CQRS?

I have a fairly simple domain model involving a list of Facility aggregate roots. Given that I'm using CQRS and an event-bus to handle events raised from the domain, how could you handle validation ...
4
votes
3answers
613 views

Meaning of eventual consistency in Cassandra?

What is the meaning of eventual consistency in Cassandra when nodes in a single cluster do not contain the copies of same data but data is distributed among nodes. Now since a single peice of data is ...
4
votes
3answers
589 views

How should I handle eventual consistency in SimpleDB, particularly in relation to unit testing?

We're building a web app on top of the Amazon Web Services stack, and I'm loving it so far. We're also making full use of test driven development and that is also proving to be fantastic. I'm just ...
3
votes
3answers
113 views

Gui recommandations for eventual consistency?

When using distributed and scalable architecture, eventual consistency is often a requirement. Graphically, how to deal with this eventual consistency ? Users are used to click save, and see the ...
3
votes
2answers
176 views

Does Amazon S3 support multi-file atomic uploads?

I'm developing a system against Amazon's S3. I'm doing it in C# using S3's .NET SDK. I want to upload several files to S3 at once but if any one fails I want all of them to fail. Can I do this? How? ...
3
votes
5answers
243 views

Looking for distributed/scalable database solution where all nodes are read/write? Not MongoDB?

I'm looking to implement a database that can be widely distributed geographically and such that each node can be read/write with eventual consistency to all other nodes. Where should I be looking? I ...
3
votes
2answers
244 views

Are there any general algorithms for achieving eventual consistency in distributed systems?

Are there any algorithms that are commonly used for achieving eventual consistency in distributed systems? There are algorithms that have been developed for ACID transactions in distributed ...
3
votes
3answers
684 views

Eventually consistent mnesia database with erlang. Best practices anyone?

I'm writing a bittorrent tracker in erlang. Given the nature of the service, I won't need absolute consistency (ie. a client can be perfectly happy with a slightly outdated list of peers or torrent ...
2
votes
1answer
99 views

Transaction with Cassandra data model

According to the CAP theory, Cassandra can only have eventually consistency. To make things worse, if we have multiple reads and writes during one request without proper handling, we may even lose the ...
1
vote
1answer
45 views

Using cassandra and keep data consistency

As we all know, we have ConsistencyLevel of ReplicationFactor in cassandra. And we just want to leverge it for keeping data consistency. Because it is supposed to keep the price info. So which ...
1
vote
0answers
39 views

What happens when deleting a not-yet-propagated object in Amazon S3?

Consider an unversioned bucket with only eventual consistency. Suppose I just uploaded an object, and now I delete it. The delete request goes to a server to which the object has not yet propagated. ...
1
vote
1answer
63 views

It is possible to manage users/identities in a data store that exhibits eventual consistency?

Is it possible to create/store user accounts in a data store that exhibits eventual consistency? It seems impossible to manage account creation without a heap of architectural complexity to avoid ...
1
vote
2answers
141 views

Read-your-own-writes consistency in Cassandra

Read-your-own-writes consistency is great improvement from the so called eventual consistency: if I change my profile picture I don't care if others see the change a minute later, but it looks weird ...
1
vote
2answers
217 views

Is the data system for ATM-machines using eventual consistency?

I wounder how the world-wide ATM-systems are architected. It must be pretty hard for the banks to design a consistent system world wide. Do they use eventual consistency for this or do they use a ...
1
vote
3answers
217 views

Great articles/videos/… on non-ACID (distributed) systems? (“Eventually Consistent” etc.)

I'll start with these - IMO brilliant - articles: Base: An Acid Alternative - by Dan Pritchett (eBay), 2008 Eventually Consistent (- Revisited) - by Werner Vogels (Amazon), 2008 Brewer's conjecture ...
0
votes
1answer
12 views

Consistent inherited properties between entities on appengine HRD

I'm implementing a file system. Folders each have an ACL, which will basically just be a list of user ids that are allowed to read/write to the folder. I want to implement this by copying ACLs from ...
0
votes
3answers
130 views

Does using NoSQL make sense for a non-distributed system? (trying to understand eventual consistency)

I have been reading and learning about NoSQL and MongoDB, CouchDB, etc, for the last two days, but I still can't tell if this is the right kind of storage for me. What worries me is the eventual ...
0
votes
1answer
104 views

S3 - Eventual Consistency and multiple clients

If I PUT an object in S3 (US East) and then repeatedly request the object's metadata until I can GET it, then at that point am I guaranteed that all other clients can now GET the object? OR is it ...
0
votes
1answer
30 views

Dealing with errors in asynchronous write schemes

The idea of asynchronous write, or write-behind, is that clients submit a request for a write operation, and then go their merry way without waiting for the write operation to conclude. What isn't ...
0
votes
1answer
255 views

How hbase handle indexed table consistency with data table?

When there is high concurrency updates in index table how hbase ensure index consistency with data? that scan on index table won't see obsolete data when query primary table. For example there is ...