Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

20
votes
8answers
2k views

Good books on Distributed Computing/ Distributed Architecutre [closed]

Please recommend good books on basics of distributed computing/ distributed storage or distributed architectures. A quick amazon search led to: Elements of Distributed Computing Introduction to ...
11
votes
8answers
9k views

Best distributed filesystem for commodity linux storage farm

I have a lot of spare intel linux servers laying around (hundreds) and want to use them for a distributed file system in a web hosting and file sharing environment. This isn't for a HPC application, ...
8
votes
3answers
3k views

What are some good interview questions for Distributed Systems? [closed]

For a job that has a bend for distributed systems, what would you ask the candidate? Easy, intermediate and advanced questions are all welcome. I don't have specific requirements for the job. General ...
7
votes
7answers
221 views

Best data store solution for small mathematical data but fast and with aggregate functions

I'm looking for a data storage solution for a project with these requirements: The application creates dynamically a containter/table in the store. For a small period of time (two weeks for example) ...
7
votes
2answers
922 views

ZooKeeper and RabbitMQ/Qpid together - overkill or a good combination?

Greetings, I'm evaluating some components for a multi-data center distributed system. We're going to be using message queues (via either RabbitMQ or Qpid) so agents can make asynchronous requests to ...
6
votes
7answers
218 views

Travelling software. Is that a concept?

I would like to ask if there existed a program, which were intended to travel (for example following some physical forces) across the planet, possibly occupying and freeing computational ...
6
votes
5answers
2k views

How to make my Java Swing application a Client-Server application?

I have made a Java Swing application. Now I would like to make it a Client-Server application. All clients should be notified when data on the server is changed, so I'm not looking for a Web Service. ...
6
votes
1answer
863 views

Framework or tool for “distributed unit testing”?

Is there any tool or framework able to make it easier to test distributed software written in Java? My system under test is a peer-to-peer software, and I'd like to perform testing using something ...
6
votes
4answers
2k views

Are PHP sessions hard to scale across a distributed system?

At work we do almost everything in Java and perl, but I wanted to build out a feature using PHP and sessions. Some peeps thought that it was a bad idea to try to do PHP sessions on our system, cause ...
6
votes
7answers
1k views

Good Reads for Distributed Systems [closed]

I am working on a server system that going to have a distributed architecture. Can anyone recommend some good (titles|urls|blogs) on programming distributed architectures, P2P, Master/Slave, etc..? ...
4
votes
5answers
362 views

Programming languages for distributed system

I've been doing socket programming for a while in C++, and kind of got tired of having to write the same code to handle for errors, serializing / deserializing data, etc. Are there programming ...
4
votes
3answers
1k views

What is the difference between Java RMI and JMS?

When designing an distributed application in Java there seem to be a few technologies that address the same kind of problem. I have briefly read about Java Remote Method Invocation and Java Message ...
4
votes
4answers
2k views

Parallel processing of database queue

There is small system, where a database table as queue on MSSQL 2005. Several applications are writing to this table, and one application is reading and processing in a FIFO manner. I have to make it ...
3
votes
3answers
454 views

NoSQL and eventual consistency - real world examples

I'm looking for good examples of NoSQL apps that portray how to work with lack of transactionality as we know it in relational databases. I'm mostly interested in write-intensive code, as for mostly ...
3
votes
2answers
462 views

What are the essentials of real-time distributed systems?

I am getting my foot into contracting and have had today my first round interview for a contractor position. I have passed it however I was told - being mainly a UI developer - I only covered the ...
3
votes
1answer
421 views

Programming a distributed application written in C#, Ruby and Java using XML-RPC

I am tasked with writing a distributed event managing tool where each client, either a Ruby, C# or Java Client, synchronises all changes with a list of registered clients. I have to use XML-RPC to ...
3
votes
1answer
134 views

What are the best papers for learning about algorithms for communicating updates in a distributed system?

I have a distributed system in mind (multiple nodes in a single datacenter) that I want to have the following properties: nodes can enter and leave the system at any time. There is no data ...
3
votes
2answers
399 views

What library can I use to do simple, lightweight message passing?

