⚠️There's a newer version (0.3-11) of this package. Take me there.

pbdZMQ

  • Version: 0.2-2
  • License:
  • Download:
  • Status:
  • Author: See section below.

pbdZMQ is an R package providing a simplified interface to ZeroMQ with a focus on client/server programming frameworks. Notably, pbdZMQ should allow for the use of ZeroMQ on Windows platforms.

Interfaces

The package contains 3 separate interfaces:

  1. One modeled after the ZeroMQ C interface (see help("czmq"))
  2. One modeled after the PyZMQ interface (see help("pyzmq"))
  3. One modeled after the rzmq interface (see help("rzmq"))

Client/Server Example

The primary focus of pbdZMQ is for building client/server interfaces for R. An example of this can be found in the pbdCS package, which uses this model to control batch MPI servers interactively. There are also several illustrative examples in the pbdZMQ package vignette.

The basic idea is that you need a server R process, and a separate client R process. For demonstration/simplicity, assume they are both running on the same machine. The server we describe here is very basic. You can see a more detailed example in the pbdZMQ package vignette.

Server

Save the following as, say, server.r and run it in batch by running Rscript server.r from a terminal.

library(pbdZMQ)
context = zmq$Context()
socket = context$socket("ZMQ_REP")
socket$bind("tcp://*:55555")

cat("Client command:  ")
msg <- socket$receive()

cat(msg, "\n")
socket$send("Message received!")

Client

From an interactive R session (not in batch), enter the following:

library(pbdZMQ)
context = zmq$Context()
socket = context$socket("ZMQ_REQ")
socket$connect("tcp://localhost:55555")

socket$send("1+1")
socket$receive()

If all goes well, your message should be sent from the client to the server, before your server terminates.

For an example of how to do this more persistently, see the pbdZMQ package vignette.

Installation

pbdZMQ requires

  • R version 3.0.0 or higher.
  • Linux, Mac OSX, Windows, or FreeBSD.
  • libzmq >= 4.0.4.
  • Solaris 10 requiring external libzmq 4.0.7 and OpenCSW.

A distribution of libzmq is shipped with pbdZMQ for convenience. However, if you already have a system installation of ZeroMQ, then it is simple to use that with pbdZMQ. Full details on installation and troubleshooting can be found in the package vignette, located at inst/doc/pbdMPI-guide.pdf of the pbdZMQ source tree.

The package can be installed from the CRAN via the usual install.packages("pbdZMQ"), or via the devtools package:

library(devtools)
install_github("RBigData/pbdZMQ")

Authors

pbdMPI is authored and maintained by:

  • Wei-Chen Chen
  • Drew Schmidt
  • Christian Heckendorf
  • George Ostrouchov

With additional contributions from:

  • Whit Armstrong (some functions are modified from rzmq for backwards compatibility)
  • Brian Ripley (C code of shellexec)
  • The R Core team (some functions are modified from the R source code)

For the distribution of ZeroMQ that is shipped with pbdZMQ, you can find details of authorship and copyright in inst/zmq_copyright/ of the pbdZMQ source tree, or under zmq_copyright/ of a binary installation of pbdZMQ.

Copy Link

Version

Down Chevron

Install

install.packages('pbdZMQ')

Monthly Downloads

23,020

Version

0.2-3

License

GPL-3

Maintainer

Last Published

May 19th, 2016

Functions in pbdZMQ (0.2-3)