Failed with exception java.io.IOException:java.lang.IllegalArgumentException:&nbs

hive> show tables;

OK

Failed with exceptionjava.io.IOException:java.lang.IllegalArgumentException:java.net.URISyntaxException: Relative path in absolute URI:${system:user.name}

Time taken: 0.193 seconds

 

 

解决办法:把下列system:删除

 

   hive.exec.local.scratchdir

   ${system:java.io.tmpdir}/${ system:user.name}

    Localscratch space for Hive jobs

 

 

变成

 

   hive.exec.local.scratchdir

    ${java.io.tmpdir}/${ user.name}

    Localscratch space for Hive jobs

你可能感兴趣的:(hive)