Author Archives: Robins

[solution] install youcompleteme through VIM plug-in manager VIM plug, including ycmd server shutdown solution

Reference article:
take you step by step to install the most difficult VIM plug-in in history: youcompleteme
VIM plug-in: minimalist VIM plug-in manager

Installation method

    install VIM
    sudo apt get install VIM edit vimrc
    first add VIM ~ /. Vimrc
    at the top:
    call plug#begin (‘~ /. VIM/plugged’)
    plug ‘valloric/youcompleteme’
    call plug#end() to install VIM plug and install youcompleteme through plugged

    Input: curl – flo ~ /. VIM/autoload at the terminal/ plug.vim –create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim Open VIM
    Enter “: source ~ /. Vimrc” at the command line
    Enter “: pluginstall” at the command line to install youcompleteme, which takes a long time. Please wait patiently for YCM to be compiled and installed_ core
    mkdir ~/.ycm_ build
    cd ~/.ycm_ build
    cmake -G “Unix Makefiles” . ~/.vim/plugged/YouCompleteMe/third_ party/ycmd/cpp
    cmake –build . –target ycm_ core –config Release

Supplement: VIM prompts the debugging method of the ycmd server shut down:

Select log through ycmtogglelogs to view errors

For example, the solution of no module named watchdog: PIP3 install watchdog

[opencv + openvino] opencv-vino4.5.1 + opencv contrib installation

Get opencv vino

    git clone --branch 4.5.1 https://github.com/opencv/opencv_ contrib.git git clone --branch 4.5.1-openvino https://github.com/opencv/opencv.git opencv_ Place contrib in opencv directory

    Enter the opencv Directory:

      mkdir build & cd buildcmake -D CMAKE_ BUILD_ TYPE=RELEASE -D CMAKE_ INSTALL_ PREFIX=/usr/local -D INSTALL_ PYTHON_ EXAMPLES=ON -D OPENCV_ EXTRA_ MODULES_ PATH=../../opencv_ contrib/modules -D WITH_ INF_ ENGINE=ON -D ENABLE_ CXX11=ON -D PYTHON_ EXECUTABLE=/usr/bin/python ..

    Common errors and solutions:

      opencv_ contrib/modules/xfeatures2d/src/ boostdesc.cpp:673 :20: fatal error: boostdesc_ BGM. I: no such file or directory
      solution:
      source code compilation is adopted, so you can view the log file in the build folder CMakeDownloadLog.txt , in the log file CMakeDownloadLog.txt Search for bootdesc in_ BGM. I keyword (not search in the folder),
      found that the file download failed. The log file has its download address. You can directly copy the download address to the web page to see the source code of the file. You can directly copy the source code and save the file with the same name and put it in OpenCV_ The path of contrib/modules/xfeatures2d/SRC/ is OK.
      Baidu network disk download address: https://pan.baidu.com/s/1BeYF8kqEZLAJYQj-MvxpmA Password: e1wc (thank you for sharing) fatal error: features2d/test/test_ detectors_ regression.impl.hpp : no such file or directory
      solution:
      copy opencv/modules/features2d and paste it into the build directory to solve the problem. Final error: opencv2/xfeatures2d.hpp: no such file or directory
      solution:
      Add OpenCV_ The problem of can be solved by copying the contrib/modules/xfeatures 2D/include/opencv2 folder to the /usr/local/include/opencv2/ folder

AppCompat does not support the current theme features

Error message

Process: com.cleverrock.albume, PID: 27166
java.lang.RuntimeException: Unable to start activity ComponentInfo{com.cleverrock.albume/com.cleverrock.albume.activity.LoadActivity}: java.lang.IllegalArgumentException: AppCompat does not support the current theme features
   at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2248)
   at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2298)
   at android.app.ActivityThread.access$800(ActivityThread.java:144)
   at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1246)
   at android.os.Handler.dispatchMessage(Handler.java:102)
   at android.os.Looper.loop(Looper.java:212)
   at android.app.ActivityThread.main(ActivityThread.java:5151)
   at java.lang.reflect.Method.invokeNative(Native Method)
   at java.lang.reflect.Method.invoke(Method.java:515)
   at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:877)
   at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:693)
   at dalvik.system.NativeStart.main(Native Method)
