Package org.apache.sysds.runtime.io
Class ListWriter
- java.lang.Object
-
- org.apache.sysds.runtime.io.ListWriter
-
public class ListWriter extends Object
-
-
Constructor Summary
Constructors Constructor Description ListWriter()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static void
writeListToHDFS(ListObject lo, String fname, String fmtStr, FileFormatProperties props)
Writes a list object and all contained objects to a folder with related meta data.
-
-
-
Method Detail
-
writeListToHDFS
public static void writeListToHDFS(ListObject lo, String fname, String fmtStr, FileFormatProperties props) throws DMLRuntimeException
Writes a list object and all contained objects to a folder with related meta data. The individual objects (including nested lists) are written with existing matrix/frame writers and meta data such that the entire list and separate objects can be read back. By using the existing writers, all formats are naturally supported and we can ensure consistency of the on-disk representation.- Parameters:
lo
- list objectfname
- directory namefmtStr
- format stringprops
- file format properties- Throws:
DMLRuntimeException
- if write fails
-
-