If use CQL to create a table such as:
CREATE TABLE TestTable(
eventID BIGINT PRIMARY KEY,
eventTime TIMESTAMP
);
The datatype for the eventTime column in Cassandra will be a DateType. In Hive if I create an external table on top of my Cassandra column family, the Hive datatype will be a timestamp. If I also create a Solr core on this column family, what fieldType class do I use for the eventTime? solr.DateField and solr.LongField do not work. I get the following error: Current validation_class and found SolrType do not match for column: eventTime. Is there any way to map a Cassandra DateType to a long or date value in Solr?
