无法在cloudera quickstart VM中使用location关键字

时间:2015-10-30 19:44:13

标签: hadoop hive

帮助我解决以下问题。

当我尝试使用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。

1 个答案:

答案 0 :(得分:0)

您正在运行的用户hive无法访问您在使用drwxr-xr-x给出的堆栈跟踪中的Metastore ..快速解决方案是使用root运行您的配置单元

相关问题