BBView is a lightweight, semantics-aware burst-buffer extension for Open MPI that accelerates MPI-IO checkpoint performance on HPC systems. By elevating the MPI file view to the fundamental unit of buffering, BBView captures application intent directly—without requiring application changes, kernel patches, or alternative mount points.
$ git clone --recursive https://github.com/open-mpi/ompi
$ cd ompi
$ git submodule add https://github.com/tsukuba-hpcs/bbview ompi/mca/io/bbview
$ ./autogen.pl
$ ./configure --with-bbview-tmp-dir=/scr/
# Modify OpenMPI code (See `Patch to OpenMPI`)
$ make -k
$ make # to build bbviewd
$ make install--- a/ompi/mca/io/base/io_base_file_select.c
+++ b/ompi/mca/io/base/io_base_file_select.c
@@ -198,7 +198,9 @@ int mca_io_base_file_select(ompi_file_t *file,
OBJ_RELEASE(selectable);
if (!strcmp (selected.ai_component.v3_0_0.io_version.mca_component_name,
- "ompio")) {
+ "ompio") ||
+ !strcmp (selected.ai_component.v3_0_0.io_version.mca_component_name,
+ "bbview")) {
int ret;
- Launch bbviewd on background. Each compute node has 1 bbviewd process.
$ ssh $node bbviewd 1 & # number of threads to flush- Launch MPI app.
$ mpirun -np 1 --mca io bbview --mca fcoll individual ./a.out- Terminate bbviewd
$ ssh $node bbviewd wait- Sohei Koyama, Osamu Tatebe, "BBView: A View-Aware Burst-Buffer Mechanism for MPI-IO", Proceedings of 4th Workshop on Re-envisioning Extreme-Scale I/O for Emerging Hybrid HPC Workloads (REX-IO), 2025