hadoop 독립 실행 모드 |
|
-> Hadoop 이 설치되어 있지 않은 경우 위의 "Hadoop 설치" 를 클릭하세요.
-> MySQL 이 설치되어 있지 않은 경우 위의 "MySQL 설치" 를 클릭하세요.
1. mysql 서버에 접속합니다.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | $ mysql -u root -p Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 10 Server version: 5.7.19-0ubuntu0.16.04.1 (Ubuntu) Copyright (c) 2000, 2017, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. mysql> | cs |
2. 유저를 생성합니다.
1 | mysql> CREATE USER 'hive'@'%' IDENTIFIED BY 'pass'; | cs |
* pass 부분에 해당 계정의 비밀번호를 입력합니다.
3. 생성한 유저에게 권한을 부여합니다.
1 | mysql> GRANT ALL ON *.* TO 'hive'@'%' IDENTIFIED BY 'pass'; | cs |
* pass 부분에 해당 계정의 비밀번호를 입력합니다.
4. 부여된 권한이 적용되도록 아래와 같이 실행합니다.
1 | mysql> flush privileges; | cs |
5. mysql 서버 재기동
1 2 | $ sudo /etc/init.d/mysql restart [ ok ] Restarting mysql (via systemctl): mysql.service. | cs |
6. 생성한 계정으로 mysql 에 접속합니다.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | $ mysql -u hive -p Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 13 Server version: 5.7.19-0ubuntu0.16.04.1 (Ubuntu) Copyright (c) 2000, 2017, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. | cs |
7. hive 데이터베이스를 생성합니다.
1 2 | mysql> create database hive; Query OK, 1 row affected (0.02 sec) | cs |
1. hive 를 다운로드합니다.
1 2 3 4 5 6 7 8 9 10 11 | $ wget http://apache.mirror.cdnetworks.com/hive/hive-2.3.0/apache-hive-2.3.0-bin.tar.gz --2017-09-27 09:43:36-- http://apache.mirror.cdnetworks.com/hive/hive-2.3.0/apache-hive-2.3.0-bin.tar.gz Resolving apache.mirror.cdnetworks.com (apache.mirror.cdnetworks.com)... 14.0.101.165 Connecting to apache.mirror.cdnetworks.com (apache.mirror.cdnetworks.com)|14.0.101.165|:80... connected. HTTP request sent, awaiting response... 200 OK Length: 231535691 (221M) [application/x-gzip] Saving to: ‘apache-hive-2.3.0-bin.tar.gz’ apache-hive-2.3.0-bin.t 100%[============================>] 220.81M 10.7MB/s in 21s 2017-09-27 09:43:57 (10.7 MB/s) - ‘apache-hive-2.3.0-bin.tar.gz’ saved [231535691/231535691] | cs |
2. 다운로드한 파일을 압축 해제합니다.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 | $ sudo tar -xvzf apache-hive-2.3.0-bin.tar.gz apache-hive-2.3.0-bin/lib/hive-common-2.3.0.jar apache-hive-2.3.0-bin/lib/hive-shims-2.3.0.jar apache-hive-2.3.0-bin/lib/hive-shims-common-2.3.0.jar apache-hive-2.3.0-bin/lib/log4j-slf4j-impl-2.6.2.jar apache-hive-2.3.0-bin/lib/log4j-api-2.6.2.jar apache-hive-2.3.0-bin/lib/guava-14.0.1.jar apache-hive-2.3.0-bin/lib/commons-lang-2.6.jar apache-hive-2.3.0-bin/lib/libthrift-0.9.3.jar apache-hive-2.3.0-bin/lib/httpclient-4.4.jar apache-hive-2.3.0-bin/lib/httpcore-4.4.jar apache-hive-2.3.0-bin/lib/commons-logging-1.2.jar apache-hive-2.3.0-bin/lib/commons-codec-1.4.jar apache-hive-2.3.0-bin/lib/curator-framework-2.7.1.jar apache-hive-2.3.0-bin/lib/curator-client-2.7.1.jar apache-hive-2.3.0-bin/lib/zookeeper-3.4.6.jar apache-hive-2.3.0-bin/lib/jline-2.12.jar apache-hive-2.3.0-bin/lib/netty-3.6.2.Final.jar apache-hive-2.3.0-bin/lib/hive-shims-0.23-2.3.0.jar apache-hive-2.3.0-bin/lib/guice-servlet-4.1.0.jar apache-hive-2.3.0-bin/lib/javax.inject-1.jar apache-hive-2.3.0-bin/lib/protobuf-java-2.5.0.jar apache-hive-2.3.0-bin/lib/commons-io-2.4.jar apache-hive-2.3.0-bin/lib/jettison-1.1.jar apache-hive-2.3.0-bin/lib/activation-1.1.jar apache-hive-2.3.0-bin/lib/jackson-jaxrs-1.9.13.jar apache-hive-2.3.0-bin/lib/jackson-xc-1.9.13.jar apache-hive-2.3.0-bin/lib/jersey-guice-1.19.jar apache-hive-2.3.0-bin/lib/jersey-server-1.14.jar apache-hive-2.3.0-bin/lib/asm-3.1.jar apache-hive-2.3.0-bin/lib/commons-compress-1.9.jar apache-hive-2.3.0-bin/lib/jetty-util-6.1.26.jar apache-hive-2.3.0-bin/lib/jersey-client-1.9.jar apache-hive-2.3.0-bin/lib/commons-cli-1.2.jar apache-hive-2.3.0-bin/lib/commons-collections-3.2.2.jar apache-hive-2.3.0-bin/lib/jetty-6.1.26.jar apache-hive-2.3.0-bin/lib/hive-shims-scheduler-2.3.0.jar apache-hive-2.3.0-bin/lib/hive-storage-api-2.4.0.jar apache-hive-2.3.0-bin/lib/commons-lang3-3.1.jar apache-hive-2.3.0-bin/lib/orc-core-1.3.3.jar apache-hive-2.3.0-bin/lib/aircompressor-0.3.jar apache-hive-2.3.0-bin/lib/jetty-all-7.6.0.v20120127.jar apache-hive-2.3.0-bin/lib/geronimo-jta_1.1_spec-1.1.1.jar apache-hive-2.3.0-bin/lib/mail-1.4.1.jar apache-hive-2.3.0-bin/lib/geronimo-jaspic_1.0_spec-1.0.jar apache-hive-2.3.0-bin/lib/geronimo-annotation_1.0_spec-1.1.1.jar apache-hive-2.3.0-bin/lib/asm-commons-3.1.jar apache-hive-2.3.0-bin/lib/asm-tree-3.1.jar apache-hive-2.3.0-bin/lib/javax.servlet-3.0.0.v201112011016.jar apache-hive-2.3.0-bin/lib/joda-time-2.8.1.jar apache-hive-2.3.0-bin/lib/log4j-1.2-api-2.6.2.jar apache-hive-2.3.0-bin/lib/log4j-core-2.6.2.jar apache-hive-2.3.0-bin/lib/log4j-web-2.6.2.jar apache-hive-2.3.0-bin/lib/ant-1.9.1.jar apache-hive-2.3.0-bin/lib/ant-launcher-1.9.1.jar apache-hive-2.3.0-bin/lib/json-1.8.jar apache-hive-2.3.0-bin/lib/metrics-core-3.1.0.jar apache-hive-2.3.0-bin/lib/metrics-jvm-3.1.0.jar apache-hive-2.3.0-bin/lib/metrics-json-3.1.0.jar apache-hive-2.3.0-bin/lib/jackson-databind-2.6.5.jar apache-hive-2.3.0-bin/lib/jackson-annotations-2.6.0.jar apache-hive-2.3.0-bin/lib/jackson-core-2.6.5.jar apache-hive-2.3.0-bin/lib/dropwizard-metrics-hadoop-metrics2-reporter-0.1.2.jar apache-hive-2.3.0-bin/lib/commons-math3-3.6.1.jar apache-hive-2.3.0-bin/lib/commons-httpclient-3.0.1.jar apache-hive-2.3.0-bin/lib/servlet-api-2.4.jar apache-hive-2.3.0-bin/lib/jsp-api-2.1.jar apache-hive-2.3.0-bin/lib/avro-1.7.7.jar apache-hive-2.3.0-bin/lib/paranamer-2.3.jar apache-hive-2.3.0-bin/lib/snappy-java-1.0.5.jar apache-hive-2.3.0-bin/lib/gson-2.2.4.jar apache-hive-2.3.0-bin/lib/curator-recipes-2.7.1.jar apache-hive-2.3.0-bin/lib/jsr305-3.0.0.jar apache-hive-2.3.0-bin/lib/htrace-core-3.1.0-incubating.jar apache-hive-2.3.0-bin/lib/hive-serde-2.3.0.jar apache-hive-2.3.0-bin/lib/hive-service-rpc-2.3.0.jar apache-hive-2.3.0-bin/lib/jasper-compiler-5.5.23.jar apache-hive-2.3.0-bin/lib/jsp-api-2.0.jar apache-hive-2.3.0-bin/lib/ant-1.6.5.jar apache-hive-2.3.0-bin/lib/jasper-runtime-5.5.23.jar apache-hive-2.3.0-bin/lib/commons-el-1.0.jar apache-hive-2.3.0-bin/lib/libfb303-0.9.3.jar apache-hive-2.3.0-bin/lib/opencsv-2.3.jar apache-hive-2.3.0-bin/lib/parquet-hadoop-bundle-1.8.1.jar apache-hive-2.3.0-bin/lib/hive-metastore-2.3.0.jar apache-hive-2.3.0-bin/lib/javolution-5.5.1.jar apache-hive-2.3.0-bin/lib/hbase-client-1.1.1.jar apache-hive-2.3.0-bin/lib/hbase-annotations-1.1.1.jar apache-hive-2.3.0-bin/lib/findbugs-annotations-1.3.9-1.jar apache-hive-2.3.0-bin/lib/hbase-common-1.1.1.jar apache-hive-2.3.0-bin/lib/hbase-protocol-1.1.1.jar apache-hive-2.3.0-bin/lib/netty-all-4.0.29.Final.jar apache-hive-2.3.0-bin/lib/jcodings-1.0.8.jar apache-hive-2.3.0-bin/lib/joni-2.1.2.jar apache-hive-2.3.0-bin/lib/bonecp-0.8.0.RELEASE.jar apache-hive-2.3.0-bin/lib/HikariCP-2.5.1.jar apache-hive-2.3.0-bin/lib/derby-10.10.2.0.jar apache-hive-2.3.0-bin/lib/datanucleus-api-jdo-4.2.4.jar apache-hive-2.3.0-bin/lib/datanucleus-core-4.1.17.jar apache-hive-2.3.0-bin/lib/datanucleus-rdbms-4.1.19.jar apache-hive-2.3.0-bin/lib/commons-pool-1.5.4.jar apache-hive-2.3.0-bin/lib/commons-dbcp-1.4.jar apache-hive-2.3.0-bin/lib/jdo-api-3.0.1.jar apache-hive-2.3.0-bin/lib/jta-1.1.jar apache-hive-2.3.0-bin/lib/javax.jdo-3.2.0-m3.jar apache-hive-2.3.0-bin/lib/transaction-api-1.1.jar apache-hive-2.3.0-bin/lib/antlr-runtime-3.5.2.jar apache-hive-2.3.0-bin/lib/hive-testutils-2.3.0.jar apache-hive-2.3.0-bin/lib/tempus-fugit-1.1.jar apache-hive-2.3.0-bin/lib/hive-exec-2.3.0.jar apache-hive-2.3.0-bin/lib/hive-vector-code-gen-2.3.0.jar apache-hive-2.3.0-bin/lib/velocity-1.5.jar apache-hive-2.3.0-bin/lib/hive-llap-tez-2.3.0.jar apache-hive-2.3.0-bin/lib/hive-llap-client-2.3.0.jar apache-hive-2.3.0-bin/lib/hive-llap-common-2.3.0.jar apache-hive-2.3.0-bin/lib/apache-curator-2.7.1.pom apache-hive-2.3.0-bin/lib/ST4-4.0.4.jar apache-hive-2.3.0-bin/lib/ivy-2.4.0.jar apache-hive-2.3.0-bin/lib/groovy-all-2.4.4.jar apache-hive-2.3.0-bin/lib/calcite-core-1.10.0.jar apache-hive-2.3.0-bin/lib/avatica-1.8.0.jar apache-hive-2.3.0-bin/lib/avatica-metrics-1.8.0.jar apache-hive-2.3.0-bin/lib/calcite-linq4j-1.10.0.jar apache-hive-2.3.0-bin/lib/eigenbase-properties-1.1.5.jar apache-hive-2.3.0-bin/lib/janino-2.7.6.jar apache-hive-2.3.0-bin/lib/commons-compiler-2.7.6.jar apache-hive-2.3.0-bin/lib/pentaho-aggdesigner-algorithm-5.1.5-jhyde.jar apache-hive-2.3.0-bin/lib/calcite-druid-1.10.0.jar apache-hive-2.3.0-bin/lib/stax-api-1.0.1.jar apache-hive-2.3.0-bin/lib/hive-service-2.3.0.jar apache-hive-2.3.0-bin/lib/hive-llap-server-2.3.0.jar apache-hive-2.3.0-bin/lib/slider-core-0.90.2-incubating.jar apache-hive-2.3.0-bin/lib/jcommander-1.32.jar apache-hive-2.3.0-bin/lib/hive-llap-common-2.3.0-tests.jar apache-hive-2.3.0-bin/lib/hbase-hadoop2-compat-1.1.1.jar apache-hive-2.3.0-bin/lib/hbase-hadoop-compat-1.1.1.jar apache-hive-2.3.0-bin/lib/commons-math-2.2.jar apache-hive-2.3.0-bin/lib/metrics-core-2.2.0.jar apache-hive-2.3.0-bin/lib/hbase-server-1.1.1.jar apache-hive-2.3.0-bin/lib/hbase-procedure-1.1.1.jar apache-hive-2.3.0-bin/lib/hbase-common-1.1.1-tests.jar apache-hive-2.3.0-bin/lib/hbase-prefix-tree-1.1.1.jar apache-hive-2.3.0-bin/lib/jetty-sslengine-6.1.26.jar apache-hive-2.3.0-bin/lib/jsp-2.1-6.1.14.jar apache-hive-2.3.0-bin/lib/jsp-api-2.1-6.1.14.jar apache-hive-2.3.0-bin/lib/servlet-api-2.5-6.1.14.jar apache-hive-2.3.0-bin/lib/jamon-runtime-2.3.1.jar apache-hive-2.3.0-bin/lib/disruptor-3.3.0.jar apache-hive-2.3.0-bin/lib/jpam-1.1.jar apache-hive-2.3.0-bin/lib/hive-jdbc-2.3.0.jar apache-hive-2.3.0-bin/lib/hive-beeline-2.3.0.jar apache-hive-2.3.0-bin/lib/super-csv-2.2.0.jar apache-hive-2.3.0-bin/lib/hive-cli-2.3.0.jar apache-hive-2.3.0-bin/lib/hive-contrib-2.3.0.jar apache-hive-2.3.0-bin/lib/hive-hbase-handler-2.3.0.jar apache-hive-2.3.0-bin/lib/hbase-hadoop2-compat-1.1.1-tests.jar apache-hive-2.3.0-bin/lib/hive-druid-handler-2.3.0.jar apache-hive-2.3.0-bin/lib/java-util-0.27.10.jar apache-hive-2.3.0-bin/lib/config-magic-0.9.jar apache-hive-2.3.0-bin/lib/rhino-1.7R5.jar apache-hive-2.3.0-bin/lib/json-path-2.1.0.jar apache-hive-2.3.0-bin/lib/druid-server-0.9.2.jar apache-hive-2.3.0-bin/lib/druid-processing-0.9.2.jar apache-hive-2.3.0-bin/lib/druid-common-0.9.2.jar apache-hive-2.3.0-bin/lib/druid-api-0.9.2.jar apache-hive-2.3.0-bin/lib/guice-multibindings-4.1.0.jar apache-hive-2.3.0-bin/lib/airline-0.7.jar apache-hive-2.3.0-bin/lib/jackson-dataformat-smile-2.4.6.jar apache-hive-2.3.0-bin/lib/hibernate-validator-5.1.3.Final.jar apache-hive-2.3.0-bin/lib/validation-api-1.1.0.Final.jar apache-hive-2.3.0-bin/lib/jboss-logging-3.1.3.GA.jar apache-hive-2.3.0-bin/lib/classmate-1.0.0.jar apache-hive-2.3.0-bin/lib/commons-dbcp2-2.0.1.jar apache-hive-2.3.0-bin/lib/commons-pool2-2.2.jar apache-hive-2.3.0-bin/lib/javax.el-api-3.0.0.jar apache-hive-2.3.0-bin/lib/jackson-datatype-guava-2.4.6.jar apache-hive-2.3.0-bin/lib/jackson-datatype-joda-2.4.6.jar apache-hive-2.3.0-bin/lib/jdbi-2.63.1.jar apache-hive-2.3.0-bin/lib/log4j-jul-2.5.jar apache-hive-2.3.0-bin/lib/antlr4-runtime-4.5.jar apache-hive-2.3.0-bin/lib/bytebuffer-collections-0.2.5.jar apache-hive-2.3.0-bin/lib/extendedset-1.3.10.jar apache-hive-2.3.0-bin/lib/RoaringBitmap-0.5.18.jar apache-hive-2.3.0-bin/lib/emitter-0.3.6.jar apache-hive-2.3.0-bin/lib/http-client-1.0.4.jar apache-hive-2.3.0-bin/lib/server-metrics-0.2.8.jar apache-hive-2.3.0-bin/lib/compress-lzf-1.0.3.jar apache-hive-2.3.0-bin/lib/icu4j-4.8.1.jar apache-hive-2.3.0-bin/lib/lz4-1.3.0.jar apache-hive-2.3.0-bin/lib/mapdb-1.0.8.jar apache-hive-2.3.0-bin/lib/druid-console-0.0.2.jar apache-hive-2.3.0-bin/lib/javax.el-3.0.0.jar apache-hive-2.3.0-bin/lib/curator-x-discovery-2.11.0.jar apache-hive-2.3.0-bin/lib/jackson-jaxrs-json-provider-2.4.6.jar apache-hive-2.3.0-bin/lib/jackson-jaxrs-base-2.4.6.jar apache-hive-2.3.0-bin/lib/jackson-module-jaxb-annotations-2.4.6.jar apache-hive-2.3.0-bin/lib/jackson-jaxrs-smile-provider-2.4.6.jar apache-hive-2.3.0-bin/lib/jetty-server-9.2.5.v20141112.jar apache-hive-2.3.0-bin/lib/javax.servlet-api-3.1.0.jar apache-hive-2.3.0-bin/lib/jetty-http-9.2.5.v20141112.jar apache-hive-2.3.0-bin/lib/jetty-util-9.2.5.v20141112.jar apache-hive-2.3.0-bin/lib/jetty-io-9.2.5.v20141112.jar apache-hive-2.3.0-bin/lib/jetty-proxy-9.2.5.v20141112.jar apache-hive-2.3.0-bin/lib/jetty-client-9.2.5.v20141112.jar apache-hive-2.3.0-bin/lib/tesla-aether-0.0.5.jar apache-hive-2.3.0-bin/lib/aether-api-0.9.0.M2.jar apache-hive-2.3.0-bin/lib/aether-spi-0.9.0.M2.jar apache-hive-2.3.0-bin/lib/aether-util-0.9.0.M2.jar apache-hive-2.3.0-bin/lib/aether-impl-0.9.0.M2.jar apache-hive-2.3.0-bin/lib/aether-connector-file-0.9.0.M2.jar apache-hive-2.3.0-bin/lib/aether-connector-okhttp-0.0.9.jar apache-hive-2.3.0-bin/lib/okhttp-1.0.2.jar apache-hive-2.3.0-bin/lib/wagon-provider-api-2.4.jar apache-hive-2.3.0-bin/lib/plexus-utils-3.0.15.jar apache-hive-2.3.0-bin/lib/maven-aether-provider-3.1.1.jar apache-hive-2.3.0-bin/lib/maven-model-3.1.1.jar apache-hive-2.3.0-bin/lib/maven-model-builder-3.1.1.jar apache-hive-2.3.0-bin/lib/plexus-interpolation-1.19.jar apache-hive-2.3.0-bin/lib/maven-repository-metadata-3.1.1.jar apache-hive-2.3.0-bin/lib/maven-settings-builder-3.1.1.jar apache-hive-2.3.0-bin/lib/maven-settings-3.1.1.jar apache-hive-2.3.0-bin/lib/spymemcached-2.11.7.jar apache-hive-2.3.0-bin/lib/jetty-servlet-9.2.5.v20141112.jar apache-hive-2.3.0-bin/lib/jetty-security-9.2.5.v20141112.jar apache-hive-2.3.0-bin/lib/jetty-servlets-9.2.5.v20141112.jar apache-hive-2.3.0-bin/lib/jetty-continuation-9.2.5.v20141112.jar apache-hive-2.3.0-bin/lib/irc-api-1.0-0014.jar apache-hive-2.3.0-bin/lib/geoip2-0.4.0.jar apache-hive-2.3.0-bin/lib/maxminddb-0.2.0.jar apache-hive-2.3.0-bin/lib/google-http-client-jackson2-1.15.0-rc.jar apache-hive-2.3.0-bin/lib/derbynet-10.11.1.1.jar apache-hive-2.3.0-bin/lib/derbyclient-10.11.1.1.jar apache-hive-2.3.0-bin/lib/druid-hdfs-storage-0.9.2.jar apache-hive-2.3.0-bin/lib/mysql-metadata-storage-0.9.2.jar apache-hive-2.3.0-bin/lib/postgresql-metadata-storage-0.9.2.jar apache-hive-2.3.0-bin/lib/postgresql-9.4.1208.jre7.jar apache-hive-2.3.0-bin/lib/hive-jdbc-handler-2.3.0.jar apache-hive-2.3.0-bin/lib/hive-accumulo-handler-2.3.0.jar apache-hive-2.3.0-bin/lib/accumulo-core-1.6.0.jar apache-hive-2.3.0-bin/lib/accumulo-fate-1.6.0.jar apache-hive-2.3.0-bin/lib/accumulo-start-1.6.0.jar apache-hive-2.3.0-bin/lib/commons-vfs2-2.0.jar apache-hive-2.3.0-bin/lib/maven-scm-api-1.4.jar apache-hive-2.3.0-bin/lib/maven-scm-provider-svnexe-1.4.jar apache-hive-2.3.0-bin/lib/maven-scm-provider-svn-commons-1.4.jar apache-hive-2.3.0-bin/lib/regexp-1.3.jar apache-hive-2.3.0-bin/lib/accumulo-trace-1.6.0.jar apache-hive-2.3.0-bin/lib/hive-llap-ext-client-2.3.0.jar apache-hive-2.3.0-bin/lib/hive-hplsql-2.3.0.jar apache-hive-2.3.0-bin/lib/org.abego.treelayout.core-1.0.1.jar apache-hive-2.3.0-bin/jdbc/hive-jdbc-2.3.0-standalone.jar apache-hive-2.3.0-bin/lib/hive-hcatalog-core-2.3.0.jar apache-hive-2.3.0-bin/lib/hive-hcatalog-server-extensions-2.3.0.jar apache-hive-2.3.0-bin/hcatalog/share/hcatalog/hive-hcatalog-streaming-2.3.0.jar apache-hive-2.3.0-bin/hcatalog/share/hcatalog/hive-hcatalog-core-2.3.0.jar apache-hive-2.3.0-bin/hcatalog/share/hcatalog/hive-hcatalog-pig-adapter-2.3.0.jar apache-hive-2.3.0-bin/hcatalog/share/hcatalog/hive-hcatalog-server-extensions-2.3.0.jar apache-hive-2.3.0-bin/hcatalog/share/webhcat/svr/lib/jersey-json-1.14.jar apache-hive-2.3.0-bin/hcatalog/share/webhcat/svr/lib/jaxb-impl-2.2.3-1.jar apache-hive-2.3.0-bin/hcatalog/share/webhcat/svr/lib/jackson-core-asl-1.9.13.jar apache-hive-2.3.0-bin/hcatalog/share/webhcat/svr/lib/jersey-core-1.14.jar apache-hive-2.3.0-bin/hcatalog/share/webhcat/svr/lib/jersey-servlet-1.14.jar apache-hive-2.3.0-bin/hcatalog/share/webhcat/svr/lib/hive-webhcat-2.3.0.jar apache-hive-2.3.0-bin/hcatalog/share/webhcat/svr/lib/wadl-resourcedoc-doclet-1.4.jar apache-hive-2.3.0-bin/hcatalog/share/webhcat/svr/lib/commons-exec-1.1.jar apache-hive-2.3.0-bin/hcatalog/share/webhcat/svr/lib/jetty-all-server-7.6.0.v20120127.jar apache-hive-2.3.0-bin/hcatalog/share/webhcat/svr/lib/jul-to-slf4j-1.7.10.jar apache-hive-2.3.0-bin/hcatalog/share/webhcat/java-client/hive-webhcat-java-client-2.3.0.jar apache-hive-2.3.0-bin/LICENSE apache-hive-2.3.0-bin/NOTICE apache-hive-2.3.0-bin/RELEASE_NOTES.txt apache-hive-2.3.0-bin/binary-package-licenses/asm-LICENSE apache-hive-2.3.0-bin/binary-package-licenses/com.google.protobuf-LICENSE apache-hive-2.3.0-bin/binary-package-licenses/com.ibm.icu.icu4j-LICENSE apache-hive-2.3.0-bin/binary-package-licenses/com.sun.jersey-LICENSE apache-hive-2.3.0-bin/binary-package-licenses/com.thoughtworks.paranamer-LICENSE apache-hive-2.3.0-bin/binary-package-licenses/javax.transaction.transaction-api-LICENSE apache-hive-2.3.0-bin/binary-package-licenses/javolution-LICENSE apache-hive-2.3.0-bin/binary-package-licenses/jline-LICENSE apache-hive-2.3.0-bin/binary-package-licenses/NOTICE apache-hive-2.3.0-bin/binary-package-licenses/org.abego.treelayout.core-LICENSE apache-hive-2.3.0-bin/binary-package-licenses/org.antlr-LICENSE apache-hive-2.3.0-bin/binary-package-licenses/org.antlr.antlr4-LICENSE apache-hive-2.3.0-bin/binary-package-licenses/org.antlr.stringtemplate-LICENSE apache-hive-2.3.0-bin/binary-package-licenses/org.codehaus.janino-LICENSE apache-hive-2.3.0-bin/binary-package-licenses/org.jamon.jamon-runtime-LICENSE apache-hive-2.3.0-bin/binary-package-licenses/org.jruby-LICENSE apache-hive-2.3.0-bin/binary-package-licenses/org.mozilla.rhino-LICENSE apache-hive-2.3.0-bin/binary-package-licenses/org.slf4j-LICENSE apache-hive-2.3.0-bin/binary-package-licenses/sqlline-LICENSE apache-hive-2.3.0-bin/examples/files/2000_cols_data.csv apache-hive-2.3.0-bin/examples/files/3col_data.txt apache-hive-2.3.0-bin/examples/files/agg_01-p1.txt apache-hive-2.3.0-bin/examples/files/agg_01-p2.txt apache-hive-2.3.0-bin/examples/files/agg_01-p3.txt apache-hive-2.3.0-bin/examples/files/alltypes.txt apache-hive-2.3.0-bin/examples/files/alltypes2.txt apache-hive-2.3.0-bin/examples/files/apache.access.2.log apache-hive-2.3.0-bin/examples/files/apache.access.log apache-hive-2.3.0-bin/examples/files/archive_corrupt.rc apache-hive-2.3.0-bin/examples/files/array_table.txt apache-hive-2.3.0-bin/examples/files/avro_charvarchar.txt apache-hive-2.3.0-bin/examples/files/avro_date.txt apache-hive-2.3.0-bin/examples/files/avro_timestamp.txt apache-hive-2.3.0-bin/examples/files/AvroPrimitiveInList.parquet apache-hive-2.3.0-bin/examples/files/AvroSingleFieldGroupInList.parquet apache-hive-2.3.0-bin/examples/files/binary.txt apache-hive-2.3.0-bin/examples/files/bool.txt apache-hive-2.3.0-bin/examples/files/bool_literal.txt apache-hive-2.3.0-bin/examples/files/cbo_t1.txt apache-hive-2.3.0-bin/examples/files/cbo_t2.txt apache-hive-2.3.0-bin/examples/files/cbo_t3.txt apache-hive-2.3.0-bin/examples/files/cbo_t4.txt apache-hive-2.3.0-bin/examples/files/cbo_t5.txt apache-hive-2.3.0-bin/examples/files/cbo_t6.txt apache-hive-2.3.0-bin/examples/files/char_varchar_udf.txt apache-hive-2.3.0-bin/examples/files/complex.seq apache-hive-2.3.0-bin/examples/files/covar_tab.txt apache-hive-2.3.0-bin/examples/files/create_nested_type.txt apache-hive-2.3.0-bin/examples/files/csv.txt apache-hive-2.3.0-bin/examples/files/ct_events_clean.txt apache-hive-2.3.0-bin/examples/files/customer_address.txt apache-hive-2.3.0-bin/examples/files/customer_demographics.txt apache-hive-2.3.0-bin/examples/files/customers.txt apache-hive-2.3.0-bin/examples/files/data_with_escape.txt apache-hive-2.3.0-bin/examples/files/datatypes.txt apache-hive-2.3.0-bin/examples/files/dec.avro apache-hive-2.3.0-bin/examples/files/dec.parq apache-hive-2.3.0-bin/examples/files/dec.txt apache-hive-2.3.0-bin/examples/files/dec_comp.txt apache-hive-2.3.0-bin/examples/files/dec_old.avro apache-hive-2.3.0-bin/examples/files/decimal.txt apache-hive-2.3.0-bin/examples/files/decimal_10_0.txt apache-hive-2.3.0-bin/examples/files/decimal_1_1.txt apache-hive-2.3.0-bin/examples/files/dept.txt apache-hive-2.3.0-bin/examples/files/dim-data.txt apache-hive-2.3.0-bin/examples/files/dim_shops.txt apache-hive-2.3.0-bin/examples/files/doctors.avro apache-hive-2.3.0-bin/examples/files/docurl.txt apache-hive-2.3.0-bin/examples/files/double.txt apache-hive-2.3.0-bin/examples/files/dynamic_partition_insert.txt apache-hive-2.3.0-bin/examples/files/dynpart_test.txt apache-hive-2.3.0-bin/examples/files/dynpartdata1.txt apache-hive-2.3.0-bin/examples/files/dynpartdata2.txt apache-hive-2.3.0-bin/examples/files/emp.txt apache-hive-2.3.0-bin/examples/files/emp2.txt apache-hive-2.3.0-bin/examples/files/employee.dat apache-hive-2.3.0-bin/examples/files/employee2.dat apache-hive-2.3.0-bin/examples/files/employee_part.txt apache-hive-2.3.0-bin/examples/files/empty1.txt apache-hive-2.3.0-bin/examples/files/empty2.txt apache-hive-2.3.0-bin/examples/files/encoding-utf8.txt apache-hive-2.3.0-bin/examples/files/encoding_iso-8859-1.txt apache-hive-2.3.0-bin/examples/files/episodes.avro apache-hive-2.3.0-bin/examples/files/escape_crlf.txt apache-hive-2.3.0-bin/examples/files/escapetest.txt apache-hive-2.3.0-bin/examples/files/extrapolate_stats_full.txt apache-hive-2.3.0-bin/examples/files/extrapolate_stats_partial.txt apache-hive-2.3.0-bin/examples/files/extrapolate_stats_partial_ndv.txt apache-hive-2.3.0-bin/examples/files/fact-data.txt apache-hive-2.3.0-bin/examples/files/flights_join.txt apache-hive-2.3.0-bin/examples/files/flights_tiny.txt apache-hive-2.3.0-bin/examples/files/flights_tiny.txt.1 apache-hive-2.3.0-bin/examples/files/futurama_episodes.avro apache-hive-2.3.0-bin/examples/files/grad.avsc apache-hive-2.3.0-bin/examples/files/groupby_groupingid.txt apache-hive-2.3.0-bin/examples/files/grouping_sets.txt apache-hive-2.3.0-bin/examples/files/grouping_sets1.txt apache-hive-2.3.0-bin/examples/files/grouping_sets2.txt apache-hive-2.3.0-bin/examples/files/hive_626_bar.txt apache-hive-2.3.0-bin/examples/files/hive_626_count.txt apache-hive-2.3.0-bin/examples/files/hive_626_foo.txt apache-hive-2.3.0-bin/examples/files/HiveGroup.parquet apache-hive-2.3.0-bin/examples/files/HiveRequiredGroupInList.parquet apache-hive-2.3.0-bin/examples/files/in1.txt apache-hive-2.3.0-bin/examples/files/in2.txt apache-hive-2.3.0-bin/examples/files/in3.txt apache-hive-2.3.0-bin/examples/files/in4.txt apache-hive-2.3.0-bin/examples/files/in5.txt apache-hive-2.3.0-bin/examples/files/in6.txt apache-hive-2.3.0-bin/examples/files/in7.txt apache-hive-2.3.0-bin/examples/files/in8.txt apache-hive-2.3.0-bin/examples/files/in9.txt apache-hive-2.3.0-bin/examples/files/in_file.dat apache-hive-2.3.0-bin/examples/files/infer_const_type.txt apache-hive-2.3.0-bin/examples/files/input.txt apache-hive-2.3.0-bin/examples/files/int.txt apache-hive-2.3.0-bin/examples/files/json.txt apache-hive-2.3.0-bin/examples/files/keystore.jks apache-hive-2.3.0-bin/examples/files/keystore_exampledotcom.jks apache-hive-2.3.0-bin/examples/files/kv1.seq apache-hive-2.3.0-bin/examples/files/kv1.string-sorted.txt apache-hive-2.3.0-bin/examples/files/kv1.txt apache-hive-2.3.0-bin/examples/files/kv1.val.sorted.txt apache-hive-2.3.0-bin/examples/files/kv10.txt apache-hive-2.3.0-bin/examples/files/kv1_broken.seq apache-hive-2.3.0-bin/examples/files/kv1_cb.txt apache-hive-2.3.0-bin/examples/files/kv1_cc.txt apache-hive-2.3.0-bin/examples/files/kv1kv2.cogroup.txt apache-hive-2.3.0-bin/examples/files/kv2.txt apache-hive-2.3.0-bin/examples/files/kv3.txt apache-hive-2.3.0-bin/examples/files/kv4.txt apache-hive-2.3.0-bin/examples/files/kv5.txt apache-hive-2.3.0-bin/examples/files/kv6.txt apache-hive-2.3.0-bin/examples/files/kv7.txt apache-hive-2.3.0-bin/examples/files/kv8.txt apache-hive-2.3.0-bin/examples/files/kv9.txt apache-hive-2.3.0-bin/examples/files/leftsemijoin_mr_t1.txt apache-hive-2.3.0-bin/examples/files/leftsemijoin_mr_t2.txt apache-hive-2.3.0-bin/examples/files/lineitem.txt apache-hive-2.3.0-bin/examples/files/loc.txt apache-hive-2.3.0-bin/examples/files/location.txt apache-hive-2.3.0-bin/examples/files/lt100.sorted.txt apache-hive-2.3.0-bin/examples/files/lt100.txt apache-hive-2.3.0-bin/examples/files/lt100.txt.deflate apache-hive-2.3.0-bin/examples/files/map_null_schema.avro apache-hive-2.3.0-bin/examples/files/map_null_val.avro apache-hive-2.3.0-bin/examples/files/map_table.txt apache-hive-2.3.0-bin/examples/files/mapNull.txt apache-hive-2.3.0-bin/examples/files/MultiFieldGroupInList.parquet apache-hive-2.3.0-bin/examples/files/nested_complex.txt apache-hive-2.3.0-bin/examples/files/nested_orders.txt apache-hive-2.3.0-bin/examples/files/nestedcomplex_additional.txt apache-hive-2.3.0-bin/examples/files/NestedMap.parquet apache-hive-2.3.0-bin/examples/files/NewOptionalGroupInList.parquet apache-hive-2.3.0-bin/examples/files/NewRequiredGroupInList.parquet apache-hive-2.3.0-bin/examples/files/non_ascii_tbl.txt apache-hive-2.3.0-bin/examples/files/null.txt apache-hive-2.3.0-bin/examples/files/nullfile.txt apache-hive-2.3.0-bin/examples/files/nulls.txt apache-hive-2.3.0-bin/examples/files/opencsv-data.txt apache-hive-2.3.0-bin/examples/files/orc_create.txt apache-hive-2.3.0-bin/examples/files/orc_create_people.txt apache-hive-2.3.0-bin/examples/files/orc_split_elim.orc apache-hive-2.3.0-bin/examples/files/orders.txt apache-hive-2.3.0-bin/examples/files/over10k.gz apache-hive-2.3.0-bin/examples/files/parquet_array_null_element.txt apache-hive-2.3.0-bin/examples/files/parquet_columnar.txt apache-hive-2.3.0-bin/examples/files/parquet_create.txt apache-hive-2.3.0-bin/examples/files/parquet_create_people.txt apache-hive-2.3.0-bin/examples/files/parquet_external_time.parq apache-hive-2.3.0-bin/examples/files/parquet_non_dictionary_types.txt apache-hive-2.3.0-bin/examples/files/parquet_partitioned.txt apache-hive-2.3.0-bin/examples/files/parquet_type_promotion.txt apache-hive-2.3.0-bin/examples/files/parquet_types.txt apache-hive-2.3.0-bin/examples/files/part.rc apache-hive-2.3.0-bin/examples/files/part.seq apache-hive-2.3.0-bin/examples/files/part_tiny.txt apache-hive-2.3.0-bin/examples/files/part_tiny_nulls.txt apache-hive-2.3.0-bin/examples/files/person age.txt apache-hive-2.3.0-bin/examples/files/person+age.txt apache-hive-2.3.0-bin/examples/files/posexplode_data.txt apache-hive-2.3.0-bin/examples/files/primitive_type_arrays.txt apache-hive-2.3.0-bin/examples/files/ProxyAuth.res apache-hive-2.3.0-bin/examples/files/pw17.txt apache-hive-2.3.0-bin/examples/files/regex-path-2015-12-10_03.txt apache-hive-2.3.0-bin/examples/files/regex-path-201512-10_03.txt apache-hive-2.3.0-bin/examples/files/regex-path-2015121003.txt apache-hive-2.3.0-bin/examples/files/sales.txt apache-hive-2.3.0-bin/examples/files/sample-queryplan-in-history.txt apache-hive-2.3.0-bin/examples/files/sample-queryplan.txt apache-hive-2.3.0-bin/examples/files/sample.json apache-hive-2.3.0-bin/examples/files/sample2.json apache-hive-2.3.0-bin/examples/files/service_request_clean.txt apache-hive-2.3.0-bin/examples/files/SingleFieldGroupInList.parquet apache-hive-2.3.0-bin/examples/files/small_csv.csv apache-hive-2.3.0-bin/examples/files/smallsrcsortbucket1outof4.txt apache-hive-2.3.0-bin/examples/files/smallsrcsortbucket2outof4.txt apache-hive-2.3.0-bin/examples/files/smallsrcsortbucket3outof4.txt apache-hive-2.3.0-bin/examples/files/smallsrcsortbucket4outof4.txt apache-hive-2.3.0-bin/examples/files/smb_bucket_input.rc apache-hive-2.3.0-bin/examples/files/smb_bucket_input.txt apache-hive-2.3.0-bin/examples/files/smbbucket_1.rc apache-hive-2.3.0-bin/examples/files/smbbucket_1.txt apache-hive-2.3.0-bin/examples/files/smbbucket_2.rc apache-hive-2.3.0-bin/examples/files/smbbucket_2.txt apache-hive-2.3.0-bin/examples/files/smbbucket_3.rc apache-hive-2.3.0-bin/examples/files/smbbucket_3.txt apache-hive-2.3.0-bin/examples/files/smbdata.txt apache-hive-2.3.0-bin/examples/files/SortCol1Col2.txt apache-hive-2.3.0-bin/examples/files/SortCol2Col1.txt apache-hive-2.3.0-bin/examples/files/SortDescCol1Col2.txt apache-hive-2.3.0-bin/examples/files/SortDescCol2Col1.txt apache-hive-2.3.0-bin/examples/files/sortdp.txt apache-hive-2.3.0-bin/examples/files/sour1.txt apache-hive-2.3.0-bin/examples/files/sour2.txt apache-hive-2.3.0-bin/examples/files/source.txt apache-hive-2.3.0-bin/examples/files/srcbucket0.txt apache-hive-2.3.0-bin/examples/files/srcbucket1.txt apache-hive-2.3.0-bin/examples/files/srcbucket20.txt apache-hive-2.3.0-bin/examples/files/srcbucket21.txt apache-hive-2.3.0-bin/examples/files/srcbucket22.txt apache-hive-2.3.0-bin/examples/files/srcbucket23.txt apache-hive-2.3.0-bin/examples/files/srcsortbucket1outof4.txt apache-hive-2.3.0-bin/examples/files/srcsortbucket2outof4.txt apache-hive-2.3.0-bin/examples/files/srcsortbucket3outof4.txt apache-hive-2.3.0-bin/examples/files/srcsortbucket4outof4.txt apache-hive-2.3.0-bin/examples/files/store.txt apache-hive-2.3.0-bin/examples/files/store_sales.txt apache-hive-2.3.0-bin/examples/files/string.txt apache-hive-2.3.0-bin/examples/files/StringMapOfOptionalIntArray.parquet apache-hive-2.3.0-bin/examples/files/symlink-with-regex.txt apache-hive-2.3.0-bin/examples/files/symlink1.txt apache-hive-2.3.0-bin/examples/files/symlink2.txt apache-hive-2.3.0-bin/examples/files/T1.txt apache-hive-2.3.0-bin/examples/files/T2.txt apache-hive-2.3.0-bin/examples/files/T3.txt apache-hive-2.3.0-bin/examples/files/table1.avsc apache-hive-2.3.0-bin/examples/files/table1_1.avsc apache-hive-2.3.0-bin/examples/files/tbl.txt apache-hive-2.3.0-bin/examples/files/test.dat apache-hive-2.3.0-bin/examples/files/test1.txt apache-hive-2.3.0-bin/examples/files/test2.dat apache-hive-2.3.0-bin/examples/files/text-en.txt apache-hive-2.3.0-bin/examples/files/things.txt apache-hive-2.3.0-bin/examples/files/things2.txt apache-hive-2.3.0-bin/examples/files/ThriftPrimitiveInList.parquet apache-hive-2.3.0-bin/examples/files/ThriftSingleFieldGroupInList.parquet apache-hive-2.3.0-bin/examples/files/timestamps.txt apache-hive-2.3.0-bin/examples/files/tiny_a.txt apache-hive-2.3.0-bin/examples/files/tiny_b.txt apache-hive-2.3.0-bin/examples/files/tjoin1.txt apache-hive-2.3.0-bin/examples/files/tjoin2.txt apache-hive-2.3.0-bin/examples/files/trunc_number.txt apache-hive-2.3.0-bin/examples/files/trunc_number1.txt apache-hive-2.3.0-bin/examples/files/truststore.jks apache-hive-2.3.0-bin/examples/files/ts_formats.txt apache-hive-2.3.0-bin/examples/files/tsformat.json apache-hive-2.3.0-bin/examples/files/type_evolution.avro apache-hive-2.3.0-bin/examples/files/UnannotatedListOfGroups.parquet apache-hive-2.3.0-bin/examples/files/UnannotatedListOfPrimitives.parquet apache-hive-2.3.0-bin/examples/files/union_input.txt apache-hive-2.3.0-bin/examples/files/union_non_nullable.txt apache-hive-2.3.0-bin/examples/files/union_nullable.txt apache-hive-2.3.0-bin/examples/files/unique_1.txt apache-hive-2.3.0-bin/examples/files/unique_2.txt apache-hive-2.3.0-bin/examples/files/UserVisits.dat apache-hive-2.3.0-bin/examples/files/v1.txt apache-hive-2.3.0-bin/examples/files/v2.txt apache-hive-2.3.0-bin/examples/files/vc1.txt apache-hive-2.3.0-bin/examples/files/windowing_distinct.txt apache-hive-2.3.0-bin/examples/files/x.txt apache-hive-2.3.0-bin/examples/files/y.txt apache-hive-2.3.0-bin/examples/files/z.txt apache-hive-2.3.0-bin/examples/queries/case_sensitivity.q apache-hive-2.3.0-bin/examples/queries/cast1.q apache-hive-2.3.0-bin/examples/queries/groupby1.q apache-hive-2.3.0-bin/examples/queries/groupby2.q apache-hive-2.3.0-bin/examples/queries/groupby3.q apache-hive-2.3.0-bin/examples/queries/groupby4.q apache-hive-2.3.0-bin/examples/queries/groupby5.q apache-hive-2.3.0-bin/examples/queries/groupby6.q apache-hive-2.3.0-bin/examples/queries/input1.q apache-hive-2.3.0-bin/examples/queries/input2.q apache-hive-2.3.0-bin/examples/queries/input20.q apache-hive-2.3.0-bin/examples/queries/input3.q apache-hive-2.3.0-bin/examples/queries/input4.q apache-hive-2.3.0-bin/examples/queries/input5.q apache-hive-2.3.0-bin/examples/queries/input6.q apache-hive-2.3.0-bin/examples/queries/input7.q apache-hive-2.3.0-bin/examples/queries/input8.q apache-hive-2.3.0-bin/examples/queries/input9.q apache-hive-2.3.0-bin/examples/queries/input_part1.q apache-hive-2.3.0-bin/examples/queries/input_testsequencefile.q apache-hive-2.3.0-bin/examples/queries/input_testxpath.q apache-hive-2.3.0-bin/examples/queries/input_testxpath2.q apache-hive-2.3.0-bin/examples/queries/join1.q apache-hive-2.3.0-bin/examples/queries/join2.q apache-hive-2.3.0-bin/examples/queries/join3.q apache-hive-2.3.0-bin/examples/queries/join4.q apache-hive-2.3.0-bin/examples/queries/join5.q apache-hive-2.3.0-bin/examples/queries/join6.q apache-hive-2.3.0-bin/examples/queries/join7.q apache-hive-2.3.0-bin/examples/queries/join8.q apache-hive-2.3.0-bin/examples/queries/sample1.q apache-hive-2.3.0-bin/examples/queries/sample2.q apache-hive-2.3.0-bin/examples/queries/sample3.q apache-hive-2.3.0-bin/examples/queries/sample4.q apache-hive-2.3.0-bin/examples/queries/sample5.q apache-hive-2.3.0-bin/examples/queries/sample6.q apache-hive-2.3.0-bin/examples/queries/sample7.q apache-hive-2.3.0-bin/examples/queries/subq.q apache-hive-2.3.0-bin/examples/queries/udf1.q apache-hive-2.3.0-bin/examples/queries/udf4.q apache-hive-2.3.0-bin/examples/queries/udf6.q apache-hive-2.3.0-bin/examples/queries/udf_case.q apache-hive-2.3.0-bin/examples/queries/udf_when.q apache-hive-2.3.0-bin/examples/queries/union.q apache-hive-2.3.0-bin/bin/ext/util/ apache-hive-2.3.0-bin/bin/beeline apache-hive-2.3.0-bin/bin/ext/beeline.sh apache-hive-2.3.0-bin/bin/ext/cleardanglingscratchdir.sh apache-hive-2.3.0-bin/bin/ext/cli.sh apache-hive-2.3.0-bin/bin/ext/debug.sh apache-hive-2.3.0-bin/bin/ext/hbaseimport.sh apache-hive-2.3.0-bin/bin/ext/hbaseschematool.sh apache-hive-2.3.0-bin/bin/ext/help.sh apache-hive-2.3.0-bin/bin/ext/hiveburninclient.sh apache-hive-2.3.0-bin/bin/ext/hiveserver2.sh apache-hive-2.3.0-bin/bin/ext/hplsql.sh apache-hive-2.3.0-bin/bin/ext/jar.sh apache-hive-2.3.0-bin/bin/ext/lineage.sh apache-hive-2.3.0-bin/bin/ext/llap.sh apache-hive-2.3.0-bin/bin/ext/llapdump.sh apache-hive-2.3.0-bin/bin/ext/llapstatus.sh apache-hive-2.3.0-bin/bin/ext/metastore.sh apache-hive-2.3.0-bin/bin/ext/metatool.sh apache-hive-2.3.0-bin/bin/ext/orcfiledump.sh apache-hive-2.3.0-bin/bin/ext/rcfilecat.sh apache-hive-2.3.0-bin/bin/ext/schemaTool.sh apache-hive-2.3.0-bin/bin/ext/util/execHiveCmd.sh apache-hive-2.3.0-bin/bin/ext/version.sh apache-hive-2.3.0-bin/bin/hive apache-hive-2.3.0-bin/bin/hive-config.sh apache-hive-2.3.0-bin/bin/hiveserver2 apache-hive-2.3.0-bin/bin/hplsql apache-hive-2.3.0-bin/bin/metatool apache-hive-2.3.0-bin/bin/schematool apache-hive-2.3.0-bin/scripts/llap/bin/llap-daemon-env.sh apache-hive-2.3.0-bin/scripts/llap/bin/llapDaemon.sh apache-hive-2.3.0-bin/scripts/llap/bin/runLlapDaemon.sh apache-hive-2.3.0-bin/scripts/llap/sql/serviceCheckScript.sql apache-hive-2.3.0-bin/scripts/llap/slider/argparse.py apache-hive-2.3.0-bin/scripts/llap/slider/llap.py apache-hive-2.3.0-bin/scripts/llap/slider/package.py apache-hive-2.3.0-bin/scripts/llap/slider/params.py apache-hive-2.3.0-bin/scripts/llap/slider/templates.py apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/ apache-hive-2.3.0-bin/scripts/metastore/upgrade/mssql/ apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/ apache-hive-2.3.0-bin/scripts/metastore/upgrade/oracle/ apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/ apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/001-HIVE-972.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/002-HIVE-1068.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/003-HIVE-675.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/004-HIVE-1364.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/005-HIVE-417.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/006-HIVE-1823.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/007-HIVE-78.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/008-HIVE-2246.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/008-REVERT-HIVE-2246.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/009-HIVE-2215.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/010-HIVE-3072.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/011-HIVE-3649.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/012-HIVE-1362.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/013-HIVE-3255.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/014-HIVE-3764.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/016-HIVE-6386.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/017-HIVE-6458.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/018-HIVE-6757.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/019-HIVE-7784.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/020-HIVE-9296.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/021-HIVE-11970.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/022-HIVE-11107.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/023-HIVE-12807.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/024-HIVE-12814.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/025-HIVE-12816.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/026-HIVE-12818.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/027-HIVE-12819.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/028-HIVE-12821.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/029-HIVE-12822.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/030-HIVE-12823.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/031-HIVE-12831.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/032-HIVE-12832.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/034-HIVE-13076.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/035-HIVE-13395.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/036-HIVE-13354.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/037-HIVE-14496.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/038-HIVE-10562.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/039-HIVE-12274.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/040-HIVE-16399.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/hive-schema-0.10.0.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/hive-schema-0.11.0.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/hive-schema-0.12.0.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/hive-schema-0.13.0.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/hive-schema-0.14.0.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/hive-schema-0.3.0.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/hive-schema-0.4.0.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/hive-schema-0.4.1.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/hive-schema-0.5.0.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/hive-schema-0.6.0.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/hive-schema-0.7.0.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/hive-schema-0.8.0.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/hive-schema-0.9.0.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/hive-schema-1.1.0.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/hive-schema-1.2.0.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/hive-schema-1.3.0.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/hive-schema-2.0.0.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/hive-schema-2.1.0.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/hive-schema-2.2.0.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/hive-schema-2.3.0.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/hive-txn-schema-0.13.0.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/hive-txn-schema-0.14.0.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/hive-txn-schema-1.3.0.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/hive-txn-schema-2.0.0.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/hive-txn-schema-2.1.0.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/hive-txn-schema-2.2.0.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/hive-txn-schema-2.3.0.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/README apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/upgrade-0.10.0-to-0.11.0.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/upgrade-0.11.0-to-0.12.0.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/upgrade-0.12.0-to-0.13.0.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/upgrade-0.13.0-to-0.14.0.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/upgrade-0.14.0-to-1.1.0.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/upgrade-0.5.0-to-0.6.0.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/upgrade-0.6.0-to-0.7.0.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/upgrade-0.7.0-to-0.8.0.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/upgrade-0.8.0-to-0.9.0.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/upgrade-0.9.0-to-0.10.0.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/upgrade-1.1.0-to-1.2.0.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/upgrade-1.2.0-to-1.3.0.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/upgrade-1.2.0-to-2.0.0.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/upgrade-2.0.0-to-2.1.0.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/upgrade-2.1.0-to-2.2.0.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/upgrade-2.2.0-to-2.3.0.derby.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/derby/upgrade.order.derby apache-hive-2.3.0-bin/scripts/metastore/upgrade/mssql/001-HIVE-6862.mssql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mssql/002-HIVE-7784.mssql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mssql/003-HIVE-8239.mssql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mssql/004-HIVE-8550.mssql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mssql/005-HIVE-9296.mssql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mssql/006-HIVE-9456.mssql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mssql/007-HIVE-11970.mssql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mssql/008-HIVE-12807.mssql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mssql/009-HIVE-12814.mssql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mssql/010-HIVE-12816.mssql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mssql/011-HIVE-12818.mssql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mssql/012-HIVE-12819.mssql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mssql/013-HIVE-12821.mssql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mssql/014-HIVE-12822.mssql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mssql/015-HIVE-12823.mssql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mssql/016-HIVE-12831.mssql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mssql/017-HIVE-12832.mssql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mssql/019-HIVE-13076.mssql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mssql/020-HIVE-13395.mssql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mssql/021-HIVE-13354.mssql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mssql/022-HIVE-14496.mssql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mssql/023-HIVE-10562.mssql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mssql/024-HIVE-12274.mssql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mssql/025-HIVE-16399.mssql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mssql/hive-schema-0.11.0.mssql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mssql/hive-schema-0.12.0.mssql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mssql/hive-schema-0.13.0.mssql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mssql/hive-schema-0.14.0.mssql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mssql/hive-schema-1.1.0.mssql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mssql/hive-schema-1.2.0.mssql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mssql/hive-schema-1.3.0.mssql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mssql/hive-schema-2.0.0.mssql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mssql/hive-schema-2.1.0.mssql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mssql/hive-schema-2.2.0.mssql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mssql/hive-schema-2.3.0.mssql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mssql/hive-txn-schema-0.13.0.mssql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mssql/hive-txn-schema-0.14.0.mssql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mssql/pre-0-upgrade-0.12.0-to-0.13.0.mssql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mssql/pre-0-upgrade-0.13.0-to-0.14.0.mssql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mssql/pre-1-upgrade-0.12.0-to-0.13.0.mssql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mssql/pre-1-upgrade-0.13.0-to-0.14.0.mssql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mssql/README apache-hive-2.3.0-bin/scripts/metastore/upgrade/mssql/upgrade-0.12.0-to-0.13.0.mssql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mssql/upgrade-0.13.0-to-0.14.0.mssql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mssql/upgrade-0.14.0-to-1.1.0.mssql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mssql/upgrade-1.1.0-to-1.2.0.mssql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mssql/upgrade-1.2.0-to-1.3.0.mssql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mssql/upgrade-1.2.0-to-2.0.0.mssql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mssql/upgrade-2.0.0-to-2.1.0.mssql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mssql/upgrade-2.1.0-to-2.2.0.mssql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mssql/upgrade-2.2.0-to-2.3.0.mssql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mssql/upgrade.order.mssql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/001-HIVE-972.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/002-HIVE-1068.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/003-HIVE-675.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/004-HIVE-1364.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/005-HIVE-417.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/006-HIVE-1823.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/007-HIVE-78.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/008-HIVE-2246.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/009-HIVE-2215.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/010-HIVE-3072.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/011-HIVE-3649.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/012-HIVE-1362.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/013-HIVE-3255.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/014-HIVE-3764.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/016-HIVE-6386.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/017-HIVE-6458.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/018-HIVE-6757.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/019-HIVE-7784.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/020-HIVE-9296.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/021-HIVE-7018.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/022-HIVE-11970.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/023-HIVE-12807.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/024-HIVE-12814.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/025-HIVE-12816.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/026-HIVE-12818.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/027-HIVE-12819.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/028-HIVE-12821.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/029-HIVE-12822.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/030-HIVE-12823.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/031-HIVE-12831.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/032-HIVE-12832.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/034-HIVE-13076.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/035-HIVE-13395.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/036-HIVE-13354.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/037-HIVE-14496.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/038-HIVE-10562.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/039-HIVE-12274.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/040-HIVE-16399.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/hive-schema-0.10.0.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/hive-schema-0.11.0.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/hive-schema-0.12.0.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/hive-schema-0.13.0.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/hive-schema-0.14.0.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/hive-schema-0.3.0.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/hive-schema-0.4.0.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/hive-schema-0.4.1.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/hive-schema-0.5.0.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/hive-schema-0.6.0.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/hive-schema-0.7.0.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/hive-schema-0.8.0.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/hive-schema-0.9.0.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/hive-schema-1.1.0.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/hive-schema-1.2.0.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/hive-schema-1.3.0.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/hive-schema-2.0.0.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/hive-schema-2.1.0.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/hive-schema-2.2.0.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/hive-schema-2.3.0.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/hive-txn-schema-0.13.0.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/hive-txn-schema-0.14.0.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/hive-txn-schema-1.3.0.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/hive-txn-schema-2.0.0.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/hive-txn-schema-2.1.0.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/hive-txn-schema-2.2.0.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/hive-txn-schema-2.3.0.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/README apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/upgrade-0.10.0-to-0.11.0.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/upgrade-0.11.0-to-0.12.0.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/upgrade-0.12.0-to-0.13.0.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/upgrade-0.13.0-to-0.14.0.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/upgrade-0.14.0-to-1.1.0.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/upgrade-0.5.0-to-0.6.0.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/upgrade-0.6.0-to-0.7.0.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/upgrade-0.7.0-to-0.8.0.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/upgrade-0.8.0-to-0.9.0.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/upgrade-0.9.0-to-0.10.0.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/upgrade-1.1.0-to-1.2.0.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/upgrade-1.2.0-to-1.3.0.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/upgrade-1.2.0-to-2.0.0.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/upgrade-2.0.0-to-2.1.0.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/upgrade-2.1.0-to-2.2.0.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/upgrade-2.2.0-to-2.3.0.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/mysql/upgrade.order.mysql apache-hive-2.3.0-bin/scripts/metastore/upgrade/oracle/010-HIVE-3072.oracle.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/oracle/011-HIVE-3649.oracle.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/oracle/012-HIVE-1362.oracle.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/oracle/013-HIVE-3255.oracle.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/oracle/014-HIVE-3764.oracle.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/oracle/016-HIVE-6386.oracle.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/oracle/017-HIVE-6458.oracle.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/oracle/018-HIVE-6757.oracle.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/oracle/019-HIVE-7118.oracle.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/oracle/020-HIVE-7784.oracle.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/oracle/021-HIVE-9296.oracle.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/oracle/022-HIVE-11970.oracle.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/oracle/023-HIVE-12807.oracle.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/oracle/024-HIVE-12814.oracle.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/oracle/025-HIVE-12816.oracle.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/oracle/026-HIVE-12818.oracle.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/oracle/027-HIVE-12819.oracle.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/oracle/028-HIVE-12821.oracle.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/oracle/029-HIVE-12822.oracle.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/oracle/030-HIVE-12823.oracle.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/oracle/031-HIVE-12381.oracle.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/oracle/032-HIVE-12832.oracle.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/oracle/034-HIVE-13076.oracle.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/oracle/035-HIVE-13395.oracle.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/oracle/036-HIVE-13354.oracle.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/oracle/037-HIVE-14496.oracle.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/oracle/038-HIVE-10562.oracle.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/oracle/039-HIVE-12274.oracle.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/oracle/040-HIVE-16399.oracle.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/oracle/hive-schema-0.10.0.oracle.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/oracle/hive-schema-0.11.0.oracle.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/oracle/hive-schema-0.12.0.oracle.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/oracle/hive-schema-0.13.0.oracle.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/oracle/hive-schema-0.14.0.oracle.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/oracle/hive-schema-0.9.0.oracle.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/oracle/hive-schema-1.1.0.oracle.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/oracle/hive-schema-1.2.0.oracle.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/oracle/hive-schema-1.3.0.oracle.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/oracle/hive-schema-2.0.0.oracle.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/oracle/hive-schema-2.1.0.oracle.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/oracle/hive-schema-2.2.0.oracle.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/oracle/hive-schema-2.3.0.oracle.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/oracle/hive-txn-schema-0.13.0.oracle.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/oracle/hive-txn-schema-0.14.0.oracle.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/oracle/hive-txn-schema-1.3.0.oracle.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/oracle/hive-txn-schema-2.0.0.oracle.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/oracle/hive-txn-schema-2.1.0.oracle.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/oracle/hive-txn-schema-2.2.0.oracle.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/oracle/hive-txn-schema-2.3.0.oracle.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/oracle/pre-0-upgrade-0.13.0-to-0.14.0.oracle.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/oracle/upgrade-0.10.0-to-0.11.0.mysql.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/oracle/upgrade-0.10.0-to-0.11.0.oracle.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/oracle/upgrade-0.11.0-to-0.12.0.oracle.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/oracle/upgrade-0.12.0-to-0.13.0.oracle.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/oracle/upgrade-0.13.0-to-0.14.0.oracle.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/oracle/upgrade-0.14.0-to-1.1.0.oracle.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/oracle/upgrade-0.9.0-to-0.10.0.oracle.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/oracle/upgrade-1.1.0-to-1.2.0.oracle.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/oracle/upgrade-1.2.0-to-1.3.0.oracle.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/oracle/upgrade-1.2.0-to-2.0.0.oracle.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/oracle/upgrade-2.0.0-to-2.1.0.oracle.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/oracle/upgrade-2.1.0-to-2.2.0.oracle.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/oracle/upgrade-2.2.0-to-2.3.0.oracle.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/oracle/upgrade.order.oracle apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/001-HIVE-972.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/002-HIVE-1068.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/003-HIVE-675.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/004-HIVE-1364.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/005-HIVE-417.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/006-HIVE-1823.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/007-HIVE-78.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/008-HIVE-2246.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/008-REVERT-HIVE-2246.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/009-HIVE-2215.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/010-HIVE-3072.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/011-HIVE-3649.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/012-HIVE-1362.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/013-HIVE-3255.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/014-HIVE-3764.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/016-HIVE-6386.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/017-HIVE-6458.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/018-HIVE-6757.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/019-HIVE-7784.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/020-HIVE-9296.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/021-HIVE-11970.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/022-HIVE-12807.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/023-HIVE-12814.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/024-HIVE-12816.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/025-HIVE-12818.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/026-HIVE-12819.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/027-HIVE-12821.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/028-HIVE-12822.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/029-HIVE-12823.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/030-HIVE-12831.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/031-HIVE-12832.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/033-HIVE-13076.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/034-HIVE-13395.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/035-HIVE-13354.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/036-HIVE-14496.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/037-HIVE-10562.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/038-HIVE-12274.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/039-HIVE-16399.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/hive-schema-0.10.0.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/hive-schema-0.11.0.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/hive-schema-0.12.0.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/hive-schema-0.13.0.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/hive-schema-0.14.0.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/hive-schema-0.3.0.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/hive-schema-0.4.0.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/hive-schema-0.4.1.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/hive-schema-0.5.0.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/hive-schema-0.6.0.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/hive-schema-0.7.0.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/hive-schema-0.8.0.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/hive-schema-0.9.0.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/hive-schema-1.1.0.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/hive-schema-1.2.0.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/hive-schema-1.3.0.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/hive-schema-2.0.0.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/hive-schema-2.1.0.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/hive-schema-2.2.0.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/hive-schema-2.3.0.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/hive-txn-schema-0.13.0.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/hive-txn-schema-0.14.0.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/hive-txn-schema-1.3.0.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/hive-txn-schema-2.0.0.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/hive-txn-schema-2.1.0.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/hive-txn-schema-2.2.0.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/hive-txn-schema-2.3.0.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/pre-0-upgrade-0.12.0-to-0.13.0.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/pre-0-upgrade-0.13.0-to-0.14.0.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/README apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/upgrade-0.10.0-to-0.11.0.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/upgrade-0.11.0-to-0.12.0.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/upgrade-0.12.0-to-0.13.0.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/upgrade-0.13.0-to-0.14.0.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/upgrade-0.14.0-to-1.1.0.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/upgrade-0.5.0-to-0.6.0.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/upgrade-0.6.0-to-0.7.0.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/upgrade-0.7.0-to-0.8.0.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/upgrade-0.8.0-to-0.9.0.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/upgrade-0.9.0-to-0.10.0.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/upgrade-1.1.0-to-1.2.0.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/upgrade-1.2.0-to-1.3.0.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/upgrade-1.2.0-to-2.0.0.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/upgrade-2.0.0-to-2.1.0.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/upgrade-2.1.0-to-2.2.0.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/upgrade-2.2.0-to-2.3.0.postgres.sql apache-hive-2.3.0-bin/scripts/metastore/upgrade/postgres/upgrade.order.postgres apache-hive-2.3.0-bin/conf/hive-default.xml.template apache-hive-2.3.0-bin/conf/hive-env.sh.template apache-hive-2.3.0-bin/conf/ivysettings.xml apache-hive-2.3.0-bin/lib/php/ext/ apache-hive-2.3.0-bin/lib/php/ext/thrift_protocol/ apache-hive-2.3.0-bin/lib/php/ext/thrift_protocol/tags/ apache-hive-2.3.0-bin/lib/php/ext/thrift_protocol/tags/1.0.0/ apache-hive-2.3.0-bin/lib/php/packages/ apache-hive-2.3.0-bin/lib/php/packages/fb303/ apache-hive-2.3.0-bin/lib/php/protocol/ apache-hive-2.3.0-bin/lib/php/transport/ apache-hive-2.3.0-bin/lib/php/autoload.php apache-hive-2.3.0-bin/lib/php/ext/thrift_protocol/config.m4 apache-hive-2.3.0-bin/lib/php/ext/thrift_protocol/php_thrift_protocol.cpp apache-hive-2.3.0-bin/lib/php/ext/thrift_protocol/php_thrift_protocol.h apache-hive-2.3.0-bin/lib/php/ext/thrift_protocol/tags/1.0.0/config.m4 apache-hive-2.3.0-bin/lib/php/ext/thrift_protocol/tags/1.0.0/php_thrift_protocol.cpp apache-hive-2.3.0-bin/lib/php/ext/thrift_protocol/tags/1.0.0/php_thrift_protocol.h apache-hive-2.3.0-bin/lib/php/packages/fb303/FacebookService.php apache-hive-2.3.0-bin/lib/php/packages/fb303/fb303_types.php apache-hive-2.3.0-bin/lib/php/protocol/TBinaryProtocol.php apache-hive-2.3.0-bin/lib/php/protocol/TProtocol.php apache-hive-2.3.0-bin/lib/php/Thrift.php apache-hive-2.3.0-bin/lib/php/transport/TBufferedTransport.php apache-hive-2.3.0-bin/lib/php/transport/TFramedTransport.php apache-hive-2.3.0-bin/lib/php/transport/THttpClient.php apache-hive-2.3.0-bin/lib/php/transport/TMemoryBuffer.php apache-hive-2.3.0-bin/lib/php/transport/TNullTransport.php apache-hive-2.3.0-bin/lib/php/transport/TPhpStream.php apache-hive-2.3.0-bin/lib/php/transport/TSocket.php apache-hive-2.3.0-bin/lib/php/transport/TSocketPool.php apache-hive-2.3.0-bin/lib/php/transport/TTransport.php apache-hive-2.3.0-bin/lib/php/packages/serde/org/ apache-hive-2.3.0-bin/lib/php/packages/serde/org/apache/ apache-hive-2.3.0-bin/lib/php/packages/serde/org/apache/hadoop/ apache-hive-2.3.0-bin/lib/php/packages/serde/org/apache/hadoop/hive/ apache-hive-2.3.0-bin/lib/php/packages/serde/org/apache/hadoop/hive/serde/ apache-hive-2.3.0-bin/lib/php/packages/serde/org/apache/hadoop/hive/serde/Types.php apache-hive-2.3.0-bin/lib/php/packages/serde/Types.php apache-hive-2.3.0-bin/lib/php/packages/hive_metastore/metastore/ apache-hive-2.3.0-bin/lib/php/packages/hive_metastore/metastore/ThriftHiveMetastore.php apache-hive-2.3.0-bin/lib/php/packages/hive_metastore/metastore/Types.php apache-hive-2.3.0-bin/lib/php/packages/queryplan/Types.php apache-hive-2.3.0-bin/lib/py/fb303/ apache-hive-2.3.0-bin/lib/py/fb303_scripts/ apache-hive-2.3.0-bin/lib/py/thrift/ apache-hive-2.3.0-bin/lib/py/thrift/protocol/ apache-hive-2.3.0-bin/lib/py/thrift/reflection/ apache-hive-2.3.0-bin/lib/py/thrift/reflection/limited/ apache-hive-2.3.0-bin/lib/py/thrift/server/ apache-hive-2.3.0-bin/lib/py/thrift/transport/ apache-hive-2.3.0-bin/lib/py/fb303/__init__.py apache-hive-2.3.0-bin/lib/py/fb303/constants.py apache-hive-2.3.0-bin/lib/py/fb303/FacebookBase.py apache-hive-2.3.0-bin/lib/py/fb303/FacebookService-remote apache-hive-2.3.0-bin/lib/py/fb303/FacebookService.py apache-hive-2.3.0-bin/lib/py/fb303/ttypes.py apache-hive-2.3.0-bin/lib/py/fb303_scripts/__init__.py apache-hive-2.3.0-bin/lib/py/fb303_scripts/fb303_simple_mgmt.py apache-hive-2.3.0-bin/lib/py/thrift/__init__.py apache-hive-2.3.0-bin/lib/py/thrift/protocol/__init__.py apache-hive-2.3.0-bin/lib/py/thrift/protocol/fastbinary.c apache-hive-2.3.0-bin/lib/py/thrift/protocol/TBinaryProtocol.py apache-hive-2.3.0-bin/lib/py/thrift/protocol/TProtocol.py apache-hive-2.3.0-bin/lib/py/thrift/reflection/__init__.py apache-hive-2.3.0-bin/lib/py/thrift/reflection/limited/__init__.py apache-hive-2.3.0-bin/lib/py/thrift/reflection/limited/constants.py apache-hive-2.3.0-bin/lib/py/thrift/reflection/limited/ttypes.py apache-hive-2.3.0-bin/lib/py/thrift/server/__init__.py apache-hive-2.3.0-bin/lib/py/thrift/server/THttpServer.py apache-hive-2.3.0-bin/lib/py/thrift/server/TNonblockingServer.py apache-hive-2.3.0-bin/lib/py/thrift/server/TServer.py apache-hive-2.3.0-bin/lib/py/thrift/Thrift.py apache-hive-2.3.0-bin/lib/py/thrift/transport/__init__.py apache-hive-2.3.0-bin/lib/py/thrift/transport/THttpClient.py apache-hive-2.3.0-bin/lib/py/thrift/transport/TSocket.py apache-hive-2.3.0-bin/lib/py/thrift/transport/TTransport.py apache-hive-2.3.0-bin/lib/py/thrift/transport/TTwisted.py apache-hive-2.3.0-bin/lib/py/thrift/TSCons.py apache-hive-2.3.0-bin/lib/py/hive_serde/__init__.py apache-hive-2.3.0-bin/lib/py/hive_serde/constants.py apache-hive-2.3.0-bin/lib/py/hive_serde/ttypes.py apache-hive-2.3.0-bin/lib/py/hive_metastore/__init__.py apache-hive-2.3.0-bin/lib/py/hive_metastore/constants.py apache-hive-2.3.0-bin/lib/py/hive_metastore/ThriftHiveMetastore-remote apache-hive-2.3.0-bin/lib/py/hive_metastore/ThriftHiveMetastore.py apache-hive-2.3.0-bin/lib/py/hive_metastore/ttypes.py apache-hive-2.3.0-bin/lib/py/queryplan/__init__.py apache-hive-2.3.0-bin/lib/py/queryplan/constants.py apache-hive-2.3.0-bin/lib/py/queryplan/ttypes.py apache-hive-2.3.0-bin/hcatalog/bin/common.sh apache-hive-2.3.0-bin/hcatalog/bin/hcat apache-hive-2.3.0-bin/hcatalog/bin/hcat.py apache-hive-2.3.0-bin/hcatalog/bin/hcatcfg.py apache-hive-2.3.0-bin/hcatalog/etc/hcatalog/jndi.properties apache-hive-2.3.0-bin/hcatalog/etc/hcatalog/proto-hive-site.xml apache-hive-2.3.0-bin/hcatalog/etc/webhcat/webhcat-default.xml apache-hive-2.3.0-bin/hcatalog/etc/webhcat/webhcat-log4j2.properties apache-hive-2.3.0-bin/hcatalog/libexec/hcat-config.sh apache-hive-2.3.0-bin/hcatalog/sbin/hcat_server.py apache-hive-2.3.0-bin/hcatalog/sbin/hcat_server.sh apache-hive-2.3.0-bin/hcatalog/sbin/hcatcfg.py apache-hive-2.3.0-bin/hcatalog/sbin/update-hcatalog-env.sh apache-hive-2.3.0-bin/hcatalog/sbin/webhcat_config.sh apache-hive-2.3.0-bin/hcatalog/sbin/webhcat_server.sh apache-hive-2.3.0-bin/conf/hive-log4j2.properties.template apache-hive-2.3.0-bin/conf/hive-exec-log4j2.properties.template apache-hive-2.3.0-bin/conf/beeline-log4j2.properties.template apache-hive-2.3.0-bin/conf/llap-daemon-log4j2.properties.template apache-hive-2.3.0-bin/conf/llap-cli-log4j2.properties.template apache-hive-2.3.0-bin/conf/parquet-logging.properties apache-hive-2.3.0-bin/hcatalog/share/doc/hcatalog/README.txt | cs |
3번과 4번은 선택 사항입니다!
3. 디렉토리 이동합니다.
1 | $ sudo mv ~/apache-hive-2.3.0-bin /usr/local/ | cs |
4. 링크 연결합니다.
1 | $ sudo ln -sf /usr/local/apache-hive-2.3.0-bin/ /usr/local/hive | cs |
5. profiler 파일에 Hive 의 Home 경로를 등록합니다.
5-1. profile 파일을 수정합니다.
1 | $ sudo vi /etc/profile | cs |
5-2. profile 파일의 하단에 아래와 같이 추가 후 저장합니다.
1 2 | export HIVE_HOME=/usr/local/hive export PATH=$PATH:$HIVE_HOME/bin | cs |
5-3. 추가한 내용을 반영합니다.
1 | $ source /etc/profile | cs |
6. .bashrc 파일에 Hive 의 HOME 경로를 등록합니다.
6-1. .bashrc 파일을 수정합니다.
1 | $ sudo vi ~/.bashrc | cs |
* .bashrc 파일은 접속한 계정의 HOME 디렉토리 이하에 있습니다.
1 2 3 4 | # Hive PATH export HIVE_HOME=/usr/local/hadoop/hive # Add Hadoop bin/ directory to PATH export PATH=$PATH:$HADOOP_HOME/bin:$JAVA_HOME/bin:$HADOOP_HOME/sbin:$HIVE_HOME/bin | cs |
6-3. 추가한 내용을 반영합니다.
1 | $ source ~/.bashrc | cs |
7. hdfs 에 디렉토리를 생성합니다.
7-1. /tmp
1 | $ hdfs dfs -mkdir /tmp | cs |
7-2. /user/hive/warehouse
1 | $ hdfs dfs -mkdir /user/hive/warehouse | cs |
* 상위 디렉토리인 /user 및 /user/hive 디렉토리가 없을 경우 먼저 생성 후에 진행합니다.
8. 생성한 디렉토리에 접근 권한을 부여합니다.
8-1. /tmp
1 | $ hdfs dfs -chmod g+w /tmp | cs |
8-2. /user/hive/warehouse
1 | $ hdfs dfs -chmod g+w /user/hive/warehouse | cs |
9. mysql jdbc 를 다운로드합니다.
1 2 3 4 5 6 7 8 9 10 11 | $ wget http://repo.maven.apache.org/maven2/mysql/mysql-connector-java/5.1.9/mysql-connector-java-5.1.9.jar --2017-09-27 11:26:02-- http://repo.maven.apache.org/maven2/mysql/mysql-connector-java/5.1.9/mysql-connector-java-5.1.9.jar Resolving repo.maven.apache.org (repo.maven.apache.org)... 151.101.196.215 Connecting to repo.maven.apache.org (repo.maven.apache.org)|151.101.196.215|:80... connected. HTTP request sent, awaiting response... 200 OK Length: 724213 (707K) [application/java-archive] Saving to: ‘mysql-connector-java-5.1.9.jar’ mysql-connector-java-5. 100%[============================>] 707.24K 765KB/s in 0.9s 2017-09-27 11:26:04 (765 KB/s) - ‘mysql-connector-java-5.1.9.jar’ saved [724213/724213] | cs |
10. hive/lib 디렉토리 이하에 mysql-connector-java-5.1.9.jar 파일을 복사 혹은 이동합니다.
1 | $ cp ~/mysql-connector-java-5.1.9.jar /usr/local/hive/lib/ | cs |
* hive 는 링크된 것으로써 apache-hive-2.3.0-bin 로 연결됩니다.
11. hive/conf 디렉토리 내에 hive-env.sh.template 파일을 hive-env.sh 이름으로 복사합니다.
1 | $ cp /usr/local/hive/conf/hive-env.sh.template /usr/local/hive/conf/hive-env.sh | cs |
12. hive-env.sh 파일을 수정합니다.
1 | $ vi /usr/local/hive/conf/hive-env.sh | cs |
13. hive-env.sh 파일에 다음과 같이 추가 후 저장합니다.
1 | HADOOP_HOME=/usr/local/hadoop | cs |
* hadoop 의 HOME 경로를 확인 후에 작성하세요.
14. hive-log4j2.properties.template 파일을 hive-log4j2.properties 이름으로 복사합니다.
1 | $ cp /usr/local/hive/conf/hive-log4j2.properties.template /usr/local/hive/conf/hive-log4j2.properties | cs |
15. hive-default.xml.template 파일을 hive-site.xml 이름으로 복사합니다.
1 | $ cp /usr/local/hive/conf/hive-default.xml.template /usr/local/hive/conf/hive-site.xml | cs |
16. hive-site.xml 파일을 수정합니다.
1 | $ vi /usr/local/hive/conf/hive-site.xml | cs |
* 파일을 편집하려고 보면 여러 줄에 걸쳐서 설정값들이 있습니다.
* vi 의 해당 라인을 표시하려면 : 을 입력한 후 set nu 를 입력하세요.
* 불필요한 줄들을 삭제하려면 '123'dd 를 실행하면 커서의 위치를 기준으로 123줄을 삭제합니다.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | <?xml version="1.0" encoding="UTF-8" standalone="no"?> <?xml-stylesheet type="text/xsl" href="configuration.xsl"?><!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <configuration> <!-- WARNING!!! This file is auto generated for documentation purposes ONLY! --> <!-- WARNING!!! Any changes you make to this file will be ignored by Hive. --> <!-- WARNING!!! You must make your changes in hive-site.xml instead. --> <!-- Hive Execution Parameters --> </configuration> | cs |
17. hive-site.xml 파일에 다음과 같이 수정 및 추가합니다.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | <?xml version="1.0"?> <?xml-stylesheet type="text/xsl" href="configuration.xsl"?> <configuration> <property> <name>hive.metastore.warehouse.dir</name> <value>/user/hive/warehouse</value> </property> <property> <name>javax.jdo.option.ConnectionURL</name> <value>jdbc:mysql://localhost:3306/hive?createDatabaseIfNotExist=true</value> </property> <property> <name>javax.jdo.option.ConnectionDriverName</name> <value>com.mysql.jdbc.Driver</value> </property> <property> <name>javax.jdo.option.ConnectionUserName</name> <value>hive</value> </property> <property> <name>javax.jdo.option.ConnectionPassword</name> <value>pass</value> </property> </configuration> | cs |
* hive 부분에 해당 계정의 아이디를 입력합니다.
* pass 부분에 해당 계정의 비밀번호를 입력합니다.
18. hadoop 디렉토리 이하에 hadoop-env.sh 파일을 수정하여 hive 관련 liv 및 conf 를 hadoop 이 인식할 수 있도록 합니다.
1 | vi /usr/local/hadoop/etc/hadoop/hadoop-env.sh | cs |
19. hadoop-env.sh 파일의 하단에 다음과 같이 내용을 추가합니다.
1 2 3 4 | export HADOOP_CLASSPATH=$HIVE_HOME/conf:$HIVE_HOME/lib for f in ${HIVE_HOME}/lib/*.jar; do HADOOP_CLASSPATH=${HADOOP_CLASSPATH}:$f; done | cs |
20. /usr/local/hive/scripts/metastore/upgrade/mysql/ 디렉토리로 이동합니다.
1 | $ cd /usr/local/hive/scripts/metastore/upgrade/mysql/ | cs |
21. hive 데이터베이스에 스키마를 생성합니다. 두 가지 방식 중 한 가지를 골라서 진행하세요.
21-1. 스크립트 원격 실행 방식
1 2 | $ mysql -u hive -p hive < ./hive-schema-2.3.0.mysql.sql | cs |
* 스키마를 생성하기 전에 설치된 hive 버전에 주의하세요.
21-2. /usr/local/hive/bin/schematool 를 실행하는 방식
1 | /usr/local/hive/bin/schematool -initSchema -dbType mysql -verbose | cs |
* hive-site.xml 파일이 설정된 후에 가능함.
22. hive 의 metastore 를 백그라운드로 실행합니다.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | $ ./bin/hive --service metastore & [1] 6892 hadoop-user@ubuntu:/usr/local/hive$ 2017-10-13 15:41:48: Starting Hive Metastore Server ./bin/ext/metastore.sh: line 29: export: ` -Dproc_metastore -Dlog4j.configurationFile=hive-log4j2.properties -Djava.util.logging.config.file=/usr/local/hive/conf/parquet-logging.properties ': not a valid identifier SLF4J: Class path contains multiple SLF4J bindings. SLF4J: Found binding in [jar:file:/usr/local/apache-hive-2.3.0-bin/lib/log4j-slf4j-impl-2.6.2.jar!/org/slf4j/impl/StaticLoggerBinder.class] SLF4J: Found binding in [jar:file:/usr/local/hadoop-2.8.1/share/hadoop/common/lib/slf4j-log4j12-1.7.10.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.apache.logging.slf4j.Log4jLoggerFactory] 2017-10-13T15:41:50,195 INFO [main] org.apache.hadoop.hive.conf.HiveConf - Found configuration file file:/usr/local/apache-hive-2.3.0-bin/conf/hive-site.xml 2017-10-13T15:41:51,919 INFO [main] org.apache.hadoop.hive.metastore.HiveMetaStore - STARTUP_MSG: /************************************************************ STARTUP_MSG: Starting HiveMetaStore STARTUP_MSG: host = ubuntu/192.168.30.128 STARTUP_MSG: args = [] STARTUP_MSG: version = 2.3.0 STARTUP_MSG: classpath = /usr/local/hive/conf:/usr/local/hive/lib:/usr/local/hive/lib/accumulo-core-1.6.0.jar:/usr/local/hive/lib/accumulo-fate-1.6.0.jar:/usr/local/hive/lib/accumulo-start-1.6.0.jar:/usr/local/hive/lib/accumulo-trace-1.6.0.jar:/usr/local/hive/lib/activation-1.1.jar:/usr/local/hive/lib/aether-api-0.9.0.M2.jar:/usr/local/hive/lib/aether-connector-file-0.9.0.M2.jar:/usr/local/hive/lib/aether-connector-okhttp-0.0.9.jar:/usr/local/hive/lib/aether-impl-0.9.0.M2.jar:/usr/local/hive/lib/aether-spi-0.9.0.M2.jar:/usr/local/hive/lib/aether-util-0.9.0.M2.jar:/usr/local/hive/lib/aircompressor-0.3.jar:/usr/local/hive/lib/airline-0.7.jar:/usr/local/hive/lib/ant-1.6.5.jar:/usr/local/hive/lib/ant-1.9.1.jar:/usr/local/hive/lib/ant-launcher-1.9.1.jar:/usr/local/hive/lib/antlr4-runtime-4.5.jar:/usr/local/hive/lib/antlr-runtime-3.5.2.jar:/usr/local/hive/lib/asm-3.1.jar:/usr/local/hive/lib/asm-commons-3.1.jar:/usr/local/hive/lib/asm-tree-3.1.jar:/usr/local/hive/lib/avatica-1.8.0.jar:/usr/local/hive/lib/avatica-metrics-1.8.0.jar:/usr/local/hive/lib/avro-1.7.7.jar:/usr/local/hive/lib/bonecp-0.8.0.RELEASE.jar:/usr/local/hive/lib/bytebuffer-collections-0.2.5.jar:/usr/local/hive/lib/calcite-core-1.10.0.jar:/usr/local/hive/lib/calcite-druid-1.10.0.jar:/usr/local/hive/lib/calcite-linq4j-1.10.0.jar:/usr/local/hive/lib/classmate-1.0.0.jar:/usr/local/hive/lib/commons-cli-1.2.jar:/usr/local/hive/lib/commons-codec-1.4.jar:/usr/local/hive/lib/commons-collections-3.2.2.jar:/usr/local/hive/lib/commons-compiler-2.7.6.jar:/usr/local/hive/lib/commons-compress-1.9.jar:/usr/local/hive/lib/commons-dbcp-1.4.jar:/usr/local/hive/lib/commons-dbcp2-2.0.1.jar:/usr/local/hive/lib/commons-el-1.0.jar:/usr/local/hive/lib/commons-httpclient-3.0.1.jar:/usr/local/hive/lib/commons-io-2.4.jar:/usr/local/hive/lib/commons-lang-2.6.jar:/usr/local/hive/lib/commons-lang3-3.1.jar:/usr/local/hive/lib/commons-logging-1.2.jar:/usr/local/hive/lib/commons-math-2.2.jar:/usr/local/hive/lib/commons-math3-3.6.1.jar:/usr/local/hive/lib/commons-pool-1.5.4.jar:/usr/local/hive/lib/commons-pool2-2.2.jar:/usr/local/hive/lib/commons-vfs2-2.0.jar:/usr/local/hive/lib/compress-lzf-1.0.3.jar:/usr/local/hive/lib/config-magic-0.9.jar:/usr/local/hive/lib/curator-client-2.7.1.jar:/usr/local/hive/lib/curator-framework-2.7.1.jar:/usr/local/hive/lib/curator-recipes-2.7.1.jar:/usr/local/hive/lib/curator-x-discovery-2.11.0.jar:/usr/local/hive/lib/datanucleus-api-jdo-4.2.4.jar:/usr/local/hive/lib/datanucleus-core-4.1.17.jar:/usr/local/hive/lib/datanucleus-rdbms-4.1.19.jar:/usr/local/hive/lib/derby-10.10.2.0.jar:/usr/local/hive/lib/derbyclient-10.11.1.1.jar:/usr/local/hive/lib/derbynet-10.11.1.1.jar:/usr/local/hive/lib/disruptor-3.3.0.jar:/usr/local/hive/lib/dropwizard-metrics-hadoop-metrics2-reporter-0.1.2.jar:/usr/local/hive/lib/druid-api-0.9.2.jar:/usr/local/hive/lib/druid-common-0.9.2.jar:/usr/local/hive/lib/druid-console-0.0.2.jar:/usr/local/hive/lib/druid-hdfs-storage-0.9.2.jar:/usr/local/hive/lib/druid-processing-0.9.2.jar:/usr/local/hive/lib/druid-server-0.9.2.jar:/usr/local/hive/lib/eigenbase-properties-1.1.5.jar:/usr/local/hive/lib/emitter-0.3.6.jar:/usr/local/hive/lib/extendedset-1.3.10.jar:/usr/local/hive/lib/findbugs-annotations-1.3.9-1.jar:/usr/local/hive/lib/geoip2-0.4.0.jar:/usr/local/hive/lib/geronimo-annotation_1.0_spec-1.1.1.jar:/usr/local/hive/lib/geronimo-jaspic_1.0_spec-1.0.jar:/usr/local/hive/lib/geronimo-jta_1.1_spec-1.1.1.jar:/usr/local/hive/lib/google-http-client-jackson2-1.15.0-rc.jar:/usr/local/hive/lib/groovy-all-2.4.4.jar:/usr/local/hive/lib/gson-2.2.4.jar:/usr/local/hive/lib/guava-14.0.1.jar:/usr/local/hive/lib/guice-multibindings-4.1.0.jar:/usr/local/hive/lib/guice-servlet-4.1.0.jar:/usr/local/hive/lib/hbase-annotations-1.1.1.jar:/usr/local/hive/lib/hbase-client-1.1.1.jar:/usr/local/hive/lib/hbase-common-1.1.1.jar:/usr/local/hive/lib/hbase-common-1.1.1-tests.jar:/usr/local/hive/lib/hbase-hadoop2-compat-1.1.1.jar:/usr/local/hive/lib/hbase-hadoop2-compat-1.1.1-tests.jar:/usr/local/hive/lib/hbase-hadoop-compat-1.1.1.jar:/usr/local/hive/lib/hbase-prefix-tree-1.1.1.jar:/usr/local/hive/lib/hbase-procedure-1.1.1.jar:/usr/local/hive/lib/hbase-protocol-1.1.1.jar:/usr/local/hive/lib/hbase-server-1.1.1.jar:/usr/local/hive/lib/hibernate-validator-5.1.3.Final.jar:/usr/local/hive/lib/HikariCP-2.5.1.jar:/usr/local/hive/lib/hive-accumulo-handler-2.3.0.jar:/usr/local/hive/lib/hive-beeline-2.3.0.jar:/usr/local/hive/lib/hive-cli-2.3.0.jar:/usr/local/hive/lib/hive-common-2.3.0.jar:/usr/local/hive/lib/hive-contrib-2.3.0.jar:/usr/local/hive/lib/hive-druid-handler-2.3.0.jar:/usr/local/hive/lib/hive-exec-2.3.0.jar:/usr/local/hive/lib/hive-hbase-handler-2.3.0.jar:/usr/local/hive/lib/hive-hcatalog-core-2.3.0.jar:/usr/local/hive/lib/hive-hcatalog-server-extensions-2.3.0.jar:/usr/local/hive/lib/hive-hplsql-2.3.0.jar:/usr/local/hive/lib/hive-jdbc-2.3.0.jar:/usr/local/hive/lib/hive-jdbc-handler-2.3.0.jar:/usr/local/hive/lib/hive-llap-client-2.3.0.jar:/usr/local/hive/lib/hive-llap-common-2.3.0.jar:/usr/local/hive/lib/hive-llap-common-2.3.0-tests.jar:/usr/local/hive/lib/hive-llap-ext-client-2.3.0.jar:/usr/local/hive/lib/hive-llap-server-2.3.0.jar:/usr/local/hive/lib/hive-llap-tez-2.3.0.jar:/usr/local/hive/lib/hive-metastore-2.3.0.jar:/usr/local/hive/lib/hive-serde-2.3.0.jar:/usr/local/hive/lib/hive-service-2.3.0.jar:/usr/local/hive/lib/hive-service-rpc-2.3.0.jar:/usr/local/hive/lib/hive-shims-0.23-2.3.0.jar:/usr/local/hive/lib/hive-shims-2.3.0.jar:/usr/local/hive/lib/hive-shims-common-2.3.0.jar:/usr/local/hive/lib/hive-shims-scheduler-2.3.0.jar:/usr/local/hive/lib/hive-storage-api-2.4.0.jar:/usr/local/hive/lib/hive-testutils-2.3.0.jar:/usr/local/hive/lib/hive-vector-code-gen-2.3.0.jar:/usr/local/hive/lib/htrace-core-3.1.0-incubating.jar:/usr/local/hive/lib/http-client-1.0.4.jar:/usr/local/hive/lib/httpclient-4.4.jar:/usr/local/hive/lib/httpcore-4.4.jar:/usr/local/hive/lib/icu4j-4.8.1.jar:/usr/local/hive/lib/irc-api-1.0-0014.jar:/usr/local/hive/lib/ivy-2.4.0.jar:/usr/local/hive/lib/jackson-annotations-2.6.0.jar:/usr/local/hive/lib/jackson-core-2.6.5.jar:/usr/local/hive/lib/jackson-databind-2.6.5.jar:/usr/local/hive/lib/jackson-dataformat-smile-2.4.6.jar:/usr/local/hive/lib/jackson-datatype-guava-2.4.6.jar:/usr/local/hive/lib/jackson-datatype-joda-2.4.6.jar:/usr/local/hive/lib/jackson-jaxrs-1.9.13.jar:/usr/local/hive/lib/jackson-jaxrs-base-2.4.6.jar:/usr/local/hive/lib/jackson-jaxrs-json-provider-2.4.6.jar:/usr/local/hive/lib/jackson-jaxrs-smile-provider-2.4.6.jar:/usr/local/hive/lib/jackson-module-jaxb-annotations-2.4.6.jar:/usr/local/hive/lib/jackson-xc-1.9.13.jar:/usr/local/hive/lib/jamon-runtime-2.3.1.jar:/usr/local/hive/lib/janino-2.7.6.jar:/usr/local/hive/lib/jasper-compiler-5.5.23.jar:/usr/local/hive/lib/jasper-runtime-5.5.23.jar:/usr/local/hive/lib/java-util-0.27.10.jar:/usr/local/hive/lib/javax.el-3.0.0.jar:/usr/local/hive/lib/javax.el-api-3.0.0.jar:/usr/local/hive/lib/javax.inject-1.jar:/usr/local/hive/lib/javax.jdo-3.2.0-m3.jar:/usr/local/hive/lib/javax.servlet-3.0.0.v201112011016.jar:/usr/local/hive/lib/javax.servlet-api-3.1.0.jar:/usr/local/hive/lib/javolution-5.5.1.jar:/usr/local/hive/lib/jboss-logging-3.1.3.GA.jar:/usr/local/hive/lib/jcodings-1.0.8.jar:/usr/local/hive/lib/jcommander-1.32.jar:/usr/local/hive/lib/jdbi-2.63.1.jar:/usr/local/hive/lib/jdo-api-3.0.1.jar:/usr/local/hive/lib/jersey-client-1.9.jar:/usr/local/hive/lib/jersey-guice-1.19.jar:/usr/local/hive/lib/jersey-server-1.14.jar:/usr/local/hive/lib/jettison-1.1.jar:/usr/local/hive/lib/jetty-6.1.26.jar:/usr/local/hive/lib/jetty-all-7.6.0.v20120127.jar:/usr/local/hive/lib/jetty-client-9.2.5.v20141112.jar:/usr/local/hive/lib/jetty-continuation-9.2.5.v20141112.jar:/usr/local/hive/lib/jetty-http-9.2.5.v20141112.jar:/usr/local/hive/lib/jetty-io-9.2.5.v20141112.jar:/usr/local/hive/lib/jetty-proxy-9.2.5.v20141112.jar:/usr/local/hive/lib/jetty-security-9.2.5.v20141112.jar:/usr/local/hive/lib/jetty-server-9.2.5.v20141112.jar:/usr/local/hive/lib/jetty-servlet-9.2.5.v20141112.jar:/usr/local/hive/lib/jetty-servlets-9.2.5.v20141112.jar:/usr/local/hive/lib/jetty-sslengine-6.1.26.jar:/usr/local/hive/lib/jetty-util-6.1.26.jar:/usr/local/hive/lib/jetty-util-9.2.5.v20141112.jar:/usr/local/hive/lib/jline-2.12.jar:/usr/local/hive/lib/joda-time-2.8.1.jar:/usr/local/hive/lib/joni-2.1.2.jar:/usr/local/hive/lib/jpam-1.1.jar:/usr/local/hive/lib/json-1.8.jar:/usr/local/hive/lib/json-path-2.1.0.jar:/usr/local/hive/lib/jsp-2.1-6.1.14.jar:/usr/local/hive/lib/jsp-api-2.0.jar:/usr/local/hive/lib/jsp-api-2.1-6.1.14.jar:/usr/local/hive/lib/jsp-api-2.1.jar:/usr/local/hive/lib/jsr305-3.0.0.jar:/usr/local/hive/lib/jta-1.1.jar:/usr/local/hive/lib/libfb303-0.9.3.jar:/usr/local/hive/lib/libthrift-0.9.3.jar:/usr/local/hive/lib/log4j-1.2-api-2.6.2.jar:/usr/local/hive/lib/log4j-api-2.6.2.jar:/usr/local/hive/lib/log4j-core-2.6.2.jar:/usr/local/hive/lib/log4j-jul-2.5.jar:/usr/local/hive/lib/log4j-slf4j-impl-2.6.2.jar:/usr/local/hive/lib/log4j-web-2.6.2.jar:/usr/local/hive/lib/lz4-1.3.0.jar:/usr/local/hive/lib/mail-1.4.1.jar:/usr/local/hive/lib/mapdb-1.0.8.jar:/usr/local/hive/lib/maven-aether-provider-3.1.1.jar:/usr/local/hive/lib/maven-model-3.1.1.jar:/usr/local/hive/lib/maven-model-builder-3.1.1.jar:/usr/local/hive/lib/maven-repository-metadata-3.1.1.jar:/usr/local/hive/lib/maven-scm-api-1.4.jar:/usr/local/hive/lib/maven-scm-provider-svn-commons-1.4.jar:/usr/local/hive/lib/maven-scm-provider-svnexe-1.4.jar:/usr/local/hive/lib/maven-settings-3.1.1.jar:/usr/local/hive/lib/maven-settings-builder-3.1.1.jar:/usr/local/hive/lib/maxminddb-0.2.0.jar:/usr/local/hive/lib/metrics-core-2.2.0.jar:/usr/local/hive/lib/metrics-core-3.1.0.jar:/usr/local/hive/lib/metrics-json-3.1.0.jar:/usr/local/hive/lib/metrics-jvm-3.1.0.jar:/usr/local/hive/lib/mysql-connector-java-5.1.9.jar:/usr/local/hive/lib/mysql-metadata-storage-0.9.2.jar:/usr/local/hive/lib/netty-3.6.2.Final.jar:/usr/local/hive/lib/netty-all-4.0.29.Final.jar:/usr/local/hive/lib/okhttp-1.0.2.jar:/usr/local/hive/lib/opencsv-2.3.jar:/usr/local/hive/lib/orc-core-1.3.3.jar:/usr/local/hive/lib/org.abego.treelayout.core-1.0.1.jar:/usr/local/hive/lib/paranamer-2.3.jar:/usr/local/hive/lib/parquet-hadoop-bundle-1.8.1.jar:/usr/local/hive/lib/pentaho-aggdesigner-algorithm-5.1.5-jhyde.jar:/usr/local/hive/lib/plexus-interpolation-1.19.jar:/usr/local/hive/lib/plexus-utils-3.0.15.jar:/usr/local/hive/lib/postgresql-9.4.1208.jre7.jar:/usr/local/hive/lib/postgresql-metadata-storage-0.9.2.jar:/usr/local/hive/lib/protobuf-java-2.5.0.jar:/usr/local/hive/lib/regexp-1.3.jar:/usr/local/hive/lib/rhino-1.7R5.jar:/usr/local/hive/lib/RoaringBitmap-0.5.18.jar:/usr/local/hive/lib/server-metrics-0.2.8.jar:/usr/local/hive/lib/servlet-api-2.4.jar:/usr/local/hive/lib/servlet-api-2.5-6.1.14.jar:/usr/local/hive/lib/slider-core-0.90.2-incubating.jar:/usr/local/hive/lib/snappy-java-1.0.5.jar:/usr/local/hive/lib/spymemcached-2.11.7.jar:/usr/local/hive/lib/ST4-4.0.4.jar:/usr/local/hive/lib/stax-api-1.0.1.jar:/usr/local/hive/lib/super-csv-2.2.0.jar:/usr/local/hive/lib/tempus-fugit-1.1.jar:/usr/local/hive/lib/tesla-aether-0.0.5.jar:/usr/local/hive/lib/transaction-api-1.1.jar:/usr/local/hive/lib/validation-api-1.1.0.Final.jar:/usr/local/hive/lib/velocity-1.5.jar:/usr/local/hive/lib/wagon-provider-api-2.4.jar:/usr/local/hive/lib/zookeeper-3.4.6.jar:/usr/local/hadoop/etc/hadoop:/usr/local/hadoop/share/hadoop/common/lib/hadoop-annotations-2.8.1.jar:/usr/local/hadoop/share/hadoop/common/lib/jets3t-0.9.0.jar:/usr/local/hadoop/share/hadoop/common/lib/xmlenc-0.52.jar:/usr/local/hadoop/share/hadoop/common/lib/jackson-mapper-asl-1.9.13.jar:/usr/local/hadoop/share/hadoop/common/lib/commons-lang-2.6.jar:/usr/local/hadoop/share/hadoop/common/lib/commons-collections-3.2.2.jar:/usr/local/hadoop/share/hadoop/common/lib/jaxb-api-2.2.2.jar:/usr/local/hadoop/share/hadoop/common/lib/json-smart-1.1.1.jar:/usr/local/hadoop/share/hadoop/common/lib/servlet-api-2.5.jar:/usr/local/hadoop/share/hadoop/common/lib/commons-configuration-1.6.jar:/usr/local/hadoop/share/hadoop/common/lib/avro-1.7.4.jar:/usr/local/hadoop/share/hadoop/common/lib/commons-io-2.4.jar:/usr/local/hadoop/share/hadoop/common/lib/api-asn1-api-1.0.0-M20.jar:/usr/local/hadoop/share/hadoop/common/lib/commons-math3-3.1.1.jar:/usr/local/hadoop/share/hadoop/common/lib/xz-1.0.jar:/usr/local/hadoop/share/hadoop/common/lib/jersey-json-1.9.jar:/usr/local/hadoop/share/hadoop/common/lib/jsr305-3.0.0.jar:/usr/local/hadoop/share/hadoop/common/lib/activation-1.1.jar:/usr/local/hadoop/share/hadoop/common/lib/asm-3.2.jar:/usr/local/hadoop/share/hadoop/common/lib/paranamer-2.3.jar:/usr/local/hadoop/share/hadoop/common/lib/guava-11.0.2.jar:/usr/local/hadoop/share/hadoop/common/lib/api-util-1.0.0-M20.jar:/usr/local/hadoop/share/hadoop/common/lib/htrace-core4-4.0.1-incubating.jar:/usr/local/hadoop/share/hadoop/common/lib/jcip-annotations-1.0.jar:/usr/local/hadoop/share/hadoop/common/lib/curator-recipes-2.7.1.jar:/usr/local/hadoop/share/hadoop/common/lib/jackson-xc-1.9.13.jar:/usr/local/hadoop/share/hadoop/common/lib/stax-api-1.0-2.jar:/usr/local/hadoop/share/hadoop/common/lib/snappy-java-1.0.4.1.jar:/usr/local/hadoop/share/hadoop/common/lib/jackson-jaxrs-1.9.13.jar:/usr/local/hadoop/share/hadoop/common/lib/nimbus-jose-jwt-3.9.jar:/usr/local/hadoop/share/hadoop/common/lib/jetty-6.1.26.jar:/usr/local/hadoop/share/hadoop/common/lib/log4j-1.2.17.jar:/usr/local/hadoop/share/hadoop/common/lib/jettison-1.1.jar:/usr/local/hadoop/share/hadoop/common/lib/commons-digester-1.8.jar:/usr/local/hadoop/share/hadoop/common/lib/jetty-util-6.1.26.jar:/usr/local/hadoop/share/hadoop/common/lib/slf4j-log4j12-1.7.10.jar:/usr/local/hadoop/share/hadoop/common/lib/gson-2.2.4.jar:/usr/local/hadoop/share/hadoop/common/lib/jaxb-impl-2.2.3-1.jar:/usr/local/hadoop/share/hadoop/common/lib/curator-client-2.7.1.jar:/usr/local/hadoop/share/hadoop/common/lib/httpcore-4.4.4.jar:/usr/local/hadoop/share/hadoop/common/lib/jackson-core-asl-1.9.13.jar:/usr/local/hadoop/share/hadoop/common/lib/jsp-api-2.1.jar:/usr/local/hadoop/share/hadoop/common/lib/commons-beanutils-1.7.0.jar:/usr/local/hadoop/share/hadoop/common/lib/commons-compress-1.4.1.jar:/usr/local/hadoop/share/hadoop/common/lib/commons-beanutils-core-1.8.0.jar:/usr/local/hadoop/share/hadoop/common/lib/protobuf-java-2.5.0.jar:/usr/local/hadoop/share/hadoop/common/lib/commons-net-3.1.jar:/usr/local/hadoop/share/hadoop/common/lib/commons-logging-1.1.3.jar:/usr/local/hadoop/share/hadoop/common/lib/jersey-core-1.9.jar:/usr/local/hadoop/share/hadoop/common/lib/curator-framework-2.7.1.jar:/usr/local/hadoop/share/hadoop/common/lib/httpclient-4.5.2.jar:/usr/local/hadoop/share/hadoop/common/lib/jsch-0.1.51.jar:/usr/local/hadoop/share/hadoop/common/lib/mockito-all-1.8.5.jar:/usr/local/hadoop/share/hadoop/common/lib/commons-cli-1.2.jar:/usr/local/hadoop/share/hadoop/common/lib/apacheds-i18n-2.0.0-M15.jar:/usr/local/hadoop/share/hadoop/common/lib/commons-codec-1.4.jar:/usr/local/hadoop/share/hadoop/common/lib/jersey-server-1.9.jar:/usr/local/hadoop/share/hadoop/common/lib/netty-3.6.2.Final.jar:/usr/local/hadoop/share/hadoop/common/lib/jetty-sslengine-6.1.26.jar:/usr/local/hadoop/share/hadoop/common/lib/hadoop-auth-2.8.1.jar:/usr/local/hadoop/share/hadoop/common/lib/apacheds-kerberos-codec-2.0.0-M15.jar:/usr/local/hadoop/share/hadoop/common/lib/slf4j-api-1.7.10.jar:/usr/local/hadoop/share/hadoop/common/lib/zookeeper-3.4.6.jar:/usr/local/hadoop/share/hadoop/common/lib/junit-4.11.jar:/usr/local/hadoop/share/hadoop/common/lib/hamcrest-core-1.3.jar:/usr/local/hadoop/share/hadoop/common/lib/java-xmlbuilder-0.4.jar:/usr/local/hadoop/share/hadoop/common/hadoop-nfs-2.8.1.jar:/usr/local/hadoop/share/hadoop/common/hadoop-common-2.8.1-tests.jar:/usr/local/hadoop/share/hadoop/common/hadoop-common-2.8.1.jar:/usr/local/hadoop/share/hadoop/hdfs:/usr/local/hadoop/share/hadoop/hdfs/lib/xmlenc-0.52.jar:/usr/local/hadoop/share/hadoop/hdfs/lib/jackson-mapper-asl-1.9.13.jar:/usr/local/hadoop/share/hadoop/hdfs/lib/commons-lang-2.6.jar:/usr/local/hadoop/share/hadoop/hdfs/lib/servlet-api-2.5.jar:/usr/local/hadoop/share/hadoop/hdfs/lib/xml-apis-1.3.04.jar:/usr/local/hadoop/share/hadoop/hdfs/lib/commons-io-2.4.jar:/usr/local/hadoop/share/hadoop/hdfs/lib/jsr305-3.0.0.jar:/usr/local/hadoop/share/hadoop/hdfs/lib/asm-3.2.jar:/usr/local/hadoop/share/hadoop/hdfs/lib/guava-11.0.2.jar:/usr/local/hadoop/share/hadoop/hdfs/lib/htrace-core4-4.0.1-incubating.jar:/usr/local/hadoop/share/hadoop/hdfs/lib/okio-1.4.0.jar:/usr/local/hadoop/share/hadoop/hdfs/lib/jetty-6.1.26.jar:/usr/local/hadoop/share/hadoop/hdfs/lib/okhttp-2.4.0.jar:/usr/local/hadoop/share/hadoop/hdfs/lib/netty-all-4.0.23.Final.jar:/usr/local/hadoop/share/hadoop/hdfs/lib/log4j-1.2.17.jar:/usr/local/hadoop/share/hadoop/hdfs/lib/leveldbjni-all-1.8.jar:/usr/local/hadoop/share/hadoop/hdfs/lib/jetty-util-6.1.26.jar:/usr/local/hadoop/share/hadoop/hdfs/lib/commons-daemon-1.0.13.jar:/usr/local/hadoop/share/hadoop/hdfs/lib/jackson-core-asl-1.9.13.jar:/usr/local/hadoop/share/hadoop/hdfs/lib/protobuf-java-2.5.0.jar:/usr/local/hadoop/share/hadoop/hdfs/lib/hadoop-hdfs-client-2.8.1.jar:/usr/local/hadoop/share/hadoop/hdfs/lib/xercesImpl-2.9.1.jar:/usr/local/hadoop/share/hadoop/hdfs/lib/commons-logging-1.1.3.jar:/usr/local/hadoop/share/hadoop/hdfs/lib/jersey-core-1.9.jar:/usr/local/hadoop/share/hadoop/hdfs/lib/commons-cli-1.2.jar:/usr/local/hadoop/share/hadoop/hdfs/lib/commons-codec-1.4.jar:/usr/local/hadoop/share/hadoop/hdfs/lib/jersey-server-1.9.jar:/usr/local/hadoop/share/hadoop/hdfs/lib/netty-3.6.2.Final.jar:/usr/local/hadoop/share/hadoop/hdfs/hadoop-hdfs-native-client-2.8.1-tests.jar:/usr/local/hadoop/share/hadoop/hdfs/hadoop-hdfs-native-client-2.8.1.jar:/usr/local/hadoop/share/hadoop/hdfs/hadoop-hdfs-2.8.1.jar:/usr/local/hadoop/share/hadoop/hdfs/hadoop-hdfs-nfs-2.8.1.jar:/usr/local/hadoop/share/hadoop/hdfs/hadoop-hdfs-client-2.8.1.jar:/usr/local/hadoop/share/hadoop/hdfs/hadoop-hdfs-client-2.8.1-tests.jar:/usr/local/hadoop/share/hadoop/hdfs/hadoop-hdfs-2.8.1-tests.jar:/usr/local/hadoop/share/hadoop/yarn/lib/aopalliance-1.0.jar:/usr/local/hadoop/share/hadoop/yarn/lib/jackson-mapper-asl-1.9.13.jar:/usr/local/hadoop/share/hadoop/yarn/lib/commons-lang-2.6.jar:/usr/local/hadoop/share/hadoop/yarn/lib/commons-collections-3.2.2.jar:/usr/local/hadoop/share/hadoop/yarn/lib/jaxb-api-2.2.2.jar:/usr/local/hadoop/share/hadoop/yarn/lib/servlet-api-2.5.jar:/usr/local/hadoop/share/hadoop/yarn/lib/commons-io-2.4.jar:/usr/local/hadoop/share/hadoop/yarn/lib/curator-test-2.7.1.jar:/usr/local/hadoop/share/hadoop/yarn/lib/xz-1.0.jar:/usr/local/hadoop/share/hadoop/yarn/lib/jersey-json-1.9.jar:/usr/local/hadoop/share/hadoop/yarn/lib/jsr305-3.0.0.jar:/usr/local/hadoop/share/hadoop/yarn/lib/zookeeper-3.4.6-tests.jar:/usr/local/hadoop/share/hadoop/yarn/lib/activation-1.1.jar:/usr/local/hadoop/share/hadoop/yarn/lib/asm-3.2.jar:/usr/local/hadoop/share/hadoop/yarn/lib/guava-11.0.2.jar:/usr/local/hadoop/share/hadoop/yarn/lib/guice-3.0.jar:/usr/local/hadoop/share/hadoop/yarn/lib/jackson-xc-1.9.13.jar:/usr/local/hadoop/share/hadoop/yarn/lib/stax-api-1.0-2.jar:/usr/local/hadoop/share/hadoop/yarn/lib/javassist-3.18.1-GA.jar:/usr/local/hadoop/share/hadoop/yarn/lib/jackson-jaxrs-1.9.13.jar:/usr/local/hadoop/share/hadoop/yarn/lib/jetty-6.1.26.jar:/usr/local/hadoop/share/hadoop/yarn/lib/guice-servlet-3.0.jar:/usr/local/hadoop/share/hadoop/yarn/lib/log4j-1.2.17.jar:/usr/local/hadoop/share/hadoop/yarn/lib/jettison-1.1.jar:/usr/local/hadoop/share/hadoop/yarn/lib/leveldbjni-all-1.8.jar:/usr/local/hadoop/share/hadoop/yarn/lib/jetty-util-6.1.26.jar:/usr/local/hadoop/share/hadoop/yarn/lib/jaxb-impl-2.2.3-1.jar:/usr/local/hadoop/share/hadoop/yarn/lib/curator-client-2.7.1.jar:/usr/local/hadoop/share/hadoop/yarn/lib/jackson-core-asl-1.9.13.jar:/usr/local/hadoop/share/hadoop/yarn/lib/commons-compress-1.4.1.jar:/usr/local/hadoop/share/hadoop/yarn/lib/commons-math-2.2.jar:/usr/local/hadoop/share/hadoop/yarn/lib/protobuf-java-2.5.0.jar:/usr/local/hadoop/share/hadoop/yarn/lib/javax.inject-1.jar:/usr/local/hadoop/share/hadoop/yarn/lib/commons-logging-1.1.3.jar:/usr/local/hadoop/share/hadoop/yarn/lib/jersey-core-1.9.jar:/usr/local/hadoop/share/hadoop/yarn/lib/jersey-guice-1.9.jar:/usr/local/hadoop/share/hadoop/yarn/lib/jersey-client-1.9.jar:/usr/local/hadoop/share/hadoop/yarn/lib/fst-2.24.jar:/usr/local/hadoop/share/hadoop/yarn/lib/commons-cli-1.2.jar:/usr/local/hadoop/share/hadoop/yarn/lib/commons-codec-1.4.jar:/usr/local/hadoop/share/hadoop/yarn/lib/objenesis-2.1.jar:/usr/local/hadoop/share/hadoop/yarn/lib/jersey-server-1.9.jar:/usr/local/hadoop/share/hadoop/yarn/lib/netty-3.6.2.Final.jar:/usr/local/hadoop/share/hadoop/yarn/lib/zookeeper-3.4.6.jar:/usr/local/hadoop/share/hadoop/yarn/hadoop-yarn-api-2.8.1.jar:/usr/local/hadoop/share/hadoop/yarn/hadoop-yarn-server-tests-2.8.1.jar:/usr/local/hadoop/share/hadoop/yarn/hadoop-yarn-common-2.8.1.jar:/usr/local/hadoop/share/hadoop/yarn/hadoop-yarn-registry-2.8.1.jar:/usr/local/hadoop/share/hadoop/yarn/hadoop-yarn-server-sharedcachemanager-2.8.1.jar:/usr/local/hadoop/share/hadoop/yarn/hadoop-yarn-server-web-proxy-2.8.1.jar:/usr/local/hadoop/share/hadoop/yarn/hadoop-yarn-client-2.8.1.jar:/usr/local/hadoop/share/hadoop/yarn/hadoop-yarn-applications-unmanaged-am-launcher-2.8.1.jar:/usr/local/hadoop/share/hadoop/yarn/hadoop-yarn-server-common-2.8.1.jar:/usr/local/hadoop/share/hadoop/yarn/hadoop-yarn-server-nodemanager-2.8.1.jar:/usr/local/hadoop/share/hadoop/yarn/hadoop-yarn-applications-distributedshell-2.8.1.jar:/usr/local/hadoop/share/hadoop/yarn/hadoop-yarn-server-timeline-pluginstorage-2.8.1.jar:/usr/local/hadoop/share/hadoop/yarn/hadoop-yarn-server-resourcemanager-2.8.1.jar:/usr/local/hadoop/share/hadoop/yarn/hadoop-yarn-server-applicationhistoryservice-2.8.1.jar:/usr/local/hadoop/share/hadoop/mapreduce/lib/hadoop-annotations-2.8.1.jar:/usr/local/hadoop/share/hadoop/mapreduce/lib/aopalliance-1.0.jar:/usr/local/hadoop/share/hadoop/mapreduce/lib/jackson-mapper-asl-1.9.13.jar:/usr/local/hadoop/share/hadoop/mapreduce/lib/avro-1.7.4.jar:/usr/local/hadoop/share/hadoop/mapreduce/lib/commons-io-2.4.jar:/usr/local/hadoop/share/hadoop/mapreduce/lib/xz-1.0.jar:/usr/local/hadoop/share/hadoop/mapreduce/lib/asm-3.2.jar:/usr/local/hadoop/share/hadoop/mapreduce/lib/paranamer-2.3.jar:/usr/local/hadoop/share/hadoop/mapreduce/lib/guice-3.0.jar:/usr/local/hadoop/share/hadoop/mapreduce/lib/snappy-java-1.0.4.1.jar:/usr/local/hadoop/share/hadoop/mapreduce/lib/guice-servlet-3.0.jar:/usr/local/hadoop/share/hadoop/mapreduce/lib/log4j-1.2.17.jar:/usr/local/hadoop/share/hadoop/mapreduce/lib/leveldbjni-all-1.8.jar:/usr/local/hadoop/share/hadoop/mapreduce/lib/jackson-core-asl-1.9.13.jar:/usr/local/hadoop/share/hadoop/mapreduce/lib/commons-compress-1.4.1.jar:/usr/local/hadoop/share/hadoop/mapreduce/lib/protobuf-java-2.5.0.jar:/usr/local/hadoop/share/hadoop/mapreduce/lib/javax.inject-1.jar:/usr/local/hadoop/share/hadoop/mapreduce/lib/jersey-core-1.9.jar:/usr/local/hadoop/share/hadoop/mapreduce/lib/jersey-guice-1.9.jar:/usr/local/hadoop/share/hadoop/mapreduce/lib/jersey-server-1.9.jar:/usr/local/hadoop/share/hadoop/mapreduce/lib/netty-3.6.2.Final.jar:/usr/local/hadoop/share/hadoop/mapreduce/lib/junit-4.11.jar:/usr/local/hadoop/share/hadoop/mapreduce/lib/hamcrest-core-1.3.jar:/usr/local/hadoop/share/hadoop/mapreduce/hadoop-mapreduce-client-app-2.8.1.jar:/usr/local/hadoop/share/hadoop/mapreduce/hadoop-mapreduce-client-common-2.8.1.jar:/usr/local/hadoop/share/hadoop/mapreduce/hadoop-mapreduce-client-jobclient-2.8.1-tests.jar:/usr/local/hadoop/share/hadoop/mapreduce/hadoop-mapreduce-client-hs-plugins-2.8.1.jar:/usr/local/hadoop/share/hadoop/mapreduce/hadoop-mapreduce-client-core-2.8.1.jar:/usr/local/hadoop/share/hadoop/mapreduce/hadoop-mapreduce-client-shuffle-2.8.1.jar:/usr/local/hadoop/share/hadoop/mapreduce/hadoop-mapreduce-examples-2.8.1.jar:/usr/local/hadoop/share/hadoop/mapreduce/hadoop-mapreduce-client-hs-2.8.1.jar:/usr/local/hadoop/share/hadoop/mapreduce/hadoop-mapreduce-client-jobclient-2.8.1.jar STARTUP_MSG: build = git://hw11077/Users/pxiong/Projects/backport/10/hive -r 6f4c35c9e904d226451c465effdc5bfd31d395a0; compiled by 'pxiong' on Thu Jul 13 22:32:59 PDT 2017 ************************************************************/ 2017-10-13T15:41:51,943 INFO [main] org.apache.hadoop.hive.metastore.HiveMetaStore - Starting hive metastore on port 9083 2017-10-13T15:41:52,091 INFO [main] org.apache.hadoop.hive.metastore.HiveMetaStore - 0: Opening raw store with implementation class:org.apache.hadoop.hive.metastore.ObjectStore 2017-10-13T15:41:54,907 INFO [main] org.apache.hadoop.hive.metastore.HiveMetaStore - Added admin role in metastore 2017-10-13T15:41:54,911 INFO [main] org.apache.hadoop.hive.metastore.HiveMetaStore - Added public role in metastore 2017-10-13T15:41:54,930 INFO [main] org.apache.hadoop.hive.metastore.HiveMetaStore - No user is added in admin role, since config is empty 2017-10-13T15:41:55,042 INFO [main] org.apache.hadoop.hive.metastore.HiveMetaStore - Starting DB backed MetaStore Server with SetUGI enabled 2017-10-13T15:41:55,050 INFO [main] org.apache.hadoop.hive.metastore.HiveMetaStore - Started the new metaserver on port [9083]... 2017-10-13T15:41:55,050 INFO [main] org.apache.hadoop.hive.metastore.HiveMetaStore - Options.minWorkerThreads = 200 2017-10-13T15:41:55,050 INFO [main] org.apache.hadoop.hive.metastore.HiveMetaStore - Options.maxWorkerThreads = 1000 2017-10-13T15:41:55,050 INFO [main] org.apache.hadoop.hive.metastore.HiveMetaStore - TCP keepalive = true | cs |
23. hive 에 접속합니다.
1 2 3 4 5 6 7 8 9 10 | $ $HIVE_HOME/bin/hive SLF4J: Class path contains multiple SLF4J bindings. SLF4J: Found binding in [jar:file:/usr/local/apache-hive-2.3.0-bin/lib/log4j-slf4j-impl-2.6.2.jar!/org/slf4j/impl/StaticLoggerBinder.class] SLF4J: Found binding in [jar:file:/usr/local/hadoop-2.8.1/share/hadoop/common/lib/slf4j-log4j12-1.7.10.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.apache.logging.slf4j.Log4jLoggerFactory] Logging initialized using configuration in jar:file:/usr/local/apache-hive-2.3.0-bin/lib/hive-common-2.3.0.jar!/hive-log4j2.properties Async: true Hive-on-MR is deprecated in Hive 2 and may not be available in the future versions. Consider using a different execution engine (i.e. spark, tez) or using Hive 1.X releases. hive> | cs |
* "HIVE_HOME = /usr/local/apache-hive-2.3.0-bin" 와 같습니다.
* hadoop 관련 서비스가 먼저 실행되어 있어야 합니다.
24. hive 정상 동작 여부 확인
24-1. databases
1 2 3 4 5 | hive> show databases; OK default Time taken: 3.065 seconds | cs |
'Big Data Platform > Hive' 카테고리의 다른 글
OPTION SQL_SELECT_LIMIT=DEFAULT (0) | 2017.10.16 |
---|---|
에러 The server time zone value 'KST' is unrecognized or represents more than one time zone (0) | 2017.10.16 |
에러 Unable to instantiate org.apache.hadoop.hive.ql.metadata.SessionHiveMetaStoreClient (0) | 2017.10.16 |
Hive & MySQL 환경 구축 (hadoop 완전 분산형) (0) | 2017.10.13 |
hive-site.xml 중요 환경 설정 속성 (0) | 2017.10.11 |