Member since
03-06-2020
406
Posts
56
Kudos Received
37
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 1088 | 08-29-2025 12:27 AM | |
| 1629 | 11-21-2024 10:40 PM | |
| 1539 | 11-21-2024 10:12 PM | |
| 5272 | 07-23-2024 10:52 PM | |
| 3015 | 05-16-2024 12:27 AM |
06-15-2021
10:15 PM
Hi, In Oozie 5.x (in CDH 6+), the oozie.launcher prefix no longer works because the Oozie launcher job has been rearchitected into a proper yarn application. Could you please update the oozie workflow to remove oozie.launcher from all the configurations and try re-running the job?
... View more
06-14-2021
08:06 AM
Hi, Not sure why it is not available, I have a tried to attach the oozie-ext-2.2 file that i have downloaded before but am not able to attach the zip files here, any chance if you have a subscription to cloudera go ahead a request a oozie-ext-2.2 file.
... View more
05-31-2021
07:07 PM
Hi, Looks like there is no such command for it.
... View more
05-31-2021
07:00 PM
Hello, seems to be you cannot change the originally created files with an EC policy to regular files with replication factor. The only way to do that is to re-write the files with EC policy so that they will then get created with default replication factor of 3. Please go through the below document for more details: https://hadoop.apache.org/docs/current/hadoop-project-dist/hadoop-hdfs/HDFSErasureCoding.html
... View more
05-30-2021
08:49 PM
Hi, Under replicated blocks mean these are the blocks that haven't meet their target replication for the file they belong to. Can you use below script to fix this and see if this helps: su - <$hdfs_user> bash-4.1$ hdfs fsck / | grep 'Under replicated' | awk -F':' '{print $1}' >> /tmp/under_replicated_files -bash-4.1$ for hdfsfile in `cat /tmp/under_replicated_files`; do echo "Fixing $hdfsfile :" ; hadoop fs -setrep 3 $hdfsfile; done Please check this below cloudera community article for the details: https://community.cloudera.com/t5/Community-Articles/Fix-Under-replicated-blocks-in-HDFS-manually/ta-p/244746
... View more
05-30-2021
08:36 PM
Hi, Can you just cat on the below path to get the version number: ""cat /etc/yum.repos.d/cloudera-manager.repo""
... View more
05-28-2021
12:48 AM
Hi , To change the format of the input time we need to use unix_timestamp along with from_unixtime funcitons. Can you check this below Cloudera community article: https://community.cloudera.com/t5/Support-Questions/Format-date-in-HIVE/td-p/203463
... View more
05-19-2021
08:07 PM
Hi, Not sure this info is available. 1. you can check the yarn application logs in hdfs under /tmp/logs you can find this exact path by going to Cloudera manager -> Yarn -> Configuration -> yarn.nodemanager.remote-app-log-dir 2. If you have an application id you can just collect the logs manually with below command: ## yarn logs -applicationId <application ID> > applogs.txt
... View more
05-17-2021
07:38 AM
Hello, When you are facing this issue? For what type of query? How you are created these tables? Is the client (if non beeline or hive) creating the Table have a ACID read/write capability? Can you provide your DDL of this query?
... View more
05-17-2021
03:48 AM
1 Kudo
Hi , Can you add this below property in Hive service advance configurations and restart the stale configs and check the issue? ## hive.txn.stats.enabled=false
... View more
- « Previous
- Next »