How Memory-mapped Files, File Systems and Cloud Storage Works
Join the DZone community and get the full member experience.
Join For Freekelly has an interesting post about memory-mapped files and the cloud . this is in response to a comment on my post where i stated that we don’t reserve space up front in voron because we support cloud providers that charge per storage.
from kelly’s post, i assume she thinks about running it herself on her own cloud instances, and that is what her pricing indicates. indeed, if you want to get a 100gb cloud disk from pretty much anywhere, you’ll pay for the full 100gb disk from day one. but that isn’t the scenario that i actually had in mind.
i was thinking about the cloud providers . imagine that you want to go to ravenhq , and get a database there. you sign up for a two gb plan, and all is great. except that, on the very first write, we allocate a fixed 10 gb, and you start paying overage charges. this isn’t what you pay when you run on your own hardware. this is what you would have to deal with as a cloud dbaas provider, and as a consumer of such a service.
that aside, let me deal a bit with the issues of memory-mapped files and sparse files. i created six sparse files, each of them 128 gb in size, in my e drive.
as you can see, this is a 300 gb disk, but i just “allocated” 640gb of space in it.
this also shows that there has been no reservation of space on the disk. in fact, it is entirely possible to create files that are entirely too big for the volume they are located on.
i did a lot of testing with mmap files and sparseness, and i came to the conclusion that you can’t trust it. you especially can’t trust it in a cloud scenario.
but, why? well, imagine a scenario where you need to use a new page, and the file system needs to allocate one for you. at this point, it needs to find an available page. that might fail, and let's imagine that this fails because there's no free space, because that is easiest.
what happens then? well, you aren’t accessing things via an api, so there isn’t an error code it can return or an exception to be thrown.
in windows, it will use the standard exception handler to throw the error. in linux, that will probably generate a sivxxx error. now, to make things interesting, this may not actually happen when you are writing to the newly reserved page, it may be deferred by the os to a later point in time (or if you call msync or flushviewoffile). at any rate, that means that at some point the os is going to wake up and realize that it promised something it can’t deliver, and in that point (which, again, may be later than the point you actually wrote to that page) you are going to find yourself in a very interesting situation. i’ve actually tested that scenario, and it isn’t a good one form the point of view of reliability. you really don’t want to get there, because then all bets are off with regards to what happens to the data you wrote. and you can’t even do graceful error handling at that point, because you might be past the point.
considering the fact that a full disk is one of those things that you really need to be aware about, you can’t really trust this intersection of features.
Published at DZone with permission of Oren Eini, DZone MVB. See the original article here.
Opinions expressed by DZone contributors are their own.
Trending
-
Building a Java Payment App With Marqeta
-
How To Scan and Validate Image Uploads in Java
-
WireMock: The Ridiculously Easy Way (For Spring Microservices)
-
How to Optimize CPU Performance Through Isolation and System Tuning
Comments