|
|
|
|
|
by acmiyaguchi
1178 days ago
|
|
The language is not a limiting factor here. Python is an excellent scripting language, and works plenty fine in distributed computation. The Python interface to Spark is a wrapper on the underlying Scala API. You don't lose out on performance when you're building up a lazy chain of computation that's executed by an engine written in a more performant language. Fugue is a layer to abstract out these distributed computation backends, and it looks like a nice programming interface. |
|