hive에서 web ui 를 지원해주는 hwi 서비스를 실행하려 할 때

apache-hive-* 등의 디렉터리에 war 파일이 없는 경우가 있음


이하 링크를 참조

hwi war 파일 생성






아래와 같은 에러 발생 시

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
Starting Hive Metastore Server
org.apache.thrift.transport.TTransportException: Could not create ServerSocket on address 0.0.0.0/0.0.0.0:9083.
        at org.apache.thrift.transport.TServerSocket.<init>(TServerSocket.java:109)
        at org.apache.thrift.transport.TServerSocket.<init>(TServerSocket.java:91)
        at org.apache.thrift.transport.TServerSocket.<init>(TServerSocket.java:83)
        at org.apache.hadoop.hive.metastore.TServerSocketKeepAlive.<init>(TServerSocketKeepAlive.java:34)
        at org.apache.hadoop.hive.metastore.HiveMetaStore.startMetaStore(HiveMetaStore.java:5974)
        at org.apache.hadoop.hive.metastore.HiveMetaStore.main(HiveMetaStore.java:5915)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:498)
        at org.apache.hadoop.util.RunJar.run(RunJar.java:221)
        at org.apache.hadoop.util.RunJar.main(RunJar.java:136)
Exception in thread "main" org.apache.thrift.transport.TTransportException: Could not create ServerSocket on address 0.0.0.0/0.0.0.0:9083.
        at org.apache.thrift.transport.TServerSocket.<init>(TServerSocket.java:109)
        at org.apache.thrift.transport.TServerSocket.<init>(TServerSocket.java:91)
        at org.apache.thrift.transport.TServerSocket.<init>(TServerSocket.java:83)
        at org.apache.hadoop.hive.metastore.TServerSocketKeepAlive.<init>(TServerSocketKeepAlive.java:34)
        at org.apache.hadoop.hive.metastore.HiveMetaStore.startMetaStore(HiveMetaStore.java:5974)
        at org.apache.hadoop.hive.metastore.HiveMetaStore.main(HiveMetaStore.java:5915)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:498)
        at org.apache.hadoop.util.RunJar.run(RunJar.java:221)
        at org.apache.hadoop.util.RunJar.main(RunJar.java:136)
 
cs


jps -m 명령어를 통해서 hive 서비스가 중복 실행되고 있지 않은지 확인이 필요합니다.

1
2
3
4
5
6
7
8
9
$ jps -m
9905 JobHistoryServer
9698 NodeManager
11557 Jps -m
11468 RunJar /usr/local/hive/lib/hive-service-1.2.2.jar org.apache.hadoop.hive.metastore.HiveMetaStore
10589 RunJar /usr/local/hive/lib/hive-service-1.2.2.jar org.apache.hadoop.hive.metastore.HiveMetaStore
9374 ResourceManager
9055 NameNode
 
cs


kill -9 [프로세스 ID] 명령어를 통해 hive 서비스를 내리고 재실행합니다.




아래와 같은 에러 발생 시

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
$ /usr/local/hive/bin/hive --service metastore
ls: cannot access '/usr/local/spark/lib/spark-assembly-*.jar': No such file or directory
Starting Hive Metastore Server
org.apache.thrift.transport.TTransportException: Could not create ServerSocket on address 0.0.0.0/0.0.0.0:9083.
        at org.apache.thrift.transport.TServerSocket.<init>(TServerSocket.java:109)
        at org.apache.thrift.transport.TServerSocket.<init>(TServerSocket.java:91)
        at org.apache.thrift.transport.TServerSocket.<init>(TServerSocket.java:83)
        at org.apache.hadoop.hive.metastore.TServerSocketKeepAlive.<init>(TServerSocketKeepAlive.java:34)
        at org.apache.hadoop.hive.metastore.HiveMetaStore.startMetaStore(HiveMetaStore.java:5974)
        at org.apache.hadoop.hive.metastore.HiveMetaStore.main(HiveMetaStore.java:5915)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:498)
        at org.apache.hadoop.util.RunJar.run(RunJar.java:221)
        at org.apache.hadoop.util.RunJar.main(RunJar.java:136)
Exception in thread "main" org.apache.thrift.transport.TTransportException: Could not create ServerSocket on address 0.0.0.0/0.0.0.0:9083.
        at org.apache.thrift.transport.TServerSocket.<init>(TServerSocket.java:109)
        at org.apache.thrift.transport.TServerSocket.<init>(TServerSocket.java:91)
        at org.apache.thrift.transport.TServerSocket.<init>(TServerSocket.java:83)
        at org.apache.hadoop.hive.metastore.TServerSocketKeepAlive.<init>(TServerSocketKeepAlive.java:34)
        at org.apache.hadoop.hive.metastore.HiveMetaStore.startMetaStore(HiveMetaStore.java:5974)
        at org.apache.hadoop.hive.metastore.HiveMetaStore.main(HiveMetaStore.java:5915)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:498)
        at org.apache.hadoop.util.RunJar.run(RunJar.java:221)
        at org.apache.hadoop.util.RunJar.main(RunJar.java:136)
 
cs


hive/bin 디렉터리 이하의  hive 파일에서 아래와 같은 부분을 주석 처리합니다.

* 설정 전

1
2
3
4
5
6
7
# add Spark assembly jar to the classpath
if [[ -n "$SPARK_HOME" ]]
then
  sparkAssemblyPath=`ls ${SPARK_HOME}/lib/spark-assembly-*.jar`
  CLASSPATH="${CLASSPATH}:${sparkAssemblyPath}"
fi
 
cs


* 설정 후

1
2
3
4
5
6
7
# add Spark assembly jar to the classpath
#if [[ -n "$SPARK_HOME" ]]
#then
#  sparkAssemblyPath=`ls ${SPARK_HOME}/lib/spark-assembly-*.jar`
#  CLASSPATH="${CLASSPATH}:${sparkAssemblyPath}"
#fi
 
cs




* 하이브의 내장 함수

함수 

내용

concat(string a, string b, ...)

문자열 a 뒤에 문자열 b를 붙여서 반환합니다.

예를 들어 concat('facebook', 'hive')를 수행하면 'facebookhive'를 반환합니다.

substr(string str, int start)

문자열 str의 start 인덱스에서 문자열의 마지막 인덱스까지를 잘라낸 문자열을 반환합니다. 예를 들어 substr('hadoop', 4)는 'oop'를 반환합니다.

substr(string str, int start, int length)

문자열 str의 start 인덱스에서 설정한 length 만큼을 잘라낸 문자열을 반환합니다. 예를 들어 substr('hadoop', 4, 2)라고 하면 'oo'를 반환합니다.

upper(string str)

문자열 str를 대문자로 변환해서 반환합니다. 예를 들어 -upper('hive')는 'HIVE'를 반환합니다.

ucase(string str)

upper 함수와 동일합니다.

lower(string str)

 문자열 str을 소문자로 변환해서 반환합니다. 예를 들어 lower('HIVE')는 'hive'를 반환합니다.

lcase(string str)

Lower 함수와 동일합니다.

trim(string str)

문자열 str의 양쪽에 있는 공백을 제거합니다. 예를 들어 trim(' hive ')는 'hive'를 반환합니다.

ltrim(string str)

문자열 str의 왼쪽에 있는 공백을 제거합니다. 예를 들어 ltrim(' hive ')는 'hive '를 반환합니다.

rtrim(string str)

문자열 str의 오른쪽에 있는 공백을 제거합니다. 예를 들어 rtrim(' hive ')는 ' hive'를 반환합니다.

regexp_replace(string str, string regex, string replacement)

문자열 str에서 정규 표현식 regex와 일치하는 모든 문자열을 replacement로 변경해서 반환합니다. 예를 들어 regexp_replace('hive', 'iv', '')는 'he'를 반환합니다.

from_unixtime(int unixtime)

유닉스 시간 문자열(1970-01-01 00:00:00 UTC)을 현재 시스템의 시간대로 변경해서 반환합니다.

to_date(string timestamp)

타임스탬프 문자열에서 날짜값만 반환합니다. 예를 들어 to_date("2012-09-01 00:00:00")는 "2012-09-01"을 반환합니다.

round(double a)

double 값 a에 대한 반올림 정수값(BIGINT)을 반환합니다.

floor(double a)

double 값 a보다 작거나 같은 최대 정수값(BIGINT)을 반환합니다.

ceil(double a)

double 값 a보다 크거나 같은 최소한의 정수값(BIGINT)을 반환합니다.

rand(), rand(int seed)

랜덤값을 반환합니다. seed 파라미터로 랜덤값의 범위를 설정할 수 있습니다.

year(string date)

날짜 혹은 타임스탬프 문자열에서 년도만 반환합니다. 예를 들어 year("2012-09-01 00:00:00")은 "2012"를 반환합니다.

month(string date)

날짜 혹은 타임스탬프 문자열에서 월만 반환합니다. 예를 들어 month("2012-09-01 00:00:00")은 "09"를 반환합니다.

day(string date)

날짜 혹은 타임스탬프 문자열에서 일만 반환합니다. 예를 들어 day("2012-09-01 00:00:00")은 "01"를 반환합니다.

get_json_object(string json_string, string path)

 디렉터리 path에서 문자열 json_string으로부터 json 객체를 추출하고 json 문자열로 반환합니다. 만약 json이 유효하지 않으면 null 값을 반환합니다.

size(Map<K.V>)

맵 타입의 엘리먼트의 개수를 반환합니다.

size(Array<T>)

배열 타입의 엘리먼트의 개수를 반환합니다.

cast(<expr> as <type>)

정규 표현식 expr을 type으로 타입을 변환합니다. 예를 들어 cast('100' as BIGINT)는 '100'을 BIGINT로 변환해서 반환합니다. 변환에 실패할 경우 null 값을 반환합니다.



* 참고: 시작하세요! 하둡 프로그래밍



함수 

내용

COUNT(1), COUNT(*)

전체 데이터 건수를 반환합니다.

COUNT(DISTINCT 칼럼명)

유일한 칼럼값의 건수를 반환합니다.

SUM(칼럼명)

칼럼값의 합계를 반환합니다.

SUM(DISTINCT 칼럼명)

유일한 칼럼값의 합계를 반환합니다.

AVG(칼럼명)

칼럼값의 평균을 반환합니다.

AVG(DISTINCT 칼럼명)

유일한 칼럼값의 평균을 반환합니다.

MAX(칼럼명)

칼럼의 최댓값을 반환합니다.

MIN(칼럼명)

칼럼의 최솟값을 반환합니다.


* 참고: 시작하세요! 하둡 프로그래밍



1. hive 서비스 기동 시 다음과 같은 경고 문구가 뜰 경우

Establishing SSL connection without server's identity verification is not recommended.

1
2
3
4
5
6
7
8
9
Mon Oct 16 09:55:44 KST 2017 WARN: Establishing SSL connection without server's identity verification is not recommended. According to MySQL 5.5.45+, 5.6.26+ and 5.7.6+ requirements SSL connection must be established by default if explicit option isn't set. For compliance with existing applications not using SSL the verifyServerCertificate property is set to 'false'. You need either to explicitly disable SSL by setting useSSL=false, or set useSSL=true and provide truststore for server certificate verification.
Mon Oct 16 09:55:44 KST 2017 WARN: Establishing SSL connection without server's identity verification is not recommended. According to MySQL 5.5.45+, 5.6.26+ and 5.7.6+ requirements SSL connection must be established by default if explicit option isn't set. For compliance with existing applications not using SSL the verifyServerCertificate property is set to 'false'. You need either to explicitly disable SSL by setting useSSL=false, or set useSSL=true and provide truststore for server certificate verification.
Mon Oct 16 09:55:44 KST 2017 WARN: Establishing SSL connection without server's identity verification is not recommended. According to MySQL 5.5.45+, 5.6.26+ and 5.7.6+ requirements SSL connection must be established by default if explicit option isn't set. For compliance with existing applications not using SSL the verifyServerCertificate property is set to 'false'. You need either to explicitly disable SSL by setting useSSL=false, or set useSSL=true and provide truststore for server certificate verification.
Mon Oct 16 09:55:44 KST 2017 WARN: Establishing SSL connection without server's identity verification is not recommended. According to MySQL 5.5.45+, 5.6.26+ and 5.7.6+ requirements SSL connection must be established by default if explicit option isn't set. For compliance with existing applications not using SSL the verifyServerCertificate property is set to 'false'. You need either to explicitly disable SSL by setting useSSL=false, or set useSSL=true and provide truststore for server certificate verification.
Mon Oct 16 09:55:45 KST 2017 WARN: Establishing SSL connection without server's identity verification is not recommended. According to MySQL 5.5.45+, 5.6.26+ and 5.7.6+ requirements SSL connection must be established by default if explicit option isn't set. For compliance with existing applications not using SSL the verifyServerCertificate property is set to 'false'. You need either to explicitly disable SSL by setting useSSL=false, or set useSSL=true and provide truststore for server certificate verification.
Mon Oct 16 09:55:45 KST 2017 WARN: Establishing SSL connection without server's identity verification is not recommended. According to MySQL 5.5.45+, 5.6.26+ and 5.7.6+ requirements SSL connection must be established by default if explicit option isn't set. For compliance with existing applications not using SSL the verifyServerCertificate property is set to 'false'. You need either to explicitly disable SSL by setting useSSL=false, or set useSSL=true and provide truststore for server certificate verification.
Mon Oct 16 09:55:45 KST 2017 WARN: Establishing SSL connection without server's identity verification is not recommended. According to MySQL 5.5.45+, 5.6.26+ and 5.7.6+ requirements SSL connection must be established by default if explicit option isn't set. For compliance with existing applications not using SSL the verifyServerCertificate property is set to 'false'. You need either to explicitly disable SSL by setting useSSL=false, or set useSSL=true and provide truststore for server certificate verification.
Mon Oct 16 09:55:45 KST 2017 WARN: Establishing SSL connection without server's identity verification is not recommended. According to MySQL 5.5.45+, 5.6.26+ and 5.7.6+ requirements SSL connection must be established by default if explicit option isn't set. For compliance with existing applications not using SSL the verifyServerCertificate property is set to 'false'. You need either to explicitly disable SSL by setting useSSL=false, or set useSSL=true and provide truststore for server certificate verification.
 
cs

* 위 경고는 SSL 보안 인증서 관련 문제로 실습을 위한 용도라면 설정을 추가하여 경고 문구가 출력되지 않도록 할 수 있습니다.



2. hive-site.xml 파일에 설정 추가

2-1. 변경 전의 설정 부분

1
2
3
4
5
<property>
        <name>javax.jdo.option.ConnectionURL</name>
        <value>jdbc:mysql://localhost:3306/hive?useUnicode=true&amp;useJDBCCompliantTimezoneShift=true&amp;useLegacyDatetimeCode=false&amp;serverTimezone=UTC</value>
</property>
 
cs


2-2. 변경 후의 설정 부분

1
2
3
4
5
<property>
        <name>javax.jdo.option.ConnectionURL</name>
        <value>jdbc:mysql://localhost:3306/hive?useUnicode=true&amp;useJDBCCompliantTimezoneShift=true&amp;useLegacyDatetimeCode=false&amp;serverTimezone=UTC&amp;useSSL=false</value>
</property>
 
cs

* useSSL=false 의 부분을 추가합니다.






1. 아래와 같은 에러 발생 시

1
2
FAILED: Execution Error, return code 1 from org.apache.hadoop.hive.ql.exec.DDLTask. Unable to alter table. You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'OPTION SQL_SELECT_LIMIT=DEFAULT' at line 1
 
cs



2. 최신 버전의 드라이버로 갱신

1
2
3
4
5
6
7
8
9
10
11
12
$ wget http://repo.maven.apache.org/maven2/mysql/mysql-connector-java/6.0.6/mysql-connector-java-6.0.6.jar
--2017-10-16 09:30:49--  http://repo.maven.apache.org/maven2/mysql/mysql-connector-java/6.0.6/mysql-connector-java-6.0.6.jar
Resolving repo.maven.apache.org (repo.maven.apache.org)... 151.101.24.215
Connecting to repo.maven.apache.org (repo.maven.apache.org)|151.101.24.215|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 2001778 (1.9M) [application/java-archive]
Saving to: ‘mysql-connector-java-6.0.6.jar’
 
mysql-connector-java-6. 100%[============================>]   1.91M   414KB/s    in 8.6s
 
2017-10-16 09:30:58 (227 KB/s) - ‘mysql-connector-java-6.0.6.jar’ saved [2001778/2001778]
 
cs

* 기존의 connector.jar 파일을 대체하고 서비스 재기동을 합니다.



1. The server time zone value 'KST' is unrecognized or represents more than one time zone 와 같은 에러 발생 시

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
javax.jdo.JDOFatalDataStoreException: Unable to open a test connection to the given database. JDBC url = jdbc:mysql://localhost:3306/hive?createDatabaseIfNotExist=true, username = hive. Terminating connection pool (set lazyInit to true if you expect to start your database after your app). Original Exception: ------
java.sql.SQLException: The server time zone value 'KST' is unrecognized or represents more than one time zone. You must configure either the server or JDBC driver (via the serverTimezone configuration property) to use a more specifc time zone value if you want to utilize time zone support.
        at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:545)
        at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:513)
        at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:505)
        at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:479)
        at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:489)
        at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:69)
        at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:1606)
        at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:633)
        at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:347)
        at com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:219)
        at java.sql.DriverManager.getConnection(DriverManager.java:664)
        at java.sql.DriverManager.getConnection(DriverManager.java:208)
        at com.jolbox.bonecp.BoneCP.obtainRawInternalConnection(BoneCP.java:361)
        at com.jolbox.bonecp.BoneCP.<init>(BoneCP.java:416)
        at com.jolbox.bonecp.BoneCPDataSource.getConnection(BoneCPDataSource.java:120)
        at org.datanucleus.store.rdbms.ConnectionFactoryImpl$ManagedConnectionImpl.getConnection(ConnectionFactoryImpl.java:483)
        at org.datanucleus.store.rdbms.RDBMSStoreManager.<init>(RDBMSStoreManager.java:296)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
        at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
        at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
        at org.datanucleus.plugin.NonManagedPluginRegistry.createExecutableExtension(NonManagedPluginRegistry.java:606)
        at org.datanucleus.plugin.PluginManager.createExecutableExtension(PluginManager.java:301)
        at org.datanucleus.NucleusContextHelper.createStoreManagerForProperties(NucleusContextHelper.java:133)
        at org.datanucleus.PersistenceNucleusContextImpl.initialise(PersistenceNucleusContextImpl.java:420)
        at org.datanucleus.api.jdo.JDOPersistenceManagerFactory.freezeConfiguration(JDOPersistenceManagerFactory.java:821)
        at org.datanucleus.api.jdo.JDOPersistenceManagerFactory.createPersistenceManagerFactory(JDOPersistenceManagerFactory.java:338)
        at org.datanucleus.api.jdo.JDOPersistenceManagerFactory.getPersistenceManagerFactory(JDOPersistenceManagerFactory.java:217)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:498)
        at javax.jdo.JDOHelper$16.run(JDOHelper.java:1965)
        at java.security.AccessController.doPrivileged(Native Method)
        at javax.jdo.JDOHelper.invoke(JDOHelper.java:1960)
        at javax.jdo.JDOHelper.invokeGetPersistenceManagerFactoryOnImplementation(JDOHelper.java:1166)
        at javax.jdo.JDOHelper.getPersistenceManagerFactory(JDOHelper.java:808)
        at javax.jdo.JDOHelper.getPersistenceManagerFactory(JDOHelper.java:701)
        at org.apache.hadoop.hive.metastore.ObjectStore.getPMF(ObjectStore.java:515)
        at org.apache.hadoop.hive.metastore.ObjectStore.getPersistenceManager(ObjectStore.java:544)
        at org.apache.hadoop.hive.metastore.ObjectStore.initializeHelper(ObjectStore.java:399)
        at org.apache.hadoop.hive.metastore.ObjectStore.initialize(ObjectStore.java:336)
        at org.apache.hadoop.hive.metastore.ObjectStore.setConf(ObjectStore.java:297)
        at org.apache.hadoop.util.ReflectionUtils.setConf(ReflectionUtils.java:76)
        at org.apache.hadoop.util.ReflectionUtils.newInstance(ReflectionUtils.java:136)
        at org.apache.hadoop.hive.metastore.RawStoreProxy.<init>(RawStoreProxy.java:58)
        at org.apache.hadoop.hive.metastore.RawStoreProxy.getProxy(RawStoreProxy.java:67)
        at org.apache.hadoop.hive.metastore.HiveMetaStore$HMSHandler.newRawStore(HiveMetaStore.java:599)
        at org.apache.hadoop.hive.metastore.HiveMetaStore$HMSHandler.getMS(HiveMetaStore.java:564)
        at org.apache.hadoop.hive.metastore.HiveMetaStore$HMSHandler.createDefaultDB(HiveMetaStore.java:630)
        at org.apache.hadoop.hive.metastore.HiveMetaStore$HMSHandler.init(HiveMetaStore.java:416)
        at org.apache.hadoop.hive.metastore.RetryingHMSHandler.<init>(RetryingHMSHandler.java:78)
        at org.apache.hadoop.hive.metastore.RetryingHMSHandler.getProxy(RetryingHMSHandler.java:84)
        at org.apache.hadoop.hive.metastore.HiveMetaStore.newRetryingHMSHandler(HiveMetaStore.java:6484)
        at org.apache.hadoop.hive.metastore.HiveMetaStore.newRetryingHMSHandler(HiveMetaStore.java:6479)
        at org.apache.hadoop.hive.metastore.HiveMetaStore.startMetaStore(HiveMetaStore.java:6737)
        at org.apache.hadoop.hive.metastore.HiveMetaStore.main(HiveMetaStore.java:6664)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:498)
        at org.apache.hadoop.util.RunJar.run(RunJar.java:234)
        at org.apache.hadoop.util.RunJar.main(RunJar.java:148)
