Member since
11-04-2016
74
Posts
16
Kudos Received
7
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
3167 | 02-28-2019 03:22 AM | |
2829 | 02-01-2019 01:15 AM | |
4066 | 04-16-2018 03:38 AM | |
32340 | 09-16-2017 04:36 AM | |
8979 | 09-11-2017 02:43 PM |
03-05-2024
12:14 PM
@lv_antel Welcome to the Cloudera Community! 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. Thanks.
... View more
09-17-2022
12:02 PM
Hi, The solution to the problem is to set the following parameters in zeppelin-site.xml <property> <name>zeppelin.interpreter.lifecyclemanager.class</name> <value>org.apache.zeppelin.interpreter.lifecycle.TimeoutLifecycleManager</value> <description>LifecycleManager class for managing the lifecycle of interpreters, by default interpreter will be closed after timeout</description> </property> <property> <name>zeppelin.interpreter.lifecyclemanager.timeout.checkinterval</name> <value>360000</value> <description>milliseconds of the interval to checking whether interpreter is time out</description> </property> <property> <name>zeppelin.interpreter.lifecyclemanager.timeout.threshold</name> <value>3600000</value> <description>milliseconds of the interpreter timeout threshold, by default it is 1 hour</description> </property> Best Regards Dariusz Jezierski
... View more
06-28-2019
01:35 AM
1 Kudo
Setting a limit to -1 is not recommended as it could have a severe performance impact. It is better to set it to the value that may resolve your issue. Or it is suggested to change the value to default again once you are done with your job. It will make Hue Server slow or process exited with out of memory issues, and the root cause is mostly downloading large files. The following options currently exist for downloading files through the Impala and Hive editors: Use XLS if result set is <= 30K rows Use CSV if result set is > 30K rows Use Hue Safety Valve for CSV if result set > 1M rows (default). While this limitation can be bypassed, doing so may have a negative impact on performance. From Cloudera Manager, navigate toHue > Configuration > Service-Wide > Advanced > Hue Server Advanced Configuration Snippet (Safety Value) for hue_safety_valve_server.ini Regards, Tarun Jangid
... View more
06-14-2019
03:39 AM
The Spark 2 now is the only Spark that is supported by CDH 6.x so I am not sure you will get any reply here. Is there any reason you are still in Spark 1.6.x?
... View more
04-10-2019
04:30 AM
1 Kudo
put it at the end of $PATH .....
... View more
02-28-2019
03:22 AM
1 Kudo
Sorry I forgot about this issue. I solved this by reading the error logs and fixing my NTP communication. The problem was not related to 6.1 or upgrading from 5.16.1 to 6.x so I am going to say it was as usual related to Time/Date/NTP.
... View more
02-03-2019
04:37 PM
Hi, I am not expert on administrating Cloudera, but from existing Express docker image found i upgraded to latest 5.*. I created this docker image as kind of base for new project development. https://cloud.docker.com/u/archenroot/repository/docker/archenroot/cloudera-cdap-jdk8 What could be the right steps to upgrade this image to 6.*? @maziyar - if you are willing to help, I can add you as collaborator in dockerhub...
... View more
02-01-2019
01:13 AM
Hi Nick, That would be great! Thank you so much for your time and helping me in this matter, I really appreciate it 🙂
... View more
01-17-2019
12:53 PM
Hello, Yes, adding search to blacklist did resolve the issue. I still don't know where the solr_url is coming without ever installing it but the issue has been resolved. Many thanks.
... View more
01-14-2019
11:27 PM
You'd need to shade commons-lang3 before for Zeppelin build. This might be the only quick fix. You'd need first to determine which interpreter has commons-lang3 dependency, and then adjust that zeppelin interpreter's pom.xml accordingly.
... View more