The eventual-consistency tag has no wiki summary.
0
votes
1answer
51 views
App Engine Datastore - consistency and 1 write per sec limitation - who will it work in the following scenarious
I'm trying to wrap my head around eventuality consistency and 1 write per sec principles in GAE datastore. I have a scenario and two questions:
#python like pseudo-code
class User:
user_id = ...
0
votes
4answers
79 views
CQRS Eventual Consistency Event Dependencies
I'm new to the CQRS and eventual consistency models, so forgive me if this is a stupid question.
Given that I'm just getting started, I have a local in memory CommandBus and EventPublisher. My events ...
0
votes
2answers
33 views
What are the common practice to handle Cassandra write failure?
In the doc [1], it was said that
if using a write consistency level of QUORUM with a replication factor
of 3, Cassandra will send the write to 2 replicas. If the write fails on
one of the replicas ...
2
votes
1answer
39 views
How do I calculate how long eventual consistency takes to become consistent?
I am beginning to investigate nosql and document-oriented databases to store assets for HTML5 apps we are going to be serving on our website. This is intended to be a replacement for just storing ...
1
vote
2answers
46 views
Consistency for read from distributed databases
I have a set of databases, distributed across multiple locations in the network and for ex. one client that needs to store some data in that databases.
I need to make sure my data will always be ...
2
votes
1answer
95 views
GAE: How long to wait for eventual consistency?
I have an app where I am creating a large number of entities. I don't want to put them in the same entity group, because I could be creating a lot of them in a short period of time -- say 1 million ...
3
votes
3answers
153 views
Domain events and versioning without CQRS
Hi I have the following senario which I dont understand how to get eventual consistency with:
User 1 uses Task based ui to change customer name
App Service calls operation on the aggregate
Aggregate ...
0
votes
1answer
35 views
Mixing eventual consistency systems and legacy ACID systems
Are there any patterns for mixing eventual consistency systems with legacy ACID-systems?
I want to store data in some(at least two) legacy systems on the mainframe that need ACID-like transactions. ...
1
vote
1answer
78 views
Do aggregates have to be strongly consistent?
Everything I have read on DDD implies that state within aggregates must be strongly consistent.
This implies that if one required redundancy, then only strongly-consistent replication can be used ...
-3
votes
2answers
217 views
Why some people say Riak is eventual consistent [closed]
In Riak by default data bucket are replicated to 3 different nodes (N=3). Also number of replicas that must respond to a read or write request before it is considered successful are 2 nodes (R=2, ...
4
votes
2answers
135 views
Eventualy consistent distributed database with idempotent increase operator?
Is there a distributed high availability, eventually consistent db that supports idempotent operation on scalar values?
If we use normal updates then there is a possibility that we will have 2 ...
0
votes
1answer
78 views
Frameworks to help work with App Engine's eventual consistency + caching
I believe I have a fairly typical use case, which is very difficult with eventual consistency. I'm wondering if anyone's already created a python framework to help with this.
I have a GET request ...
2
votes
3answers
202 views
How to handle concurrent constraints across aggregate roots
I'm afraid I already know the answer, but I'm hoping that somebody can provide an alternative solution that haven't found before. As always doing DDD according to Effective Aggregate Design is more ...
0
votes
1answer
67 views
What are the factors that affect eventual consistency over long-haul networks?
I have looked up quite a few resources on eventual consistency and they all speak about why it is important and about Paxos and Byzantine General problem and stuff like that. What I am more interested ...
1
vote
1answer
76 views
How to get eventual consistency [duplicate]
Possible Duplicate:
Eventual Consistency
I am new with Nosql, I read many documents a bout it, all them only talk a bout eventual consistency and don't explain: how does it work.
So, can ...
7
votes
1answer
138 views
GAE HDR: Are entity retrievals by key eventually consistent within a XG transaction?
Consider the second example in "Uses for Transactions" ("update an entity with a named key, or create it if it doesn't yet exist"):
...
4
votes
2answers
642 views
Read-your-own-writes consistency in Mongodb
first, here is what is said in Pymongo Documentation
By default, PyMongo starts a request for each thread when the thread first runs an operation on MongoDB. This guarantees **read-your-writes ...
0
votes
1answer
97 views
How are post-conditions implemented with CQRS?
How does CQRS handle post-conditions on immediately consistent models? I realise something like this is irrelevant on an eventually consistent system w/ event sourcing etc. But if I just wanted to ...
2
votes
1answer
106 views
What is the difference between MonotonicRead and ReadYourWrites in RavenDB?
The default ctor for DocumentConvention in RavenDB (build 888) sets the DefaultQueryingConsistency to MonotonicRead. As I understand it, this means that by default, we'll be waiting for indexes to be ...
2
votes
2answers
257 views
How do you ensure consistent client reads in an eventual consistent system?
I'm digging into CQRS and I am looking for articles on how to solve client reads in an eventual consistent system. Consider for example a web shop where users can add items to their cart. How can you ...
4
votes
4answers
177 views
App Engine Shard Counters and High Replication Datastore
I'm using App Engine with the eventually-consistent High Replication Data Store. I'm also using sharded counters.
When I query for all of the shards and sum them up, can I assume the counts are ...
2
votes
2answers
270 views
Store everything in MongoDB or not? Use SQL alongside? (Eventual consistency)
Me and my colleges are having second thoughts on using MongoDB to store al the data for our application. Some think that because of Mongo's eventual consistency when user register or updates his ...
4
votes
1answer
227 views
Eventual consistency in plain English
I often hear about eventual consistency in different speeches about NoSQL, data grids etc.
It seems that definition of eventual consistency varies in many sources (and maybe even depends on a ...
3
votes
3answers
119 views
Ensuring database consistency
If I have a distributed database that is eventually consistent, what happens if I have something like a site where I'm selling products and I'm changing the price of an item?
If a product has price X ...
2
votes
1answer
123 views
Distributed database - Eventual Consistency Implications
I've been learning more about eventual consistency and distributed database, and I have a question.
In my scenario, I have a distributed database that stores some listings users have posted (for ...
1
vote
1answer
167 views
Is S3 Object's Metadata strongly consistent
S3 Objects have eventual consistency for overwrites PUTS and DELETES as mentioned here - http://aws.amazon.com/s3/faqs/#What_data_consistency_model_does_Amazon_S3_employ
Is this applicable for both ...
0
votes
3answers
139 views
DjangoAppEngine and Eventual Consistency Problems on the High Replication Datastore
I am using djangoappengine and I think have run into some problems with the way it handles eventual consistency on the high application datastore.
First, entity groups are not even implemented in ...
1
vote
1answer
141 views
How can I create applications on a database which provide only eventual consistency
Cassandra and many other similar systems provide no transactions support. Instead they provide eventual consistency which means that the writer to the system eventually will be in consistent state. ...
0
votes
1answer
46 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 ...
1
vote
1answer
173 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
3answers
410 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 ...
1
vote
0answers
65 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.
...
3
votes
1answer
167 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 ...
7
votes
3answers
450 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
1answer
385 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 ...
3
votes
2answers
993 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 ...
0
votes
1answer
325 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 ...
3
votes
2answers
407 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?
...
0
votes
1answer
74 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 ...
5
votes
5answers
1k 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 ...
0
votes
1answer
425 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 ...
5
votes
1answer
112 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).
...
6
votes
3answers
2k 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 ...
1
vote
2answers
398 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
312 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 ...
8
votes
2answers
758 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 ...
3
votes
2answers
448 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 ...
4
votes
3answers
726 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
919 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 ...
12
votes
3answers
2k 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 ...