Caused by: com.mysql.cj.core.exceptions.InvalidConnectionAttributeException: The server time zone value 'KST' is unrecognized or represents more than one time zone. You must configure either the server or JDBC driver (via the serverTimezone configuration property) to use a more specifc time zone value if you want to utilize time zone support.
        at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
        at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
        at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
        at com.mysql.cj.core.exceptions.ExceptionFactory.createException(ExceptionFactory.java:54)
        at com.mysql.cj.core.exceptions.ExceptionFactory.createException(ExceptionFactory.java:73)
        at com.mysql.cj.jdbc.util.TimeUtil.getCanonicalTimezone(TimeUtil.java:118)
        at com.mysql.cj.mysqla.MysqlaSession.configureTimezone(MysqlaSession.java:293)
        at com.mysql.cj.jdbc.ConnectionImpl.initializePropsFromServer(ConnectionImpl.java:2399)
        at com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:1739)
        at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:1596)
        ... 56 more
------
 
        at org.datanucleus.api.jdo.NucleusJDOHelper.getJDOExceptionForNucleusException(NucleusJDOHelper.java:529)
        at org.datanucleus.api.jdo.JDOPersistenceManagerFactory.freezeConfiguration(JDOPersistenceManagerFactory.java:834)
        at org.datanucleus.api.jdo.JDOPersistenceManagerFactory.createPersistenceManagerFactory(JDOPersistenceManagerFactory.java:338)
        at org.datanucleus.api.jdo.JDOPersistenceManagerFactory.getPersistenceManagerFactory(JDOPersistenceManagerFactory.java:217)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:498)
        at javax.jdo.JDOHelper$16.run(JDOHelper.java:1965)
        at java.security.AccessController.doPrivileged(Native Method)
        at javax.jdo.JDOHelper.invoke(JDOHelper.java:1960)
        at javax.jdo.JDOHelper.invokeGetPersistenceManagerFactoryOnImplementation(JDOHelper.java:1166)
        at javax.jdo.JDOHelper.getPersistenceManagerFactory(JDOHelper.java:808)
        at javax.jdo.JDOHelper.getPersistenceManagerFactory(JDOHelper.java:701)
        at org.apache.hadoop.hive.metastore.ObjectStore.getPMF(ObjectStore.java:515)
        at org.apache.hadoop.hive.metastore.ObjectStore.getPersistenceManager(ObjectStore.java:544)
        at org.apache.hadoop.hive.metastore.ObjectStore.initializeHelper(ObjectStore.java:399)
        at org.apache.hadoop.hive.metastore.ObjectStore.initialize(ObjectStore.java:336)
        at org.apache.hadoop.hive.metastore.ObjectStore.setConf(ObjectStore.java:297)
        at org.apache.hadoop.util.ReflectionUtils.setConf(ReflectionUtils.java:76)
        at org.apache.hadoop.util.ReflectionUtils.newInstance(ReflectionUtils.java:136)
        at org.apache.hadoop.hive.metastore.RawStoreProxy.<init>(RawStoreProxy.java:58)
        at org.apache.hadoop.hive.metastore.RawStoreProxy.getProxy(RawStoreProxy.java:67)
        at org.apache.hadoop.hive.metastore.HiveMetaStore$HMSHandler.newRawStore(HiveMetaStore.java:599)
        at org.apache.hadoop.hive.metastore.HiveMetaStore$HMSHandler.getMS(HiveMetaStore.java:564)
        at org.apache.hadoop.hive.metastore.HiveMetaStore$HMSHandler.createDefaultDB(HiveMetaStore.java:630)
        at org.apache.hadoop.hive.metastore.HiveMetaStore$HMSHandler.init(HiveMetaStore.java:416)
        at org.apache.hadoop.hive.metastore.RetryingHMSHandler.<init>(RetryingHMSHandler.java:78)
        at org.apache.hadoop.hive.metastore.RetryingHMSHandler.getProxy(RetryingHMSHandler.java:84)
        at org.apache.hadoop.hive.metastore.HiveMetaStore.newRetryingHMSHandler(HiveMetaStore.java:6484)
        at org.apache.hadoop.hive.metastore.HiveMetaStore.newRetryingHMSHandler(HiveMetaStore.java:6479)
        at org.apache.hadoop.hive.metastore.HiveMetaStore.startMetaStore(HiveMetaStore.java:6737)
        at org.apache.hadoop.hive.metastore.HiveMetaStore.main(HiveMetaStore.java:6664)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:498)
        at org.apache.hadoop.util.RunJar.run(RunJar.java:234)
        at org.apache.hadoop.util.RunJar.main(RunJar.java:148)
NestedThrowablesStackTrace:
java.sql.SQLException: Unable to open a test connection to the given database. JDBC url = jdbc:mysql://localhost:3306/hive?createDatabaseIfNotExist=true, username = hive. Terminating connection pool (set lazyInit to true if you expect to start your database after your app). Original Exception: ------
java.sql.SQLException: The server time zone value 'KST' is unrecognized or represents more than one time zone. You must configure either the server or JDBC driver (via the serverTimezone configuration property) to use a more specifc time zone value if you want to utilize time zone support.
        at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:545)
        at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:513)
        at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:505)
        at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:479)
        at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:489)
        at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:69)
        at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:1606)
        at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:633)
        at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:347)
        at com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:219)
        at java.sql.DriverManager.getConnection(DriverManager.java:664)
        at java.sql.DriverManager.getConnection(DriverManager.java:208)
        at com.jolbox.bonecp.BoneCP.obtainRawInternalConnection(BoneCP.java:361)
        at com.jolbox.bonecp.BoneCP.<init>(BoneCP.java:416)
        at com.jolbox.bonecp.BoneCPDataSource.getConnection(BoneCPDataSource.java:120)
        at org.datanucleus.store.rdbms.ConnectionFactoryImpl$ManagedConnectionImpl.getConnection(ConnectionFactoryImpl.java:483)
        at org.datanucleus.store.rdbms.RDBMSStoreManager.<init>(RDBMSStoreManager.java:296)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
        at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
        at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
        at org.datanucleus.plugin.NonManagedPluginRegistry.createExecutableExtension(NonManagedPluginRegistry.java:606)
        at org.datanucleus.plugin.PluginManager.createExecutableExtension(PluginManager.java:301)
        at org.datanucleus.NucleusContextHelper.createStoreManagerForProperties(NucleusContextHelper.java:133)
        at org.datanucleus.PersistenceNucleusContextImpl.initialise(PersistenceNucleusContextImpl.java:420)
        at org.datanucleus.api.jdo.JDOPersistenceManagerFactory.freezeConfiguration(JDOPersistenceManagerFactory.java:821)
        at org.datanucleus.api.jdo.JDOPersistenceManagerFactory.createPersistenceManagerFactory(JDOPersistenceManagerFactory.java:338)
        at org.datanucleus.api.jdo.JDOPersistenceManagerFactory.getPersistenceManagerFactory(JDOPersistenceManagerFactory.java:217)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:498)
        at javax.jdo.JDOHelper$16.run(JDOHelper.java:1965)
        at java.security.AccessController.doPrivileged(Native Method)
        at javax.jdo.JDOHelper.invoke(JDOHelper.java:1960)
        at javax.jdo.JDOHelper.invokeGetPersistenceManagerFactoryOnImplementation(JDOHelper.java:1166)
        at javax.jdo.JDOHelper.getPersistenceManagerFactory(JDOHelper.java:808)
        at javax.jdo.JDOHelper.getPersistenceManagerFactory(JDOHelper.java:701)
        at org.apache.hadoop.hive.metastore.ObjectStore.getPMF(ObjectStore.java:515)
        at org.apache.hadoop.hive.metastore.ObjectStore.getPersistenceManager(ObjectStore.java:544)
        at org.apache.hadoop.hive.metastore.ObjectStore.initializeHelper(ObjectStore.java:399)
        at org.apache.hadoop.hive.metastore.ObjectStore.initialize(ObjectStore.java:336)
        at org.apache.hadoop.hive.metastore.ObjectStore.setConf(ObjectStore.java:297)
        at org.apache.hadoop.util.ReflectionUtils.setConf(ReflectionUtils.java:76)
        at org.apache.hadoop.util.ReflectionUtils.newInstance(ReflectionUtils.java:136)
        at org.apache.hadoop.hive.metastore.RawStoreProxy.<init>(RawStoreProxy.java:58)
        at org.apache.hadoop.hive.metastore.RawStoreProxy.getProxy(RawStoreProxy.java:67)
        at org.apache.hadoop.hive.metastore.HiveMetaStore$HMSHandler.newRawStore(HiveMetaStore.java:599)
        at org.apache.hadoop.hive.metastore.HiveMetaStore$HMSHandler.getMS(HiveMetaStore.java:564)
        at org.apache.hadoop.hive.metastore.HiveMetaStore$HMSHandler.createDefaultDB(HiveMetaStore.java:630)
        at org.apache.hadoop.hive.metastore.HiveMetaStore$HMSHandler.init(HiveMetaStore.java:416)
        at org.apache.hadoop.hive.metastore.RetryingHMSHandler.<init>(RetryingHMSHandler.java:78)
        at org.apache.hadoop.hive.metastore.RetryingHMSHandler.getProxy(RetryingHMSHandler.java:84)
        at org.apache.hadoop.hive.metastore.HiveMetaStore.newRetryingHMSHandler(HiveMetaStore.java:6484)
        at org.apache.hadoop.hive.metastore.HiveMetaStore.newRetryingHMSHandler(HiveMetaStore.java:6479)
        at org.apache.hadoop.hive.metastore.HiveMetaStore.startMetaStore(HiveMetaStore.java:6737)
        at org.apache.hadoop.hive.metastore.HiveMetaStore.main(HiveMetaStore.java:6664)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:498)
        at org.apache.hadoop.util.RunJar.run(RunJar.java:234)
        at org.apache.hadoop.util.RunJar.main(RunJar.java:148)
Caused by: com.mysql.cj.core.exceptions.InvalidConnectionAttributeException: The server time zone value 'KST' is unrecognized or represents more than one time zone. You must configure either the server or JDBC driver (via the serverTimezone configuration property) to use a more specifc time zone value if you want to utilize time zone support.
        at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
        at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
        at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
        at com.mysql.cj.core.exceptions.ExceptionFactory.createException(ExceptionFactory.java:54)
        at com.mysql.cj.core.exceptions.ExceptionFactory.createException(ExceptionFactory.java:73)
        at com.mysql.cj.jdbc.util.TimeUtil.getCanonicalTimezone(TimeUtil.java:118)
        at com.mysql.cj.mysqla.MysqlaSession.configureTimezone(MysqlaSession.java:293)
        at com.mysql.cj.jdbc.ConnectionImpl.initializePropsFromServer(ConnectionImpl.java:2399)
        at com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:1739)
        at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:1596)
        ... 56 more
------
 
        at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
        at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
        at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
        at com.jolbox.bonecp.PoolUtil.generateSQLException(PoolUtil.java:192)
        at com.jolbox.bonecp.BoneCP.<init>(BoneCP.java:422)
        at com.jolbox.bonecp.BoneCPDataSource.getConnection(BoneCPDataSource.java:120)
        at org.datanucleus.store.rdbms.ConnectionFactoryImpl$ManagedConnectionImpl.getConnection(ConnectionFactoryImpl.java:483)
        at org.datanucleus.store.rdbms.RDBMSStoreManager.<init>(RDBMSStoreManager.java:296)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
        at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
        at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
        at org.datanucleus.plugin.NonManagedPluginRegistry.createExecutableExtension(NonManagedPluginRegistry.java:606)
        at org.datanucleus.plugin.PluginManager.createExecutableExtension(PluginManager.java:301)
        at org.datanucleus.NucleusContextHelper.createStoreManagerForProperties(NucleusContextHelper.java:133)
        at org.datanucleus.PersistenceNucleusContextImpl.initialise(PersistenceNucleusContextImpl.java:420)
        at org.datanucleus.api.jdo.JDOPersistenceManagerFactory.freezeConfiguration(JDOPersistenceManagerFactory.java:821)
        at org.datanucleus.api.jdo.JDOPersistenceManagerFactory.createPersistenceManagerFactory(JDOPersistenceManagerFactory.java:338)
        at org.datanucleus.api.jdo.JDOPersistenceManagerFactory.getPersistenceManagerFactory(JDOPersistenceManagerFactory.java:217)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:498)
        at javax.jdo.JDOHelper$16.run(JDOHelper.java:1965)
        at java.security.AccessController.doPrivileged(Native Method)
        at javax.jdo.JDOHelper.invoke(JDOHelper.java:1960)
        at javax.jdo.JDOHelper.invokeGetPersistenceManagerFactoryOnImplementation(JDOHelper.java:1166)
        at javax.jdo.JDOHelper.getPersistenceManagerFactory(JDOHelper.java:808)
        at javax.jdo.JDOHelper.getPersistenceManagerFactory(JDOHelper.java:701)
        at org.apache.hadoop.hive.metastore.ObjectStore.getPMF(ObjectStore.java:515)
        at org.apache.hadoop.hive.metastore.ObjectStore.getPersistenceManager(ObjectStore.java:544)
        at org.apache.hadoop.hive.metastore.ObjectStore.initializeHelper(ObjectStore.java:399)
        at org.apache.hadoop.hive.metastore.ObjectStore.initialize(ObjectStore.java:336)
        at org.apache.hadoop.hive.metastore.ObjectStore.setConf(ObjectStore.java:297)
        at org.apache.hadoop.util.ReflectionUtils.setConf(ReflectionUtils.java:76)
        at org.apache.hadoop.util.ReflectionUtils.newInstance(ReflectionUtils.java:136)
        at org.apache.hadoop.hive.metastore.RawStoreProxy.<init>(RawStoreProxy.java:58)
        at org.apache.hadoop.hive.metastore.RawStoreProxy.getProxy(RawStoreProxy.java:67)
        at org.apache.hadoop.hive.metastore.HiveMetaStore$HMSHandler.newRawStore(HiveMetaStore.java:599)
        at org.apache.hadoop.hive.metastore.HiveMetaStore$HMSHandler.getMS(HiveMetaStore.java:564)
        at org.apache.hadoop.hive.metastore.HiveMetaStore$HMSHandler.createDefaultDB(HiveMetaStore.java:630)
        at org.apache.hadoop.hive.metastore.HiveMetaStore$HMSHandler.init(HiveMetaStore.java:416)
        at org.apache.hadoop.hive.metastore.RetryingHMSHandler.<init>(RetryingHMSHandler.java:78)
        at org.apache.hadoop.hive.metastore.RetryingHMSHandler.getProxy(RetryingHMSHandler.java:84)
        at org.apache.hadoop.hive.metastore.HiveMetaStore.newRetryingHMSHandler(HiveMetaStore.java:6484)
        at org.apache.hadoop.hive.metastore.HiveMetaStore.newRetryingHMSHandler(HiveMetaStore.java:6479)
        at org.apache.hadoop.hive.metastore.HiveMetaStore.startMetaStore(HiveMetaStore.java:6737)
        at org.apache.hadoop.hive.metastore.HiveMetaStore.main(HiveMetaStore.java:6664)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:498)
        at org.apache.hadoop.util.RunJar.run(RunJar.java:234)
        at org.apache.hadoop.util.RunJar.main(RunJar.java:148)
Caused by: java.sql.SQLException: The server time zone value 'KST' is unrecognized or represents more than one time zone. You must configure either the server or JDBC driver (via the serverTimezone configuration property) to use a more specifc time zone value if you want to utilize time zone support.
        at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:545)
        at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:513)
        at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:505)
        at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:479)
        at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:489)
        at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:69)
        at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:1606)
        at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:633)
        at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:347)
        at com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:219)
        at java.sql.DriverManager.getConnection(DriverManager.java:664)
        at java.sql.DriverManager.getConnection(DriverManager.java:208)
        at com.jolbox.bonecp.BoneCP.obtainRawInternalConnection(BoneCP.java:361)
        at com.jolbox.bonecp.BoneCP.<init>(BoneCP.java:416)
        ... 49 more
Caused by: com.mysql.cj.core.exceptions.InvalidConnectionAttributeException: The server time zone value 'KST' is unrecognized or represents more than one time zone. You must configure either the server or JDBC driver (via the serverTimezone configuration property) to use a more specifc time zone value if you want to utilize time zone support.
        at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
        at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
        at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
        at com.mysql.cj.core.exceptions.ExceptionFactory.createException(ExceptionFactory.java:54)
        at com.mysql.cj.core.exceptions.ExceptionFactory.createException(ExceptionFactory.java:73)
        at com.mysql.cj.jdbc.util.TimeUtil.getCanonicalTimezone(TimeUtil.java:118)
        at com.mysql.cj.mysqla.MysqlaSession.configureTimezone(MysqlaSession.java:293)
        at com.mysql.cj.jdbc.ConnectionImpl.initializePropsFromServer(ConnectionImpl.java:2399)
        at com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:1739)
        at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:1596)
        ... 56 more
Exception in thread "main" javax.jdo.JDOFatalDataStoreException: Unable to open a test connection to the given database. JDBC url = jdbc:mysql://localhost:3306/hive?createDatabaseIfNotExist=true, username = hive. Terminating connection pool (set lazyInit to true if you expect to start your database after your app). Original Exception: ------
java.sql.SQLException: The server time zone value 'KST' is unrecognized or represents more than one time zone. You must configure either the server or JDBC driver (via the serverTimezone configuration property) to use a more specifc time zone value if you want to utilize time zone support.
        at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:545)
        at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:513)
        at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:505)
        at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:479)
        at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:489)
        at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:69)
        at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:1606)
        at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:633)
        at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:347)
        at com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:219)
        at java.sql.DriverManager.getConnection(DriverManager.java:664)
        at java.sql.DriverManager.getConnection(DriverManager.java:208)
        at com.jolbox.bonecp.BoneCP.obtainRawInternalConnection(BoneCP.java:361)
        at com.jolbox.bonecp.BoneCP.<init>(BoneCP.java:416)
        at com.jolbox.bonecp.BoneCPDataSource.getConnection(BoneCPDataSource.java:120)
        at org.datanucleus.store.rdbms.ConnectionFactoryImpl$ManagedConnectionImpl.getConnection(ConnectionFactoryImpl.java:483)
        at org.datanucleus.store.rdbms.RDBMSStoreManager.<init>(RDBMSStoreManager.java:296)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
        at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
        at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
        at org.datanucleus.plugin.NonManagedPluginRegistry.createExecutableExtension(NonManagedPluginRegistry.java:606)
        at org.datanucleus.plugin.PluginManager.createExecutableExtension(PluginManager.java:301)
        at org.datanucleus.NucleusContextHelper.createStoreManagerForProperties(NucleusContextHelper.java:133)
        at org.datanucleus.PersistenceNucleusContextImpl.initialise(PersistenceNucleusContextImpl.java:420)
        at org.datanucleus.api.jdo.JDOPersistenceManagerFactory.freezeConfiguration(JDOPersistenceManagerFactory.java:821)
        at org.datanucleus.api.jdo.JDOPersistenceManagerFactory.createPersistenceManagerFactory(JDOPersistenceManagerFactory.java:338)
        at org.datanucleus.api.jdo.JDOPersistenceManagerFactory.getPersistenceManagerFactory(JDOPersistenceManagerFactory.java:217)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:498)
        at javax.jdo.JDOHelper$16.run(JDOHelper.java:1965)
        at java.security.AccessController.doPrivileged(Native Method)
        at javax.jdo.JDOHelper.invoke(JDOHelper.java:1960)
        at javax.jdo.JDOHelper.invokeGetPersistenceManagerFactoryOnImplementation(JDOHelper.java:1166)
        at javax.jdo.JDOHelper.getPersistenceManagerFactory(JDOHelper.java:808)
        at javax.jdo.JDOHelper.getPersistenceManagerFactory(JDOHelper.java:701)
        at org.apache.hadoop.hive.metastore.ObjectStore.getPMF(ObjectStore.java:515)
        at org.apache.hadoop.hive.metastore.ObjectStore.getPersistenceManager(ObjectStore.java:544)
        at org.apache.hadoop.hive.metastore.ObjectStore.initializeHelper(ObjectStore.java:399)
        at org.apache.hadoop.hive.metastore.ObjectStore.initialize(ObjectStore.java:336)
        at org.apache.hadoop.hive.metastore.ObjectStore.setConf(ObjectStore.java:297)
        at org.apache.hadoop.util.ReflectionUtils.setConf(ReflectionUtils.java:76)
        at org.apache.hadoop.util.ReflectionUtils.newInstance(ReflectionUtils.java:136)
        at org.apache.hadoop.hive.metastore.RawStoreProxy.<init>(RawStoreProxy.java:58)
        at org.apache.hadoop.hive.metastore.RawStoreProxy.getProxy(RawStoreProxy.java:67)
        at org.apache.hadoop.hive.metastore.HiveMetaStore$HMSHandler.newRawStore(HiveMetaStore.java:599)
        at org.apache.hadoop.hive.metastore.HiveMetaStore$HMSHandler.getMS(HiveMetaStore.java:564)
        at org.apache.hadoop.hive.metastore.HiveMetaStore$HMSHandler.createDefaultDB(HiveMetaStore.java:630)
        at org.apache.hadoop.hive.metastore.HiveMetaStore$HMSHandler.init(HiveMetaStore.java:416)
        at org.apache.hadoop.hive.metastore.RetryingHMSHandler.<init>(RetryingHMSHandler.java:78)
        at org.apache.hadoop.hive.metastore.RetryingHMSHandler.getProxy(RetryingHMSHandler.java:84)
        at org.apache.hadoop.hive.metastore.HiveMetaStore.newRetryingHMSHandler(HiveMetaStore.java:6484)
        at org.apache.hadoop.hive.metastore.HiveMetaStore.newRetryingHMSHandler(HiveMetaStore.java:6479)
        at org.apache.hadoop.hive.metastore.HiveMetaStore.startMetaStore(HiveMetaStore.java:6737)
        at org.apache.hadoop.hive.metastore.HiveMetaStore.main(HiveMetaStore.java:6664)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:498)
        at org.apache.hadoop.util.RunJar.run(RunJar.java:234)
        at org.apache.hadoop.util.RunJar.main(RunJar.java:148)
