Can I give my entire dataset to calcite, so that it will take statistics from data itself? If so, how can I import my dataset into calcite?
Asked
Active
Viewed 124 times
1 Answers
1
Calcite is not designed to store all of your data. You can use it to access data from a variety of sources but you need to provide your own stasitics.

Michael Mior
- 28,107
- 9
- 89
- 113
-
Meaning is, even if I want to give table details like datatype/size of column, unique elements count, etc., I have to give them with my own struct. We cant give any of our dataset to calcite, so that calcite can process our data to process these statistics. Is that so? – Anbu Apr 30 '18 at 06:04
-
Correct. That's currently the case. – Michael Mior May 01 '18 at 00:17
-
So how to register our own struct to calcite via RelMetadataProvider? – Anbu May 02 '18 at 11:40
-
@Anbu That's a separate question and I'd suggest you post a new question asking this. – Michael Mior May 02 '18 at 15:52