iwasakims commented on issue #592: BIGTOP-3282. Bump Hive to 2.3.6.
URL: https://github.com/apache/bigtop/pull/592#issuecomment-583207884
 
 
   manual testing with Tez (0.9.2 based on #591) enabled:
   ```
   [root@b68055d8f372 /]# echo 'export 
HADOOP_CLASSPATH=/etc/tez/conf:/usr/lib/tez/*:/usr/lib/tez/lib/*:$HADOOP_CLASSPATH'
 >> /etc/hadoop/conf/hadoop-env.sh
   [root@b68055d8f372 /]# sed -i -e 's/<value>mr<\/value>/<value>tez<\/value>/' 
/etc/hive/conf/hive-site.xml
   [root@b68055d8f372 /]# hive
   hive> create table test(id int, st string);
   hive> insert into test values (1, 'foo'), (2, 'bar'), (3, 'baz');
   Query ID = root_20200207023400_516b2c5b-1983-4eb7-bc49-0bd1193a0c5b
   Total jobs = 1
   Launching Job 1 out of 1
   Status: Running (Executing on YARN cluster with App id 
application_1581040795396_0003)
   
   
----------------------------------------------------------------------------------------------
           VERTICES      MODE        STATUS  TOTAL  COMPLETED  RUNNING  PENDING 
 FAILED  KILLED  
   
----------------------------------------------------------------------------------------------
   Map 1 .......... container     SUCCEEDED      1          1        0        0 
      0       0  
   
----------------------------------------------------------------------------------------------
   VERTICES: 01/01  [==========================>>] 100%  ELAPSED TIME: 6.12 s   
  
   
----------------------------------------------------------------------------------------------
   Loading data to table default.test
   OK
   Time taken: 9.328 seconds
   
   hive> select * from test;
   OK
   1    foo
   2    bar
   3    baz
   Time taken: 0.22 seconds, Fetched: 3 row(s)
   ```
   

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to