The distributed-system tag has no wiki summary.
1
vote
1answer
25 views
Matrix distribution to process grid
I need to write a program, which will perform LU-decomposition, etc. The problem is that I don't know about the preferred way to distribute the loaded matrix from the root process to other processes. ...
4
votes
0answers
65 views
Does Optimistic Concurrency per object imply Serializability if a transaction will never span multiple objects?
Given a system which provides:
Optimistic concurrency control / versioning per object (using CAS - Check-and-Set)
Transactions that never need to span more then a single object.
Snapshot Isolation
...
1
vote
1answer
49 views
Reduce Operations on Distributed Databases
I would like to ask you about optimizing reduce operations (e.g. count) on multiple databases.
Let's say there is a user table that is stored in various countries and sharding is made based on the ...
2
votes
2answers
188 views
How do you solve issue of consistency in concurrent and distributed application (built around Bankers Dilemma)?
This is a classic problem which I'm sure has been solved many times by many different people. I don't have any formal training (I've not studied computer science or any other such academic subject) ...
0
votes
1answer
88 views
Are there any serialization schemes for OOP that include methods or operations in the contract in addition to data structure?
So typically we create schemas, mime-types, etc for our objects when we're communicating to another system about objects.
The document usually defines data structure of the objects for serialization ...
1
vote
1answer
135 views
Version hash to solve Event Sourcing problems
The basic examples I have seen about Event Sourcing do not deal with out of order events, clock offsets in different systems and late events from system partitions.
I am wondering if more polished ...