Caused by: com.mysql.cj.core.exceptions.InvalidConnectionAttributeException: The server time zone value 'KST' is unrecognized or represents more than one time zone. You must configure either the server or JDBC driver (via the serverTimezone configuration property) to use a more specifc time zone value if you want to utilize time zone support.
        at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
        at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
        at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
        at com.mysql.cj.core.exceptions.ExceptionFactory.createException(ExceptionFactory.java:54)
        at com.mysql.cj.core.exceptions.ExceptionFactory.createException(ExceptionFactory.java:73)
        at com.mysql.cj.jdbc.util.TimeUtil.getCanonicalTimezone(TimeUtil.java:118)
        at com.mysql.cj.mysqla.MysqlaSession.configureTimezone(MysqlaSession.java:293)
        at com.mysql.cj.jdbc.ConnectionImpl.initializePropsFromServer(ConnectionImpl.java:2399)
        at com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:1739)
        at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:1596)
        ... 56 more
------
 
        at org.datanucleus.api.jdo.NucleusJDOHelper.getJDOExceptionForNucleusException(NucleusJDOHelper.java:529)
        at org.datanucleus.api.jdo.JDOPersistenceManagerFactory.freezeConfiguration(JDOPersistenceManagerFactory.java:834)
        at org.datanucleus.api.jdo.JDOPersistenceManagerFactory.createPersistenceManagerFactory(JDOPersistenceManagerFactory.java:338)
        at org.datanucleus.api.jdo.JDOPersistenceManagerFactory.getPersistenceManagerFactory(JDOPersistenceManagerFactory.java:217)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:498)
        at javax.jdo.JDOHelper$16.run(JDOHelper.java:1965)
        at java.security.AccessController.doPrivileged(Native Method)
        at javax.jdo.JDOHelper.invoke(JDOHelper.java:1960)
        at javax.jdo.JDOHelper.invokeGetPersistenceManagerFactoryOnImplementation(JDOHelper.java:1166)
        at javax.jdo.JDOHelper.getPersistenceManagerFactory(JDOHelper.java:808)
        at javax.jdo.JDOHelper.getPersistenceManagerFactory(JDOHelper.java:701)
        at org.apache.hadoop.hive.metastore.ObjectStore.getPMF(ObjectStore.java:515)
        at org.apache.hadoop.hive.metastore.ObjectStore.getPersistenceManager(ObjectStore.java:544)
        at org.apache.hadoop.hive.metastore.ObjectStore.initializeHelper(ObjectStore.java:399)
        at org.apache.hadoop.hive.metastore.ObjectStore.initialize(ObjectStore.java:336)
        at org.apache.hadoop.hive.metastore.ObjectStore.setConf(ObjectStore.java:297)
        at org.apache.hadoop.util.ReflectionUtils.setConf(ReflectionUtils.java:76)
        at org.apache.hadoop.util.ReflectionUtils.newInstance(ReflectionUtils.java:136)
        at org.apache.hadoop.hive.metastore.RawStoreProxy.<init>(RawStoreProxy.java:58)
        at org.apache.hadoop.hive.metastore.RawStoreProxy.getProxy(RawStoreProxy.java:67)
        at org.apache.hadoop.hive.metastore.HiveMetaStore$HMSHandler.newRawStore(HiveMetaStore.java:599)
        at org.apache.hadoop.hive.metastore.HiveMetaStore$HMSHandler.getMS(HiveMetaStore.java:564)
        at org.apache.hadoop.hive.metastore.HiveMetaStore$HMSHandler.createDefaultDB(HiveMetaStore.java:630)
        at org.apache.hadoop.hive.metastore.HiveMetaStore$HMSHandler.init(HiveMetaStore.java:416)
        at org.apache.hadoop.hive.metastore.RetryingHMSHandler.<init>(RetryingHMSHandler.java:78)
        at org.apache.hadoop.hive.metastore.RetryingHMSHandler.getProxy(RetryingHMSHandler.java:84)
        at org.apache.hadoop.hive.metastore.HiveMetaStore.newRetryingHMSHandler(HiveMetaStore.java:6484)
        at org.apache.hadoop.hive.metastore.HiveMetaStore.newRetryingHMSHandler(HiveMetaStore.java:6479)
        at org.apache.hadoop.hive.metastore.HiveMetaStore.startMetaStore(HiveMetaStore.java:6737)
        at org.apache.hadoop.hive.metastore.HiveMetaStore.main(HiveMetaStore.java:6664)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:498)
        at org.apache.hadoop.util.RunJar.run(RunJar.java:234)
        at org.apache.hadoop.util.RunJar.main(RunJar.java:148)
NestedThrowablesStackTrace:
java.sql.SQLException: Unable to open a test connection to the given database. JDBC url = jdbc:mysql://localhost:3306/hive?createDatabaseIfNotExist=true, username = hive. Terminating connection pool (set lazyInit to true if you expect to start your database after your app). Original Exception: ------
java.sql.SQLException: The server time zone value 'KST' is unrecognized or represents more than one time zone. You must configure either the server or JDBC driver (via the serverTimezone configuration property) to use a more specifc time zone value if you want to utilize time zone support.
        at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:545)
        at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:513)
        at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:505)
        at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:479)
        at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:489)
        at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:69)
        at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:1606)
        at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:633)
        at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:347)
        at com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:219)
        at java.sql.DriverManager.getConnection(DriverManager.java:664)
        at java.sql.DriverManager.getConnection(DriverManager.java:208)
        at com.jolbox.bonecp.BoneCP.obtainRawInternalConnection(BoneCP.java:361)
        at com.jolbox.bonecp.BoneCP.<init>(BoneCP.java:416)
        at com.jolbox.bonecp.BoneCPDataSource.getConnection(BoneCPDataSource.java:120)
        at org.datanucleus.store.rdbms.ConnectionFactoryImpl$ManagedConnectionImpl.getConnection(ConnectionFactoryImpl.java:483)
        at org.datanucleus.store.rdbms.RDBMSStoreManager.<init>(RDBMSStoreManager.java:296)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
        at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
        at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
        at org.datanucleus.plugin.NonManagedPluginRegistry.createExecutableExtension(NonManagedPluginRegistry.java:606)
        at org.datanucleus.plugin.PluginManager.createExecutableExtension(PluginManager.java:301)
        at org.datanucleus.NucleusContextHelper.createStoreManagerForProperties(NucleusContextHelper.java:133)
        at org.datanucleus.PersistenceNucleusContextImpl.initialise(PersistenceNucleusContextImpl.java:420)
        at org.datanucleus.api.jdo.JDOPersistenceManagerFactory.freezeConfiguration(JDOPersistenceManagerFactory.java:821)
        at org.datanucleus.api.jdo.JDOPersistenceManagerFactory.createPersistenceManagerFactory(JDOPersistenceManagerFactory.java:338)
        at org.datanucleus.api.jdo.JDOPersistenceManagerFactory.getPersistenceManagerFactory(JDOPersistenceManagerFactory.java:217)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:498)
        at javax.jdo.JDOHelper$16.run(JDOHelper.java:1965)
        at java.security.AccessController.doPrivileged(Native Method)
        at javax.jdo.JDOHelper.invoke(JDOHelper.java:1960)
        at javax.jdo.JDOHelper.invokeGetPersistenceManagerFactoryOnImplementation(JDOHelper.java:1166)
        at javax.jdo.JDOHelper.getPersistenceManagerFactory(JDOHelper.java:808)
        at javax.jdo.JDOHelper.getPersistenceManagerFactory(JDOHelper.java:701)
        at org.apache.hadoop.hive.metastore.ObjectStore.getPMF(ObjectStore.java:515)
        at org.apache.hadoop.hive.metastore.ObjectStore.getPersistenceManager(ObjectStore.java:544)
        at org.apache.hadoop.hive.metastore.ObjectStore.initializeHelper(ObjectStore.java:399)
        at org.apache.hadoop.hive.metastore.ObjectStore.initialize(ObjectStore.java:336)
        at org.apache.hadoop.hive.metastore.ObjectStore.setConf(ObjectStore.java:297)
        at org.apache.hadoop.util.ReflectionUtils.setConf(ReflectionUtils.java:76)
        at org.apache.hadoop.util.ReflectionUtils.newInstance(ReflectionUtils.java:136)
        at org.apache.hadoop.hive.metastore.RawStoreProxy.<init>(RawStoreProxy.java:58)
        at org.apache.hadoop.hive.metastore.RawStoreProxy.getProxy(RawStoreProxy.java:67)
        at org.apache.hadoop.hive.metastore.HiveMetaStore$HMSHandler.newRawStore(HiveMetaStore.java:599)
        at org.apache.hadoop.hive.metastore.HiveMetaStore$HMSHandler.getMS(HiveMetaStore.java:564)
        at org.apache.hadoop.hive.metastore.HiveMetaStore$HMSHandler.createDefaultDB(HiveMetaStore.java:630)
        at org.apache.hadoop.hive.metastore.HiveMetaStore$HMSHandler.init(HiveMetaStore.java:416)
        at org.apache.hadoop.hive.metastore.RetryingHMSHandler.<init>(RetryingHMSHandler.java:78)
        at org.apache.hadoop.hive.metastore.RetryingHMSHandler.getProxy(RetryingHMSHandler.java:84)
        at org.apache.hadoop.hive.metastore.HiveMetaStore.newRetryingHMSHandler(HiveMetaStore.java:6484)
        at org.apache.hadoop.hive.metastore.HiveMetaStore.newRetryingHMSHandler(HiveMetaStore.java:6479)
        at org.apache.hadoop.hive.metastore.HiveMetaStore.startMetaStore(HiveMetaStore.java:6737)
        at org.apache.hadoop.hive.metastore.HiveMetaStore.main(HiveMetaStore.java:6664)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:498)
        at org.apache.hadoop.util.RunJar.run(RunJar.java:234)
        at org.apache.hadoop.util.RunJar.main(RunJar.java:148)
Caused by: com.mysql.cj.core.exceptions.InvalidConnectionAttributeException: The server time zone value 'KST' is unrecognized or represents more than one time zone. You must configure either the server or JDBC driver (via the serverTimezone configuration property) to use a more specifc time zone value if you want to utilize time zone support.
        at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
        at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
        at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
        at com.mysql.cj.core.exceptions.ExceptionFactory.createException(ExceptionFactory.java:54)
        at com.mysql.cj.core.exceptions.ExceptionFactory.createException(ExceptionFactory.java:73)
        at com.mysql.cj.jdbc.util.TimeUtil.getCanonicalTimezone(TimeUtil.java:118)
        at com.mysql.cj.mysqla.MysqlaSession.configureTimezone(MysqlaSession.java:293)
        at com.mysql.cj.jdbc.ConnectionImpl.initializePropsFromServer(ConnectionImpl.java:2399)
        at com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:1739)
        at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:1596)
        ... 56 more
------
 
        at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
        at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
        at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
        at com.jolbox.bonecp.PoolUtil.generateSQLException(PoolUtil.java:192)
        at com.jolbox.bonecp.BoneCP.<init>(BoneCP.java:422)
        at com.jolbox.bonecp.BoneCPDataSource.getConnection(BoneCPDataSource.java:120)
        at org.datanucleus.store.rdbms.ConnectionFactoryImpl$ManagedConnectionImpl.getConnection(ConnectionFactoryImpl.java:483)
        at org.datanucleus.store.rdbms.RDBMSStoreManager.<init>(RDBMSStoreManager.java:296)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
        at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
        at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
        at org.datanucleus.plugin.NonManagedPluginRegistry.createExecutableExtension(NonManagedPluginRegistry.java:606)
        at org.datanucleus.plugin.PluginManager.createExecutableExtension(PluginManager.java:301)
        at org.datanucleus.NucleusContextHelper.createStoreManagerForProperties(NucleusContextHelper.java:133)
        at org.datanucleus.PersistenceNucleusContextImpl.initialise(PersistenceNucleusContextImpl.java:420)
        at org.datanucleus.api.jdo.JDOPersistenceManagerFactory.freezeConfiguration(JDOPersistenceManagerFactory.java:821)
        at org.datanucleus.api.jdo.JDOPersistenceManagerFactory.createPersistenceManagerFactory(JDOPersistenceManagerFactory.java:338)
        at org.datanucleus.api.jdo.JDOPersistenceManagerFactory.getPersistenceManagerFactory(JDOPersistenceManagerFactory.java:217)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:498)
        at javax.jdo.JDOHelper$16.run(JDOHelper.java:1965)
        at java.security.AccessController.doPrivileged(Native Method)
        at javax.jdo.JDOHelper.invoke(JDOHelper.java:1960)
        at javax.jdo.JDOHelper.invokeGetPersistenceManagerFactoryOnImplementation(JDOHelper.java:1166)
        at javax.jdo.JDOHelper.getPersistenceManagerFactory(JDOHelper.java:808)
        at javax.jdo.JDOHelper.getPersistenceManagerFactory(JDOHelper.java:701)
        at org.apache.hadoop.hive.metastore.ObjectStore.getPMF(ObjectStore.java:515)
        at org.apache.hadoop.hive.metastore.ObjectStore.getPersistenceManager(ObjectStore.java:544)
        at org.apache.hadoop.hive.metastore.ObjectStore.initializeHelper(ObjectStore.java:399)
        at org.apache.hadoop.hive.metastore.ObjectStore.initialize(ObjectStore.java:336)
        at org.apache.hadoop.hive.metastore.ObjectStore.setConf(ObjectStore.java:297)
        at org.apache.hadoop.util.ReflectionUtils.setConf(ReflectionUtils.java:76)
        at org.apache.hadoop.util.ReflectionUtils.newInstance(ReflectionUtils.java:136)
        at org.apache.hadoop.hive.metastore.RawStoreProxy.<init>(RawStoreProxy.java:58)
        at org.apache.hadoop.hive.metastore.RawStoreProxy.getProxy(RawStoreProxy.java:67)
        at org.apache.hadoop.hive.metastore.HiveMetaStore$HMSHandler.newRawStore(HiveMetaStore.java:599)
        at org.apache.hadoop.hive.metastore.HiveMetaStore$HMSHandler.getMS(HiveMetaStore.java:564)
        at org.apache.hadoop.hive.metastore.HiveMetaStore$HMSHandler.createDefaultDB(HiveMetaStore.java:630)
        at org.apache.hadoop.hive.metastore.HiveMetaStore$HMSHandler.init(HiveMetaStore.java:416)
        at org.apache.hadoop.hive.metastore.RetryingHMSHandler.<init>(RetryingHMSHandler.java:78)
        at org.apache.hadoop.hive.metastore.RetryingHMSHandler.getProxy(RetryingHMSHandler.java:84)
        at org.apache.hadoop.hive.metastore.HiveMetaStore.newRetryingHMSHandler(HiveMetaStore.java:6484)
        at org.apache.hadoop.hive.metastore.HiveMetaStore.newRetryingHMSHandler(HiveMetaStore.java:6479)
        at org.apache.hadoop.hive.metastore.HiveMetaStore.startMetaStore(HiveMetaStore.java:6737)
        at org.apache.hadoop.hive.metastore.HiveMetaStore.main(HiveMetaStore.java:6664)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:498)
        at org.apache.hadoop.util.RunJar.run(RunJar.java:234)
        at org.apache.hadoop.util.RunJar.main(RunJar.java:148)
Caused by: java.sql.SQLException: The server time zone value 'KST' is unrecognized or represents more than one time zone. You must configure either the server or JDBC driver (via the serverTimezone configuration property) to use a more specifc time zone value if you want to utilize time zone support.
        at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:545)
        at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:513)
        at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:505)
        at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:479)
        at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:489)
        at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:69)
        at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:1606)
        at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:633)
        at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:347)
        at com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:219)
        at java.sql.DriverManager.getConnection(DriverManager.java:664)
        at java.sql.DriverManager.getConnection(DriverManager.java:208)
        at com.jolbox.bonecp.BoneCP.obtainRawInternalConnection(BoneCP.java:361)
        at com.jolbox.bonecp.BoneCP.<init>(BoneCP.java:416)
        ... 49 more
Caused by: com.mysql.cj.core.exceptions.InvalidConnectionAttributeException: The server time zone value 'KST' is unrecognized or represents more than one time zone. You must configure either the server or JDBC driver (via the serverTimezone configuration property) to use a more specifc time zone value if you want to utilize time zone support.
        at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
        at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
        at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
        at com.mysql.cj.core.exceptions.ExceptionFactory.createException(ExceptionFactory.java:54)
        at com.mysql.cj.core.exceptions.ExceptionFactory.createException(ExceptionFactory.java:73)
        at com.mysql.cj.jdbc.util.TimeUtil.getCanonicalTimezone(TimeUtil.java:118)
        at com.mysql.cj.mysqla.MysqlaSession.configureTimezone(MysqlaSession.java:293)
        at com.mysql.cj.jdbc.ConnectionImpl.initializePropsFromServer(ConnectionImpl.java:2399)
        at com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:1739)
        at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:1596)
        ... 56 more
 
cs


2. hive-site.xml 설정을 수정

2-1. 변경 전의 설정 부분

1
2
3
4
5
<property>
        <name>javax.jdo.option.ConnectionURL</name>
        <value>jdbc:mysql://localhost:3306/hive?createDatabaseIfNotExist=true</value>
</property>
 
cs


2-2. 변경 후의 설정 부분

1
2
3
4
5
<property>
        <name>javax.jdo.option.ConnectionURL</name>
        <value>jdbc:mysql://localhost:3306/hive?useUnicode=true&amp;useJDBCCompliantTimezoneShift=true&amp;useLegacyDatetimeCode=false&amp;serverTimezone=UTC</value>
</property>
 
cs

* 설정을 변경하였으면 저장 후 종료합니다.




1. Unable to instantiate org.apache.hadoop.hive.ql.metadata.SessionHiveMetaStoreClient 와 같은 에러 발생 시

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
Exception in thread "main" java.lang.RuntimeException: org.apache.hadoop.hive.ql.metadata.HiveException: java.lang.RuntimeException: Unable to instantiate org.apache.hadoop.hive.ql.metadata.SessionHiveMetaStoreClient
        at org.apache.hadoop.hive.ql.session.SessionState.start(SessionState.java:591)
        at org.apache.hadoop.hive.ql.session.SessionState.beginStart(SessionState.java:531)
        at org.apache.hadoop.hive.cli.CliDriver.run(CliDriver.java:705)
        at org.apache.hadoop.hive.cli.CliDriver.main(CliDriver.java:641)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:498)
        at org.apache.hadoop.util.RunJar.run(RunJar.java:234)
        at org.apache.hadoop.util.RunJar.main(RunJar.java:148)
Caused by: org.apache.hadoop.hive.ql.metadata.HiveException: java.lang.RuntimeException: Unable to instantiate org.apache.hadoop.hive.ql.metadata.SessionHiveMetaStoreClient
        at org.apache.hadoop.hive.ql.metadata.Hive.registerAllFunctionsOnce(Hive.java:226)
        at org.apache.hadoop.hive.ql.metadata.Hive.<init>(Hive.java:366)
        at org.apache.hadoop.hive.ql.metadata.Hive.create(Hive.java:310)
        at org.apache.hadoop.hive.ql.metadata.Hive.getInternal(Hive.java:290)
        at org.apache.hadoop.hive.ql.metadata.Hive.get(Hive.java:266)
        at org.apache.hadoop.hive.ql.session.SessionState.start(SessionState.java:558)
        ... 9 more
