Tagged Questions

A field of computer science that studies distributed systems

learn more… | top users | synonyms

18
votes
9answers
3k views

median of a billion numbers

If you have one billion numbers and one hundred computers, what is the best way to locate the median of the numbers? one solution which i have is: split the set equally among the 100 computers - sort ...
14
votes
3answers
273 views

Are there any simple solutions for distributing computational work in .NET?

So let's say I have some computers at home. Let's also say that I have some algorithm I want to run, that generally takes a lot of time to solve. It can be divided in how many parts I want, so I ...
13
votes
5answers
10k views

Difference between cloud computing and distributed computing?

I wanted to know about the difference about cloud computing and distributed computing. I read an article about cloud computing and got a feeling that somewhere there is a relation between cloud ...
12
votes
9answers
2k views

Distributed Computing Framework (.NET) - Specifically for CPU Instensive operations

I am currently researching the options that are available (both Open Source and Commercial) for developing a distributed application. "A distributed system consists of multiple autonomous ...
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, ...
10
votes
5answers
181 views

Quick Sending of 4[GB] To Be Processed From 100 Machines?

I have 100 servers in my cluster. At time 17:35:00, all 100 servers are provided with data (of size 1[MB]). Each server processes the data, and produces an output of about 40[MB]. The processing time ...
10
votes
7answers
1k views

Javascript Distributed Computing

Why aren't there any Javascript distributed computing frameworks / projects? The idea seems absolutely awesome to me because: The Client is the Browser Iteration can be done with AJAX Webmasters ...
9
votes
4answers
388 views

Where do I start with distributed computing?

I'm interested in learning techniques for distributed computing. As a Java developer, I'm probably willing to start with Hadoop. Could you please recommend some books/tutorials/articles to begin with? ...
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 ...
8
votes
2answers
762 views

Starting remote Erlang nodes

I want to write a master-slave application in Erlang. I am thinking at the following things I need from the architecture: the slaves shouldn't die when the master dies, but rather try to reconnect ...
8
votes
6answers
384 views

What to do when you've really screwed up the design of a distributed system?

Related question: What is the most efficient way to break up a centralised database? I'm going to try and make this question fairly general so it will benefit others. About 3 years ago, I ...
7
votes
3answers
226 views

Distributing state across many machines

I'm trying to write up a tool that requires knowledge of the state of other machines in a cluster (local LAN). This is for a network failover/high availability system similar to VRRP and ...
7
votes
3answers
230 views

Is “Adopting MapReduce model” = Universal answer to scalability?

I have been trying to understand the MapReduce concept and apply it to my current situation. What is my situation? Well, I have an ETL tool here, in which data transformation happens outside of source ...
7
votes
5answers
1k views

Any Open Source Pregel like framework for distributed processing of large Graphs?

Google has described a novel framework for distributed processing on Massive Graphs. http://portal.acm.org/citation.cfm?id=1582716.1582723 I wanted to know if similar to Hadoop (Map-Reduce) are ...
7
votes
4answers
537 views

Learning more about distributed computing

I'm interested in learning more about distributed computing and how to do it - mostly in C++ but I'd be interested in C# as well. Can someone please recommend some resources? I know very little to ...
6
votes
7answers
247 views

name of algorithm related to load balancing / re-distribution

Given an array [x1, x2, x3, ..., xk ] where xi is the number of items in box i, how can I redistribute the items so that no box contains more than N items. N is close to sum(xi)/k -- That is, N is ...
6
votes
1answer
182 views

Distributed algorithm design

I've been reading Introduction to Algorithms and started to get a few ideas and questions popping up in my head. The one that's baffled me most is how you would approach designing an algorithm to ...
6
votes
2answers
310 views

What is the closest thing to Apache Hadoop in other languages?

Specifically any Open Source implementations at any degree of usefulness in the following languages: 1) C++ 2) Python 3) Ruby 4) C#
6
votes
5answers
264 views

A.I.: How would I train a Neural Network across multiple machines?

So, for larger networks with large data sets, they take a while to train. It would be awesome if there was a way to share the computing time across multiple machines. However, the issue with that is ...
6
votes
3answers
743 views

Distributed computing framework for Clojure/Java

I'm developing an application where I need to distribute a set of tasks across a potentially quite large cluster of different machines. Ideally I'd like a very simple, idiomatic way to do this in ...
6
votes
8answers
451 views

Please recommend an alternative to Microsoft HPC

We aim to implement a distributed system on a cluster, which will perform resource-consuming image-based computing with heavy storage I/O, having following characteristics: There is a dedicated ...
6
votes
3answers
327 views

Any experience programming for BOINC?

I am attracted by BOINC for a little project of mine. I heard of BOINC but not read much about how it works, mostly because I am focusing on other priorities right now. What I would like to know is if ...
6
votes
2answers
682 views

.net distributed grid computing migration, recommendations on libraries, architecture

I have a c# multi-threaded monte carlo simulation, the application is already structured such that it can be partitioned by into Tasks that execute independently, a TaskController executes Tasks, ...
5
votes
3answers
200 views

Java distributed system

I'm starting my final year computer science project and I'm trying to figure out my first steps. For more details you can go to the project page. Background: Because I have very little experience in ...
5
votes
1answer
167 views

Partitioning a weighted directed graph (over key/value database)

We would like to shard a weighted directed graph, The user can add nodes and edges dynamically, at first the DB/Graph is empty. We keep the nodes and edges in a key/value database (probably Redis): ...
5
votes
2answers
341 views

Python Distributed Computing (works)

