Member since
04-25-2016
579
Posts
609
Kudos Received
111
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
2357 | 02-12-2020 03:17 PM | |
1642 | 08-10-2017 09:42 AM | |
11212 | 07-28-2017 03:57 AM | |
2681 | 07-19-2017 02:43 AM | |
1983 | 07-13-2017 11:42 AM |
06-07-2016
07:06 AM
@nyadav not much popular but hive has storage handler for mongodb and cassandra https://github.com/mongodb/mongo-hadoop/wiki/Hive-Usage https://github.com/tuplejump/cash/tree/master/cassandra-handler
... View more
06-07-2016
06:38 AM
@Roberto Sancho There is a distinction between table metadata and table data. table metadata is stored in hive metastore.if you want to cache the hive meta into drill then for defined hive.metastore.cache-ttl-seconds your meta data will be cache. you are able to see the new inserted data into the table until you alter the table. as soon as you alter the table your metastore will be updated with the new table structure but your drill cache will have old entries only and you will not see new table data.
... View more
06-07-2016
06:29 AM
5 Kudos
@nyadav no Hive don't have capability to query other data source until its storage handler is defined. hive has concept of native and non native tables, for native tables it know how to manage it but for non native table it dont have a capability until it has not storage handler. to know more of storage handler you can refer this doc https://cwiki.apache.org/confluence/display/Hive/StorageHandlers
... View more
06-07-2016
05:38 AM
@Roberto Sancho yes, please change the table DDL and use insert overwrite to insert the data again.
... View more
06-07-2016
05:35 AM
@Roberto Sancho the configuration looks gud,if you want to cache hive meta for longer period of time you can increase the hive.metastore.cache-ttl-seconds value.
... View more
06-06-2016
02:40 PM
1 Kudo
@Hemalatha Panneerselvam is this what you looking for SELECT
count(col_name)
FROM
table where col_name like '%http%' having count(col_name) >=3
... View more
06-06-2016
10:44 AM
3 Kudos
if your external table is pointing to some location in hdfs and you are putting more csv data on table location which has same schema as of defined table then hive will take care of new data automatically.
... View more
06-06-2016
07:24 AM
2 Kudos
I will suggest you to try nifi PutHDFS, more on this you can find here https://community.hortonworks.com/articles/7999/apache-nifi-part-1-introduction.html
... View more
06-05-2016
09:29 AM
@Roberto Sancho I could not get your question here, could you please elobarate what you are asking?
... View more
06-05-2016
06:26 AM
2 Kudos
it looks that atlas hook is enabled in your sandbox, could you please check your hive-site.xml change hive.exec.post.hooks as follows if you dont want to use atlas hooks from <property>
<name>hive.exec.post.hooks</name>
<value>org.apache.hadoop.hive.ql.hooks.ATSHook, org.apache.atlas.hive.hook.HiveHook</value>
</property> to <property>
<name>hive.exec.post.hooks</name>
<value>org.apache.hadoop.hive.ql.hooks.ATSHook</value>
</property>
... View more