Caused by: java.lang.RuntimeException: Unable to instantiate org.apache.hadoop.hive.ql.metadata.SessionHiveMetaStoreClient
        at org.apache.hadoop.hive.metastore.MetaStoreUtils.newInstance(MetaStoreUtils.java:1654)
        at org.apache.hadoop.hive.metastore.RetryingMetaStoreClient.<init>(RetryingMetaStoreClient.java:80)
        at org.apache.hadoop.hive.metastore.RetryingMetaStoreClient.getProxy(RetryingMetaStoreClient.java:130)
        at org.apache.hadoop.hive.metastore.RetryingMetaStoreClient.getProxy(RetryingMetaStoreClient.java:101)
        at org.apache.hadoop.hive.ql.metadata.Hive.createMetaStoreClient(Hive.java:3367)
        at org.apache.hadoop.hive.ql.metadata.Hive.getMSC(Hive.java:3406)
        at org.apache.hadoop.hive.ql.metadata.Hive.getMSC(Hive.java:3386)
        at org.apache.hadoop.hive.ql.metadata.Hive.getAllFunctions(Hive.java:3640)
        at org.apache.hadoop.hive.ql.metadata.Hive.reloadFunctions(Hive.java:236)
        at org.apache.hadoop.hive.ql.metadata.Hive.registerAllFunctionsOnce(Hive.java:221)
        ... 14 more
Caused by: java.lang.reflect.InvocationTargetException
        at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
        at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
        at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
        at org.apache.hadoop.hive.metastore.MetaStoreUtils.newInstance(MetaStoreUtils.java:1652)
        ... 23 more
Caused by: javax.jdo.JDOFatalDataStoreException: Unable to open a test connection to the given database. JDBC url = jdbc:mysql://localhost:3306/hive?createDatabaseIfNotExist=true, username = hive. Terminating connection pool (set lazyInit to true if you expect to start your database after your app). Original Exception: ------
java.sql.SQLException: The server time zone value 'KST' is unrecognized or represents more than one time zone. You must configure either the server or JDBC driver (via the serverTimezone configuration property) to use a more specifc time zone value if you want to utilize time zone support.
        at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:545)
        at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:513)
        at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:505)
        at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:479)
        at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:489)
        at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:69)
        at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:1606)
        at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:633)
        at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:347)
        at com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:219)
        at java.sql.DriverManager.getConnection(DriverManager.java:664)
        at java.sql.DriverManager.getConnection(DriverManager.java:208)
        at com.jolbox.bonecp.BoneCP.obtainRawInternalConnection(BoneCP.java:361)
        at com.jolbox.bonecp.BoneCP.<init>(BoneCP.java:416)
        at com.jolbox.bonecp.BoneCPDataSource.getConnection(BoneCPDataSource.java:120)
        at org.datanucleus.store.rdbms.ConnectionFactoryImpl$ManagedConnectionImpl.getConnection(ConnectionFactoryImpl.java:483)
        at org.datanucleus.store.rdbms.RDBMSStoreManager.<init>(RDBMSStoreManager.java:296)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
        at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
        at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
        at org.datanucleus.plugin.NonManagedPluginRegistry.createExecutableExtension(NonManagedPluginRegistry.java:606)
        at org.datanucleus.plugin.PluginManager.createExecutableExtension(PluginManager.java:301)
        at org.datanucleus.NucleusContextHelper.createStoreManagerForProperties(NucleusContextHelper.java:133)
        at org.datanucleus.PersistenceNucleusContextImpl.initialise(PersistenceNucleusContextImpl.java:420)
        at org.datanucleus.api.jdo.JDOPersistenceManagerFactory.freezeConfiguration(JDOPersistenceManagerFactory.java:821)
        at org.datanucleus.api.jdo.JDOPersistenceManagerFactory.createPersistenceManagerFactory(JDOPersistenceManagerFactory.java:338)
        at org.datanucleus.api.jdo.JDOPersistenceManagerFactory.getPersistenceManagerFactory(JDOPersistenceManagerFactory.java:217)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:498)
        at javax.jdo.JDOHelper$16.run(JDOHelper.java:1965)
        at java.security.AccessController.doPrivileged(Native Method)
        at javax.jdo.JDOHelper.invoke(JDOHelper.java:1960)
        at javax.jdo.JDOHelper.invokeGetPersistenceManagerFactoryOnImplementation(JDOHelper.java:1166)
        at javax.jdo.JDOHelper.getPersistenceManagerFactory(JDOHelper.java:808)
        at javax.jdo.JDOHelper.getPersistenceManagerFactory(JDOHelper.java:701)
        at org.apache.hadoop.hive.metastore.ObjectStore.getPMF(ObjectStore.java:515)
        at org.apache.hadoop.hive.metastore.ObjectStore.getPersistenceManager(ObjectStore.java:544)
        at org.apache.hadoop.hive.metastore.ObjectStore.initializeHelper(ObjectStore.java:399)
        at org.apache.hadoop.hive.metastore.ObjectStore.initialize(ObjectStore.java:336)
        at org.apache.hadoop.hive.metastore.ObjectStore.setConf(ObjectStore.java:297)
        at org.apache.hadoop.util.ReflectionUtils.setConf(ReflectionUtils.java:76)
        at org.apache.hadoop.util.ReflectionUtils.newInstance(ReflectionUtils.java:136)
        at org.apache.hadoop.hive.metastore.RawStoreProxy.<init>(RawStoreProxy.java:58)
        at org.apache.hadoop.hive.metastore.RawStoreProxy.getProxy(RawStoreProxy.java:67)
        at org.apache.hadoop.hive.metastore.HiveMetaStore$HMSHandler.newRawStore(HiveMetaStore.java:599)
        at org.apache.hadoop.hive.metastore.HiveMetaStore$HMSHandler.getMS(HiveMetaStore.java:564)
        at org.apache.hadoop.hive.metastore.HiveMetaStore$HMSHandler.createDefaultDB(HiveMetaStore.java:630)
        at org.apache.hadoop.hive.metastore.HiveMetaStore$HMSHandler.init(HiveMetaStore.java:416)
        at org.apache.hadoop.hive.metastore.RetryingHMSHandler.<init>(RetryingHMSHandler.java:78)
        at org.apache.hadoop.hive.metastore.RetryingHMSHandler.getProxy(RetryingHMSHandler.java:84)
        at org.apache.hadoop.hive.metastore.HiveMetaStore.newRetryingHMSHandler(HiveMetaStore.java:6490)
        at org.apache.hadoop.hive.metastore.HiveMetaStoreClient.<init>(HiveMetaStoreClient.java:238)
        at org.apache.hadoop.hive.ql.metadata.SessionHiveMetaStoreClient.<init>(SessionHiveMetaStoreClient.java:70)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
        at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
        at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
        at org.apache.hadoop.hive.metastore.MetaStoreUtils.newInstance(MetaStoreUtils.java:1652)
        at org.apache.hadoop.hive.metastore.RetryingMetaStoreClient.<init>(RetryingMetaStoreClient.java:80)
        at org.apache.hadoop.hive.metastore.RetryingMetaStoreClient.getProxy(RetryingMetaStoreClient.java:130)
        at org.apache.hadoop.hive.metastore.RetryingMetaStoreClient.getProxy(RetryingMetaStoreClient.java:101)
        at org.apache.hadoop.hive.ql.metadata.Hive.createMetaStoreClient(Hive.java:3367)
        at org.apache.hadoop.hive.ql.metadata.Hive.getMSC(Hive.java:3406)
        at org.apache.hadoop.hive.ql.metadata.Hive.getMSC(Hive.java:3386)
        at org.apache.hadoop.hive.ql.metadata.Hive.getAllFunctions(Hive.java:3640)
        at org.apache.hadoop.hive.ql.metadata.Hive.reloadFunctions(Hive.java:236)
        at org.apache.hadoop.hive.ql.metadata.Hive.registerAllFunctionsOnce(Hive.java:221)
        at org.apache.hadoop.hive.ql.metadata.Hive.<init>(Hive.java:366)
        at org.apache.hadoop.hive.ql.metadata.Hive.create(Hive.java:310)
        at org.apache.hadoop.hive.ql.metadata.Hive.getInternal(Hive.java:290)
        at org.apache.hadoop.hive.ql.metadata.Hive.get(Hive.java:266)
        at org.apache.hadoop.hive.ql.session.SessionState.start(SessionState.java:558)
        at org.apache.hadoop.hive.ql.session.SessionState.beginStart(SessionState.java:531)
        at org.apache.hadoop.hive.cli.CliDriver.run(CliDriver.java:705)
        at org.apache.hadoop.hive.cli.CliDriver.main(CliDriver.java:641)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:498)
        at org.apache.hadoop.util.RunJar.run(RunJar.java:234)
        at org.apache.hadoop.util.RunJar.main(RunJar.java:148)
Caused by: com.mysql.cj.core.exceptions.InvalidConnectionAttributeException: The server time zone value 'KST' is unrecognized or represents more than one time zone. You must configure either the server or JDBC driver (via the serverTimezone configuration property) to use a more specifc time zone value if you want to utilize time zone support.
        at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
        at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
        at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
        at com.mysql.cj.core.exceptions.ExceptionFactory.createException(ExceptionFactory.java:54)
        at com.mysql.cj.core.exceptions.ExceptionFactory.createException(ExceptionFactory.java:73)
        at com.mysql.cj.jdbc.util.TimeUtil.getCanonicalTimezone(TimeUtil.java:118)
        at com.mysql.cj.mysqla.MysqlaSession.configureTimezone(MysqlaSession.java:293)
        at com.mysql.cj.jdbc.ConnectionImpl.initializePropsFromServer(ConnectionImpl.java:2399)
        at com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:1739)
        at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:1596)
        ... 77 more
------
 
NestedThrowables:
java.sql.SQLException: Unable to open a test connection to the given database. JDBC url = jdbc:mysql://localhost:3306/hive?createDatabaseIfNotExist=true, username = hive. Terminating connection pool (set lazyInit to true if you expect to start your database after your app). Original Exception: ------
java.sql.SQLException: The server time zone value 'KST' is unrecognized or represents more than one time zone. You must configure either the server or JDBC driver (via the serverTimezone configuration property) to use a more specifc time zone value if you want to utilize time zone support.
        at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:545)
        at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:513)
        at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:505)
        at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:479)
        at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:489)
        at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:69)
        at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:1606)
        at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:633)
        at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:347)
        at com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:219)
        at java.sql.DriverManager.getConnection(DriverManager.java:664)
        at java.sql.DriverManager.getConnection(DriverManager.java:208)
        at com.jolbox.bonecp.BoneCP.obtainRawInternalConnection(BoneCP.java:361)
        at com.jolbox.bonecp.BoneCP.<init>(BoneCP.java:416)
        at com.jolbox.bonecp.BoneCPDataSource.getConnection(BoneCPDataSource.java:120)
        at org.datanucleus.store.rdbms.ConnectionFactoryImpl$ManagedConnectionImpl.getConnection(ConnectionFactoryImpl.java:483)
        at org.datanucleus.store.rdbms.RDBMSStoreManager.<init>(RDBMSStoreManager.java:296)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
        at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
        at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
        at org.datanucleus.plugin.NonManagedPluginRegistry.createExecutableExtension(NonManagedPluginRegistry.java:606)
        at org.datanucleus.plugin.PluginManager.createExecutableExtension(PluginManager.java:301)
        at org.datanucleus.NucleusContextHelper.createStoreManagerForProperties(NucleusContextHelper.java:133)
        at org.datanucleus.PersistenceNucleusContextImpl.initialise(PersistenceNucleusContextImpl.java:420)
        at org.datanucleus.api.jdo.JDOPersistenceManagerFactory.freezeConfiguration(JDOPersistenceManagerFactory.java:821)
        at org.datanucleus.api.jdo.JDOPersistenceManagerFactory.createPersistenceManagerFactory(JDOPersistenceManagerFactory.java:338)
        at org.datanucleus.api.jdo.JDOPersistenceManagerFactory.getPersistenceManagerFactory(JDOPersistenceManagerFactory.java:217)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:498)
        at javax.jdo.JDOHelper$16.run(JDOHelper.java:1965)
        at java.security.AccessController.doPrivileged(Native Method)
        at javax.jdo.JDOHelper.invoke(JDOHelper.java:1960)
        at javax.jdo.JDOHelper.invokeGetPersistenceManagerFactoryOnImplementation(JDOHelper.java:1166)
        at javax.jdo.JDOHelper.getPersistenceManagerFactory(JDOHelper.java:808)
        at javax.jdo.JDOHelper.getPersistenceManagerFactory(JDOHelper.java:701)
        at org.apache.hadoop.hive.metastore.ObjectStore.getPMF(ObjectStore.java:515)
        at org.apache.hadoop.hive.metastore.ObjectStore.getPersistenceManager(ObjectStore.java:544)
        at org.apache.hadoop.hive.metastore.ObjectStore.initializeHelper(ObjectStore.java:399)
        at org.apache.hadoop.hive.metastore.ObjectStore.initialize(ObjectStore.java:336)
        at org.apache.hadoop.hive.metastore.ObjectStore.setConf(ObjectStore.java:297)
        at org.apache.hadoop.util.ReflectionUtils.setConf(ReflectionUtils.java:76)
        at org.apache.hadoop.util.ReflectionUtils.newInstance(ReflectionUtils.java:136)
        at org.apache.hadoop.hive.metastore.RawStoreProxy.<init>(RawStoreProxy.java:58)
        at org.apache.hadoop.hive.metastore.RawStoreProxy.getProxy(RawStoreProxy.java:67)
        at org.apache.hadoop.hive.metastore.HiveMetaStore$HMSHandler.newRawStore(HiveMetaStore.java:599)
        at org.apache.hadoop.hive.metastore.HiveMetaStore$HMSHandler.getMS(HiveMetaStore.java:564)
        at org.apache.hadoop.hive.metastore.HiveMetaStore$HMSHandler.createDefaultDB(HiveMetaStore.java:630)
        at org.apache.hadoop.hive.metastore.HiveMetaStore$HMSHandler.init(HiveMetaStore.java:416)
        at org.apache.hadoop.hive.metastore.RetryingHMSHandler.<init>(RetryingHMSHandler.java:78)
        at org.apache.hadoop.hive.metastore.RetryingHMSHandler.getProxy(RetryingHMSHandler.java:84)
        at org.apache.hadoop.hive.metastore.HiveMetaStore.newRetryingHMSHandler(HiveMetaStore.java:6490)
        at org.apache.hadoop.hive.metastore.HiveMetaStoreClient.<init>(HiveMetaStoreClient.java:238)
        at org.apache.hadoop.hive.ql.metadata.SessionHiveMetaStoreClient.<init>(SessionHiveMetaStoreClient.java:70)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
        at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
        at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
        at org.apache.hadoop.hive.metastore.MetaStoreUtils.newInstance(MetaStoreUtils.java:1652)
        at org.apache.hadoop.hive.metastore.RetryingMetaStoreClient.<init>(RetryingMetaStoreClient.java:80)
        at org.apache.hadoop.hive.metastore.RetryingMetaStoreClient.getProxy(RetryingMetaStoreClient.java:130)
        at org.apache.hadoop.hive.metastore.RetryingMetaStoreClient.getProxy(RetryingMetaStoreClient.java:101)
        at org.apache.hadoop.hive.ql.metadata.Hive.createMetaStoreClient(Hive.java:3367)
        at org.apache.hadoop.hive.ql.metadata.Hive.getMSC(Hive.java:3406)
        at org.apache.hadoop.hive.ql.metadata.Hive.getMSC(Hive.java:3386)
        at org.apache.hadoop.hive.ql.metadata.Hive.getAllFunctions(Hive.java:3640)
        at org.apache.hadoop.hive.ql.metadata.Hive.reloadFunctions(Hive.java:236)
        at org.apache.hadoop.hive.ql.metadata.Hive.registerAllFunctionsOnce(Hive.java:221)
        at org.apache.hadoop.hive.ql.metadata.Hive.<init>(Hive.java:366)
        at org.apache.hadoop.hive.ql.metadata.Hive.create(Hive.java:310)
        at org.apache.hadoop.hive.ql.metadata.Hive.getInternal(Hive.java:290)
        at org.apache.hadoop.hive.ql.metadata.Hive.get(Hive.java:266)
        at org.apache.hadoop.hive.ql.session.SessionState.start(SessionState.java:558)
        at org.apache.hadoop.hive.ql.session.SessionState.beginStart(SessionState.java:531)
        at org.apache.hadoop.hive.cli.CliDriver.run(CliDriver.java:705)
        at org.apache.hadoop.hive.cli.CliDriver.main(CliDriver.java:641)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:498)
        at org.apache.hadoop.util.RunJar.run(RunJar.java:234)
        at org.apache.hadoop.util.RunJar.main(RunJar.java:148)
Caused by: com.mysql.cj.core.exceptions.InvalidConnectionAttributeException: The server time zone value 'KST' is unrecognized or represents more than one time zone. You must configure either the server or JDBC driver (via the serverTimezone configuration property) to use a more specifc time zone value if you want to utilize time zone support.
        at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
        at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
        at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
        at com.mysql.cj.core.exceptions.ExceptionFactory.createException(ExceptionFactory.java:54)
        at com.mysql.cj.core.exceptions.ExceptionFactory.createException(ExceptionFactory.java:73)
        at com.mysql.cj.jdbc.util.TimeUtil.getCanonicalTimezone(TimeUtil.java:118)
        at com.mysql.cj.mysqla.MysqlaSession.configureTimezone(MysqlaSession.java:293)
        at com.mysql.cj.jdbc.ConnectionImpl.initializePropsFromServer(ConnectionImpl.java:2399)
        at com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:1739)
        at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:1596)
        ... 77 more
------
 
        at org.datanucleus.api.jdo.NucleusJDOHelper.getJDOExceptionForNucleusException(NucleusJDOHelper.java:529)
        at org.datanucleus.api.jdo.JDOPersistenceManagerFactory.freezeConfiguration(JDOPersistenceManagerFactory.java:834)
        at org.datanucleus.api.jdo.JDOPersistenceManagerFactory.createPersistenceManagerFactory(JDOPersistenceManagerFactory.java:338)
        at org.datanucleus.api.jdo.JDOPersistenceManagerFactory.getPersistenceManagerFactory(JDOPersistenceManagerFactory.java:217)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:498)
        at javax.jdo.JDOHelper$16.run(JDOHelper.java:1965)
        at java.security.AccessController.doPrivileged(Native Method)
        at javax.jdo.JDOHelper.invoke(JDOHelper.java:1960)
        at javax.jdo.JDOHelper.invokeGetPersistenceManagerFactoryOnImplementation(JDOHelper.java:1166)
        at javax.jdo.JDOHelper.getPersistenceManagerFactory(JDOHelper.java:808)
        at javax.jdo.JDOHelper.getPersistenceManagerFactory(JDOHelper.java:701)
        at org.apache.hadoop.hive.metastore.ObjectStore.getPMF(ObjectStore.java:515)
        at org.apache.hadoop.hive.metastore.ObjectStore.getPersistenceManager(ObjectStore.java:544)
        at org.apache.hadoop.hive.metastore.ObjectStore.initializeHelper(ObjectStore.java:399)
        at org.apache.hadoop.hive.metastore.ObjectStore.initialize(ObjectStore.java:336)
        at org.apache.hadoop.hive.metastore.ObjectStore.setConf(ObjectStore.java:297)
        at org.apache.hadoop.util.ReflectionUtils.setConf(ReflectionUtils.java:76)
        at org.apache.hadoop.util.ReflectionUtils.newInstance(ReflectionUtils.java:136)
        at org.apache.hadoop.hive.metastore.RawStoreProxy.<init>(RawStoreProxy.java:58)
        at org.apache.hadoop.hive.metastore.RawStoreProxy.getProxy(RawStoreProxy.java:67)
        at org.apache.hadoop.hive.metastore.HiveMetaStore$HMSHandler.newRawStore(HiveMetaStore.java:599)
        at org.apache.hadoop.hive.metastore.HiveMetaStore$HMSHandler.getMS(HiveMetaStore.java:564)
        at org.apache.hadoop.hive.metastore.HiveMetaStore$HMSHandler.createDefaultDB(HiveMetaStore.java:630)
        at org.apache.hadoop.hive.metastore.HiveMetaStore$HMSHandler.init(HiveMetaStore.java:416)
        at org.apache.hadoop.hive.metastore.RetryingHMSHandler.<init>(RetryingHMSHandler.java:78)
        at org.apache.hadoop.hive.metastore.RetryingHMSHandler.getProxy(RetryingHMSHandler.java:84)
        at org.apache.hadoop.hive.metastore.HiveMetaStore.newRetryingHMSHandler(HiveMetaStore.java:6490)
        at org.apache.hadoop.hive.metastore.HiveMetaStoreClient.<init>(HiveMetaStoreClient.java:238)
        at org.apache.hadoop.hive.ql.metadata.SessionHiveMetaStoreClient.<init>(SessionHiveMetaStoreClient.java:70)
        ... 28 more
