Member since
07-30-2020
219
Posts
45
Kudos Received
60
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
459 | 11-20-2024 11:11 PM | |
494 | 09-26-2024 05:30 AM | |
1085 | 10-26-2023 08:08 AM | |
1854 | 09-13-2023 06:56 AM | |
2130 | 08-25-2023 06:04 AM |
04-28-2023
12:04 PM
@albert0087 Are you using OpenTSDB's asynchbase client to try to connect to our hbase? If yes, make sure you are setting the configurations correctly as per https://opentsdb.github.io/asynchbase/docs/build/html/authentication.html
... View more
04-28-2023
11:53 AM
@iamlazycoder As you have only a single Datanode, the blockplacement policy won't allow putting the second replica on the same Datanode. You can try to put the file with a single replica and check. hdfs dfs -Ddfs.replication=1 -put /path/to/local/file /path/to/hdfs/dir Or you can change the dfs.replication in hdfs-site.xml to 1 at a cluster level.
... View more
04-03-2023
10:51 PM
Hi @BrianChan Both the alerts are related. The checkpointing is done by the Standby Namenode and if it's not functioning properly, then the checkpoint process is not done and you will see those alerts. You can go through the logs of the Standby Namenode and check why the checkpoint thread is stopped. Maybe the Standby Namenode is down? So you may want to restart the Standby Namenode to fix this.
... View more
02-14-2023
01:53 AM
As of now and I believe in the future as well, Phoenix will be a packaged component. Afaik, License for Phoenix was needed in CDH but it is tied to Hbase in CDP onwards. Was your question answered? Please take some time to click on “Accept as Solution” below this post.
... View more
02-13-2023
10:16 AM
Hi @SagarCapG, Phoenix is still there in CDP 7.1.8 and as well as in Cloudera Operation Databases ( COD ) which uses CDP. https://blog.cloudera.com/getting-started-with-cloudera-data-platform-operational-database-cod/
... View more
01-25-2023
09:26 PM
If the same Node is getting down every time, it's worth checking the Memory utilization at the OS end. You can check the /var/log/messages of the NN host when the NN went down and check if the process is getting killed by an oom.
... View more
01-23-2023
05:55 AM
@RammiSE Try the below : ./hbase hbck -j /tmp/hbase-hbck2-1.2.0.jar assigns -o f0b4865fe8ea07321ed8eb237a592c10
... View more
01-23-2023
12:18 AM
@RammiSE you will need to assign the respective namespace region ID by checking the Hbase Master log using the hbck2 jar
... View more
01-22-2023
11:54 PM
Hi @RammiSE , Based on the exception, the hbase:namespace table is not online. You will need to assign the namespace region to bring up the Hbase Master. https://docs.cloudera.com/documentation/enterprise/6/6.3/topics/admin_hbase_hbck.html ~~~ Caused by: java.io.IOException: Timedout 300000ms waiting for namespace table to be assigned and enabled: tableName=hbase:namespace, state=ENABLED
... View more
01-11-2023
07:59 AM
@Love_Cat Are you setting this up for the 1st time or was it working fine earlier? As per the log, it seems the job is not able to locate the hbase meta location. Do you have Hbase Gateway role added to the node on which the sqoop job is running?
... View more