I could not find any good information on the subject. Currently playing with EventStore the following questions in my mind:
-
For instance, for MongoDB documents are stored as some form of JSON including the keys, thus for large amount of data you probably want to reduce key length to reduce storage overhead, for example having “when” field on your document, you will probably rename it to be stored as “w” in order to preserve 3 chars for each event. Since I could not find any good documentation on storage format of EventStore, question is does the same case apply to EventStore as for MongoDB?
-
How one would estimate the amount of storage to be used by EventStore? Of course, we could start inserting data and looking at disk utilization, but this way is not quite precise.
Thanks in advance