-
以前是/tmp/dpark,
现在启动时会优先/dev/shm/,
那是否要把webroot改成/dev/shm/ ?
-
See this test case:
``` bash
mike@EDEN:~/Development/dpark$ cat t.py
import dpark
rdd = dpark.makeRDD(range(9), 3).flatMap(lambda i: (i, i)).glom()
print list(map(list, rdd.collect()))
mike@EDEN:~/D…
-
Creating a context with 'process' will use the MultiProcessScheduler instead of LocalScheduler. However, this breaks rdd.fold() (and maybe others?). See below for reduced test case:
```
>>> import …
-
代码在 https://gist.github.com/5062200
运行后报错
TypeError: 'Database' object is not callable. If you meant to call the '**getnewargs**' method on a 'Connection' object it is failing because no such method …
-
/tmp/mesos/slaves/201301141050-1654703350-5050-14385-0/frameworks/201301141050-1654703350-5050-14385-0010/executors/default/runs/1/stderr 的内容为:
sh: /opt/python-2.7/lib/python2.7/site-packages/DPark-0…
-
最近想尝试下用dpark写分布式程序,装好mesos后发现dpark运行时出错:
```
Traceback (most recent call last):
File "calc-pi.py", line 13, in
dpark.parallelize(range(0, N), 5).foreach(random_once)
File "/home/work/local/l…