Member since
11-30-2015
39
Posts
23
Kudos Received
3
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
1086 | 03-11-2016 07:31 PM | |
6012 | 12-17-2015 12:33 AM | |
1285 | 12-16-2015 10:46 PM |
12-08-2022
11:04 PM
@mattarellano, as this is an older post, you would have a better chance of receiving a resolution by starting a new thread. This will also be an opportunity to provide details specific to your environment that could aid others in assisting you with a more accurate answer to your question. You can link this thread as a reference in your new post.
... View more
02-25-2017
04:17 AM
1 Kudo
I have not tried this hive.server2.idle.operation.timeoutWith hive.server2.session.check.interval set to a positive time value, operation will be closed when it's not accessed for this duration of time, which can be disabled by setting to zero value.
With positive value, it's checked for operations in terminal state only (FINISHED, CANCELED, CLOSED, ERROR).
With negative value, it's checked for all of the operations regardless of state. hive.server2.idle.session.timeoutWith hive.server2.session.check.interval set to a positive time value, session will be closed when it's not accessed for this duration of time, which can be disabled by setting to zero or negative value. and if it was metastore issue, did you try: hive.metastore.client.socket.timeoutMetaStore Client socket timeout in seconds.
... View more
11-26-2016
11:16 AM
I had the same problem that dependencies got into conflict. I used Maven shade plugin to relocate all my dependencies. https://maven.apache.org/components/plugins/maven-shade-plugin/examples/class-relocation.html
... View more
03-11-2016
07:31 PM
2 Kudos
I should have done a bit more research... this is a problem in Storm 0.10, but it looks like the upcoming Storm 1.0 release will handle this situation by allowing properties to be passed directly to the Kafka Bolt instead of indirectly through the Topology configuration: https://github.com/apache/storm/blob/master/external/storm-kafka/src/jvm/org/apache/storm/kafka/bolt/KafkaBolt.java#L87-L90
... View more
03-02-2016
11:22 PM
2 Kudos
Thought that it was HIVE-12450 OrcFileMergeOperator does not use correct compression buffer size. But perhaps there is still a problem here.
... View more
02-19-2016
12:01 PM
@Aaron Dossett: Please review below link. https://cwiki.apache.org/confluence/display/AMBARI/Ambari+Metrics+API+specification
... View more
05-14-2018
09:23 PM
To keep us on our toes!
... View more
02-09-2016
04:42 PM
https://community.hortonworks.com/questions/15422/hive-and-avro-schema-defined-in-tblproperties-vs-s.html
... View more
01-14-2016
04:20 AM
2 Kudos
Also works with Ambari-2.0.x, we have a few "small" clusters running only Kafka, ZooKeeper and Flume.
... View more
12-17-2015
12:33 AM
1 Kudo
To answer my own question, the oozie user mailing list led me to this option within the java action configuration: <property>
<name>oozie.launcher.mapreduce.user.classpath.first</name>
<value>true</value>
</property>
https://mail-archives.apache.org/mod_mbox/oozie-us... See also OOZIE-2066: https://issues.apache.org/jira/browse/OOZIE-2066
... View more