Member since
02-04-2016
132
Posts
52
Kudos Received
7
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
6460 | 07-25-2018 10:53 AM | |
1840 | 07-25-2018 05:15 AM | |
1903 | 10-03-2017 12:08 PM | |
3212 | 04-04-2017 05:36 AM | |
3503 | 11-29-2016 05:40 PM |
10-03-2017
12:08 PM
Problem solved! In case anyone else encounters the following: 1. Servers losing heartbeat for no reason 2. ambari agent always hogs 100% cpu 3. running "yarn application -list" produces results but slow than other servers. 4. In general the server is slow The fix was to set the CPU in BIOS to use profile "maximum performance" For some reason the server was set (in our case DELL, but it is in every BIOS out there) to default CPU profile which means low resources for low voltage use.
... View more
05-03-2017
08:58 AM
@Adi Jabkowsky This did the trick! Thank you. Now it works.
... View more
12-13-2016
04:44 PM
After running ambari-server setup --jdbc-db=mysql --jdbc-driver=/usr/share/java/mysql-connector-java.jar Everything works - restart & service check ! Thank you so much !
... View more
11-29-2016
05:40 PM
Found the problem. Investigating the hiveserver2.log showed that rangerlogger failed to flush data to the db due to permission problem (Internal Exception: java.sql.SQLException: Access denied for user 'rangerlogger'@'<server>' (using password: YES)
Error Code: 1045) After granting the permissions it flushed the data successfully. Now i just need to figure out what caused the loss of permissions and how the hell it is related to the server reboot.... Thanks for all your help !
... View more
02-09-2017
09:01 AM
1. I'm have upgraded to HDP-2.5.3.0 with Ranger 0.6.0.2.5 1-2 months ago.
I have the same issue with users=external and groups=internal, and unfortunately I don't have access to the jira.com link.
Should I do anything for this to start working normally ? 2. Users "First Name", "Last Name" and "Email" + Groups "Description" is not synced correctly - where do I change this ? 3. Filters on User + Group sync doesn't seem to have effect eventhough I have configured: - User Config -> User Search Filter: "membersOf=CN=<GROUP>,OU=<OU1>,OU=<OU2>,DC=<DC1>,DC=<DC2>" - Group Configs -> Group Search Filter: "CN=<PART_OF_GROUP*>" Perhaps these are all related... otherwise just disregard question 2+3 🙂 Thanks in advance 🙂 !
... View more
01-25-2017
12:36 PM
@suresh krish Also make sure that rangerlogger user has permissions to connect from the second hive server (in the Ranger's DB... the default is mysql). The best way to do it is to try to connect to mysql on the first hive server from the second server using:
mysql -u rangerlogger -p -h <second hive server> If permissions is denied - then login to mysql using root and run the following: GRANT ALL PRIVILEGES ON *.* TO 'rangerlogger'@'<second hive server>'
IDENTIFIED BY '<PASSWORD>' WITH GRANT OPTION; FLUSH PRIVILEGES; Then check again.
... View more
09-13-2016
02:48 PM
Thank you !
It was the missing link !
... View more
08-28-2016
06:23 AM
Thank you both so much for the response!
The querying part using the processors you recommended is pretty straightforward - the problem is - what to use after the querying ? How do i transform the data into csv or other format which i can insert into hadoop ?
There is no ConvertAvroToCSV processor and ConvertAvroToOrc is not available in the 1.0 Beta release. Where can i get the 1.0 GA release ??
... View more
08-24-2016
05:54 AM
So if a processor fails with a yellow warning - i am not supposed to get an email ? it is considered as "retry" and not "failure"?
... View more
12-02-2016
06:57 PM
What error(s) are you seeing? If it mentions Avro, then if your column names are in Chinese, it's likely that Avro does not accept them. This may be alleviated in NiFi 1.1.0 with NIFI-2262, but it would just replace non-Avro-compatible characters with underscores, so you may face a "duplicate field" exception. In that case you would need column aliases in your SELECT statement to use Avro-compatible names for the columns.
... View more
- « Previous
-
- 1
- 2
- Next »