当启动Hive
的时候报错:java
Caused by: javax.jdo.JDOException: Couldnt obtain a new sequence (unique id) : Cannot execute statement: impossible to write to binary log since BINLOG_FORMAT = STATEMENT and at least one table uses a storage engine limited to row-based logging. InnoDB is limited to row-logging when transaction isolation level is READ COMMITTED or READ UNCOMMITTED. NestedThrowables: java.sql.SQLException: Cannot execute statement: impossible to write to binary log since BINLOG_FORMAT = STATEMENT and at least one table uses a storage engine limited to row-based logging. InnoDB is limited to row-logging when transaction isolation level is READ COMMITTED or READ UNCOMMITTED.
这个问题是因为hive
的元数据存储MySQL
配置不当引发的,能够这样解决:node
mysql> set global binlog_format='MIXED';
当在Hive
中建立表的时候报错:mysql
create table years (year string, event string) row format delimited fields terminated by '\t'; FAILED: Execution Error, return code 1 from org.apache.hadoop.hive.ql.exec.DDLTask. MetaException(message:For direct MetaStore DB connections, we don't support retries at the client level.)
这是因为字符集的问题,须要配置MySQL
的字符集:sql
mysql> alter database hive character set latin1;
当执行Hive
客户端时候出现以下错误:apache
WARN conf.HiveConf: HiveConf of name hive.metastore.local does not exist
这是因为在0.10 0.11或者以后的HIVE版本 hive.metastore.local 属性再也不使用。将该参数从hive-site.xml
删除便可。oop
在启动Hive
报以下错误:spa
(Permission denied: user=anonymous, access=EXECUTE, inode="/tmp":hadoop:supergroup:drwx------
这是因为Hive
没有hdfs:/tmp
目录的权限,赋权限便可:.net
hadoop dfs -chmod -R 777 /tmp