I will be starting a project which requires communication between distributed nodes(the project is in C++). I need a lightweight message passing library to pass very simple messages(basically just ...
3
votes
4answers
5k views

Amazon S3 architecture

While the post @ http://highscalability.com/amazon-architecture explains Amazon's architecture in general, I am interested in knowing how Amazon S3 is implemented. Some of my guesses are A ...
2
votes
2answers
50 views

Assigning unique numbers to Web Service nodes with a Cassandra Database

To best explain my goal, I will simplify the problem to the basics of my requirements. Please let me know if more details are needed for clarity. Suppose I have 10 unique numbers (0-9) that are ...
2
votes
0answers
99 views

Handling Latency in Real Time Distributed Systems

I am trying to implement a poker server. An http server forwards data packets to the backend servers which handle the state of all the poker hands. In any given hand the player to act gets 10 seconds ...
2
votes
0answers
73 views

Virtual synchrony

I am doing with a friend of mine a system to implement a reliable multi cast library. We are dealing with many processes belonging to a group; any process can join or leave the group. If one sends a ...
2
votes
1answer
215 views

How to design task distribution with ZooKeeper

I am planning to write an application which will have distributed Worker processes. One of them will be Leader which will assign tasks to other processes. Designing the Leader elelection process is ...
2
votes
4answers
473 views

Distributed Erlang and the CAP theorem

By the CAP theorem, it is impossible for a distributed Erlang system to simultaneously provide all three of the following guarantees: Consistency (all Erlang runtimes, or nodes, see the same data at ...
2
votes
2answers
549 views

Distributed System Diagramming Best Practices?

I was wondering if anyone has some best practices to follow when diagramming distributed systems. Not being much of a visual designer I typically go through hours and several iterations till I reach ...
1
vote
0answers
9 views

Interesting projects based on Distributed/Operating Systems

I would like to know some interesting challenges based on distributed systems that could be solved within the time frame of a quarter (my university follows quarter system!). I am hoping to work on a ...
1
vote
0answers
12 views

Looking for a Simple Job Control Framework (Not looking for schedulers like Quartz)

I am looking for a simple Job Control Framework to: Check up on the status of processes running on different machines The machines would be running a LINUX distribution The processes would be ...
1
vote
1answer
147 views

Confusion about Message Bus / Command Dispatcher patterns

Recently I've been reading a lot about distributed messaging and associated patterns. I used some of them supported by the tools like for exemple NServiceBus. Many of those patterns are described on ...
1
vote
2answers
102 views

NServiceBus: Sharing Message DLLs

I have been recently looking into NServiceBus, as I thought messaging would be a good way to reduce dependencies between systems. However, one of the first things that struck me is that the message ...
1
vote
2answers
143 views

How does HBase guarantee row level atomicity?

Considering the fact that HBase stores each column family in a separate HFile and the fact that a row can span many Column Families. How does HBase ensure that a put/delete operation on a row that ...
1
vote
1answer
157 views

Distributed System Topology

Trying to implement an electronic voting system as a college project and just faced the most important step towards my aim < the system architecture > Multi-Server/Multi-Client , MUST really be ...
1
vote
1answer
48 views

Should the Domain ever access Application Services of another system?

Spefically across two systems: can the domain of system A call the application services/remote facade of system B? For example if an Ordering System has an Order entity in its domain, should the ...
1
vote
1answer
78 views

DRb method access

I am writing a simple distributed system in DRb. I have all the peers, and one server to do the bootstrapping. In that server, I have a few methods like "suggest_peer", and "start_service" and ...
1
vote
1answer
166 views

Some ideas about leader election

I am trying to perform leader election. These days I am thinking of using a key-value store to realize that but I am not quite sure if the idea is reliable as for scalability and consistency issues. ...
1
vote
1answer
76 views

Understanding how to manage message routing direction in P2P Chord/Pastry-like networks

This is a question about a large scalable P2P networking approach: logical ring net ovrlay. Consider the context of P2P networking. There are N computers that are connected everyone to each other ...
1
vote
1answer
131 views

General Knowledge Question: Network Access Time, Cache Access Time, Disk Access Time

I have written a simulator of a client-server based distributed file system. Now to calculate the average block access time, I want the following: Local Cache Access Time Client to Client Cache ...
1
vote
1answer
761 views

what is the Vertical and Horizontal distribution?

Vertical distribution : Distributed processing is equivalent to organizing a client-server application as a multitiered architecture . Place logically different components on different machines . ...
1
vote
2answers
593 views

How to get Filename/File Contents as key/value input for MAP when running a Hadoop MapReduce Job?

I am creating a program to analyze PDF, DOC and DOCX files. These files are stored in HDFS. When I start my MapReduce job, I want the map function to have the Filename as key and the Binary Contents ...
1
vote
1answer
51 views

Control System For Sensor Networks

I'm making a distributed sensor network. The basic architecture of my network is to have several slave nodes (up to about 10) reporting back to a master node on a regular basis. I'm looking for a ...
1
vote
2answers
481 views

Secondary-only nodes in mongodb Replica set

I am working on a project where I want to have the ability to specify that certain nodes of the replica set can never be primary nodes ie in case of a failure where all primary capable nodes die the ...
1
vote
2answers
216 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 ...
1
vote
1answer
252 views

redundant distributed filesystems for small number of nodes

I need to keep a filesystem shared between two nodes in different locations, in a way fully redundant, so that programs running in both nodes should see the whole filesystem. The situation is that a ...
1
vote
3answers
100 views

analysing network traffic

Whats the best way to identify network behavior?? Behavior of the ports/interfaces and routers? I can get data and analyse the traffic but trying to search for a pattern for a meaningful ...
1
vote
1answer
237 views

Open distributed computing research questions/topics?

Hej, I recently read a lot of papers from Lamport, Fischer, Lynch, Brewer to get a feeling for their perspective of distributed systems. I was wondering, what are current open distributed computing ...
1
vote
1answer
86 views

web application testing framework suggestions

Anyone have good experience with a web application testing framework? We are in process of selecting one for our application written in C#, ASP.NET etc., but the framework can be anything (unless, of ...
1
vote
1answer
255 views

Which DHT algorithm to use (if I want to join two separate DHTs)?

I've been looking into some DHT systems, specially Pastry and Chord. I've read some concerns about Chord's reaction to churn, though I believe that won't be a problem for the task I have at hands. I'm ...
1
vote
1answer
261 views

Analogs of Intel's Cluster OpenMP

Are there analogs of Intel Cluster OpenMP? This library simulates shared-memory machine (like SMP or NUMA) while running on distributed memory machine (like Ethernet-connected cluster of PC's). This ...
0
votes
1answer
44 views

locking on a server farm (asp.net)

I would like to know if there are any ways one can perform 'locking' on an asp.net web application which is deployed on multiple servers, using a distributed server like MySQL Cluster. For example, ...
0
votes
3answers
72 views

KeyValueStore Interface

Hi have the following interface: public interface KeyValueStore { public void put(String key, byte[] value); public byte[] get(String key); public void putAll(Map<String,byte[]> ...

1 2