Hello !
I am joining some data with information included in distinct CSV files. For this joining, I use the DatabaseJoiner. As it is quite big CSV files (> 7M entries), the index creation takes some times before actually making the join.
However, as the input data are big also, I am processing the joins by tiles, but it means that for each tiles, the DatabaseJoiner is creating its own index again before joining and so on...
Is it a parameter or something else to write somewhere this created index so that it only have to read it again to use on the other tiles ?
Many thanks !
Nicolas