Tagged Questions
The distributed tag has no wiki summary.
45
votes
10answers
8k views
What tools do distributed programmers lack?
I have a dream to improve the world of distributed programming :)
In particular, I'm feeling a lack of necessary tools for debugging, monitoring, understanding and visualizing the behavior of ...
29
votes
3answers
13k views
How to copy a local Git branch to a remote repo
I've taken the following steps so far:
1) Cloned a remote Git repo
2) Branched the master branch to an experimental
3) edited/tested/committed code in the experimental branch
Now, I'm not ready to ...
22
votes
7answers
2k views
Anatomy of a Distributed System in PHP
I've a problem which is giving me some hard time trying to figure it out the ideal solution and, to better explain it, I'm going to expose my scenario here.
I've a server that will receive orders
...
21
votes
7answers
4k views
Real World Use of Zookeeper
I've been looking at Zookeeper recently and wondered whether anybody was using it currently and what they were specifically using it for storing.
The most common use case is for configuration ...
19
votes
8answers
2k views
Is Project Darkstar Realistic?
Project Darkstar was the topic of the monthly JavaSIG meeting down at the Google offices in NYC last night. For those that don't know (probably everyone), Project Darkstar is a framework for ...
17
votes
10answers
5k views
alternative to memcached that can persist to disk
I am currently using memcached with my java app, and overall it's working great.
The features of memcached that are most important to me are:
it's fast, since reads and writes are in-memory and ...
17
votes
12answers
1k views
How to build large applications
I think I've become quite good at the basics of programming (for a variety of languages). I can write a *good** line of code. I can write a good method. I can write a good class. I can write a ...
17
votes
6answers
6k views
MPI for multicore?
With the recent buzz on multicore programming is anyone exploring the possibilities of using MPI ?
16
votes
8answers
1k views
What are some interesting projects to solve in Erlang for learning purposes?
I recently discovered Erlang and am now working my way through a couple of tutorials. By now I'm looking forward to actually implement something as a hobby project. I'm not really interested in yet ...
15
votes
7answers
1k views
Distributed Version Control Systems and the Enterprise - a Good mix?
I can see why distributed source control systems (DVCS - like Mercurial) make sense for open source projects.
But do they make sense for an enterprise? (over a centralized Source Control System such ...
14
votes
5answers
688 views
Distributed Storage of BLOBs for .NET?
I am looking for a reasonably well tested library+server to store a persistent distributed hash table.
I am hesistant to use SQL-based solutions as the data is highly document oriented, consisting ...
12
votes
4answers
248 views
How to determine distributed architecture?
I'm trying to get my head around the thought process when designing a large scale application.
Let's say I have a client who needs a new customer website and he is estimating 40,000 orders per day ...
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 ...
12
votes
7answers
3k views
.net service bus recommendations? [closed]
We are in need of a distributed architecture messaging system/service bus with the capability of Publish/Subscribe. Does anyone have any reccomendations for a framework that we can use for .net ...
11
votes
2answers
329 views
Enumerating combinations in a distributed manner
I have a problem where I must analyse 500C5 combinations (255244687600) of something. Distributing it over a 10 node cluster where each cluster processes roughly 10^6 combinations per second means the ...
11
votes
9answers
13k views
In C#, if 2 processes are reading and writing to the same file, what is the best way to avoid process locking exceptions?
With the following file reading code:
using (FileStream fileStream = new FileStream(fileName, FileMode.Open, FileAccess.Read, FileShare.None))
{
using (TextReader tr = new ...
11
votes
7answers
4k views
Best way to aggregate multiple log files from several servers
I need a simple way to monitor multiple text log files distributed over a number of HP-UX servers. They are a mix of text and XML log files from several distributed legacy systems. Currently we just ...
10
votes
8answers
252 views
How to profile a distributed app in java?
I've got an app running on a grid of uniform java processes (potentially on different physical machines). I'd like to collect cpu usage statistics from a single run of this app. I've went over ...
10
votes
6answers
329 views
Small footprint clock synchronization without NTP
I'm looking for a simple clock synchronization protocol that would be easy to implement with small footprint and that would work also in the absence of internet connection, so that it could be used ...
10
votes
8answers
2k views
Distributed Computing in C++?
I would like to know what tools, frameworks or libraries you would use, to spread your C++ application across multiple machines.
Im searching for a way to create a framework/environment, in which a ...
10
votes
5answers
1k views
Distributed ProjectManagement/Bug Tracking
Now that we have DSCMs, are there any Project Management / Bug Tracking tools
that are distributed?
10
votes
2answers
3k views
Spread vs MPI vs zeromq?
In one of the answers to Broadcast like UDP with the Reliability of TCP, a user mentions the Spread messaging API. I've also run across one called ØMQ. I also have some familiarity with MPI.
So, ...
9
votes
4answers
284 views
Actor-based distributed concurrency libraries for Ocaml and other languages
Question
Can anyone recommend a library for Ocaml that offers an actor-based concurrency model for distributed computing?
Note here the "actor-based" and "distributed" - I'd like the actor-based ...
9
votes
3answers
704 views
Distributed issue tracker for git with usable Eclipse Mylyn support?
I'm using git for version control but I'm currently lacking a good issue/bug/ticket tracker with Eclipse Mylyn integration.
The features I'm looking for:
Open source implementation (so that I can ...
9
votes
3answers
1k views
What are some good distributed queue managers in php?
I'm working an image processing website, instead of having lengthy jobs hold up the users browser I want all commands to return fast with a job id and have a background task do the actual work. The id ...
9
votes
5answers
1k views
How do you keep two related, but separate, systems in sync with each other?
My current development project has two aspects to it. First, there is a public website where external users can submit and update information for various purposes. This information is then saved to a ...
8
votes
2answers
163 views
Parallel debuggers
I am trying to decide which parallel debugger to use.
So far I found not many open sources ones so my choices are:
http://www.allinea.com/products/ddt/
...
8
votes
1answer
479 views
How scalable is distributed Erlang?
Part A:
Erlang has a lot of success stories about running concurrent agents e.g. the millions of simultaneous Facebook chats. That's millions of agents, but of course it's not millions of CPUs across ...
8
votes
1answer
734 views
When to use the XCode Distributed Build Feature
I work in a small iPhone development team, in our office, we have at least 4 copies of XCode running on the network at any one time. Contemplating getting everyone to have it running.
We're networked ...
8
votes
3answers
150 views
building using multiple machines
I have a huge Windows C++ project that takes a lot of time to be compiled. Do you know if there is some FREE tool being able to build using multiple pc connected together?
Do you know if there is ...
8
votes
4answers
594 views
What are the faster Paxos-related algorithms for consensus in distributed systems?
I've read Lamport's paper on Paxos. I've also heard that it isn't used much in practice, for reasons of performance. What algorithms are commonly used for consensus in distributed systems?
8
votes
4answers
649 views
Distributed bug tracker to go with DVC
We've pretty much licked the whole distributed thing for version control at this point. I'm not saying everything's perfect, but, from hereon out, it's mostly just a matter of continuing what has ...
8
votes
1answer
946 views
Distributed file system for .NET
Lately I've been reading up on HDFS (Hadoop) and GFS (Google) and find myself wondering if there are any similar native implementations for windows and/or .NET. A lot of the applications I develop ...
8
votes
3answers
384 views
How does Erlang's support for *transparent* distribution of actors impact application design?
One of the features of the actor model in Erlang is transparent distribution. Unless I'm misinterpreting, when you send messages between actors, you theoretically shouldn't assume that they are in ...
8
votes
6answers
1k views
Is AMQP suitable as both an intra and inter-machine software bus?
I'm trying to get my head around AMQP. It looks great for inter-machine (cluster, LAN, WAN) communication between applications but I'm not sure if it is suitable (in architectural, and current ...
7
votes
3answers
179 views
Create network errors for testing a distributed system
I am developing a Java library for communication via HTTP, and I want to test its reliability and performance in case of network problems such as packet loss, high latency, low bandwidth, and ...
7
votes
5answers
335 views
Concurrency in Amazon S3
I'm currently building a system where S3 will be used as a persistent hash-set (the S3 URL is inferred from the data) by lots of computers across the Internet. If two nodes store the same data then it ...
7
votes
2answers
1k views
Is the blockchain technology used by bitcoin the first of it's kind?
Bitcoin has been forked to be used as a distributed DNS system called namecoin. It can be used generically to have distributed confidence of a chain of events and probably has applications outside of ...
7
votes
5answers
1k views
Storing millions of log files - Approx 25 TB a year
As part of my work we get approx 25TB worth log files annually, currently it been saved over an NFS based filesystem. Some are archived as in zipped/tar.gz while others reside in pure text format.
I ...
7
votes
1answer
194 views
Distributed Shared Memory in .NET
Are there any existing libraries/frameworks/products for a distributed shared memory system implemented in .NET, or easily accessible from .NET clients?
Googling gives some links to academic papers, ...
7
votes
4answers
313 views
Book Request: Distributed algorithms
Hey guys. I wanna learn sth about distributed algorithms, so I'm looking for any recommendation for books. I'm more interested in theoretical books, because implementation is just the matter of taste ...
7
votes
4answers
1k views
Distributed Java Compiler
Is there a distributed compiler for java like distcc for C/C++?
Thanks
Bala
7
votes
3answers
9k views
Web Services vs EJB vs RMI, advantages and disadvantages?
My web server would be overloaded quickly if all the work were done there. I'm going to stand up a second server behind it, to process data.
What's the advantage of EJB over RMI, or vice versa?
...
7
votes
3answers
1k views
Cross-colo fail-over design, DNS level fail-over?
I'm interested in cross-colo fail-over strategies for web applications, such that if the main site fails users seamlessly land at the fail-over site in another colo.
The application side of things ...
7
votes
5answers
2k views
Experience with Hadoop?
Have any of you tried Hadoop? Can it be used without the distributed filesystem that goes with it, in a Share-nothing architecture? Would that make sense?
I'm also interested into any performance ...
6
votes
3answers
79 views
Distributed unit testing and code coverage in Python
My current project has a policy of 100% code coverage from its unit tests. Our continuous integration service will not allow developers to push code without 100% coverage.
As the project has grown, ...
6
votes
2answers
268 views
How to implement a distributed semaphore?
I have a limited set of resources that I want to share between multiple processes than run on multiple servers. I guess what I need could be called a distributed semaphore.
I have found an old Perl ...
6
votes
3answers
163 views
How to test 1000 clients windows 7 clients
We have .net clients running on Windows 7 embedded with sql server express. These run disconnected and every so often will dial in to a central server and dump their information and pull down ...
6
votes
2answers
379 views
How scalable are automatic secondary indexes in Cassandra 0.7?
As far as I understand automatic secondary indexes are generated for node local data.
In this case query by secondary index involve all nodes storing part of column family to get results (?) so (if i ...
6
votes
1answer
292 views
Two EAR files, same JPA entitymanager, same transaction => same session?
Lets say I have two applications, each with an individual EAR file, which call each other within the same JTA Transaction. If both share the same entitymanager, do they get the same session or is it ...