MicroStream provides an API to import and export persisted data of the storage. It is pretty much the same as writing and reading a backup.
The records in the storage are distributed in lots of files and folders, depending on channel count and other settings. To get order in the chaos the export produces one file per type. This files are used again by the import to read the data into the storage.
The created binary type data files contain only records of the according type, nevertheless they have the same format as the channel storage files.
It is also possible to convert the exported binary files to a human readable format, namely CSV.
Why CSV?
Contrary to XML or JSON, CSV is perfectly suited to represent records with the least possible overhead. There are a lot of tools, like spreadsheet editors, which can read and modify CSV files. The file's size is at the possible minimum and the performance of the converter is significantly better than with the other formats.
Binary to CSV
NioFileSystem fileSystem =NioFileSystem.New();EmbeddedStorageManager storage =EmbeddedStorage.start(fileSystem.ensureDirectoryPath("storage"));StorageDataConverterTypeBinaryToCsv converter =new StorageDataConverterTypeBinaryToCsv.UTF8(StorageDataConverterCsvConfiguration.defaultConfiguration(),new StorageEntityTypeConversionFileProvider.Default(fileSystem.ensureDirectoryPath("csv-dir"),"csv" ),storage.typeDictionary(),null,// no type name mapping4096,// read buffer size4096// write buffer size);AReadableFile dataFile =fileSystem.ensureFilePath("type1.bin").useReading();try{converter.convertDataFile(dataFile);}finally{dataFile.close();}