git clone https://github.com/valiantljk/h5spark.git
Python version:
Scala version:
Add the h5spark path to your python path:
export PYTHONPATH=$PYTHONPATH:path_to_h5spark/src/main/python/h5spark
Then your python codes will be like so:
from pyspark import SparkContext
import os,sys
import h5py
import read
def test_h5sparkReadsingle():
sc = SparkContext(appName="h5sparktest")
rdd=read.h5read(sc,('oceanTemps.h5','temperatures'),mode='single',partitions=100)
rdd.cache()
print "rdd count:",rdd.count()
sc.stop()
if __name__ == '__main__':
test_h5sparkReadsingle()
Current h5spark python read API:
Read single file:
h5read(sc,(file,dataset),mode='single', partitions)
Read multiple files:
Takes in a list of (file, dataset) tuples, one such tuple or the name of a file that contains a list of files and returns rdd with each row as a record
h5read(sc,file_list_or_txt_file,mode='multi', partitions)
Besides, we have the functions to return indexedrow and indexedrowmatrix
h5read_irow
h5read_imat
import org.nersc.io._
object readtest { def main(args: Array[String]): Unit = { var logger = LoggerFactory.getLogger(getClass) val sc = new SparkContext() val rdd = read.h5read_array (sc,"oceanTemps.h5","temperatures", 3000) rdd.cache() val count= rdd.count() logger.info("\nRDD_Count: "+count+" , Total number of rows of all hdf5 files\n") sc.stop() }
}
Current h5spark scala read API supports:
val rdd = read.h5read_point (sc, inputpath, variablename, partition) //load n-D data into RDD[(value:Double,key:Long)] val rdd = read.h5read_array (sc, inputpath, variablename, partition) //load n-D data into RDD[Array[Double]] val rdd = read.h5read_vec (sc,inputpath, variablename, partition) //Load n-D data into RDD[DenseVector] val rdd = read.h5read_irow (sc,inputpath, variablename, partition) //Load n-D data into RDD[IndexedRow] val rdd = read.h5read_imat (sc,inputpath, variablename, partition) //Load n-D data into IndexedRowMatrix
# Questions and Support
1. If you are using NERSC's machine, please feel free to email consult@nersc.gov
2. If not, you can send your questions to jalnliu@lbl.gov
# Citation
J.L. Liu, E. Racah, Q. Koziol, R. S. Canon, A. Gittens, L. Gerhardt, S. Byna, M. F. Ringenburg, Prabhat. "H5Spark: Bridging the I/O Gap between Spark and Scientific Data Formats on HPC Systems", Cray User Group, 2016, ([Paper](https://github.com/valiantljk/h5spark/files/261834/h5spark-cug16-final.pdf),
[Slides](https://github.com/valiantljk/h5spark/files/261837/h5spark-2016-cug.pdf),
[Bib](https://github.com/valiantljk/h5spark/files/261861/h5spark.bib.txt))
Alex Gittens, Aditya Devarakonda, Evan Racah, Michael Ringenburg, Lisa Gerhardt, Jey Kottalam, Jialin Liu, Kristyn Maschhoff, Shane Canon, Jatin Chhugani, Pramod Sharma, Jiyan Yang, James Demmel, Jim Harrell, Venkat Krishnamurthy, Michael W Mahoney. "Matrix Factorizations at Scale: A Comparison of Scientific Data Analytics in Spark and C+ MPI using Three Case Studies". IEEE BigData 2016. [Paper](https://ieeexplore.ieee.org/abstract/document/7840606/).
# Highlight
1. Tested at full scale on Cori phase 1, with 1600 nodes, 51200 cores. H5Spark took 2 minutes to load 16 TBs HDF5 2D data
2. H5Spark takes 35 seconds in loading 2 TB data, while MPI uses 15 seconds.
# Try Other HDF5/netCDF plugin used in Spark
1. LLNL: [Spark-HDF5](https://github.com/LLNL/spark-hdf5)
2. NASA: [SciSpark](https://github.com/SciSpark/SciSpark)