Member since
06-26-2013
416
Posts
104
Kudos Received
49
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 15529 | 10-12-2015 01:56 PM | |
| 6225 | 03-27-2014 07:24 AM | |
| 24818 | 10-30-2013 08:25 AM |
11-23-2016
07:34 AM
Thank you for the feedback, @obar1. We definitely appreciate it and will continue to evaluate our options for incorporating your suggestions.
... View more
09-19-2016
01:40 PM
5 Kudos
The Cloudera Community has been helping users find answers to their Hadoop questions for over three years now. Over that time the community, along with the Hadoop ecosystem, has grown and changed in many ways. As a result, we are assessing the current and future state of this community to ensure that we are offering an environment that best meets the needs of our users. This is where we need your help. We are opening this thread to collect your feedback on what you like, what can be improved and any new features you would like on the community.
Some potential areas we would like feedback on are:
Segmentation of the forums - Currently the boards are mostly based on components and their function. This makes it difficult to know where to post your new question and can also reduce the number of people who see your topic.
Discussion style: is the current discussion thread style working for you? Are there examples of other communities with a more intuitive style?
Your total community hub: we are considering a large revamp of how you interact with us and find content and connections that you need. Instead of just being discussion boards, would you like a single portal for all your community needs? Including local meetup and conference registration, documentation, rich media tutorials, blogs, contests and fun rewards like quests, points, and badges that can earn you not only reputation but other real-world benefits?
Are there other ways we can make it easier and more fun to interact with Cloudera, our content, and your peers?
Improvements to current features - What features do we have that you would like to improve? A few examples:
Improved site search
Advanced user profile linked to your social media and allowing you to add and connect with others based on skills/interests
Personalizable views/home screens
Anything else you would like to add.
... View more
05-12-2016
10:46 AM
1 Kudo
If you happen to be in the Austin area, you should consider participating in our Hackathon this coming Sunday May 15. Hosted at the Cloudera office and sponsored by Cloudera Cares.
The hackathon will focus on reducing mosquito borne virus infections by analyzing data on water, mapping mosquito travel, and historical virus analysis.
515 Congress Ave., Suite 1212, Austin, TX
10:30am to 8:00pm
RSVP and further details here.
... View more
01-12-2016
09:42 AM
3 Kudos
Symptoms
"Permission denied" errors can present in a variety of use cases and from nearly any application that utilizes CDH.
For example, when attempting to start the jobtracker using this command
service hadoop-0.20-mapreduce-jobtracker start
You may see this error, or one similar
org.apache.hadoop.security.AccessControlException: Permission denied: user=mapred, access=WRITE, inode="/":hdfs:supergroup:drwxr-xr-x
at org.apache.hadoop.hdfs.server.namenode.FSPermissionChecker.check(FSPermissionChecker.java:224)
at org.apache.hadoop.hdfs.server.namenode.FSPermissionChecker.check(FSPermissionChecker.java:204)
at org.apache.hadoop.hdfs.server.namenode.FSPermissionChecker.checkPermission(FSPermissionChecker.java:149)
at org.apache.hadoop.hdfs.server.namenode.FSNamesystem.checkPermission(FSNamesystem.java:4891)
at org.apache.hadoop.hdfs.server.namenode.FSNamesystem.checkPermission(FSNamesystem.java:4873)
at org.apache.hadoop.hdfs.server.namenode.FSNamesystem.checkAncestorAccess(FSNamesystem.java:4847)
at org.apache.hadoop.hdfs.server.namenode.FSNamesystem.mkdirsInternal(FSNamesystem.java:3192)
at org.apache.hadoop.hdfs.server.namenode.FSNamesystem.mkdirsInt(FSNamesystem.java:3156)
at org.apache.hadoop.hdfs.server.namenode.FSNamesystem.mkdirs(FSNamesystem.java:3137)
at org.apache.hadoop.hdfs.server.namenode.NameNodeRpcServer.mkdirs(NameNodeRpcServer.java:669)
While the steps to reproduce this error can vary widely, the root causes are very well defined and you'll know you're suffering from this issue by finding the following line either on stdout or in the relevant log files:
org.apache.hadoop.security.AccessControlException: Permission denied: user=XXX, access=WRITE, inode="/someDirectory":hdfs:supergroup:drwxr-xr-x
Applies To
CDH (all versions), Mapreduce, HDFS, other services that rely on reading from or writing to HDFS
Cause
Access to the HDFS filesystem and/or permissions on certain directories are not correctly configured.
Troubleshooting Steps
There are several solutions to attempt:
1) The /user/ directory is owned by "hdfs" with 755 permissions. As a result only hdfs can write to that directory. Unlike unix/linux, hdfs is the superuser and not root. So you would need to do this: sudo -u hdfs hadoop fs -mkdir /user/,,myfile,, sudo -u hdfs hadoop fs -put myfile.txt /user/,,/,, If you want to create a home directory for root so you can store files in his directory, do: sudo -u hdfs hadoop fs -mkdir /user/root sudo -u hdfs hadoop fs -chown root /user/root Then as root you can do "hadoop fs -put file /user/root/". 2) You may also be getting denied on the network port where the NameNode is supposed to be listening:
Fix this by changing the address that the service is listening on in /etc/hadoop/conf/core-site.xml. By default your NameNode may be listening on "localhost:8020." (127.0.0.1)
So to be clear, implement this value for the following property:
<property> <name>fs.defaultFS</name> <value>hdfs://0.0.0.0:8020</value> </property>
then bounce the service with hadoop-hdfs-namenode restart optional: validate with netstat -tupln | grep '8020'
References
... View more
10-12-2015
01:56 PM
@AlinaGHERMAN, unfortunately we can only assign one email addess to your community account, but I'm happy to change that email to a different address if you prefer.
... View more
08-07-2015
01:37 PM
Here at Cloudera, community is part of our DNA. Building a strong, vibrant, and engaged community between our employees, customers, partners, open source developers, users, admins and industry experts is critical to our success. That's where YOU come in. We want you to find value, build relationships, gain skills, and advance your projects and careers thanks to the community you are part of here.
This discussion board is an effort to further advance those goals. We want to get to know the highly talented and unique individuals who make up our community. This board provides a place for you introduce yourself, talk about your background, goals, interesting projects, and what makes you tick. It is also a place for off-topic discussion to occur. Enjoy a welcome diversion, talk about your hobbies, have fun.
PLEASE FOLLOW THESE GUIDELINES:
1) Keep it clean and professional, no offensive or divisive topics (including, but not limited to: sex, illegal activity, politics, or religion)
2) Keep it friendly and courteous, no flaming.
3) Our regular Terms of Service and User Guidelines still apply and we reserve the right to remove any content.
... View more
03-26-2015
01:14 PM
Sorry for the delayed response here, but this is fixed now. Thanks again for reporting the issue.
... View more
02-12-2015
03:20 PM
Good point. I think the unread ones are supposed to be bold, but our fonts may be obscuring that, I'll look into it.
Also, regarding the "edit your post" fix. It's tied up right now in staging with a few other fixes we're trying to roll out. I hope to push it to prod in the next few business days.
... View more
02-05-2015
03:49 PM
FYI, we have resolved this issue in our staging environment and will be pushing the fix to production ASAP.
... View more
01-05-2015
03:33 PM
@abhishes I will forward your question to our partner team and have them reach out to you.
... View more