Tagged Questions
The disco tag has no wiki summary.
7
votes
1answer
475 views
Disco/MapReduce: Using results of previous iteration as input to new iteration
Currently am implementing PageRank on Disco. As an iterative algorithm, the results of one iteration are used as input to the next iteration.
I have a large file which represents all the links, with ...
5
votes
1answer
216 views
Pros and cons of celery vs disco vs hadoop vs other distributed computing packages
I'm working on a web application (built in django) intended for medium-to-large-scale data analysis. I'm imagining using a task queue feeding to a bank of servers, or maybe on-demand EC2 instances to ...
2
votes
1answer
178 views
Celery for Map-Reduce, or other alternatives in Python?
I have expensive jobs that are very suited to be run under map-and-reduce model (long story short, it is to aggregate a few hundred rankings that are previously calculated via some time-consuming ...
2
votes
0answers
104 views
Confusion about file accesses in disco
I have a simple 2 node cluster (master on one, workers on both). I tried using:
python disco/util/distrfiles.py bigtxt /etc/nodes > bigtxt.chunks
To distribute the files (which worked ok).
I ...
1
vote
1answer
736 views
Generating WSDL & disco files
i want to generate a wsdl and a disco file automatically (e.g. via a bat-file).
these files will be generated if a service reference is added to a (test) project.
wsdl.exe and disco.exe are missing.
...
1
vote
0answers
121 views
Disco/MapReduce: Using chain_reader on split data
My algorithm currently uses nr_reduces 1 because I need to ensure that the data for a given key is aggregated.
To pass input to the next iteration, one should use "chain_reader". However, the ...
1
vote
2answers
278 views
SharePoint : Issue creating Disco
I've followed the instructions to the letter, when I run disco.exe I get this error:
The HTML document does not contain web service discovery information.
Any suggestions?
...
0
votes
0answers
32 views
Web Service Proxy Code Generated by WSDL.exe Versus “Update Web Reference” - Should I Care?
Using Visual Studio 2010, we have a solution with several web sites (not web application projects) and command line and winforms projects. All target .Net 2.0. Many of the projects have web references ...
0
votes
1answer
154 views
mapreduce vs other parallel processing solutions
So, the questions are:
1. Is mapreduce overhead too high for the following problem? Does anyone have an idea of how long each map/reduce cycle (in Disco for example) takes for a very light job?
2. ...
0
votes
0answers
19 views
Is it possible to link to a static dicso file from a wsdl file?
As per the title I was wondering of it was possible to link to an external disco file from the wsdl file.
Im having a wcf issue when accessing a service from a web client and the computer name cannot ...
0
votes
0answers
60 views
What does Disco's “Could not parse worker event:” error mean?
I'm trying to run a Disco job using map and reduce functions that are deserialized after being passed over a TCP socket using the marshal library. Specifically, I'm unpacking them with
code = ...
0
votes
1answer
66 views
Running a Disco map-reduce job on data stored in Discodex
I have a large amount of static data that needs to offer random access. Since, I'm using Disco to digest it, I'm using the very impressive looking Discodex (key, value) store on top of the Disco ...
0
votes
0answers
27 views
How to modify the output when MyService.asmx?disco is called
It is possible to use a SoapExtensionReflector to modify the output when a user calls MyService.asmx?wsdl as described in this link.
Is something similar available to adjust the output of ...
0
votes
1answer
118 views
WCF is failed to consumed by Flex code
I have https://mysite/myservice.asmx which is consumed fine with Flashbuilder. When i ported it to https://mysite/myservice.svc, and generate proxy objects, flash proxy objects fails to call any ...