What's the worst case time complexity in a log-structured merge tree for a simple search query (like querying a single WHERE
clause)?
Is it O(log N)? O(N*Log N)? Something else?
How about for a multiple query, like searching for multiple WHERE
clauses in a key-value database?
The wikipedia page on LSM trees is currently lacking this info.
For a simple search indexed by a LSM tree, it is O(log n). This is because the biggest tree in the LSM tree is a B tree, which is O(log n), and the other trees are subsets of B trees or in the case of in memory trees, more efficient trees, which are no worse than O(log n). The number of trees is a constant, so it doesn't affect the order of the search time.