Learn R Programming

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

pbdZMQ

  • 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")

Citation

When mentioning the pbdZMQ, please cite:

@MISC{pbdZMQ2015,
  author = {Chen, W.-C. and Schmidt, D. and Heckendorf, C. and Ostrouchov, G.},
  title = {pbdZMQ: Programming with Big Data -- Interface to ZeroMQ},
  year = {2015},
  note = {R Package, URL https://cran.r-project.org/package=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

Install

install.packages('pbdZMQ')

Monthly Downloads

19,766

Version

0.2-6

License

GPL-3

Maintainer

Wei-Chen Chen

Last Published

May 15th, 2017

Functions in pbdZMQ (0.2-6)

Context Functions

Context Functions
Socket Functions

Socket Functions
Send Receive Functions

Send Receive Functions
File Transfer Functions

File Transfer Functions
Set Control Functions

Set controls in pbdZMQ
Initial Control Functions

Initial controls in pbdZMQ
pbdZMQ-package

Programming with Big Data -- Interface to ZeroMQ
ZMQ Control Environment

Sets of controls in pbdZMQ.
Message Function

Message Functions
address

Form an Address/Endpoint
C-like Wrapper Functions for ZeroMQ

The C-like ZeroMQ Interface
ls

A wrapper function for base::ls
Send Receive Multiple Raw Buffers

Send Receive Multiple Raw Buffers
Poll Functions

Poll Functions
ZMQ Control Functions

Sets of controls in pbdZMQ.
New Poll Functions

New Poll Functions
PyZMQ-like Interface

R6 ZMQ Interface
random_port

Random Port
shellexec.wcc

Shell Execution via cmd windows
Wrapper Functions for rzmq

All Wrapper Functions for rzmq
Utility Functions

Utility Functions