I'm using an old thread to post new code which attempts to solve the same problem. What constitutes a secure pickle? this? sock.py from socket import socket from socket import AF_INET from socket ...
5
votes
3answers
112 views

Synchronizing Database Access in a Distributed App

A common bit of programming logic I find myself implementing often is something like the following pseudo-code: Let X = some value Let Database = some external Database handle if ...
5
votes
3answers
275 views

Book recommendation on distributed computing concepts used in Cassandra

What book would you recommend on distributed computing concepts/database internals such as the ones used for Cassandra, the concepts are listed here: Cassandra glossary? Thanks!
5
votes
4answers
807 views

What's the best trick to speed up a monte carlo simulation?

Whenever I run large scale monte carlo simulations in S-Plus, I always end up growing a beard while I wait for it to complete. What are the best tricks for running monte carlo simulations in R? ...
4
votes
2answers
94 views

distributed scheduling system for R scripts

I would like to schedule and distribute on several machines - Windows or Ubuntu - (one task is only on one machine) the execution of R scripts (using RServe for instance). I don't want to reinvent ...
4
votes
4answers
87 views

Comparing System.nanoTime() values resulting from different machines

Is it correct to compare two values resulting from a call to System.nanoTime() on two different machines? I would say no because System.nanoTime() returns a nanosecond-precise time relative to some ...
4
votes
1answer
120 views

Architecture - How to efficiently crawl the web with 10,000 machine?

Let’s pretend I have a network of 10,000 machines. I want to use all those machines to crawl the web as fast as possible. All pages should be downloaded only once. In addition there must be no single ...
4
votes
1answer
135 views

We need to pickle any sort of callable

Recently a question was posed regarding some Python code attempting to facilitate distributed computing through the use of pickled processes. Apparently, that functionality has historically been ...
4
votes
1answer
128 views

Replication Modes Definitions?

I am currently examining different NoSQL and RDBMSes regarding their replication abilities in order to build distributed systems. Reading through several papers and books, I get the feeling, that ...
4
votes
3answers
1k views

Choosing between Qt, Gtk+ and wxWidgets

I implemented distributed computing client-server application and now it's time to write client's UI interface. I am frustrated between Qt, Gtk+ and wxWidgets. I happened to use all of these libraries ...
4
votes
3answers
213 views

How to debug large server side distributed Java application

Here is my problem: I am trying to debug Apache Cassandra and understand the flow of the app. I.e. when a request is sent by the client, say put(), what methods are called and how the system is ...
4
votes
2answers
726 views

Explaining Apache ZooKeeper

I am trying to understand ZooKeeper, how it works and what it does. And I am totally confused. Is there any application which is comparable to ZooKeeper? If you know, then how would you describe ...
4
votes
1answer
157 views

What are the tradeoffs when generating unique sequence numbers in a distributed and concurrent environment?

I am curious about the contraints and tradeoffs for generating unique sequence numbers in a distributed and concurrent environment. Imagine this: I have a system where all it does is give back an ...
4
votes
1answer
154 views

JavaScript distributed computing project

I made a website that does absolutely nothing, and I've proven to myself that people like to stay there - I've already logged 11+ hours worth of cumulative time on the page. My question is whether it ...
4
votes
1answer
200 views

How to Profile R Code that Includes SNOW Cluster

I have a nested loop that I'm using foreach, DoSNOW, and a SNOW socket cluster to solve for. How should I go about profiling the code to make sure I'm not doing something grossly inefficient. Also is ...
4
votes
7answers
489 views

performance penalty of message passing as opposed to shared data

There is a lot of buzz these days about not using locks and using Message passing approaches like Erlang. Or about using immutable datastructures like in Functional programming vs. C++/Java. But what ...
4
votes
4answers
594 views

suggestions on a project in C++ / distributed systems / networks

I'd like to work on a 2-3 month long project (full time) that involves coding in C++ and is related to networks (protocol stacks). I was considering writing my own network stack but that doesn't seem ...
3
votes
5answers
154 views

Can an excessively deep C++ class hierarchy cause a stack overflow?

Suppose I have a C++ program that has excessively deep inheritance as follows: using namespace std; class AbstractParentGeneration0 { private: ... protected: ... public: ...
3
votes
1answer
103 views

Neural Network implementation MapReduce-style

I'm working on a project right now where I'm trying to implement the NEAT (Neuroevolution of Augmenting Topologies) methodology to a neural network. This has already been done many times over and ...
3
votes
2answers
89 views

How search engine, say Google's page ranking algorithm work across distributed/multiple machines?

I am new to distributed computing but was wondering how page ranking algorithm works across multiple machines. Like When do they decide data should be replicated (if needed at all), If data is not ...
3
votes
2answers
70 views

Name for this distributed-database data-location optimization algorithm?

Say we have a large graph of databases connected to each other, effectively one giant distributed database. Any node on the graph can query the whole database by querying its neighbors recursively, ...
3
votes
1answer
195 views

Can I use hadoop to train a neutral network?

I want to train a neural network with the help of Hadoop. We know when training a neural network, weights to each neuron are altered every iteration, and each iteration depends on the previous. I'm ...
3
votes
1answer
118 views

How to secure a Python distributed computing layer

These modules are designed to facilitate a layer of computational capacity across multiple computers. They are by no means ready for publication, nor has the required funding for hardware arrived. ...
3
votes
1answer
224 views

Managing a Distributed Cluster?

Suppose that one has set up a cassandra cluster. You've got a 10[TB] database that is distributed evenly between 10 nodes, everything runs smoothly etc. Suppose that you have 100 machines at your ...
3
votes
2answers
463 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 ...

1 2 3 4 5 7