Caused by: java.lang.IllegalArgumentException: AppCompat does not support the current theme features
   at android.support.v7.app.AppCompatDelegateImplV7.ensureSubDecor(AppCompatDelegateImplV7.java:363)
   at android.support.v7.app.AppCompatDelegateImplV7.setContentView(AppCompatDelegateImplV7.java:246)
   at android.support.v7.app.AppCompatActivity.setContentView(AppCompatActivity.java:106)
   at com.cleverrock.albume.activity.BaseActivity.onCreate(BaseActivity.java:57)
   at com.cleverrock.albume.activity.LoadActivity.onCreate(LoadActivity.java:57)
   at android.app.Activity.performCreate(Activity.java:5231)
   at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1087)
   at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2212)
   at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2298) 
   at android.app.ActivityThread.access$800(ActivityThread.java:144) 
   at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1246) 
   at android.os.Handler.dispatchMessage(Handler.java:102) 
   at android.os.Looper.loop(Looper.java:212) 
   at android.app.ActivityThread.main(ActivityThread.java:5151) 
   at java.lang.reflect.Method.invokeNative(Native Method) 
   at java.lang.reflect.Method.invoke(Method.java:515) 
   at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:877) 
   at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:693) 
   at dalvik.system.NativeStart.main(Native Method) 

