Member since
12-15-2016
54
Posts
4
Kudos Received
1
Solution
My Accepted Solutions
Title | Views | Posted |
---|---|---|
1432 | 01-19-2017 07:24 PM |
05-22-2018
09:57 PM
1 Kudo
@Ivan Majnaric Nothing should happen. Your spark application will continue running and you will be still be able to submit applications. You will loose access to the spark history ui of course. HTH *** If you found this answer addressed your question, please take a moment to login and click the "accept" link on the answer.
... View more
09-04-2018
06:12 PM
You seem to be hitting the open file handles limit of your user. This is a pretty common issue, and can be cleared in most cases by increasing the ulimit values (its mostly 1024 by default, easily exhaustible by multi-out jobs like yours). You can follow this short guide to increase it: http://blog.cloudera.com/blog/2009/03/configuration-parameters-what-can-you-just-ignore/ [The section "File descriptor limits"]
... View more
01-31-2018
05:22 PM
In the RM UI, you can click on the app id link for a spark job and follow the app-attempt link and then click on the logs link against the first container (typically the one ending with 0001). Check the AM logs there and see what you find.
... View more
10-16-2017
06:49 PM
@Ivan Majnaric, There is no harm in running sqlline.py again. Actually it is a client to query phoenix. It will create the SYSTEM tables if not already created. You can check this answer by Josh in the link. https://community.hortonworks.com/questions/64005/phoenix-security-and-initial-system-table-creation.html If this works for you please mark the answer as accepted so that it will be useful for the community. Thanks, Aditya
... View more
06-12-2017
09:02 PM
5 Kudos
@Ivan Majnaric - I think you accidentally posted the same question twice: https://community.hortonworks.com/questions/107268/yarn-threshold-error.html
... View more
03-21-2017
11:38 AM
@Constantin Stanca Do you know anything about new HDP 2.6 release date?
... View more
01-19-2017
07:24 PM
This is an answer is someone will deal with this: First connect with zkCLi bin/zkCli.sh -server server:port afterwards find the path you need. I needed /brokers file and than if you want to delete it enter thi $ ls /brokers
$ rmr /brokers
... View more
12-16-2016
07:06 PM
2 Kudos
There's your problem: drwxr-xr-x. 10 500 500 4096 Dec 14 11:28 spark2-client
Directories are not allowed in there. If you remove this it will fix the problem
... View more