I am have some projects that require time efficient file based structures, that need to be fast and easy to read and write/update individual fields of data, compactness is not an initial concern, but transparent compactness without compromising complexity is a plus.
I have excluded XML, JSON and YAML as well as other structured tag formats, because they are not fast or easy to update because of having to maintain the well formed structure.
I have ruled out traditional relational database systems and nosql, because I want the data format to be as transparent as possible so that maintenance tools can be written in any language. I don't need RDBMS features, don't need ACID, I don't need SQL query language support, or anything equivalent, I am not storing SETS of data, I am storing individual files. Each file is a separate entity that will never be related with any other so an RDBMS is not an option.
I do need to be able to potentially be able store many big segments ( 10s of GB of data ) in each file, as well as many 1000s of small ( 10s KB ) segments, so most embedded databases are not appropriate either.
I also want to be able to dig through the file format with a hex editor or strings, grep and other unix command line tools and at least be able to do some basic forensics without having to write a bunch of code.
What I have tried:
I have experimented with my own binary byte encoded file structure, lots of twiddly code that is brittle and not really maintainable or extensible. Does exactly what I want and no more, but I have to maintain the library code myself, which takes away from time I can spend on the actual application.
I have experimented with some binary tagged formats but they suffer from most of the same problems that the text based structured formats do, with not being fast and easy to update.
I have had success with HDF5 based storage, fast and easy to update, native optional transparent compression for free, which is nice to have. Very robust and extensible, but the library is like driving thumb tacks with a sledge hammer for my application. It has great language support for C and Python and weak Java support, and the file format is opaque.
I have done work with IFF files way back in the day, a modern version of that file format might be interesting to look at.
What I would like to do is more research on how file storage formats are decided upon and designed. I have done extensive searching and reading on Google, I have dug through as much source code for open source databases and what not and still haven't had that epiphany that will let me move to a final design for my project.
Old data can stay in the file, actually it would be preferred to be able to keep the last N number of versions where N could be ALL or it could be 0.
Does anyone have any useful links and information that isn't on the first 100 pages of links on Google?