'What are datanucleus DELETEME* tables and when are they CREATED and DROPPED

I am getting following exception while executing spark Jobs.

org.datanucleus.exceptions.NucleusDataStoreException: Exception thrown obtaining schema column information from datastore

Which is caused by Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'hive_metastore.DELETEME1530184568175' doesn't exist



Solution 1:[1]

I had the same problem:

22/04/10 04:10:30 ERROR Datastore: Error thrown executing CREATE TABLE `DELETEME1649563830414`
(
    `UNUSED` INTEGER NOT NULL
) ENGINE=INNODB : CREATE command denied to user 'someuser'@'xx.xx.xx.xx' for table 'DELETEME1649563830414'

since it was for develop, I just granted all privileges

mysql> GRANT ALL PRIVILEGES ON *.* TO 'someuser'@'%';

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Luis Estrada