-
Hello, have you considered releasing `dpark.pymesos` as an standalone package?
I have used it with great success and now that mesos 0.20.0 is out it is possible to install mesos interfaces from [meso…
-
已测试
会出现 “job lost” 错误
-
-
``` python
#!/usr/bin/env python
import dpark
nums = dpark.parallelize(range(100), 4)
print nums.count()
```
``` bash
n=0;
while true; do
echo $n ;
n=`expr $n + 1 `;
../venv/bin/python test_han…
-
系统默认的python2.7是2.7.2,
新装了python2.7.5
建立一个新的virtualenv,用python2.7.5
用`pwd`/venv/bin/python的方式,process没问题,
但是在mesos的环境下发现仍然调用了/usr/bin/env python2.7,修改
venv/lib/python2.7/site-packages/DPark-0.1-py2.7.e…
-
There are already some documents for DPark in English, https://github.com/jackfengji/test_pro/issues.
English documents are needed to popularize this project to English speakers.
I could translate s…
-
error: can't copy 'dpark/portable_hash.c': doesn't exist or not a regular file
看了下,setup.py中有
``` python
ext_modules = [Extension('dpark.portable_hash', ['dpark/portable_hash.pyx'])],
```
它会 找 …
-
I set up mesos cluster on Amazon ec2 using [mesos EC2-Scripts](https://github.com/apache/mesos/blob/trunk/docs/EC2-Scripts.textile):
Then I run
`python27 demo.py -m mesos://master@ec2-54-224-207-120.…
-
I have a txt file to process. I use -M options to set the memory limit (I've tried -M 400 param, should be 400 megabytes as far as I understood). But on the test run, the memory consumption jumps up t…
-
``` python
import dpark
bcast_test = dpark.broadcast(1)
bcast_2 = dpark.broadcast(2)
```
以前的版本是可以的,现在的版本会报:
``` python
Traceback (most recent call last):
File "bcast_test.py", line 3, in
bcas…