How to build B-tree index using Apache Spark?
Now I have a set of numbers, such as 1,4,10,23,... , and I would like to build a b-tree index for them using Apache Spark . The format is per line per record (separated by '/n'). And I have also no idea of the output file's format, I just want to find a recommend one The regular way of building b-tree index are shown in https://en.wikipedia.org/wiki/B-tree , but I now would like a distributed parallel version in Apache Spark . In addition, the Wiki of B-tree introduced a way to build a B-tree to represent a large existing collection of data.(see https://en.wikipedia.org/wiki/B-tree ) It seems