I created this table in Hive:
hive> CREATE TABLE twitter_data(datePosted TIMESTAMP
, userId BIGINT
, userName STRING
, tweets STRING)
ROW FORMAT DELIMITED
FIELDS TERMINATED BY '\t';
But it displays this error message:
FAILED: Error in metadata: javax.jdo.JDOFatalInternalException: Error creating transactional connection factory NestedThrowables: java.lang.reflect.InvocationTargetException
FAILED: Execution Error, return code 1 from org.apache.hadoop.hive.ql.exec.DDLTask
Does anyone know what this error message means?