Member since
11-02-2016
9
Posts
2
Kudos Received
0
Solutions
03-26-2017
03:31 AM
Please try to create view with database name parameter as below, instead of default database. CREATE VIEW database.news_split AS
SELECT company, nof_lines, title,
author, nof_words, keydate,
publisher, w.word
FROM database.news
LATERAL VIEW EXPLODE(words) W AS WORD;
... View more
12-22-2016
05:28 PM
1 Kudo
@Sebastian Hätälä Were you able to resolve this, what is the version of hive-jdbc, hadoop-common and hive-shims are you using ? java.lang.NoSuchMethodError: org.apache.commons.lang3.StringUtils.isAnyEmpty Sounds like issue with some jar version. I use following as dependencies; let me know if this works. org.apache.hive:hive-jdbc:2.0.1 org.apache.hadoop:hadoop-common:2.7.2 org.apache.hive.shims:hive-shims-0.23:2.1.0
... View more