I'm trying to use Snappydata 1.0.1 to read and process data from Hadoop (HDP 2.6.3).
When pointing to Hive metastore (via hive-site.xml in Snappydata config) Spark from Snappydata distribution can read list of databases, but cannot create table in Snappydata. It tells 'Table not found'. Moreover Snappydata cluster UI shows that table, but Snappydata cannot work with it further - INSERT, SELECT, DROP commands with this table throws table not found error, and subsequent CREATE TABLE tells 'Table already exists'.
Without specifying Hive metastore it works well.
Configuration in hive-site.xml:
<property>
<name>hive.metastore.uris</name>
<value>thrift://srv1.company.org:9083</value>
</property>
Also, we are using Smart Connector mode.
It seems very strange - pointing to Hive metastore breaks Snappydata code, which is completely unrelated to external Hive (we are neither reading nor writing from Hadoop yet).
There is hypothesis that Snappydata is incompatible with our Hive metastore version, and this incompatibility leads to strange behavior. Can someone clarify this issue?