25130;`22270


1.2.2.2.2.2.2.2.2.

values style.xml

21435;”25481an android:
To:

Spring MVC uses Ajax to submit requests asynchronously to complete login

Submit the form asynchronously with Ajax, log in and return the JSON data.

1、 Effect

2、 Configuration

springmvc.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xmlns:p="http://www.springframework.org/schema/p"
    xmlns:mvc="http://www.springframework.org/schema/mvc" 
    xmlns:context="http://www.springframework.org/schema/context"
    xsi:schemaLocation="
        http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/mvc
        http://www.springframework.org/schema/mvc/spring-mvc.xsd
        http://www.springframework.org/schema/context
        http://www.springframework.org/schema/context/spring-context.xsd">

    <context:component-scan base-package="com.it.springmvc" />

    <mvc:annotation-driven></mvc:annotation-driven>
    <bean id="jspViewResolver"
        class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="viewClass"
            value="org.springframework.web.servlet.view.JstlView" />
        <property name="prefix" value="/WEB-INF/jsp/" />
        <property name="suffix" value=".jsp" />
    </bean>
    <mvc:default-servlet-handler/>

</beans>

web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  
xmlns="http://java.sun.com/xml/ns/javaee" 
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee 
http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" 
version="3.0">
  <display-name>springMVC</display-name>
  <welcome-file-list>
    <welcome-file>index.html</welcome-file>
    <welcome-file>index.htm</welcome-file>
    <welcome-file>index.jsp</welcome-file>
    <welcome-file>default.html</welcome-file>
    <welcome-file>default.htm</welcome-file>
    <welcome-file>default.jsp</welcome-file>
  </welcome-file-list>
  <servlet>
      <servlet-name>example</servlet-name>
      <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <init-param>
            <param-name>contextConfigLocation</param-name>
            <param-value>WEB-INF/springmvc.xml</param-value>
        </init-param>
        <load-on-startup>1</load-on-startup>
    </servlet>

    <servlet-mapping>
        <servlet-name>example</servlet-name>
        <url-pattern>/</url-pattern>
    </servlet-mapping>


</web-app>

Controller

PersonController.java

package com.it.springmvc.controller;

import java.util.ArrayList;
import java.util.List;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.servlet.ModelAndView;

import com.it.springmvc.entity.Person;

@Controller
public class PersonController {
    @RequestMapping(value="/toLogin",method=RequestMethod.GET)
    public String toLogin(){
        return "login";
    }

    @RequestMapping(value="/login",method=RequestMethod.POST)
    public String login(Person person){
        if(10025==person.getPid()&&"123".equals(person.getPwd())){
            return "redirect:queryAll";
        }else{
            return "login";
        }
    }
    @RequestMapping(value="/queryAll",method=RequestMethod.GET)
    public ModelAndView queryAll(){
        ModelAndView mav=new ModelAndView("show");
        List<Person> list=new ArrayList<Person>();
        list.add(new Person(10025, "tom", "123"));
        list.add(new Person(10026, "jakson", "123"));
        list.add(new Person(10027, "nikly", "123"));
        mav.addObject("list", list);
        return mav;
    }
    @RequestMapping("/ajax")
    @ResponseBody
    public Object ajax(Person person){
        System.out.println(person.getPid()+person.getPwd());
        if(10025==person.getPid()&&"123".equals(person.getPwd())){
            return "{\"flag\":true}";
        }else{
            return "{\"flag\":false}";

        }

    }

}

1.2.2.

Index.jsp

<body>
<%
response.sendRedirect("toLogin");
%>
</body>

login.jsp

<%@ page language="java" contentType="text/html; charset=utf-8"
    pageEncoding="utf-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" 
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Insert title here</title>
</head>
<script type="text/javascript" src="js/jquery-3.2.1.min.js"></script>
<script type="text/javascript">
$(function(){
    $("#sub").click(function(){
        $.post("ajax",$("form").serialize(),function(data){
            //alert(data.flag);
              if(data.flag){
                alert("Login success");
                location.href="queryAll";
            }else{
                alert("please recheck your usename and password");
            } 
        },'json');
    })
})
</script>
<body>
<form  method="post">
    <table border="1" width="300px">
        <tr>
            <td>usename</td>
            <td><input type="text" name="pid"/></td>
        </tr>
        <tr>
            <td>password</td>
            <td><input type="password" name="pwd"/></td>
        </tr>
        <tr>            
            <!-- <td colspan="2"><input type="submit" value="submit"/></td> -->
            <td colspan="2"><input type="button" value="submit" id="sub"/></td>
        </tr>
    </table>
</form>

</body>
</html>

show.jsp

<%@ page language="java" contentType="text/html; charset=utf-8"
    pageEncoding="utf-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" 
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Insert title here</title>
</head>
<body>
<a href="toAdd">Add</a>
<table border="1" width="400px">
    <tr>
        <th>NUM</th>
        <th>name</th>
        <th>password</th>
        <th>Act</th>
    </tr>
    <c:forEach var="person" items="${list}">
        <tr>
            <td>${person.pid }</td>
            <td>${person.pname }</td>
            <td>${person.pwd }</td>
            <td><a href="">Update</a></td>
            <td><a href="">DEL</a></td>

        </tr>
    </c:forEach>
</table>
</body>
</html>

Solution: the solution to the wrong connection of rosdep init or rosdep update

If the prompt is error: unable to process source https://raw.githubusercontent.com/ros/rosdistro/master/rosdep/xxxxx Such errors, while ensuring that their machine can be on the premise of Baidu, at this time may be due to raw.githubusercontent.com The website has been blocked.
The solution is to modify the hosts file and add the IP address of the website

#Open the hosts file
sudo gedit /etc/hosts
#Add at the end of the file
151.101.84.133 raw.githubusercontent.com
#Save and quit and try again

Try again

Solution: pairing Bluetooth devices with win10 and Linux dual systems

preface

My computer is equipped with windows (win10) and Linux (Ubuntu 18.04) dual systems. I usually use Logitech’s wireless keyboard, but I find that every time I switch the system, although I have paired before, I can’t connect successfully. You must delete the paired device and re link it every time. Occasionally there will be device delete unsuccessful, very angry. So I want to connect (pair) two systems with one Bluetooth device once and for all.

Device deletion failed

Solution: (reprint, delete)

1. Download the repair tool and complete the installation with the default options. To prevent link failure, attach Baidu network disk link
2. Open shell, input btpair – u from the command line, and press enter to execute
3. Wait, and you will find that the paired bluetooth device has been successfully and completely deleted

 

Solution: (reprint, delete)

Basic steps:

1. First pair Bluetooth mouse under Linux (used to generate configuration file)
2. Switch to pair Bluetooth mouse under windows (used to read pairing information)
3. Modify pairing information under Linux to be consistent with that under windows

Of course, you can also do the opposite. The pairing information under windows is consistent with that under Linux, but it is not recommended.

Reading Bluetooth pairing information in Windows

The Bluetooth pairing information of windows is stored in the registry

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\BTHPORT\Parameters\Keys\<本机蓝牙 MAC>\<鼠标蓝牙 MAC>

The MAC address does not have a separator, and the system permission is required to access it. I found two ways to read this part of information. (I used the first way)

use psexec.exe Start with system permissions regedit.exe
psexec.exe </ code> can be downloaded from this page to PSTools.zip ), will PSTools.zip In PsExec.exe Or psexec64.exe (here I copy it directly to Windows/system32), and run CMD with administrator privileges (also in Windows/system32), and then Enter the following command to start regedit.exe :

psexec64.exe -si regedit

Then we can view the corresponding key value in the registry editor, and we can also export it: (my length is like this)

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\BTHPORT\Parameters\Keys\58fb842d509f]
"34885dd2457f"=hex:cf,a0,fc,2d,50,b3,f0,4a,93,8b,36,da,81,bb,5b,5e

Modifying Bluetooth pairing information under Linux

The pairing information of Bluetooth devices under Linux is stored in the/var/lib/Bluetooth/& lt; local Bluetooth MAC & gt; directory, such as/var/lib/Bluetooth/60:57: XX: XX: XX: XX. The letters in the MAC address are all uppercase and contain colon separator.

Enter the directory: (of course, it’s more convenient to click directly)

sudo su
cd /var/lib/bluetooth/60:57:XX:XX:XX:XX

You can see the paired bluetooth devices in the system:

root@nanpuyue-pc:/var/lib/bluetooth/60:57:XX:XX:XX:XX# ls -l
All 24
drwx------ 2 root root  4096 3月  13 19:48 4C:57:XX:XX:XX:XX
drwx------ 2 root root 12288 3月  13 22:38 cache
drwxr-xr-x 2 root root  4096 3月  13 21:52 EB:50:XX:XX:XX:XX
-rw------- 1 root root    69 3月   9 13:21 settings

Enter the directory of Bluetooth mouse we want to configure:

cd EB:50:XX:XX:XX:XX

What we need to modify is the info file in this directory. Take mine as an example, the file is as follows (it has been modified here. We only need to change the key into the key in the registry exported under windows. Specifically, delete the comma in win and change the lowercase to uppercase)

[General]
Name=Keyboard K380
Class=0x000540
SupportedTechnologies=BR/EDR;
Trusted=true
Blocked=false
Services=00001000-0000-1000-8000-00805f9b34fb;00001124-0000-1000-8000-00805f9b34fb;00001200-0000-1000-8000-00805f9b34fb;

[LinkKey]
Key=CFA0FC2D50B3F04A938B36DA81BB5B5E
Type=5
PINLength=0

[DeviceID]
Source=2
Vendor=1133
Product=45890
Version=16897

Reset computer

Visual Studio 2012 error C4996: ‘scanf’: This function or variable may be unsafe.

When compiling C language projects in vs 2012, if scanf function is used, the following error will be prompted during compilation:

error C4996: ‘scanf’: This function or variable may be unsafe. Consider using scanf_ s instead. To disable deprecation, use _ CRT_ SECURE_ NO_ WARNINGS. See online help for details.

The reason is that visual c + + 2012 uses more secure run time library routines. New security CRT functions_ S “suffix), see:

Security enhanced version of CRT function

Here is a solution to this problem

Method 1: replace the old function with the new security CRT functions.

Method 2: use the following methods to block this warning:

1. Define the following macro in the precompiled header file StdAfx. H

#define _ CRT_ SECURE_ NO_ DEPRECATE

2. Or declare “param warning”( disable:4996 )

3. Change the definition of preprocessing

Project – & gt; properties – & gt; configuration properties – & gt; C/C + + – & gt; preprocessor – & gt; preprocessor definition, add:

_ CRT_ SECURE_ NO_ DEPRECATE

Method 3: Method 2 does not use a more secure CRT function, which is obviously not a good recommended method. However, we do not want to change the function names one by one. Here is a simpler method:

In the precompiled header file StdAfx. H (also before any header file is included), define the following macro:

#define _ CRT_ SECURE_ CPP_ OVERLOAD_ STANDARD_ NAMES 1

When linking, the old function will be automatically replaced with security CRT functions.

Note: Although this method uses a new function, it can’t eliminate the warning (see the red letter for the reason). You have to use method 2 (-_ -)。 In fact, the following two sentences should be added to the precompiled header file StdAfx. H:

#define _ CRT_ SECURE_ NO_ DEPRECATE

#define _ CRT_ SECURE_ CPP_ OVERLOAD_ STANDARD_ NAMES 1


Error reason explanation:

This kind of Microsoft’s warning is mainly due to the fact that many functions in the C library do not carry out parameter detection (including cross-border functions). Microsoft is worried that using these functions will cause memory exceptions, so it rewrites the functions with the same functions, and the rewritten functions carry out parameter detection. It will be safer and more convenient to use these new functions. You don’t need to memorize these rewritten functions, because the compiler will tell you the corresponding security function when it gives a warning for each function. You can get it by checking the warning information, and check MSDN for details when you use it.

[Solved] hive Caused by: MetaException(message:Version information not found in metastore. )

Logging initialized using configuration in jar:file:/D:/hive/apache-hive-1.2.2-bin/lib/hive-common-1.2.2.jar!/hive-log4j.properties
SLF4J: Class path contains multiple SLF4J bindings.
SLF4J: Found binding in [jar:file:/D:/hadoop/hadoop-2.6.5/share/hadoop/common/lib/slf4j-log4j12-1.7.5.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: Found binding in [jar:file:/D:/hbase/hbase-1.3.5/lib/slf4j-log4j12-1.7.5.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an explanation.
SLF4J: Actual binding is of type [org.slf4j.impl.Log4jLoggerFactory]
Exception in thread "main" java.lang.RuntimeException: java.lang.RuntimeException: Unable to instantiate org.apache.hadoop.hive.ql.metadata.SessionHiveMetaStoreClient
        at org.apache.hadoop.hive.ql.session.SessionState.start(SessionState.java:522)
        at org.apache.hadoop.hive.cli.CliDriver.run(CliDriver.java:677)
        at org.apache.hadoop.hive.cli.CliDriver.main(CliDriver.java:621)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:498)
        at org.apache.hadoop.util.RunJar.run(RunJar.java:221)
        at org.apache.hadoop.util.RunJar.main(RunJar.java:136)
Caused by: java.lang.RuntimeException: Unable to instantiate org.apache.hadoop.hive.ql.metadata.SessionHiveMetaStoreClient
        at org.apache.hadoop.hive.metastore.MetaStoreUtils.newInstance(MetaStoreUtils.java:1523)
        at org.apache.hadoop.hive.metastore.RetryingMetaStoreClient.(RetryingMetaStoreClient.java:86)
        at org.apache.hadoop.hive.metastore.RetryingMetaStoreClient.getProxy(RetryingMetaStoreClient.java:132)
        at org.apache.hadoop.hive.metastore.RetryingMetaStoreClient.getProxy(RetryingMetaStoreClient.java:104)
        at org.apache.hadoop.hive.ql.metadata.Hive.createMetaStoreClient(Hive.java:3005)
        at org.apache.hadoop.hive.ql.metadata.Hive.getMSC(Hive.java:3024)
        at org.apache.hadoop.hive.ql.session.SessionState.start(SessionState.java:503)
        ... 8 more
Caused by: java.lang.reflect.InvocationTargetException
        at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
        at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
        at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
        at org.apache.hadoop.hive.metastore.MetaStoreUtils.newInstance(MetaStoreUtils.java:1521)
        ... 14 more
Caused by: MetaException(message:Version information not found in metastore. )
        at org.apache.hadoop.hive.metastore.ObjectStore.checkSchema(ObjectStore.java:6664)
        at org.apache.hadoop.hive.metastore.ObjectStore.verifySchema(ObjectStore.java:6645)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:498)
        at org.apache.hadoop.hive.metastore.RawStoreProxy.invoke(RawStoreProxy.java:114)
        at com.sun.proxy.$Proxy6.verifySchema(Unknown Source)
        at org.apache.hadoop.hive.metastore.HiveMetaStore$HMSHandler.getMS(HiveMetaStore.java:572)
        at org.apache.hadoop.hive.metastore.HiveMetaStore$HMSHandler.createDefaultDB(HiveMetaStore.java:620)
        at org.apache.hadoop.hive.metastore.HiveMetaStore$HMSHandler.init(HiveMetaStore.java:461)
        at org.apache.hadoop.hive.metastore.RetryingHMSHandler.(RetryingHMSHandler.java:66)
        at org.apache.hadoop.hive.metastore.RetryingHMSHandler.getProxy(RetryingHMSHandler.java:72)
        at org.apache.hadoop.hive.metastore.HiveMetaStore.newRetryingHMSHandler(HiveMetaStore.java:5768)
        at org.apache.hadoop.hive.metastore.HiveMetaStoreClient.(HiveMetaStoreClient.java:199)
        at org.apache.hadoop.hive.ql.metadata.SessionHiveMetaStoreClient.(SessionHiveMetaStoreClient.java:74)
        ... 19 more
 
C:\Windows\System32>hive --service metastore
"Starting Hive Metastore Server"
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.metastore.client.capability.check does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.metastore.hbase.aggregate.stats.false.positive.probability does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.druid.broker.address.default does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.io.orc.time.counters does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.tez.task.scale.memory.reserve-fraction.min does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.orc.splits.ms.footer.cache.ppd.enabled does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.metastore.event.message.factory does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.server2.metrics.enabled does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.tez.hs2.user.access does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.druid.storage.storageDirectory does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.am.liveness.connection.timeout.ms does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.tez.dynamic.semijoin.reduction.threshold does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.server2.thrift.client.connect.retry.limit does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.daemon.xmx.headroom does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.tez.dynamic.semijoin.reduction does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.io.allocator.direct does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.auto.enforce.stats does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.client.consistent.splits does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.server2.tez.session.lifetime does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.timedout.txn.reaper.start does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.metastore.hbase.cache.ttl does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.management.acl does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.daemon.delegation.token.lifetime does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.server2.authentication.ldap.guidKey does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.ats.hook.queue.capacity does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.strict.checks.large.query does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.tez.bigtable.minsize.semijoin.reduction does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.io.allocator.alloc.min does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.server2.thrift.client.user does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.io.encode.alloc.size does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.daemon.wait.queue.comparator.class.name does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.daemon.output.service.port does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.orc.cache.use.soft.references does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.io.encode.enabled does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.tez.task.scale.memory.reserve.fraction.max does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.task.communicator.listener.thread-count does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.tez.container.max.java.heap.fraction does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.stats.column.autogather does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.daemon.am.liveness.heartbeat.interval.ms does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.io.decoding.metrics.percentiles.intervals does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.groupby.position.alias does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.metastore.txn.store.impl does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.spark.use.groupby.shuffle does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.object.cache.enabled does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.server2.parallel.ops.in.session does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.groupby.limit.extrastep does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.server2.webui.use.ssl does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.service.metrics.file.location does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.server2.thrift.client.retry.delay.seconds does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.materializedview.fileformat does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.daemon.num.file.cleaner.threads does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.test.fail.compaction does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.blobstore.use.blobstore.as.scratchdir does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.service.metrics.class does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.io.allocator.mmap.path does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.daemon.download.permanent.fns does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.server2.webui.max.historic.queries does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.vectorized.execution.reducesink.new.enabled does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.compactor.max.num.delta does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.compactor.history.retention.attempted does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.server2.webui.port does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.compactor.initiator.failed.compacts.threshold does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.service.metrics.reporter does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.daemon.output.service.max.pending.writes does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.execution.mode does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.enable.grace.join.in.llap does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.optimize.limittranspose does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.io.memory.mode does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.io.threadpool.size does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.druid.select.threshold does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.scratchdir.lock does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.server2.webui.use.spnego does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.service.metrics.file.frequency does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.hs2.coordinator.enabled does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.task.scheduler.timeout.seconds does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.optimize.filter.stats.reduction does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.exec.orc.base.delta.ratio does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.metastore.fastpath does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.server2.clear.dangling.scratchdir does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.test.fail.heartbeater does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.file.cleanup.delay.seconds does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.management.rpc.port does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.mapjoin.hybridgrace.bloomfilter does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.auto.enforce.tree does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.metastore.stats.ndv.tuner does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.direct.sql.max.query.length does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.compactor.history.retention.failed does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.server2.close.session.on.disconnect does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.optimize.ppd.windowing does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.metastore.initial.metadata.count.enabled does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.server2.webui.host does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.orc.splits.ms.footer.cache.enabled does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.optimize.point.lookup.min does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.metastore.hbase.file.metadata.threads does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.daemon.service.refresh.interval.sec does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.auto.max.output.size does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.driver.parallel.compilation does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.remote.token.requires.signing does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.tez.bucket.pruning does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.cache.allow.synthetic.fileid does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.hash.table.inflation.factor does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.metastore.hbase.aggr.stats.hbase.ttl does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.auto.enforce.vectorized does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.writeset.reaper.interval does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.vectorized.use.vector.serde.deserialize does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.order.columnalignment does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.daemon.output.service.send.buffer.size does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.exec.schema.evolution does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.direct.sql.max.elements.values.clause does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.server2.llap.concurrent.queries does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.auto.allow.uber does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.druid.indexer.partition.size.max does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.auto.auth does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.orc.splits.include.fileid does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.daemon.communicator.num.threads does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.orderby.position.alias does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.task.communicator.connection.sleep.between.retries.ms does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.metastore.hbase.aggregate.stats.max.partitions does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.service.metrics.hadoop2.component does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.daemon.yarn.shuffle.port does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.direct.sql.max.elements.in.clause does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.druid.passiveWaitTimeMs does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.load.dynamic.partitions.thread does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.druid.indexer.segments.granularity does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.server2.thrift.http.response.header.size does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.conf.internal.variable.list does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.optimize.limittranspose.reductionpercentage does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.repl.cm.enabled does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.server2.thrift.client.retry.limit does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.server2.thrift.resultset.serialize.in.tasks does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.query.timeout.seconds does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.service.metrics.hadoop2.frequency does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.orc.splits.directory.batch.ms does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.metastore.hbase.cache.max.reader.wait does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.task.scheduler.node.reenable.max.timeout.ms does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.max.open.txns does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.auto.convert.sortmerge.join.reduce.side does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.server2.zookeeper.publish.configs does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.auto.convert.join.hashtable.max.entries does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.server2.tez.sessions.init.threads does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.metastore.authorization.storage.check.externaltable.drop does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.execution.mode does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.cbo.cnf.maxnodes does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.vectorized.adaptor.usage.mode does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.materializedview.rewriting does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.server2.authentication.ldap.groupMembershipKey does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.metastore.hbase.catalog.cache.size does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.cbo.show.warnings does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.metastore.fshandler.threads does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.tez.max.bloom.filter.entries does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.io.metadata.fraction does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.materializedview.serde does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.daemon.task.scheduler.wait.queue.size does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.metastore.hbase.aggr.stats.cache.entries does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.txn.operational.properties does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.metastore.hbase.aggr.stats.memory.ttl does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.daemon.rpc.port does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.io.nonvector.wrapper.enabled does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.metastore.hbase.aggregate.stats.cache.size does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.vectorized.use.vectorized.input.format does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.optimize.cte.materialize.threshold does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.metastore.hbase.cache.clean.until does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.optimize.semijoin.conversion does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.metastore.port does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.spark.dynamic.partition.pruning does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.metastore.metrics.enabled does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.repl.rootdir does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.metastore.limit.partition.request does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.async.log.enabled does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.daemon.logger does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.allow.udf.load.on.demand does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.cli.tez.session.async does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.tez.bloom.filter.factor does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.daemon.am-reporter.max.threads does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.spark.use.file.size.for.mapjoin does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.strict.checks.bucketing does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.tez.bucket.pruning.compat does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.server2.webui.spnego.principal does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.daemon.task.preemption.metrics.intervals does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.daemon.shuffle.dir.watcher.enabled does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.io.allocator.arena.count does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.metastore.use.SSL does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.task.communicator.connection.timeout.ms does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.transpose.aggr.join does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.druid.maxTries does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.spark.dynamic.partition.pruning.max.data.size does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.druid.metadata.base does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.metastore.hbase.aggr.stats.invalidator.frequency does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.io.use.lrfu does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.io.allocator.mmap does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.druid.coordinator.address.default does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.server2.thrift.resultset.max.fetch.size does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.io.sarg.cache.max.weight.mb does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.server2.clear.dangling.scratchdir.interval does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.druid.sleep.time does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.vectorized.use.row.serde.deserialize does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.server2.compile.lock.timeout does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.timedout.txn.reaper.interval does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.metastore.hbase.aggregate.stats.max.variance does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.io.lrfu.lambda does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.druid.metadata.db.type does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.daemon.output.stream.timeout does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.transactional.events.mem does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.server2.thrift.resultset.default.fetch.size does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.repl.cm.retain does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.merge.cardinality.check does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.server2.authentication.ldap.groupClassKey does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.optimize.point.lookup does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.allow.permanent.fns does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.daemon.web.ssl does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.txn.manager.dump.lock.state.on.acquire.timeout does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.compactor.history.retention.succeeded does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.io.use.fileid.path does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.io.encode.slice.row.count does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.mapjoin.optimized.hashtable.probe.percent does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.druid.select.distribute does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.am.use.fqdn does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.task.scheduler.node.reenable.min.timeout.ms does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.validate.acls does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.support.special.characters.tablename does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.mv.files.thread does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.skip.compile.udf.check does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.io.encode.vector.serde.enabled does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.repl.cm.interval does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.server2.sleep.interval.between.start.attempts does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.daemon.yarn.container.mb does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.druid.http.read.timeout does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.blobstore.optimizations.enabled does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.orc.gap.cache does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.optimize.dynamic.partition.hashjoin does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.exec.copyfile.maxnumfiles does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.io.encode.formats does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.druid.http.numConnection does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.daemon.task.scheduler.enable.preemption does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.daemon.num.executors does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.metastore.hbase.cache.max.full does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.metastore.hbase.connection.class does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.server2.tez.sessions.custom.queue.allowed does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.io.encode.slice.lrr does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.server2.thrift.client.password does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.metastore.hbase.cache.max.writer.wait does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.server2.thrift.http.request.header.size does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.server2.webui.max.threads does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.optimize.limittranspose.reductiontuples does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.test.rollbacktxn does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.task.scheduler.num.schedulable.tasks.per.node does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.daemon.acl does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.io.memory.size does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.strict.checks.type.safety does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.server2.async.exec.async.compile does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.auto.max.input.size does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.tez.enable.memory.manager does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.msck.repair.batch.size does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.blobstore.supported.schemes does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.orc.splits.allow.synthetic.fileid does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.stats.filter.in.factor does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.spark.use.op.stats does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.exec.input.listing.max.threads does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.server2.tez.session.lifetime.jitter does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.daemon.web.port does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.strict.checks.cartesian.product does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.daemon.rpc.num.handlers does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.daemon.vcpus.per.instance does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.count.open.txns.interval does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.tez.min.bloom.filter.entries does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.optimize.partition.columns.separate does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.orc.cache.stripe.details.mem.size does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.txn.heartbeat.threadpool.size does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.task.scheduler.locality.delay does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.repl.cmrootdir does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.task.scheduler.node.disable.backoff.factor does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.am.liveness.connection.sleep.between.retries.ms does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.spark.exec.inplace.progress does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.druid.working.directory does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.daemon.memory.per.instance.mb does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.msck.path.validation does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.tez.task.scale.memory.reserve.fraction does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.merge.nway.joins does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.compactor.history.reaper.interval does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.txn.strict.locking.mode does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.io.encode.vector.serde.async.enabled does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.tez.input.generate.consistent.splits does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.server2.in.place.progress does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.druid.indexer.memory.rownum.max does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.server2.xsrf.filter.enabled does not exist
20/03/16 15:31:19 WARN conf.HiveConf: HiveConf of name hive.llap.io.allocator.alloc.max does not exist
SLF4J: Class path contains multiple SLF4J bindings.
SLF4J: Found binding in [jar:file:/D:/hadoop/hadoop-2.6.5/share/hadoop/common/lib/slf4j-log4j12-1.7.5.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: Found binding in [jar:file:/D:/hbase/hbase-1.3.5/lib/slf4j-log4j12-1.7.5.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an explanation.
SLF4J: Actual binding is of type [org.slf4j.impl.Log4jLoggerFactory]
MetaException(message:Version information not found in metastore. )
        at org.apache.hadoop.hive.metastore.ObjectStore.checkSchema(ObjectStore.java:6664)
        at org.apache.hadoop.hive.metastore.ObjectStore.verifySchema(ObjectStore.java:6645)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:498)
        at org.apache.hadoop.hive.metastore.RawStoreProxy.invoke(RawStoreProxy.java:114)
        at com.sun.proxy.$Proxy2.verifySchema(Unknown Source)
        at org.apache.hadoop.hive.metastore.HiveMetaStore$HMSHandler.getMS(HiveMetaStore.java:572)
        at org.apache.hadoop.hive.metastore.HiveMetaStore$HMSHandler.createDefaultDB(HiveMetaStore.java:620)
        at org.apache.hadoop.hive.metastore.HiveMetaStore$HMSHandler.init(HiveMetaStore.java:461)
        at org.apache.hadoop.hive.metastore.RetryingHMSHandler.(RetryingHMSHandler.java:66)
        at org.apache.hadoop.hive.metastore.RetryingHMSHandler.getProxy(RetryingHMSHandler.java:72)
        at org.apache.hadoop.hive.metastore.HiveMetaStore.newRetryingHMSHandler(HiveMetaStore.java:5762)
        at org.apache.hadoop.hive.metastore.HiveMetaStore.newRetryingHMSHandler(HiveMetaStore.java:5757)
        at org.apache.hadoop.hive.metastore.HiveMetaStore.startMetaStore(HiveMetaStore.java:5990)
        at org.apache.hadoop.hive.metastore.HiveMetaStore.main(HiveMetaStore.java:5915)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:498)
        at org.apache.hadoop.util.RunJar.run(RunJar.java:221)
        at org.apache.hadoop.util.RunJar.main(RunJar.java:136)
Exception in thread "main" MetaException(message:Version information not found in metastore. )
        at org.apache.hadoop.hive.metastore.ObjectStore.checkSchema(ObjectStore.java:6664)
        at org.apache.hadoop.hive.metastore.ObjectStore.verifySchema(ObjectStore.java:6645)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:498)
        at org.apache.hadoop.hive.metastore.RawStoreProxy.invoke(RawStoreProxy.java:114)
        at com.sun.proxy.$Proxy2.verifySchema(Unknown Source)
        at org.apache.hadoop.hive.metastore.HiveMetaStore$HMSHandler.getMS(HiveMetaStore.java:572)
        at org.apache.hadoop.hive.metastore.HiveMetaStore$HMSHandler.createDefaultDB(HiveMetaStore.java:620)
        at org.apache.hadoop.hive.metastore.HiveMetaStore$HMSHandler.init(HiveMetaStore.java:461)
        at org.apache.hadoop.hive.metastore.RetryingHMSHandler.(RetryingHMSHandler.java:66)
        at org.apache.hadoop.hive.metastore.RetryingHMSHandler.getProxy(RetryingHMSHandler.java:72)
        at org.apache.hadoop.hive.metastore.HiveMetaStore.newRetryingHMSHandler(HiveMetaStore.java:5762)
        at org.apache.hadoop.hive.metastore.HiveMetaStore.newRetryingHMSHandler(HiveMetaStore.java:5757)
        at org.apache.hadoop.hive.metastore.HiveMetaStore.startMetaStore(HiveMetaStore.java:5990)
        at org.apache.hadoop.hive.metastore.HiveMetaStore.main(HiveMetaStore.java:5915)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:498)
        at org.apache.hadoop.util.RunJar.run(RunJar.java:221)
        at org.apache.hadoop.util.RunJar.main(RunJar.java:136)

Solution:

Modify it in hive-site.xml: hive.metastore.schema.verification is set to false.

VMware this host does not support 64 bit solutions

environment

VMware version: 14.1.3
operating system: win10 x64

terms of settlement

Enter the BIOS to confirm the Intel (R) virtualization technology status. Please set the disabled status to enabled. Remove the Hyper-V status from the control panel (i.e. cancel the check of Hyper-V). If the above steps are all done or not, run the CMD program, execute Bcdedit/set hypervisorlaunchtype off, and restart the computer. (that’s my problem) in addition, you can use the following tools to check whether the computer hardware supports virtualization:
to check whether the computer hardware supports virtualization https://www.grc.com/securable.htm
After startup, it is shown in the following figure:

Modifying SVN user name and password in eclipse

Sometimes in development, some code is submitted by a public computer. Eclipse has no special function to switch SVN accounts. The solution is obtained by consulting the data

1. Check what SVN interface you are using in eclipse
Windows & gt; preference & gt; team & gt; SVN # SVN interface (bottom right)

2. If you are using javahl, Find the following directory and delete the files in the auth directory.
Windows 7
C: (users) \ “your user name” \ \ appdata/roaming/subversion/auth \
XP
C: (documents and settings) \ “your user name” \ \ “application data (hidden folder) \” subversion/auth “

3, Find the following directory and delete the. Keyring file.
[eclipse] “configuration” org.eclipse . core.runtime