Caused by: java.sql.SQLException: Unable to open a test connection to the given database. JDBC url = jdbc:mysql://localhost:3306/hive?createDatabaseIfNotExist=true, username = hive. Terminating connection pool (set lazyInit to true if you expect to start your database after your app). Original Exception: ------
java.sql.SQLException: The server time zone value 'KST' is unrecognized or represents more than one time zone. You must configure either the server or JDBC driver (via the serverTimezone configuration property) to use a more specifc time zone value if you want to utilize time zone support.
        at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:545)
        at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:513)
        at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:505)
        at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:479)
        at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:489)
        at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:69)
        at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:1606)
        at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:633)
        at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:347)
        at com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:219)
        at java.sql.DriverManager.getConnection(DriverManager.java:664)
        at java.sql.DriverManager.getConnection(DriverManager.java:208)
        at com.jolbox.bonecp.BoneCP.obtainRawInternalConnection(BoneCP.java:361)
        at com.jolbox.bonecp.BoneCP.<init>(BoneCP.java:416)
        at com.jolbox.bonecp.BoneCPDataSource.getConnection(BoneCPDataSource.java:120)
        at org.datanucleus.store.rdbms.ConnectionFactoryImpl$ManagedConnectionImpl.getConnection(ConnectionFactoryImpl.java:483)
        at org.datanucleus.store.rdbms.RDBMSStoreManager.<init>(RDBMSStoreManager.java:296)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
        at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
        at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
        at org.datanucleus.plugin.NonManagedPluginRegistry.createExecutableExtension(NonManagedPluginRegistry.java:606)
        at org.datanucleus.plugin.PluginManager.createExecutableExtension(PluginManager.java:301)
        at org.datanucleus.NucleusContextHelper.createStoreManagerForProperties(NucleusContextHelper.java:133)
        at org.datanucleus.PersistenceNucleusContextImpl.initialise(PersistenceNucleusContextImpl.java:420)
        at org.datanucleus.api.jdo.JDOPersistenceManagerFactory.freezeConfiguration(JDOPersistenceManagerFactory.java:821)
        at org.datanucleus.api.jdo.JDOPersistenceManagerFactory.createPersistenceManagerFactory(JDOPersistenceManagerFactory.java:338)
        at org.datanucleus.api.jdo.JDOPersistenceManagerFactory.getPersistenceManagerFactory(JDOPersistenceManagerFactory.java:217)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:498)
        at javax.jdo.JDOHelper$16.run(JDOHelper.java:1965)
        at java.security.AccessController.doPrivileged(Native Method)
        at javax.jdo.JDOHelper.invoke(JDOHelper.java:1960)
        at javax.jdo.JDOHelper.invokeGetPersistenceManagerFactoryOnImplementation(JDOHelper.java:1166)
        at javax.jdo.JDOHelper.getPersistenceManagerFactory(JDOHelper.java:808)
        at javax.jdo.JDOHelper.getPersistenceManagerFactory(JDOHelper.java:701)
        at org.apache.hadoop.hive.metastore.ObjectStore.getPMF(ObjectStore.java:515)
        at org.apache.hadoop.hive.metastore.ObjectStore.getPersistenceManager(ObjectStore.java:544)
        at org.apache.hadoop.hive.metastore.ObjectStore.initializeHelper(ObjectStore.java:399)
        at org.apache.hadoop.hive.metastore.ObjectStore.initialize(ObjectStore.java:336)
        at org.apache.hadoop.hive.metastore.ObjectStore.setConf(ObjectStore.java:297)
        at org.apache.hadoop.util.ReflectionUtils.setConf(ReflectionUtils.java:76)
        at org.apache.hadoop.util.ReflectionUtils.newInstance(ReflectionUtils.java:136)
        at org.apache.hadoop.hive.metastore.RawStoreProxy.<init>(RawStoreProxy.java:58)
        at org.apache.hadoop.hive.metastore.RawStoreProxy.getProxy(RawStoreProxy.java:67)
        at org.apache.hadoop.hive.metastore.HiveMetaStore$HMSHandler.newRawStore(HiveMetaStore.java:599)
        at org.apache.hadoop.hive.metastore.HiveMetaStore$HMSHandler.getMS(HiveMetaStore.java:564)
        at org.apache.hadoop.hive.metastore.HiveMetaStore$HMSHandler.createDefaultDB(HiveMetaStore.java:630)
        at org.apache.hadoop.hive.metastore.HiveMetaStore$HMSHandler.init(HiveMetaStore.java:416)
        at org.apache.hadoop.hive.metastore.RetryingHMSHandler.<init>(RetryingHMSHandler.java:78)
        at org.apache.hadoop.hive.metastore.RetryingHMSHandler.getProxy(RetryingHMSHandler.java:84)
        at org.apache.hadoop.hive.metastore.HiveMetaStore.newRetryingHMSHandler(HiveMetaStore.java:6490)
        at org.apache.hadoop.hive.metastore.HiveMetaStoreClient.<init>(HiveMetaStoreClient.java:238)
        at org.apache.hadoop.hive.ql.metadata.SessionHiveMetaStoreClient.<init>(SessionHiveMetaStoreClient.java:70)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
        at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
        at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
        at org.apache.hadoop.hive.metastore.MetaStoreUtils.newInstance(MetaStoreUtils.java:1652)
        at org.apache.hadoop.hive.metastore.RetryingMetaStoreClient.<init>(RetryingMetaStoreClient.java:80)
        at org.apache.hadoop.hive.metastore.RetryingMetaStoreClient.getProxy(RetryingMetaStoreClient.java:130)
        at org.apache.hadoop.hive.metastore.RetryingMetaStoreClient.getProxy(RetryingMetaStoreClient.java:101)
        at org.apache.hadoop.hive.ql.metadata.Hive.createMetaStoreClient(Hive.java:3367)
        at org.apache.hadoop.hive.ql.metadata.Hive.getMSC(Hive.java:3406)
        at org.apache.hadoop.hive.ql.metadata.Hive.getMSC(Hive.java:3386)
        at org.apache.hadoop.hive.ql.metadata.Hive.getAllFunctions(Hive.java:3640)
        at org.apache.hadoop.hive.ql.metadata.Hive.reloadFunctions(Hive.java:236)
        at org.apache.hadoop.hive.ql.metadata.Hive.registerAllFunctionsOnce(Hive.java:221)
        at org.apache.hadoop.hive.ql.metadata.Hive.<init>(Hive.java:366)
        at org.apache.hadoop.hive.ql.metadata.Hive.create(Hive.java:310)
        at org.apache.hadoop.hive.ql.metadata.Hive.getInternal(Hive.java:290)
        at org.apache.hadoop.hive.ql.metadata.Hive.get(Hive.java:266)
        at org.apache.hadoop.hive.ql.session.SessionState.start(SessionState.java:558)
        at org.apache.hadoop.hive.ql.session.SessionState.beginStart(SessionState.java:531)
        at org.apache.hadoop.hive.cli.CliDriver.run(CliDriver.java:705)
        at org.apache.hadoop.hive.cli.CliDriver.main(CliDriver.java:641)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:498)
        at org.apache.hadoop.util.RunJar.run(RunJar.java:234)
        at org.apache.hadoop.util.RunJar.main(RunJar.java:148)
Caused by: com.mysql.cj.core.exceptions.InvalidConnectionAttributeException: The server time zone value 'KST' is unrecognized or represents more than one time zone. You must configure either the server or JDBC driver (via the serverTimezone configuration property) to use a more specifc time zone value if you want to utilize time zone support.
        at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
        at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
        at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
        at com.mysql.cj.core.exceptions.ExceptionFactory.createException(ExceptionFactory.java:54)
        at com.mysql.cj.core.exceptions.ExceptionFactory.createException(ExceptionFactory.java:73)
        at com.mysql.cj.jdbc.util.TimeUtil.getCanonicalTimezone(TimeUtil.java:118)
        at com.mysql.cj.mysqla.MysqlaSession.configureTimezone(MysqlaSession.java:293)
        at com.mysql.cj.jdbc.ConnectionImpl.initializePropsFromServer(ConnectionImpl.java:2399)
        at com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:1739)
        at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:1596)
        ... 77 more
------
 
        at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
        at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
        at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
        at com.jolbox.bonecp.PoolUtil.generateSQLException(PoolUtil.java:192)
        at com.jolbox.bonecp.BoneCP.<init>(BoneCP.java:422)
        at com.jolbox.bonecp.BoneCPDataSource.getConnection(BoneCPDataSource.java:120)
        at org.datanucleus.store.rdbms.ConnectionFactoryImpl$ManagedConnectionImpl.getConnection(ConnectionFactoryImpl.java:483)
        at org.datanucleus.store.rdbms.RDBMSStoreManager.<init>(RDBMSStoreManager.java:296)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
        at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
        at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
        at org.datanucleus.plugin.NonManagedPluginRegistry.createExecutableExtension(NonManagedPluginRegistry.java:606)
        at org.datanucleus.plugin.PluginManager.createExecutableExtension(PluginManager.java:301)
        at org.datanucleus.NucleusContextHelper.createStoreManagerForProperties(NucleusContextHelper.java:133)
        at org.datanucleus.PersistenceNucleusContextImpl.initialise(PersistenceNucleusContextImpl.java:420)
        at org.datanucleus.api.jdo.JDOPersistenceManagerFactory.freezeConfiguration(JDOPersistenceManagerFactory.java:821)
        ... 58 more
Caused by: java.sql.SQLException: The server time zone value 'KST' is unrecognized or represents more than one time zone. You must configure either the server or JDBC driver (via the serverTimezone configuration property) to use a more specifc time zone value if you want to utilize time zone support.
        at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:545)
        at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:513)
        at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:505)
        at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:479)
        at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:489)
        at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:69)
        at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:1606)
        at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:633)
        at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:347)
        at com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:219)
        at java.sql.DriverManager.getConnection(DriverManager.java:664)
        at java.sql.DriverManager.getConnection(DriverManager.java:208)
        at com.jolbox.bonecp.BoneCP.obtainRawInternalConnection(BoneCP.java:361)
        at com.jolbox.bonecp.BoneCP.<init>(BoneCP.java:416)
        ... 70 more
Caused by: com.mysql.cj.core.exceptions.InvalidConnectionAttributeException: The server time zone value 'KST' is unrecognized or represents more than one time zone. You must configure either the server or JDBC driver (via the serverTimezone configuration property) to use a more specifc time zone value if you want to utilize time zone support.
        at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
        at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
        at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
        at com.mysql.cj.core.exceptions.ExceptionFactory.createException(ExceptionFactory.java:54)
        at com.mysql.cj.core.exceptions.ExceptionFactory.createException(ExceptionFactory.java:73)
        at com.mysql.cj.jdbc.util.TimeUtil.getCanonicalTimezone(TimeUtil.java:118)
        at com.mysql.cj.mysqla.MysqlaSession.configureTimezone(MysqlaSession.java:293)
        at com.mysql.cj.jdbc.ConnectionImpl.initializePropsFromServer(ConnectionImpl.java:2399)
        at com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:1739)
        at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:1596)
        ... 77 more
 
cs


2. hive-site.xml 파일에 아래와 같은 설정을 추가

1
2
3
4
5
6
7
8
9
<property>
        <name>datanucleus.autoCreateSchema</name>
        <value>false</value>
</property>
<property>
        <name>datanucleus.fixedDatastore</name>
        <value>true</value>
</property>
 
cs





hadoop 완전 분산 모드 

 



* Hadoop 설치

-> Hadoop 이 설치되어 있지 않은 경우 위의 "Hadoop 설치" 를 클릭하세요.


*. MySQL 설치

-> MySQL 이 설치되어 있지 않은 경우 위의 "MySQL 설치" 를 클릭하세요.



1. mysql 서버에 접속합니다.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
$ mysql -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.(Ubuntu)
 
Copyright (c) 20002017, 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.(Ubuntu)
 
Copyright (c) 20002017, 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, row affected (0.02 sec)
cs





1. hive 를 다운로드합니다.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
$ wget http://apache.mirror.cdnetworks.com/hive/hive-2.1.1/apache-hive-2.1.1-bin.tar.gz
--2017-10-13 18:06:32--  http://apache.mirror.cdnetworks.com/hive/hive-2.1.1/apache-hive-2.1.1-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: 149756462 (143M) [application/x-gzip]
Saving to: ‘apache-hive-2.1.1-bin.tar.gz’
 
apache-hive-2.1.1-bin.t  44%[===========>                 ]  63.87M   125KB/s    in 39s
 
2017-10-13 18:07:10 (1.66 MB/s) - Connection closed at byte 66975472. Retrying.
 
--2017-10-13 18:07:11--  (try: 2)  http://apache.mirror.cdnetworks.com/hive/hive-2.1.1/apache-hive-2.1.1-bin.tar.gz
Connecting to apache.mirror.cdnetworks.com (apache.mirror.cdnetworks.com)|14.0.101.165|:80... connected.
HTTP request sent, awaiting response... 206 Partial Content
Length: 149756462 (143M), 82780990 (79M) remaining [application/x-gzip]
Saving to: ‘apache-hive-2.1.1-bin.tar.gz’
 
apache-hive-2.1.1-bin.t 100%[++++++++++++================>] 142.82M  10.4MB/s    in 7.6s
 
