Member since
07-31-2013
1924
Posts
462
Kudos Received
311
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 1969 | 07-09-2019 12:53 AM | |
| 11881 | 06-23-2019 08:37 PM | |
| 9147 | 06-18-2019 11:28 PM | |
| 10133 | 05-23-2019 08:46 PM | |
| 4580 | 05-20-2019 01:14 AM |
09-18-2015
04:31 AM
Am not sure I entirely follow your question - could you clarify on how you are imagining to arrive at a simple output of "r 4" from all of that input? The word "last key value pair" doesn't quite make sense to me. Please elaborate?
... View more
09-18-2015
04:28 AM
Have you looked at this possibly related thread and its resolution? http://community.cloudera.com/t5/Batch-Processing-and-Workflow/Application-master-gets-stuck-when-it-gets-more-then-half/m-p/31393#M1641 -- Is your situation different?
... View more
09-18-2015
04:23 AM
Glad to hear you were able to figure it out. In spirit of https://xkcd.com/979/, please mark the thread solved with the solution post selected, so others with a similar problem can find their solution quicker on the web.
... View more
09-17-2015
10:24 PM
1 Kudo
Could you clarify - how can you confirm what? If you meant to ask how to confirm if SNN works OK, you could check its log (it does log in INFO for every time it does a checkpoint successfully), or depending on the version, check its Web UI (default port 50090, IIRC). As to the load point - what process is consuming the said load? Is it the SNN, or something else? Per your process output though, what version of CDH are you using? Is it CDH3?
... View more
09-17-2015
12:11 AM
2 Kudos
All you need to do is start it up again, and ensure its process comes up. The SNN will invoke a checkpoint on its own if it determines that necessary during the startup, automatically. There should be no need to pass a specific flag for this. Your configs seem related to DNs instead of SNN.
... View more
09-16-2015
07:31 PM
2 Kudos
Please see http://archive.cloudera.com/cdh5/cdh/5/oozie/DG_SqoopActionExtension.html: """ The Sqoop command can be specified either using the command element or multiple arg elements. When using the command element, Oozie will split the command on every space into multiple arguments. When using the arg elements, Oozie will pass each argument value as an argument to Sqoop. The arg variant should be used when there are spaces within a single argument. """ Your resolution is to transform all your command arguments into arg clauses instead, and pass the whole SQL string as a single arg to make it be seen as one element, rather than space separated args as it currently is trying to parse it as.
... View more
09-15-2015
04:37 PM
Did you ensure to redeploy client configuration, and restart HDFS both, after adding the KMS service and linking HDFS with it? Your client is basically complaining of a missing KMS config, but without trace logs am also unsure if its coming instead out of the NN being unable to talk to KMS, or just purely the client.
... View more
09-15-2015
04:31 PM
Do both of these assert the right values you've set? SHOW CURRENT ROLES; SHOW GRANT ROLE developer; If yes, then the issue can likely be that HS2 and Sentry aren't really seeing the user 'impadmin' within the group 'hadoop'. On the HS2 and Sentry Service hosts, please check/pass the output of "id -Gn impadmin" Linux command.
... View more
09-13-2015
11:01 PM
Yes, you can have multiple sources tied to a config name, but what you are really missing is as the log says, a channel configuration. Please configure a channel per http://archive.cloudera.com/cdh5/cdh/5/flume-ng/FlumeUserGuide.html#a-simple-example > 15/09/14 11:08:07 WARN conf.FlumeConfiguration: Agent configuration for 'agent_foo' does not contain any valid channels. Marking it as invalid.
... View more
09-09-2015
10:36 PM
Start here, and drill further down into the DFSClient and DFSInputStream, etc. classes: https://github.com/cloudera/hadoop-common/blob/cdh5.4.5-release/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/DistributedFileSystem.java#L294-L303
... View more