I recently hosted an episode of Software Engineering Radio called "Eran Yahav on the Tabnine AI Coding Assistant"!

  • Home
  • Teaching
    • Overview
    • Data Abstraction
    • Operating Systems
  • Research
    • Overview
    • Papers
    • Presentations
  • Outreach
    • Software
    • Service
    • Blog
  • About
    • Biography
    • Schedule
    • Contact
    • Blog
    • Service
    • Papers
    • Presentations

An empirical comparison of Java remote communication primitives for intra-node data transmission

empirical study
performance analysis
Performance Evaluation Review, 39:4
Authors

Philip F. Burdette

William F. Jones

Brian C. Blose

Gregory M. Kapfhammer

Published

2012

Abstract
This paper presents a benchmarking suite that measures the performance of using sockets and eXtensible Markup Language remote procedure calls (XML-RPC) to exchange intra-node messages between Java virtual machines (JVMs). The paper also reports on an empirical study comparing sockets and XML-RPC with response time measurements from timers that use both operating system tools and Java language instrumentation. By leveraging packet filters inside the GNU/Linux kernel, the benchmark suite also calculates network resource consumption. Moreover, the framework interprets the response time results in light of memory subsystem metrics characterizing the behavior of the JVM. The empirical findings indicate that sockets perform better when transmitting small to very large objects, while XML-RPC exhibits lower response time than sockets with extremely large bulk data transfers. The experiments reveal trade-offs in performance and thus represent the first step towards determining if Java remote communication primitives can support the efficient exchange of intra-node messages.
Details

Paper

Reference
@article{Burdette2012,
 author = {Philip F. Burdette and William F. Jones and Brian C. Blose and
Gregory M. Kapfhammer},
 journal = {Performance Evaluation Review},
 month = {April},
 number = {4},
 title = {An empirical comparison of Java remote communication primitives for
intra-node data transmission},
 volume = {39},
 year = {2012}
}

Return to Paper Listing

GMK

Top