2017-10-13 18:07:19 (10.4 MB/s) - ‘apache-hive-2.1.1-bin.tar.gz’ saved [149756462/149756462]
 
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
$ tar -xvzf ~/apache-hive-2.1.1-bin.tar.gz
apache-hive-2.1.1-bin/LICENSE
apache-hive-2.1.1-bin/NOTICE
apache-hive-2.1.1-bin/README.txt
apache-hive-2.1.1-bin/RELEASE_NOTES.txt
apache-hive-2.1.1-bin/examples/files/2000_cols_data.csv
apache-hive-2.1.1-bin/examples/files/agg_01-p1.txt
apache-hive-2.1.1-bin/examples/files/agg_01-p2.txt
apache-hive-2.1.1-bin/examples/files/agg_01-p3.txt
apache-hive-2.1.1-bin/examples/files/alltypes.txt
apache-hive-2.1.1-bin/examples/files/alltypes2.txt
apache-hive-2.1.1-bin/examples/files/apache.access.2.log
apache-hive-2.1.1-bin/examples/files/apache.access.log
apache-hive-2.1.1-bin/examples/files/archive_corrupt.rc
apache-hive-2.1.1-bin/examples/files/array_table.txt
apache-hive-2.1.1-bin/examples/files/avro_charvarchar.txt
apache-hive-2.1.1-bin/examples/files/avro_date.txt
apache-hive-2.1.1-bin/examples/files/avro_timestamp.txt
apache-hive-2.1.1-bin/examples/files/AvroPrimitiveInList.parquet
apache-hive-2.1.1-bin/examples/files/AvroSingleFieldGroupInList.parquet
apache-hive-2.1.1-bin/examples/files/binary.txt
apache-hive-2.1.1-bin/examples/files/bool.txt
apache-hive-2.1.1-bin/examples/files/bool_literal.txt
apache-hive-2.1.1-bin/examples/files/cbo_t1.txt
apache-hive-2.1.1-bin/examples/files/cbo_t2.txt
apache-hive-2.1.1-bin/examples/files/cbo_t3.txt
apache-hive-2.1.1-bin/examples/files/cbo_t4.txt
apache-hive-2.1.1-bin/examples/files/cbo_t5.txt
apache-hive-2.1.1-bin/examples/files/cbo_t6.txt
apache-hive-2.1.1-bin/examples/files/char_varchar_udf.txt
apache-hive-2.1.1-bin/examples/files/complex.seq
apache-hive-2.1.1-bin/examples/files/covar_tab.txt
apache-hive-2.1.1-bin/examples/files/create_nested_type.txt
apache-hive-2.1.1-bin/examples/files/csv.txt
apache-hive-2.1.1-bin/examples/files/ct_events_clean.txt
apache-hive-2.1.1-bin/examples/files/customer_address.txt
apache-hive-2.1.1-bin/examples/files/customers.txt
apache-hive-2.1.1-bin/examples/files/data_with_escape.txt
apache-hive-2.1.1-bin/examples/files/datatypes.txt
apache-hive-2.1.1-bin/examples/files/dec.avro
apache-hive-2.1.1-bin/examples/files/dec.parq
apache-hive-2.1.1-bin/examples/files/dec.txt
apache-hive-2.1.1-bin/examples/files/dec_comp.txt
apache-hive-2.1.1-bin/examples/files/dec_old.avro
apache-hive-2.1.1-bin/examples/files/decimal.txt
apache-hive-2.1.1-bin/examples/files/decimal_10_0.txt
apache-hive-2.1.1-bin/examples/files/decimal_1_1.txt
apache-hive-2.1.1-bin/examples/files/dept.txt
apache-hive-2.1.1-bin/examples/files/dim-data.txt
apache-hive-2.1.1-bin/examples/files/dim_shops.txt
apache-hive-2.1.1-bin/examples/files/doctors.avro
apache-hive-2.1.1-bin/examples/files/docurl.txt
apache-hive-2.1.1-bin/examples/files/double.txt
apache-hive-2.1.1-bin/examples/files/dynamic_partition_insert.txt
apache-hive-2.1.1-bin/examples/files/dynpart_test.txt
apache-hive-2.1.1-bin/examples/files/dynpartdata1.txt
apache-hive-2.1.1-bin/examples/files/dynpartdata2.txt
apache-hive-2.1.1-bin/examples/files/emp.txt
apache-hive-2.1.1-bin/examples/files/emp2.txt
apache-hive-2.1.1-bin/examples/files/employee.dat
apache-hive-2.1.1-bin/examples/files/employee2.dat
apache-hive-2.1.1-bin/examples/files/employee_part.txt
apache-hive-2.1.1-bin/examples/files/empty1.txt
apache-hive-2.1.1-bin/examples/files/empty2.txt
apache-hive-2.1.1-bin/examples/files/encoding-utf8.txt
apache-hive-2.1.1-bin/examples/files/encoding_iso-8859-1.txt
apache-hive-2.1.1-bin/examples/files/episodes.avro
apache-hive-2.1.1-bin/examples/files/escape_crlf.txt
apache-hive-2.1.1-bin/examples/files/escapetest.txt
apache-hive-2.1.1-bin/examples/files/extrapolate_stats_full.txt
apache-hive-2.1.1-bin/examples/files/extrapolate_stats_partial.txt
apache-hive-2.1.1-bin/examples/files/extrapolate_stats_partial_ndv.txt
apache-hive-2.1.1-bin/examples/files/fact-data.txt
apache-hive-2.1.1-bin/examples/files/flights_join.txt
apache-hive-2.1.1-bin/examples/files/flights_tiny.txt
apache-hive-2.1.1-bin/examples/files/flights_tiny.txt.1
apache-hive-2.1.1-bin/examples/files/futurama_episodes.avro
apache-hive-2.1.1-bin/examples/files/grad.avsc
apache-hive-2.1.1-bin/examples/files/groupby_groupingid.txt
apache-hive-2.1.1-bin/examples/files/grouping_sets.txt
apache-hive-2.1.1-bin/examples/files/grouping_sets1.txt
apache-hive-2.1.1-bin/examples/files/grouping_sets2.txt
apache-hive-2.1.1-bin/examples/files/hive_626_bar.txt
apache-hive-2.1.1-bin/examples/files/hive_626_count.txt
apache-hive-2.1.1-bin/examples/files/hive_626_foo.txt
apache-hive-2.1.1-bin/examples/files/HiveGroup.parquet
apache-hive-2.1.1-bin/examples/files/HiveRequiredGroupInList.parquet
apache-hive-2.1.1-bin/examples/files/in1.txt
apache-hive-2.1.1-bin/examples/files/in2.txt
apache-hive-2.1.1-bin/examples/files/in3.txt
apache-hive-2.1.1-bin/examples/files/in4.txt
apache-hive-2.1.1-bin/examples/files/in5.txt
apache-hive-2.1.1-bin/examples/files/in6.txt
apache-hive-2.1.1-bin/examples/files/in7.txt
apache-hive-2.1.1-bin/examples/files/in8.txt
apache-hive-2.1.1-bin/examples/files/in9.txt
apache-hive-2.1.1-bin/examples/files/in_file.dat
apache-hive-2.1.1-bin/examples/files/infer_const_type.txt
apache-hive-2.1.1-bin/examples/files/input.txt
apache-hive-2.1.1-bin/examples/files/int.txt
apache-hive-2.1.1-bin/examples/files/json.txt
apache-hive-2.1.1-bin/examples/files/keystore.jks
apache-hive-2.1.1-bin/examples/files/keystore_exampledotcom.jks
apache-hive-2.1.1-bin/examples/files/kv1.seq
apache-hive-2.1.1-bin/examples/files/kv1.string-sorted.txt
apache-hive-2.1.1-bin/examples/files/kv1.txt
apache-hive-2.1.1-bin/examples/files/kv1.val.sorted.txt
apache-hive-2.1.1-bin/examples/files/kv10.txt
apache-hive-2.1.1-bin/examples/files/kv1_broken.seq
apache-hive-2.1.1-bin/examples/files/kv1_cb.txt
apache-hive-2.1.1-bin/examples/files/kv1_cc.txt
apache-hive-2.1.1-bin/examples/files/kv1kv2.cogroup.txt
apache-hive-2.1.1-bin/examples/files/kv2.txt
apache-hive-2.1.1-bin/examples/files/kv3.txt
apache-hive-2.1.1-bin/examples/files/kv4.txt
apache-hive-2.1.1-bin/examples/files/kv5.txt
apache-hive-2.1.1-bin/examples/files/kv6.txt
apache-hive-2.1.1-bin/examples/files/kv7.txt
apache-hive-2.1.1-bin/examples/files/kv8.txt
apache-hive-2.1.1-bin/examples/files/kv9.txt
apache-hive-2.1.1-bin/examples/files/leftsemijoin_mr_t1.txt
apache-hive-2.1.1-bin/examples/files/leftsemijoin_mr_t2.txt
apache-hive-2.1.1-bin/examples/files/lineitem.txt
apache-hive-2.1.1-bin/examples/files/loc.txt
apache-hive-2.1.1-bin/examples/files/location.txt
apache-hive-2.1.1-bin/examples/files/lt100.sorted.txt
apache-hive-2.1.1-bin/examples/files/lt100.txt
apache-hive-2.1.1-bin/examples/files/lt100.txt.deflate
apache-hive-2.1.1-bin/examples/files/map_null_schema.avro
apache-hive-2.1.1-bin/examples/files/map_null_val.avro
apache-hive-2.1.1-bin/examples/files/map_table.txt
apache-hive-2.1.1-bin/examples/files/mapNull.txt
apache-hive-2.1.1-bin/examples/files/MultiFieldGroupInList.parquet
apache-hive-2.1.1-bin/examples/files/nested_complex.txt
apache-hive-2.1.1-bin/examples/files/nested_orders.txt
apache-hive-2.1.1-bin/examples/files/nestedcomplex_additional.txt
apache-hive-2.1.1-bin/examples/files/NestedMap.parquet
apache-hive-2.1.1-bin/examples/files/NewOptionalGroupInList.parquet
apache-hive-2.1.1-bin/examples/files/NewRequiredGroupInList.parquet
apache-hive-2.1.1-bin/examples/files/non_ascii_tbl.txt
apache-hive-2.1.1-bin/examples/files/null.txt
apache-hive-2.1.1-bin/examples/files/nullfile.txt
apache-hive-2.1.1-bin/examples/files/nulls.txt
apache-hive-2.1.1-bin/examples/files/opencsv-data.txt
apache-hive-2.1.1-bin/examples/files/orc_create.txt
apache-hive-2.1.1-bin/examples/files/orc_create_people.txt
apache-hive-2.1.1-bin/examples/files/orc_split_elim.orc
apache-hive-2.1.1-bin/examples/files/orders.txt
apache-hive-2.1.1-bin/examples/files/parquet_array_null_element.txt
apache-hive-2.1.1-bin/examples/files/parquet_columnar.txt
apache-hive-2.1.1-bin/examples/files/parquet_create.txt
apache-hive-2.1.1-bin/examples/files/parquet_external_time.parq
apache-hive-2.1.1-bin/examples/files/parquet_partitioned.txt
apache-hive-2.1.1-bin/examples/files/parquet_type_promotion.txt
apache-hive-2.1.1-bin/examples/files/parquet_types.txt
apache-hive-2.1.1-bin/examples/files/part.rc
apache-hive-2.1.1-bin/examples/files/part.seq
apache-hive-2.1.1-bin/examples/files/part_tiny.txt
apache-hive-2.1.1-bin/examples/files/person age.txt
apache-hive-2.1.1-bin/examples/files/person+age.txt
apache-hive-2.1.1-bin/examples/files/posexplode_data.txt
apache-hive-2.1.1-bin/examples/files/primitive_type_arrays.txt
apache-hive-2.1.1-bin/examples/files/ProxyAuth.res
apache-hive-2.1.1-bin/examples/files/pw17.txt
apache-hive-2.1.1-bin/examples/files/regex-path-2015-12-10_03.txt
apache-hive-2.1.1-bin/examples/files/regex-path-201512-10_03.txt
apache-hive-2.1.1-bin/examples/files/regex-path-2015121003.txt
apache-hive-2.1.1-bin/examples/files/sales.txt
apache-hive-2.1.1-bin/examples/files/same_type1_a.txt
apache-hive-2.1.1-bin/examples/files/same_type1_b.txt
apache-hive-2.1.1-bin/examples/files/same_type1_c.txt
apache-hive-2.1.1-bin/examples/files/sample-queryplan-in-history.txt
apache-hive-2.1.1-bin/examples/files/sample-queryplan.txt
apache-hive-2.1.1-bin/examples/files/sample.json
apache-hive-2.1.1-bin/examples/files/sample2.json
apache-hive-2.1.1-bin/examples/files/service_request_clean.txt
apache-hive-2.1.1-bin/examples/files/SingleFieldGroupInList.parquet
apache-hive-2.1.1-bin/examples/files/small_csv.csv
apache-hive-2.1.1-bin/examples/files/smallsrcsortbucket1outof4.txt
apache-hive-2.1.1-bin/examples/files/smallsrcsortbucket2outof4.txt
apache-hive-2.1.1-bin/examples/files/smallsrcsortbucket3outof4.txt
apache-hive-2.1.1-bin/examples/files/smallsrcsortbucket4outof4.txt
apache-hive-2.1.1-bin/examples/files/smb_bucket_input.rc
apache-hive-2.1.1-bin/examples/files/smb_bucket_input.txt
apache-hive-2.1.1-bin/examples/files/smbbucket_1.rc
apache-hive-2.1.1-bin/examples/files/smbbucket_1.txt
apache-hive-2.1.1-bin/examples/files/smbbucket_2.rc
apache-hive-2.1.1-bin/examples/files/smbbucket_2.txt
apache-hive-2.1.1-bin/examples/files/smbbucket_3.rc
apache-hive-2.1.1-bin/examples/files/smbbucket_3.txt
apache-hive-2.1.1-bin/examples/files/smbdata.txt
apache-hive-2.1.1-bin/examples/files/SortCol1Col2.txt
apache-hive-2.1.1-bin/examples/files/SortCol2Col1.txt
apache-hive-2.1.1-bin/examples/files/SortDescCol1Col2.txt
apache-hive-2.1.1-bin/examples/files/SortDescCol2Col1.txt
apache-hive-2.1.1-bin/examples/files/sortdp.txt
apache-hive-2.1.1-bin/examples/files/sour1.txt
apache-hive-2.1.1-bin/examples/files/sour2.txt
apache-hive-2.1.1-bin/examples/files/source.txt
apache-hive-2.1.1-bin/examples/files/srcbucket0.txt
apache-hive-2.1.1-bin/examples/files/srcbucket1.txt
apache-hive-2.1.1-bin/examples/files/srcbucket20.txt
apache-hive-2.1.1-bin/examples/files/srcbucket21.txt
apache-hive-2.1.1-bin/examples/files/srcbucket22.txt
apache-hive-2.1.1-bin/examples/files/srcbucket23.txt
apache-hive-2.1.1-bin/examples/files/srcsortbucket1outof4.txt
apache-hive-2.1.1-bin/examples/files/srcsortbucket2outof4.txt
apache-hive-2.1.1-bin/examples/files/srcsortbucket3outof4.txt
apache-hive-2.1.1-bin/examples/files/srcsortbucket4outof4.txt
apache-hive-2.1.1-bin/examples/files/store.txt
apache-hive-2.1.1-bin/examples/files/store_sales.txt
apache-hive-2.1.1-bin/examples/files/string.txt
apache-hive-2.1.1-bin/examples/files/StringMapOfOptionalIntArray.parquet
apache-hive-2.1.1-bin/examples/files/struct1_a.txt
apache-hive-2.1.1-bin/examples/files/struct1_b.txt
apache-hive-2.1.1-bin/examples/files/struct1_c.txt
apache-hive-2.1.1-bin/examples/files/struct2_a.txt
apache-hive-2.1.1-bin/examples/files/struct2_b.txt
apache-hive-2.1.1-bin/examples/files/struct2_c.txt
apache-hive-2.1.1-bin/examples/files/struct2_d.txt
apache-hive-2.1.1-bin/examples/files/struct3_a.txt
apache-hive-2.1.1-bin/examples/files/struct3_b.txt
apache-hive-2.1.1-bin/examples/files/struct3_c.txt
apache-hive-2.1.1-bin/examples/files/struct4_a.txt
apache-hive-2.1.1-bin/examples/files/struct4_b.txt
apache-hive-2.1.1-bin/examples/files/struct4_c.txt
apache-hive-2.1.1-bin/examples/files/symlink-with-regex.txt
apache-hive-2.1.1-bin/examples/files/symlink1.txt
apache-hive-2.1.1-bin/examples/files/symlink2.txt
apache-hive-2.1.1-bin/examples/files/T1.txt
apache-hive-2.1.1-bin/examples/files/T2.txt
apache-hive-2.1.1-bin/examples/files/T3.txt
apache-hive-2.1.1-bin/examples/files/tbl.txt
apache-hive-2.1.1-bin/examples/files/test.dat
apache-hive-2.1.1-bin/examples/files/test1.txt
apache-hive-2.1.1-bin/examples/files/test2.dat
apache-hive-2.1.1-bin/examples/files/text-en.txt
apache-hive-2.1.1-bin/examples/files/things.txt
apache-hive-2.1.1-bin/examples/files/things2.txt
apache-hive-2.1.1-bin/examples/files/ThriftPrimitiveInList.parquet
apache-hive-2.1.1-bin/examples/files/ThriftSingleFieldGroupInList.parquet
apache-hive-2.1.1-bin/examples/files/timestamps.txt
apache-hive-2.1.1-bin/examples/files/tiny_a.txt
apache-hive-2.1.1-bin/examples/files/tiny_b.txt
apache-hive-2.1.1-bin/examples/files/tjoin1.txt
apache-hive-2.1.1-bin/examples/files/tjoin2.txt
apache-hive-2.1.1-bin/examples/files/truststore.jks
apache-hive-2.1.1-bin/examples/files/ts_formats.txt
apache-hive-2.1.1-bin/examples/files/tsformat.json
apache-hive-2.1.1-bin/examples/files/type_evolution.avro
apache-hive-2.1.1-bin/examples/files/UnannotatedListOfGroups.parquet
apache-hive-2.1.1-bin/examples/files/UnannotatedListOfPrimitives.parquet
apache-hive-2.1.1-bin/examples/files/union_input.txt
apache-hive-2.1.1-bin/examples/files/union_non_nullable.txt
apache-hive-2.1.1-bin/examples/files/union_nullable.txt
apache-hive-2.1.1-bin/examples/files/unique_1.txt
apache-hive-2.1.1-bin/examples/files/unique_2.txt
apache-hive-2.1.1-bin/examples/files/UserVisits.dat
apache-hive-2.1.1-bin/examples/files/v1.txt
apache-hive-2.1.1-bin/examples/files/v2.txt
apache-hive-2.1.1-bin/examples/files/vc1.txt
apache-hive-2.1.1-bin/examples/files/windowing_distinct.txt
apache-hive-2.1.1-bin/examples/files/x.txt
apache-hive-2.1.1-bin/examples/files/y.txt
apache-hive-2.1.1-bin/examples/files/z.txt
apache-hive-2.1.1-bin/examples/queries/case_sensitivity.q
apache-hive-2.1.1-bin/examples/queries/cast1.q
apache-hive-2.1.1-bin/examples/queries/groupby1.q
apache-hive-2.1.1-bin/examples/queries/groupby2.q
apache-hive-2.1.1-bin/examples/queries/groupby3.q
apache-hive-2.1.1-bin/examples/queries/groupby4.q
apache-hive-2.1.1-bin/examples/queries/groupby5.q
apache-hive-2.1.1-bin/examples/queries/groupby6.q
apache-hive-2.1.1-bin/examples/queries/input1.q
apache-hive-2.1.1-bin/examples/queries/input2.q
apache-hive-2.1.1-bin/examples/queries/input20.q
apache-hive-2.1.1-bin/examples/queries/input3.q
apache-hive-2.1.1-bin/examples/queries/input4.q
apache-hive-2.1.1-bin/examples/queries/input5.q
apache-hive-2.1.1-bin/examples/queries/input6.q
apache-hive-2.1.1-bin/examples/queries/input7.q
apache-hive-2.1.1-bin/examples/queries/input8.q
apache-hive-2.1.1-bin/examples/queries/input9.q
apache-hive-2.1.1-bin/examples/queries/input_part1.q
apache-hive-2.1.1-bin/examples/queries/input_testsequencefile.q
apache-hive-2.1.1-bin/examples/queries/input_testxpath.q
apache-hive-2.1.1-bin/examples/queries/input_testxpath2.q
apache-hive-2.1.1-bin/examples/queries/join1.q
apache-hive-2.1.1-bin/examples/queries/join2.q
apache-hive-2.1.1-bin/examples/queries/join3.q
apache-hive-2.1.1-bin/examples/queries/join4.q
apache-hive-2.1.1-bin/examples/queries/join5.q
apache-hive-2.1.1-bin/examples/queries/join6.q
apache-hive-2.1.1-bin/examples/queries/join7.q
apache-hive-2.1.1-bin/examples/queries/join8.q
apache-hive-2.1.1-bin/examples/queries/sample1.q
apache-hive-2.1.1-bin/examples/queries/sample2.q
apache-hive-2.1.1-bin/examples/queries/sample3.q
apache-hive-2.1.1-bin/examples/queries/sample4.q
apache-hive-2.1.1-bin/examples/queries/sample5.q
apache-hive-2.1.1-bin/examples/queries/sample6.q
apache-hive-2.1.1-bin/examples/queries/sample7.q
apache-hive-2.1.1-bin/examples/queries/subq.q
apache-hive-2.1.1-bin/examples/queries/udf1.q
apache-hive-2.1.1-bin/examples/queries/udf4.q
apache-hive-2.1.1-bin/examples/queries/udf6.q
apache-hive-2.1.1-bin/examples/queries/udf_case.q
apache-hive-2.1.1-bin/examples/queries/udf_when.q
apache-hive-2.1.1-bin/examples/queries/union.q
apache-hive-2.1.1-bin/bin/ext/util/
apache-hive-2.1.1-bin/bin/beeline
apache-hive-2.1.1-bin/bin/beeline.cmd
apache-hive-2.1.1-bin/bin/ext/beeline.sh
apache-hive-2.1.1-bin/bin/ext/cleardanglingscratchdir.cmd
apache-hive-2.1.1-bin/bin/ext/cleardanglingscratchdir.sh
apache-hive-2.1.1-bin/bin/ext/cli.cmd
apache-hive-2.1.1-bin/bin/ext/cli.sh
apache-hive-2.1.1-bin/bin/ext/debug.cmd
apache-hive-2.1.1-bin/bin/ext/debug.sh
apache-hive-2.1.1-bin/bin/ext/hbaseimport.cmd
apache-hive-2.1.1-bin/bin/ext/hbaseimport.sh
apache-hive-2.1.1-bin/bin/ext/hbaseschematool.sh
apache-hive-2.1.1-bin/bin/ext/help.cmd
apache-hive-2.1.1-bin/bin/ext/help.sh
apache-hive-2.1.1-bin/bin/ext/hiveburninclient.sh
apache-hive-2.1.1-bin/bin/ext/hiveserver2.cmd
apache-hive-2.1.1-bin/bin/ext/hiveserver2.sh
apache-hive-2.1.1-bin/bin/ext/hplsql.sh
apache-hive-2.1.1-bin/bin/ext/hwi.cmd
apache-hive-2.1.1-bin/bin/ext/hwi.sh
apache-hive-2.1.1-bin/bin/ext/jar.cmd
apache-hive-2.1.1-bin/bin/ext/jar.sh
apache-hive-2.1.1-bin/bin/ext/lineage.cmd
apache-hive-2.1.1-bin/bin/ext/lineage.sh
apache-hive-2.1.1-bin/bin/ext/llap.sh
apache-hive-2.1.1-bin/bin/ext/llapdump.sh
apache-hive-2.1.1-bin/bin/ext/llapstatus.sh
apache-hive-2.1.1-bin/bin/ext/metastore.cmd
apache-hive-2.1.1-bin/bin/ext/metastore.sh
apache-hive-2.1.1-bin/bin/ext/metatool.sh
apache-hive-2.1.1-bin/bin/ext/orcfiledump.cmd
apache-hive-2.1.1-bin/bin/ext/orcfiledump.sh
apache-hive-2.1.1-bin/bin/ext/rcfilecat.cmd
apache-hive-2.1.1-bin/bin/ext/rcfilecat.sh
apache-hive-2.1.1-bin/bin/ext/schemaTool.cmd
apache-hive-2.1.1-bin/bin/ext/schemaTool.sh
apache-hive-2.1.1-bin/bin/ext/util/execHiveCmd.cmd
apache-hive-2.1.1-bin/bin/ext/util/execHiveCmd.sh
apache-hive-2.1.1-bin/bin/ext/version.sh
apache-hive-2.1.1-bin/bin/hive
apache-hive-2.1.1-bin/bin/hive-config.cmd
apache-hive-2.1.1-bin/bin/hive-config.sh
apache-hive-2.1.1-bin/bin/hive.cmd
apache-hive-2.1.1-bin/bin/hiveserver2
apache-hive-2.1.1-bin/bin/hplsql
apache-hive-2.1.1-bin/bin/hplsql.cmd
apache-hive-2.1.1-bin/bin/metatool
apache-hive-2.1.1-bin/bin/schematool
apache-hive-2.1.1-bin/scripts/llap/bin/llap-daemon-env.sh
apache-hive-2.1.1-bin/scripts/llap/bin/llapDaemon.sh
apache-hive-2.1.1-bin/scripts/llap/bin/runLlapDaemon.sh
apache-hive-2.1.1-bin/scripts/llap/sql/serviceCheckScript.sql
apache-hive-2.1.1-bin/scripts/llap/slider/llap.py
apache-hive-2.1.1-bin/scripts/llap/slider/package.py
apache-hive-2.1.1-bin/scripts/llap/slider/params.py
apache-hive-2.1.1-bin/scripts/llap/slider/templates.py
apache-hive-2.1.1-bin/scripts/metastore/upgrade/derby/
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mssql/
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mysql/
apache-hive-2.1.1-bin/scripts/metastore/upgrade/oracle/
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/
apache-hive-2.1.1-bin/scripts/metastore/upgrade/derby/001-HIVE-972.derby.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/derby/002-HIVE-1068.derby.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/derby/003-HIVE-675.derby.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/derby/004-HIVE-1364.derby.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/derby/005-HIVE-417.derby.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/derby/006-HIVE-1823.derby.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/derby/007-HIVE-78.derby.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/derby/008-HIVE-2246.derby.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/derby/008-REVERT-HIVE-2246.derby.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/derby/009-HIVE-2215.derby.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/derby/010-HIVE-3072.derby.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/derby/011-HIVE-3649.derby.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/derby/012-HIVE-1362.derby.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/derby/013-HIVE-3255.derby.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/derby/014-HIVE-3764.derby.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/derby/016-HIVE-6386.derby.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/derby/017-HIVE-6458.derby.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/derby/018-HIVE-6757.derby.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/derby/019-HIVE-7784.derby.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/derby/020-HIVE-9296.derby.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/derby/021-HIVE-11970.derby.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/derby/022-HIVE-11107.derby.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/derby/023-HIVE-12807.derby.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/derby/024-HIVE-12814.derby.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/derby/025-HIVE-12816.derby.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/derby/026-HIVE-12818.derby.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/derby/027-HIVE-12819.derby.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/derby/028-HIVE-12821.derby.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/derby/029-HIVE-12822.derby.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/derby/030-HIVE-12823.derby.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/derby/031-HIVE-12831.derby.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/derby/032-HIVE-12832.derby.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/derby/034-HIVE-13076.derby.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/derby/035-HIVE-13395.derby.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/derby/036-HIVE-13354.derby.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/derby/hive-schema-0.10.0.derby.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/derby/hive-schema-0.11.0.derby.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/derby/hive-schema-0.12.0.derby.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/derby/hive-schema-0.13.0.derby.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/derby/hive-schema-0.14.0.derby.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/derby/hive-schema-0.3.0.derby.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/derby/hive-schema-0.4.0.derby.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/derby/hive-schema-0.4.1.derby.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/derby/hive-schema-0.5.0.derby.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/derby/hive-schema-0.6.0.derby.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/derby/hive-schema-0.7.0.derby.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/derby/hive-schema-0.8.0.derby.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/derby/hive-schema-0.9.0.derby.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/derby/hive-schema-1.1.0.derby.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/derby/hive-schema-1.2.0.derby.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/derby/hive-schema-1.3.0.derby.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/derby/hive-schema-2.0.0.derby.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/derby/hive-schema-2.1.0.derby.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/derby/hive-txn-schema-0.13.0.derby.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/derby/hive-txn-schema-0.14.0.derby.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/derby/hive-txn-schema-1.3.0.derby.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/derby/hive-txn-schema-2.0.0.derby.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/derby/hive-txn-schema-2.1.0.derby.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/derby/README
apache-hive-2.1.1-bin/scripts/metastore/upgrade/derby/upgrade-0.10.0-to-0.11.0.derby.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/derby/upgrade-0.11.0-to-0.12.0.derby.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/derby/upgrade-0.12.0-to-0.13.0.derby.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/derby/upgrade-0.13.0-to-0.14.0.derby.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/derby/upgrade-0.14.0-to-1.1.0.derby.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/derby/upgrade-0.5.0-to-0.6.0.derby.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/derby/upgrade-0.6.0-to-0.7.0.derby.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/derby/upgrade-0.7.0-to-0.8.0.derby.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/derby/upgrade-0.8.0-to-0.9.0.derby.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/derby/upgrade-0.9.0-to-0.10.0.derby.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/derby/upgrade-1.1.0-to-1.2.0.derby.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/derby/upgrade-1.2.0-to-1.3.0.derby.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/derby/upgrade-1.2.0-to-2.0.0.derby.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/derby/upgrade-2.0.0-to-2.1.0.derby.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/derby/upgrade.order.derby
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mssql/001-HIVE-6862.mssql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mssql/002-HIVE-7784.mssql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mssql/003-HIVE-8239.mssql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mssql/004-HIVE-8550.mssql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mssql/005-HIVE-9296.mssql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mssql/006-HIVE-9456.mssql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mssql/007-HIVE-11970.mssql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mssql/008-HIVE-12807.mssql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mssql/009-HIVE-12814.mssql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mssql/010-HIVE-12816.mssql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mssql/011-HIVE-12818.mssql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mssql/012-HIVE-12819.mssql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mssql/013-HIVE-12821.mssql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mssql/014-HIVE-12822.mssql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mssql/015-HIVE-12823.mssql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mssql/016-HIVE-12831.mssql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mssql/017-HIVE-12832.mssql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mssql/019-HIVE-13076.mssql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mssql/020-HIVE-13395.mssql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mssql/021-HIVE-13354.mssql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mssql/hive-schema-0.11.0.mssql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mssql/hive-schema-0.12.0.mssql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mssql/hive-schema-0.13.0.mssql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mssql/hive-schema-0.14.0.mssql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mssql/hive-schema-1.1.0.mssql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mssql/hive-schema-1.2.0.mssql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mssql/hive-schema-1.3.0.mssql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mssql/hive-schema-2.0.0.mssql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mssql/hive-schema-2.1.0.mssql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mssql/hive-txn-schema-0.13.0.mssql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mssql/hive-txn-schema-0.14.0.mssql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mssql/pre-0-upgrade-0.12.0-to-0.13.0.mssql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mssql/pre-0-upgrade-0.13.0-to-0.14.0.mssql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mssql/pre-1-upgrade-0.12.0-to-0.13.0.mssql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mssql/pre-1-upgrade-0.13.0-to-0.14.0.mssql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mssql/README
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mssql/upgrade-0.12.0-to-0.13.0.mssql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mssql/upgrade-0.13.0-to-0.14.0.mssql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mssql/upgrade-0.14.0-to-1.1.0.mssql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mssql/upgrade-1.1.0-to-1.2.0.mssql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mssql/upgrade-1.2.0-to-1.3.0.mssql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mssql/upgrade-1.2.0-to-2.0.0.mssql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mssql/upgrade-2.0.0-to-2.1.0.mssql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mssql/upgrade.order.mssql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mysql/001-HIVE-972.mysql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mysql/002-HIVE-1068.mysql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mysql/003-HIVE-675.mysql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mysql/004-HIVE-1364.mysql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mysql/005-HIVE-417.mysql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mysql/006-HIVE-1823.mysql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mysql/007-HIVE-78.mysql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mysql/008-HIVE-2246.mysql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mysql/009-HIVE-2215.mysql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mysql/010-HIVE-3072.mysql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mysql/011-HIVE-3649.mysql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mysql/012-HIVE-1362.mysql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mysql/013-HIVE-3255.mysql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mysql/014-HIVE-3764.mysql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mysql/016-HIVE-6386.mysql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mysql/017-HIVE-6458.mysql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mysql/018-HIVE-6757.mysql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mysql/019-HIVE-7784.mysql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mysql/020-HIVE-9296.mysql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mysql/021-HIVE-7018.mysql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mysql/022-HIVE-11970.mysql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mysql/023-HIVE-12807.mysql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mysql/024-HIVE-12814.mysql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mysql/025-HIVE-12816.mysql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mysql/026-HIVE-12818.mysql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mysql/027-HIVE-12819.mysql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mysql/028-HIVE-12821.mysql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mysql/029-HIVE-12822.mysql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mysql/030-HIVE-12823.mysql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mysql/031-HIVE-12831.mysql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mysql/032-HIVE-12832.mysql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mysql/034-HIVE-13076.mysql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mysql/035-HIVE-13395.mysql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mysql/036-HIVE-13354.mysql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mysql/hive-schema-0.10.0.mysql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mysql/hive-schema-0.11.0.mysql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mysql/hive-schema-0.12.0.mysql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mysql/hive-schema-0.13.0.mysql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mysql/hive-schema-0.14.0.mysql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mysql/hive-schema-0.3.0.mysql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mysql/hive-schema-0.4.0.mysql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mysql/hive-schema-0.4.1.mysql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mysql/hive-schema-0.5.0.mysql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mysql/hive-schema-0.6.0.mysql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mysql/hive-schema-0.7.0.mysql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mysql/hive-schema-0.8.0.mysql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mysql/hive-schema-0.9.0.mysql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mysql/hive-schema-1.1.0.mysql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mysql/hive-schema-1.2.0.mysql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mysql/hive-schema-1.3.0.mysql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mysql/hive-schema-2.0.0.mysql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mysql/hive-schema-2.1.0.mysql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mysql/hive-txn-schema-0.13.0.mysql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mysql/hive-txn-schema-0.14.0.mysql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mysql/hive-txn-schema-1.3.0.mysql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mysql/hive-txn-schema-2.0.0.mysql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mysql/hive-txn-schema-2.1.0.mysql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mysql/README
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mysql/upgrade-0.10.0-to-0.11.0.mysql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mysql/upgrade-0.11.0-to-0.12.0.mysql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mysql/upgrade-0.12.0-to-0.13.0.mysql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mysql/upgrade-0.13.0-to-0.14.0.mysql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mysql/upgrade-0.14.0-to-1.1.0.mysql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mysql/upgrade-0.5.0-to-0.6.0.mysql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mysql/upgrade-0.6.0-to-0.7.0.mysql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mysql/upgrade-0.7.0-to-0.8.0.mysql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mysql/upgrade-0.8.0-to-0.9.0.mysql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mysql/upgrade-0.9.0-to-0.10.0.mysql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mysql/upgrade-1.1.0-to-1.2.0.mysql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mysql/upgrade-1.2.0-to-1.3.0.mysql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mysql/upgrade-1.2.0-to-2.0.0.mysql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mysql/upgrade-2.0.0-to-2.1.0.mysql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/mysql/upgrade.order.mysql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/oracle/010-HIVE-3072.oracle.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/oracle/011-HIVE-3649.oracle.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/oracle/012-HIVE-1362.oracle.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/oracle/013-HIVE-3255.oracle.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/oracle/014-HIVE-3764.oracle.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/oracle/016-HIVE-6386.oracle.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/oracle/017-HIVE-6458.oracle.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/oracle/018-HIVE-6757.oracle.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/oracle/019-HIVE-7118.oracle.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/oracle/020-HIVE-7784.oracle.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/oracle/021-HIVE-9296.oracle.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/oracle/022-HIVE-11970.oracle.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/oracle/023-HIVE-12807.oracle.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/oracle/024-HIVE-12814.oracle.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/oracle/025-HIVE-12816.oracle.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/oracle/026-HIVE-12818.oracle.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/oracle/027-HIVE-12819.oracle.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/oracle/028-HIVE-12821.oracle.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/oracle/029-HIVE-12822.oracle.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/oracle/030-HIVE-12823.oracle.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/oracle/031-HIVE-12381.oracle.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/oracle/032-HIVE-12832.oracle.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/oracle/034-HIVE-13076.oracle.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/oracle/035-HIVE-13395.oracle.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/oracle/036-HIVE-13354.oracle.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/oracle/hive-schema-0.10.0.oracle.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/oracle/hive-schema-0.11.0.oracle.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/oracle/hive-schema-0.12.0.oracle.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/oracle/hive-schema-0.13.0.oracle.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/oracle/hive-schema-0.14.0.oracle.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/oracle/hive-schema-0.9.0.oracle.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/oracle/hive-schema-1.1.0.oracle.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/oracle/hive-schema-1.2.0.oracle.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/oracle/hive-schema-1.3.0.oracle.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/oracle/hive-schema-2.0.0.oracle.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/oracle/hive-schema-2.1.0.oracle.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/oracle/hive-txn-schema-0.13.0.oracle.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/oracle/hive-txn-schema-0.14.0.oracle.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/oracle/hive-txn-schema-1.3.0.oracle.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/oracle/hive-txn-schema-2.0.0.oracle.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/oracle/hive-txn-schema-2.1.0.oracle.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/oracle/pre-0-upgrade-0.13.0-to-0.14.0.oracle.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/oracle/upgrade-0.10.0-to-0.11.0.mysql.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/oracle/upgrade-0.10.0-to-0.11.0.oracle.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/oracle/upgrade-0.11.0-to-0.12.0.oracle.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/oracle/upgrade-0.12.0-to-0.13.0.oracle.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/oracle/upgrade-0.13.0-to-0.14.0.oracle.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/oracle/upgrade-0.14.0-to-1.1.0.oracle.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/oracle/upgrade-0.9.0-to-0.10.0.oracle.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/oracle/upgrade-1.1.0-to-1.2.0.oracle.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/oracle/upgrade-1.2.0-to-1.3.0.oracle.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/oracle/upgrade-1.2.0-to-2.0.0.oracle.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/oracle/upgrade-2.0.0-to-2.1.0.oracle.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/oracle/upgrade.order.oracle
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/001-HIVE-972.postgres.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/002-HIVE-1068.postgres.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/003-HIVE-675.postgres.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/004-HIVE-1364.postgres.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/005-HIVE-417.postgres.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/006-HIVE-1823.postgres.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/007-HIVE-78.postgres.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/008-HIVE-2246.postgres.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/008-REVERT-HIVE-2246.postgres.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/009-HIVE-2215.postgres.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/010-HIVE-3072.postgres.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/011-HIVE-3649.postgres.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/012-HIVE-1362.postgres.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/013-HIVE-3255.postgres.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/014-HIVE-3764.postgres.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/016-HIVE-6386.postgres.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/017-HIVE-6458.postgres.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/018-HIVE-6757.postgres.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/019-HIVE-7784.postgres.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/020-HIVE-9296.postgres.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/021-HIVE-11970.postgres.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/022-HIVE-12807.postgres.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/023-HIVE-12814.postgres.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/024-HIVE-12816.postgres.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/025-HIVE-12818.postgres.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/026-HIVE-12819.postgres.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/027-HIVE-12821.postgres.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/028-HIVE-12822.postgres.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/029-HIVE-12823.postgres.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/030-HIVE-12831.postgres.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/031-HIVE-12832.postgres.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/033-HIVE-13076.postgres.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/034-HIVE-13395.postgres.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/035-HIVE-13354.postgres.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/hive-schema-0.10.0.postgres.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/hive-schema-0.11.0.postgres.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/hive-schema-0.12.0.postgres.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/hive-schema-0.13.0.postgres.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/hive-schema-0.14.0.postgres.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/hive-schema-0.3.0.postgres.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/hive-schema-0.4.0.postgres.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/hive-schema-0.4.1.postgres.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/hive-schema-0.5.0.postgres.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/hive-schema-0.6.0.postgres.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/hive-schema-0.7.0.postgres.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/hive-schema-0.8.0.postgres.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/hive-schema-0.9.0.postgres.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/hive-schema-1.1.0.postgres.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/hive-schema-1.2.0.postgres.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/hive-schema-1.3.0.postgres.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/hive-schema-2.0.0.postgres.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/hive-schema-2.1.0.postgres.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/hive-txn-schema-0.13.0.postgres.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/hive-txn-schema-0.14.0.postgres.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/hive-txn-schema-1.3.0.postgres.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/hive-txn-schema-2.0.0.postgres.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/hive-txn-schema-2.1.0.postgres.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/pre-0-upgrade-0.12.0-to-0.13.0.postgres.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/pre-0-upgrade-0.13.0-to-0.14.0.postgres.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/README
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/upgrade-0.10.0-to-0.11.0.postgres.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/upgrade-0.11.0-to-0.12.0.postgres.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/upgrade-0.12.0-to-0.13.0.postgres.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/upgrade-0.13.0-to-0.14.0.postgres.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/upgrade-0.14.0-to-1.1.0.postgres.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/upgrade-0.5.0-to-0.6.0.postgres.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/upgrade-0.6.0-to-0.7.0.postgres.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/upgrade-0.7.0-to-0.8.0.postgres.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/upgrade-0.8.0-to-0.9.0.postgres.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/upgrade-0.9.0-to-0.10.0.postgres.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/upgrade-1.1.0-to-1.2.0.postgres.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/upgrade-1.2.0-to-1.3.0.postgres.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/upgrade-1.2.0-to-2.0.0.postgres.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/upgrade-2.0.0-to-2.1.0.postgres.sql
apache-hive-2.1.1-bin/scripts/metastore/upgrade/postgres/upgrade.order.postgres
apache-hive-2.1.1-bin/conf/hive-default.xml.template
apache-hive-2.1.1-bin/conf/hive-env.sh.template
apache-hive-2.1.1-bin/conf/ivysettings.xml
apache-hive-2.1.1-bin/lib/php/ext/
apache-hive-2.1.1-bin/lib/php/ext/thrift_protocol/
apache-hive-2.1.1-bin/lib/php/ext/thrift_protocol/tags/
apache-hive-2.1.1-bin/lib/php/ext/thrift_protocol/tags/1.0.0/
apache-hive-2.1.1-bin/lib/php/packages/
apache-hive-2.1.1-bin/lib/php/packages/fb303/
apache-hive-2.1.1-bin/lib/php/protocol/
apache-hive-2.1.1-bin/lib/php/transport/
apache-hive-2.1.1-bin/lib/php/autoload.php
apache-hive-2.1.1-bin/lib/php/ext/thrift_protocol/config.m4
apache-hive-2.1.1-bin/lib/php/ext/thrift_protocol/php_thrift_protocol.cpp
apache-hive-2.1.1-bin/lib/php/ext/thrift_protocol/php_thrift_protocol.h
apache-hive-2.1.1-bin/lib/php/ext/thrift_protocol/tags/1.0.0/config.m4
apache-hive-2.1.1-bin/lib/php/ext/thrift_protocol/tags/1.0.0/php_thrift_protocol.cpp
apache-hive-2.1.1-bin/lib/php/ext/thrift_protocol/tags/1.0.0/php_thrift_protocol.h
apache-hive-2.1.1-bin/lib/php/packages/fb303/FacebookService.php
apache-hive-2.1.1-bin/lib/php/packages/fb303/fb303_types.php
apache-hive-2.1.1-bin/lib/php/protocol/TBinaryProtocol.php
apache-hive-2.1.1-bin/lib/php/protocol/TProtocol.php
apache-hive-2.1.1-bin/lib/php/Thrift.php
apache-hive-2.1.1-bin/lib/php/transport/TBufferedTransport.php
apache-hive-2.1.1-bin/lib/php/transport/TFramedTransport.php
apache-hive-2.1.1-bin/lib/php/transport/THttpClient.php
apache-hive-2.1.1-bin/lib/php/transport/TMemoryBuffer.php
apache-hive-2.1.1-bin/lib/php/transport/TNullTransport.php
apache-hive-2.1.1-bin/lib/php/transport/TPhpStream.php
apache-hive-2.1.1-bin/lib/php/transport/TSocket.php
apache-hive-2.1.1-bin/lib/php/transport/TSocketPool.php
apache-hive-2.1.1-bin/lib/php/transport/TTransport.php
apache-hive-2.1.1-bin/lib/php/packages/serde/org/
apache-hive-2.1.1-bin/lib/php/packages/serde/org/apache/
apache-hive-2.1.1-bin/lib/php/packages/serde/org/apache/hadoop/
apache-hive-2.1.1-bin/lib/php/packages/serde/org/apache/hadoop/hive/
apache-hive-2.1.1-bin/lib/php/packages/serde/org/apache/hadoop/hive/serde/
apache-hive-2.1.1-bin/lib/php/packages/serde/org/apache/hadoop/hive/serde/Types.php
apache-hive-2.1.1-bin/lib/php/packages/serde/Types.php
apache-hive-2.1.1-bin/lib/php/packages/hive_metastore/metastore/
apache-hive-2.1.1-bin/lib/php/packages/hive_metastore/metastore/ThriftHiveMetastore.php
apache-hive-2.1.1-bin/lib/php/packages/hive_metastore/metastore/Types.php
apache-hive-2.1.1-bin/lib/php/packages/queryplan/Types.php
apache-hive-2.1.1-bin/lib/py/fb303/
apache-hive-2.1.1-bin/lib/py/fb303_scripts/
apache-hive-2.1.1-bin/lib/py/thrift/
apache-hive-2.1.1-bin/lib/py/thrift/protocol/
apache-hive-2.1.1-bin/lib/py/thrift/reflection/
apache-hive-2.1.1-bin/lib/py/thrift/reflection/limited/
apache-hive-2.1.1-bin/lib/py/thrift/server/
apache-hive-2.1.1-bin/lib/py/thrift/transport/
apache-hive-2.1.1-bin/lib/py/fb303/__init__.py
apache-hive-2.1.1-bin/lib/py/fb303/constants.py
apache-hive-2.1.1-bin/lib/py/fb303/FacebookBase.py
apache-hive-2.1.1-bin/lib/py/fb303/FacebookService-remote
apache-hive-2.1.1-bin/lib/py/fb303/FacebookService.py
apache-hive-2.1.1-bin/lib/py/fb303/ttypes.py
apache-hive-2.1.1-bin/lib/py/fb303_scripts/__init__.py
apache-hive-2.1.1-bin/lib/py/fb303_scripts/fb303_simple_mgmt.py
apache-hive-2.1.1-bin/lib/py/thrift/__init__.py
apache-hive-2.1.1-bin/lib/py/thrift/protocol/__init__.py
apache-hive-2.1.1-bin/lib/py/thrift/protocol/fastbinary.c
apache-hive-2.1.1-bin/lib/py/thrift/protocol/TBinaryProtocol.py
apache-hive-2.1.1-bin/lib/py/thrift/protocol/TProtocol.py
apache-hive-2.1.1-bin/lib/py/thrift/reflection/__init__.py
apache-hive-2.1.1-bin/lib/py/thrift/reflection/limited/__init__.py
apache-hive-2.1.1-bin/lib/py/thrift/reflection/limited/constants.py
apache-hive-2.1.1-bin/lib/py/thrift/reflection/limited/ttypes.py
apache-hive-2.1.1-bin/lib/py/thrift/server/__init__.py
apache-hive-2.1.1-bin/lib/py/thrift/server/THttpServer.py
apache-hive-2.1.1-bin/lib/py/thrift/server/TNonblockingServer.py
apache-hive-2.1.1-bin/lib/py/thrift/server/TServer.py
apache-hive-2.1.1-bin/lib/py/thrift/Thrift.py
apache-hive-2.1.1-bin/lib/py/thrift/transport/__init__.py
apache-hive-2.1.1-bin/lib/py/thrift/transport/THttpClient.py
apache-hive-2.1.1-bin/lib/py/thrift/transport/TSocket.py
apache-hive-2.1.1-bin/lib/py/thrift/transport/TTransport.py
apache-hive-2.1.1-bin/lib/py/thrift/transport/TTwisted.py
apache-hive-2.1.1-bin/lib/py/thrift/TSCons.py
apache-hive-2.1.1-bin/lib/py/hive_serde/__init__.py
apache-hive-2.1.1-bin/lib/py/hive_serde/constants.py
apache-hive-2.1.1-bin/lib/py/hive_serde/ttypes.py
apache-hive-2.1.1-bin/lib/py/hive_metastore/__init__.py
apache-hive-2.1.1-bin/lib/py/hive_metastore/constants.py
apache-hive-2.1.1-bin/lib/py/hive_metastore/ThriftHiveMetastore-remote
apache-hive-2.1.1-bin/lib/py/hive_metastore/ThriftHiveMetastore.py
apache-hive-2.1.1-bin/lib/py/hive_metastore/ttypes.py
apache-hive-2.1.1-bin/lib/py/queryplan/__init__.py
apache-hive-2.1.1-bin/lib/py/queryplan/constants.py
apache-hive-2.1.1-bin/lib/py/queryplan/ttypes.py
apache-hive-2.1.1-bin/hcatalog/bin/common.sh
apache-hive-2.1.1-bin/hcatalog/bin/hcat
apache-hive-2.1.1-bin/hcatalog/bin/hcat.py
apache-hive-2.1.1-bin/hcatalog/bin/hcatcfg.py
apache-hive-2.1.1-bin/hcatalog/bin/templeton.cmd
apache-hive-2.1.1-bin/hcatalog/etc/hcatalog/jndi.properties
apache-hive-2.1.1-bin/hcatalog/etc/hcatalog/proto-hive-site.xml
apache-hive-2.1.1-bin/hcatalog/etc/webhcat/webhcat-default.xml
apache-hive-2.1.1-bin/hcatalog/etc/webhcat/webhcat-log4j2.properties
apache-hive-2.1.1-bin/hcatalog/libexec/hcat-config.sh
apache-hive-2.1.1-bin/hcatalog/sbin/hcat_server.py
apache-hive-2.1.1-bin/hcatalog/sbin/hcat_server.sh
apache-hive-2.1.1-bin/hcatalog/sbin/hcatcfg.py
apache-hive-2.1.1-bin/hcatalog/sbin/update-hcatalog-env.sh
apache-hive-2.1.1-bin/hcatalog/sbin/webhcat_config.sh
apache-hive-2.1.1-bin/hcatalog/sbin/webhcat_server.sh
apache-hive-2.1.1-bin/conf/hive-log4j2.properties.template
apache-hive-2.1.1-bin/conf/hive-exec-log4j2.properties.template
apache-hive-2.1.1-bin/conf/beeline-log4j2.properties.template
apache-hive-2.1.1-bin/conf/llap-daemon-log4j2.properties.template
apache-hive-2.1.1-bin/conf/llap-cli-log4j2.properties.template
apache-hive-2.1.1-bin/conf/parquet-logging.properties
apache-hive-2.1.1-bin/hcatalog/share/doc/hcatalog/README.txt
apache-hive-2.1.1-bin/lib/hive-common-2.1.1.jar
apache-hive-2.1.1-bin/lib/hive-shims-2.1.1.jar
apache-hive-2.1.1-bin/lib/hive-shims-common-2.1.1.jar
apache-hive-2.1.1-bin/lib/log4j-slf4j-impl-2.4.1.jar
apache-hive-2.1.1-bin/lib/log4j-api-2.4.1.jar
apache-hive-2.1.1-bin/lib/guava-14.0.1.jar
apache-hive-2.1.1-bin/lib/commons-lang-2.6.jar
apache-hive-2.1.1-bin/lib/libthrift-0.9.3.jar
apache-hive-2.1.1-bin/lib/httpclient-4.4.jar
apache-hive-2.1.1-bin/lib/httpcore-4.4.jar
apache-hive-2.1.1-bin/lib/commons-logging-1.2.jar
apache-hive-2.1.1-bin/lib/commons-codec-1.4.jar
apache-hive-2.1.1-bin/lib/curator-framework-2.6.0.jar
apache-hive-2.1.1-bin/lib/curator-client-2.6.0.jar
apache-hive-2.1.1-bin/lib/zookeeper-3.4.6.jar
apache-hive-2.1.1-bin/lib/jline-2.12.jar
apache-hive-2.1.1-bin/lib/netty-3.7.0.Final.jar
apache-hive-2.1.1-bin/lib/hive-shims-0.23-2.1.1.jar
apache-hive-2.1.1-bin/lib/guice-servlet-3.0.jar
apache-hive-2.1.1-bin/lib/guice-3.0.jar
apache-hive-2.1.1-bin/lib/javax.inject-1.jar
apache-hive-2.1.1-bin/lib/aopalliance-1.0.jar
apache-hive-2.1.1-bin/lib/protobuf-java-2.5.0.jar
apache-hive-2.1.1-bin/lib/commons-io-2.4.jar
apache-hive-2.1.1-bin/lib/activation-1.1.jar
apache-hive-2.1.1-bin/lib/jackson-jaxrs-1.9.2.jar
apache-hive-2.1.1-bin/lib/jackson-xc-1.9.2.jar
apache-hive-2.1.1-bin/lib/jersey-server-1.14.jar
apache-hive-2.1.1-bin/lib/asm-3.1.jar
apache-hive-2.1.1-bin/lib/commons-compress-1.9.jar
apache-hive-2.1.1-bin/lib/jetty-util-6.1.26.jar
apache-hive-2.1.1-bin/lib/jersey-client-1.9.jar
apache-hive-2.1.1-bin/lib/commons-cli-1.2.jar
apache-hive-2.1.1-bin/lib/commons-collections-3.2.2.jar
apache-hive-2.1.1-bin/lib/commons-httpclient-3.0.1.jar
apache-hive-2.1.1-bin/lib/junit-4.11.jar
apache-hive-2.1.1-bin/lib/hamcrest-core-1.3.jar
apache-hive-2.1.1-bin/lib/jetty-6.1.26.jar
apache-hive-2.1.1-bin/lib/hive-shims-scheduler-2.1.1.jar
apache-hive-2.1.1-bin/lib/hive-storage-api-2.1.1.jar
apache-hive-2.1.1-bin/lib/hive-orc-2.1.1.jar
apache-hive-2.1.1-bin/lib/jasper-compiler-5.5.23.jar
apache-hive-2.1.1-bin/lib/jasper-runtime-5.5.23.jar
apache-hive-2.1.1-bin/lib/commons-el-1.0.jar
apache-hive-2.1.1-bin/lib/gson-2.2.4.jar
apache-hive-2.1.1-bin/lib/curator-recipes-2.6.0.jar
apache-hive-2.1.1-bin/lib/jsr305-3.0.0.jar
apache-hive-2.1.1-bin/lib/snappy-0.2.jar
apache-hive-2.1.1-bin/lib/jetty-all-7.6.0.v20120127.jar
apache-hive-2.1.1-bin/lib/geronimo-jta_1.1_spec-1.1.1.jar
apache-hive-2.1.1-bin/lib/mail-1.4.1.jar
apache-hive-2.1.1-bin/lib/geronimo-jaspic_1.0_spec-1.0.jar
apache-hive-2.1.1-bin/lib/geronimo-annotation_1.0_spec-1.1.1.jar
apache-hive-2.1.1-bin/lib/asm-commons-3.1.jar
apache-hive-2.1.1-bin/lib/asm-tree-3.1.jar
apache-hive-2.1.1-bin/lib/javax.servlet-3.0.0.v201112011016.jar
apache-hive-2.1.1-bin/lib/joda-time-2.5.jar
apache-hive-2.1.1-bin/lib/log4j-1.2-api-2.4.1.jar
apache-hive-2.1.1-bin/lib/log4j-core-2.4.1.jar
apache-hive-2.1.1-bin/lib/log4j-web-2.4.1.jar
apache-hive-2.1.1-bin/lib/ant-1.9.1.jar
apache-hive-2.1.1-bin/lib/ant-launcher-1.9.1.jar
apache-hive-2.1.1-bin/lib/json-20090211.jar
apache-hive-2.1.1-bin/lib/metrics-core-3.1.0.jar
apache-hive-2.1.1-bin/lib/metrics-jvm-3.1.0.jar
apache-hive-2.1.1-bin/lib/metrics-json-3.1.0.jar
apache-hive-2.1.1-bin/lib/jackson-databind-2.4.2.jar
apache-hive-2.1.1-bin/lib/jackson-annotations-2.4.0.jar
apache-hive-2.1.1-bin/lib/jackson-core-2.4.2.jar
apache-hive-2.1.1-bin/lib/dropwizard-metrics-hadoop-metrics2-reporter-0.1.2.jar
apache-hive-2.1.1-bin/lib/hive-serde-2.1.1.jar
apache-hive-2.1.1-bin/lib/hive-service-rpc-2.1.1.jar
apache-hive-2.1.1-bin/lib/jsp-api-2.0.jar
apache-hive-2.1.1-bin/lib/servlet-api-2.4.jar
apache-hive-2.1.1-bin/lib/ant-1.6.5.jar
apache-hive-2.1.1-bin/lib/libfb303-0.9.3.jar
apache-hive-2.1.1-bin/lib/avro-1.7.7.jar
apache-hive-2.1.1-bin/lib/paranamer-2.3.jar
apache-hive-2.1.1-bin/lib/snappy-java-1.0.5.jar
apache-hive-2.1.1-bin/lib/opencsv-2.3.jar
apache-hive-2.1.1-bin/lib/parquet-hadoop-bundle-1.8.1.jar
apache-hive-2.1.1-bin/lib/hive-metastore-2.1.1.jar
apache-hive-2.1.1-bin/lib/javolution-5.5.1.jar
apache-hive-2.1.1-bin/lib/hbase-client-1.1.1.jar
apache-hive-2.1.1-bin/lib/hbase-annotations-1.1.1.jar
apache-hive-2.1.1-bin/lib/findbugs-annotations-1.3.9-1.jar
apache-hive-2.1.1-bin/lib/hbase-common-1.1.1.jar
apache-hive-2.1.1-bin/lib/hbase-protocol-1.1.1.jar
apache-hive-2.1.1-bin/lib/htrace-core-3.1.0-incubating.jar
apache-hive-2.1.1-bin/lib/netty-all-4.0.23.Final.jar
apache-hive-2.1.1-bin/lib/jcodings-1.0.8.jar
apache-hive-2.1.1-bin/lib/joni-2.1.2.jar
apache-hive-2.1.1-bin/lib/bonecp-0.8.0.RELEASE.jar
apache-hive-2.1.1-bin/lib/derby-10.10.2.0.jar
apache-hive-2.1.1-bin/lib/datanucleus-api-jdo-4.2.1.jar
apache-hive-2.1.1-bin/lib/datanucleus-core-4.1.6.jar
apache-hive-2.1.1-bin/lib/datanucleus-rdbms-4.1.7.jar
apache-hive-2.1.1-bin/lib/commons-pool-1.5.4.jar
apache-hive-2.1.1-bin/lib/commons-dbcp-1.4.jar
apache-hive-2.1.1-bin/lib/jdo-api-3.0.1.jar
apache-hive-2.1.1-bin/lib/jta-1.1.jar
apache-hive-2.1.1-bin/lib/javax.jdo-3.2.0-m3.jar
apache-hive-2.1.1-bin/lib/transaction-api-1.1.jar
apache-hive-2.1.1-bin/lib/antlr-runtime-3.4.jar
apache-hive-2.1.1-bin/lib/stringtemplate-3.2.1.jar
apache-hive-2.1.1-bin/lib/antlr-2.7.7.jar
apache-hive-2.1.1-bin/lib/tephra-api-0.6.0.jar
apache-hive-2.1.1-bin/lib/tephra-core-0.6.0.jar
apache-hive-2.1.1-bin/lib/guice-assistedinject-3.0.jar
apache-hive-2.1.1-bin/lib/fastutil-6.5.6.jar
apache-hive-2.1.1-bin/lib/twill-common-0.6.0-incubating.jar
apache-hive-2.1.1-bin/lib/twill-core-0.6.0-incubating.jar
apache-hive-2.1.1-bin/lib/twill-api-0.6.0-incubating.jar
apache-hive-2.1.1-bin/lib/twill-discovery-api-0.6.0-incubating.jar
apache-hive-2.1.1-bin/lib/twill-zookeeper-0.6.0-incubating.jar
apache-hive-2.1.1-bin/lib/twill-discovery-core-0.6.0-incubating.jar
apache-hive-2.1.1-bin/lib/tephra-hbase-compat-1.0-0.6.0.jar
apache-hive-2.1.1-bin/lib/hive-testutils-2.1.1.jar
apache-hive-2.1.1-bin/lib/tempus-fugit-1.1.jar
apache-hive-2.1.1-bin/lib/hive-exec-2.1.1.jar
apache-hive-2.1.1-bin/lib/hive-ant-2.1.1.jar
apache-hive-2.1.1-bin/lib/velocity-1.5.jar
apache-hive-2.1.1-bin/lib/hive-llap-tez-2.1.1.jar
apache-hive-2.1.1-bin/lib/hive-llap-client-2.1.1.jar
apache-hive-2.1.1-bin/lib/hive-llap-common-2.1.1.jar
apache-hive-2.1.1-bin/lib/commons-lang3-3.1.jar
apache-hive-2.1.1-bin/lib/ST4-4.0.4.jar
apache-hive-2.1.1-bin/lib/ivy-2.4.0.jar
apache-hive-2.1.1-bin/lib/apache-curator-2.6.0.pom
apache-hive-2.1.1-bin/lib/groovy-all-2.4.4.jar
apache-hive-2.1.1-bin/lib/calcite-core-1.6.0.jar
apache-hive-2.1.1-bin/lib/calcite-avatica-1.6.0.jar
apache-hive-2.1.1-bin/lib/calcite-linq4j-1.6.0.jar
apache-hive-2.1.1-bin/lib/eigenbase-properties-1.1.5.jar
apache-hive-2.1.1-bin/lib/janino-2.7.6.jar
apache-hive-2.1.1-bin/lib/commons-compiler-2.7.6.jar
apache-hive-2.1.1-bin/lib/pentaho-aggdesigner-algorithm-5.1.5-jhyde.jar
apache-hive-2.1.1-bin/lib/stax-api-1.0.1.jar
apache-hive-2.1.1-bin/lib/hive-service-2.1.1.jar
apache-hive-2.1.1-bin/lib/hive-llap-server-2.1.1.jar
apache-hive-2.1.1-bin/lib/slider-core-0.90.2-incubating.jar
apache-hive-2.1.1-bin/lib/jcommander-1.32.jar
apache-hive-2.1.1-bin/lib/jsp-api-2.1.jar
apache-hive-2.1.1-bin/lib/hbase-hadoop2-compat-1.1.1.jar
apache-hive-2.1.1-bin/lib/hbase-hadoop-compat-1.1.1.jar
apache-hive-2.1.1-bin/lib/commons-math-2.2.jar
apache-hive-2.1.1-bin/lib/metrics-core-2.2.0.jar
apache-hive-2.1.1-bin/lib/hbase-server-1.1.1.jar
apache-hive-2.1.1-bin/lib/hbase-procedure-1.1.1.jar
apache-hive-2.1.1-bin/lib/hbase-common-1.1.1-tests.jar
apache-hive-2.1.1-bin/lib/hbase-prefix-tree-1.1.1.jar
apache-hive-2.1.1-bin/lib/jetty-sslengine-6.1.26.jar
apache-hive-2.1.1-bin/lib/jsp-2.1-6.1.14.jar
apache-hive-2.1.1-bin/lib/jsp-api-2.1-6.1.14.jar
apache-hive-2.1.1-bin/lib/servlet-api-2.5-6.1.14.jar
apache-hive-2.1.1-bin/lib/jamon-runtime-2.3.1.jar
apache-hive-2.1.1-bin/lib/disruptor-3.3.0.jar
apache-hive-2.1.1-bin/lib/jpam-1.1.jar
apache-hive-2.1.1-bin/lib/hive-jdbc-2.1.1.jar
apache-hive-2.1.1-bin/lib/hive-beeline-2.1.1.jar
apache-hive-2.1.1-bin/lib/super-csv-2.2.0.jar
apache-hive-2.1.1-bin/lib/hive-cli-2.1.1.jar
apache-hive-2.1.1-bin/lib/hive-contrib-2.1.1.jar
apache-hive-2.1.1-bin/lib/hive-hbase-handler-2.1.1.jar
apache-hive-2.1.1-bin/lib/hbase-hadoop2-compat-1.1.1-tests.jar
apache-hive-2.1.1-bin/lib/hive-hwi-2.1.1.jar
apache-hive-2.1.1-bin/lib/jetty-all-server-7.6.0.v20120127.jar
apache-hive-2.1.1-bin/lib/hive-accumulo-handler-2.1.1.jar
apache-hive-2.1.1-bin/lib/accumulo-core-1.6.0.jar
apache-hive-2.1.1-bin/lib/accumulo-fate-1.6.0.jar
apache-hive-2.1.1-bin/lib/accumulo-start-1.6.0.jar
apache-hive-2.1.1-bin/lib/commons-vfs2-2.0.jar
apache-hive-2.1.1-bin/lib/maven-scm-api-1.4.jar
apache-hive-2.1.1-bin/lib/plexus-utils-1.5.6.jar
apache-hive-2.1.1-bin/lib/maven-scm-provider-svnexe-1.4.jar
apache-hive-2.1.1-bin/lib/maven-scm-provider-svn-commons-1.4.jar
apache-hive-2.1.1-bin/lib/regexp-1.3.jar
apache-hive-2.1.1-bin/lib/accumulo-trace-1.6.0.jar
apache-hive-2.1.1-bin/lib/hive-llap-ext-client-2.1.1.jar
apache-hive-2.1.1-bin/lib/hive-hplsql-2.1.1.jar
apache-hive-2.1.1-bin/lib/antlr4-runtime-4.5.jar
apache-hive-2.1.1-bin/lib/org.abego.treelayout.core-1.0.1.jar
apache-hive-2.1.1-bin/jdbc/hive-jdbc-2.1.1-standalone.jar
apache-hive-2.1.1-bin/hcatalog/share/hcatalog/hive-hcatalog-streaming-2.1.1.jar
apache-hive-2.1.1-bin/hcatalog/share/hcatalog/hive-hcatalog-core-2.1.1.jar
apache-hive-2.1.1-bin/hcatalog/share/hcatalog/hive-hcatalog-pig-adapter-2.1.1.jar
apache-hive-2.1.1-bin/hcatalog/share/hcatalog/hive-hcatalog-server-extensions-2.1.1.jar
apache-hive-2.1.1-bin/hcatalog/share/webhcat/svr/lib/jersey-json-1.14.jar
apache-hive-2.1.1-bin/hcatalog/share/webhcat/svr/lib/jettison-1.1.jar
apache-hive-2.1.1-bin/hcatalog/share/webhcat/svr/lib/jaxb-impl-2.2.3-1.jar
apache-hive-2.1.1-bin/hcatalog/share/webhcat/svr/lib/jackson-core-asl-1.9.2.jar
apache-hive-2.1.1-bin/hcatalog/share/webhcat/svr/lib/jersey-core-1.14.jar
apache-hive-2.1.1-bin/hcatalog/share/webhcat/svr/lib/hive-webhcat-2.1.1.jar
apache-hive-2.1.1-bin/hcatalog/share/webhcat/svr/lib/jersey-servlet-1.14.jar
apache-hive-2.1.1-bin/hcatalog/share/webhcat/svr/lib/wadl-resourcedoc-doclet-1.4.jar
apache-hive-2.1.1-bin/hcatalog/share/webhcat/svr/lib/commons-exec-1.1.jar
apache-hive-2.1.1-bin/hcatalog/share/webhcat/svr/lib/jul-to-slf4j-1.7.10.jar
apache-hive-2.1.1-bin/hcatalog/share/webhcat/java-client/hive-webhcat-java-client-2.1.1.jar
 
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 디렉토리 이하에 있습니다.


