|
|
|
|
|
by thesz
3116 days ago
|
|
Most of current storage backends have Log-structured Merge Tree implementation or something like that. The larger layers of LSMT have enormous size and should be accessed/built as rare as possible. Being able to predict that given element exists in the larger layers at all is quite a bonus. You can skip reading megabytes of data. The rareness of building of the larger layers justifies training deep neural model for them. I cannot verify existence of LSMT backend for major SQL DB engines, but NoSQL engines use it a plenty: https://en.wikipedia.org/wiki/Log-structured_merge-tree |
|