帮助我解决以下问题。
当我尝试使用location关键字在hive中创建新表时,我收到以下错误。请帮帮我
$(".send-comment").on('keypress',function(event) {
var keycode = (event.keyCode ? event.keyCode : event.which);
if (keycode == '13') {
var table = $(this).closest("table");
var commenttext = $(this);
$.ajax({
url: '/newcomment',
type: "POST",
data: {
comment: $(commenttext).val(),
},
success: function(response) {
$(response).insertAfter(table);
$(commenttext).val("");
}
});
}
});
谢谢, Anbu k。
答案 0 :(得分:0)
您正在运行的用户hive无法访问您在使用drwxr-xr-x
给出的堆栈跟踪中的Metastore ..快速解决方案是使用root
运行您的配置单元