6-2. .bashrc 파일의 하단에 다음와 같이 추가 후 저장합니다.
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+/tmp
cs


8-2. /user/hive/warehouse

1
$ hdfs dfs -chmod g+/user/hive/warehouse
cs



9. mysql jdbc 를 다운로드합니다.

1
2
3
4
5
6
7
8
9
10
11
12
$ wget http://repo.maven.apache.org/maven2/mysql/mysql-connector-java/6.0.6/mysql-connector-java-6.0.6.jar
--2017-10-13 18:20:57--  http://repo.maven.apache.org/maven2/mysql/mysql-connector-java/6.0.6/mysql-connector-java-6.0.6.jar
Resolving repo.maven.apache.org (repo.maven.apache.org)... 151.101.40.215
Connecting to repo.maven.apache.org (repo.maven.apache.org)|151.101.40.215|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 2001778 (1.9M) [application/java-archive]
Saving to: ‘mysql-connector-java-6.0.6.jar’
 
mysql-connector-java-6. 100%[============================>]   1.91M  30.0KB/s    in 3m 22s
 
2017-10-13 18:24:20 (9.70 KB/s) - ‘mysql-connector-java-6.0.6.jar’ saved [2001778/2001778]
 
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
3
$ mysql -u hive -p hive < /usr/local/hive/scripts/metastore/upgrade/mysql/hive-schema-2.1.0.mysql.sql
Enter password:
 
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
$ ./bin/hive --service metastore &
[1] 8095
hadoop-user@master:/usr/local/hive$ Starting Hive Metastore Server
SLF4J: Class path contains multiple SLF4J bindings.
SLF4J: Found binding in [jar:file:/usr/local/apache-hive-2.1.1-bin/lib/log4j-slf4j-impl-2.4.1.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]
 
cs



23. hive 에 접속합니다.

1
2
3
4
5
6
7
8
9
10
$ /usr/local/hive/bin/hive
SLF4J: Class path contains multiple SLF4J bindings.
SLF4J: Found binding in [jar:file:/usr/local/apache-hive-2.1.1-bin/lib/log4j-slf4j-impl-2.4.1.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 file:/usr/local/apache-hive-2.1.1-bin/conf/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.
 
cs

* "HIVE_HOME = /usr/local/apache-hive-2.1.1-bin" 와 같습니다.

* hadoop 관련 서비스가 먼저 실행되어 있어야 합니다.



24. hive 정상 동작 여부 확인

24-1. databases

1
2
3
4
5
hive> show databases;
OK
default
Time taken: 3.065 seconds
 
cs


24-2. tables

1
2
3
4
hive> show tables;
OK
Time taken: 0.018 seconds
 
cs



+ Recent posts