-
Hi there! Guys, I don't understand completely meaning of includedColumns. In the quick start guide: Thanks a lot! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
If you only want to use 10 of 1000 columns in your query, then you can just add those 10 columns as "included" columns. We will add the option to add all columns without specifying all columns, but for now you need to specify all columns if you want to add all columns to the index. |
Beta Was this translation helpful? Give feedback.
-
You can work with |
Beta Was this translation helpful? Give feedback.
You can work with
schema
of yourDataFrame
(e.g.,df.schema.map(c => c.name)
) to programmatically populate these columns.