rpc

Syntax

rpc(nodeAlias, func, args, …)

Arguments

nodeAlias is the alias of a remote node.

func is a function. It must not be quoted. The function could be either a built-in function or a user-defined function on the local node.

args are function arguments.

Details

Call a local function on the specified remote node and return the result to the local node. The function can be either a built-in function or a user defined function on the local node. The system automatically serializes the function definition and the definitions of all dependent functions together with necessary local data to remote node.

Both the calling node and the remote node must be located in the same cluster. Otherwise, we need to use function remoteRun .

For more details please refer to Remote Call.

Examples

  • Remote call a user defined function:

$ rpc("nodeA", def(x,y):x+y, 10, 15)
  • Remote call a partial application:

$ rpc("nodeA", getRecentJobs{10})
  • Remote call a built-in function that quotes a user-defined function:

$ def jobDemo(n){
$ s = 0
$ for (x in 1 : n) {
$    s += sum(sin rand(1.0, 100000000)-0.5)
$        print("iteration " + x + " " + s)
$ }
$ return s
$ };
// the node "DFS_NODE2" is located in the same cluster as the local node.
$ rpc("DFS_NODE2", submitJob, "jobDemo3", "job demo", jobDemo, 10);
Output: jobDemo3

$ rpc("DFS_NODE2", getJobReturn, "jobDemo3")
Output: -3426.577521