What is the option to enable orc indexing from spark?
df
.write()
.option("mode", "DROPMALFORMED")
.option("compression", "snappy")
.mode("overwrite")
.format("orc")
.option("index", "user_id")
.save(...);
I'm making up .option("index", uid)
, what would I have to put there to index column "user_id" from orc.