Member since
05-22-2017
126
Posts
16
Kudos Received
14
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
2469 | 02-07-2019 11:03 AM | |
6649 | 08-09-2018 05:08 AM | |
1254 | 07-06-2018 07:51 AM | |
3168 | 06-22-2018 02:28 PM | |
3197 | 05-29-2018 01:14 PM |
06-23-2018
07:27 AM
Looks like problem with datanodes. Check whether all datanodes are up. Once HDFS/Datanodes are healthy. Then you will be able to start HBase.
... View more
06-22-2018
02:45 PM
Can you check whether HDFS is healthy. Do you see any missing blocks in namenode? 2018-06-15 14:12:52,958 FATAL [vmbdsiwbdn2:16000.activeMasterManager] master.HMaster: Failed to become active master org.apache.hadoop.hdfs.BlockMissingException: Could not obtain block: BP-1307428289-10.0.0.4-
... View more
06-22-2018
02:28 PM
Remove "oozie.coord.application.path" parameter from job.xml config file when you rerun it. Also ensure you have "oozie.wf.rerun.skip.nodes" property added while rerunning workflow. Command: oozie job -rerun <wf-id> -config /tmp/job.xml
... View more
06-22-2018
02:19 PM
Can you check whether phoenix.schema.isNamespaceMappingEnabled is true? If it is false in your environment, then phoenix query creating new table under default namespace of Hbase instead of mapping it. If it is already "true" then execute following to map table--> CREATE TABLE PROD."MYTAB1" (ID VARCHAR PRIMARY KEY, "CF1"."NAME" VARCHAR,"CF1."DEPT" VARCHAR, "CF2".SALARY VARCHAR, "CF2".DESIGNATION VARCHAR) ; If it is false, you have to set it to true and then try mapping table.
... View more
06-12-2018
07:22 PM
It says : Error:Cluster deploy mode is not compatible with master
<master>${master}</master> <mode>${mode}</mode> below would be correct parameters master=yarn mode=cluster
... View more
06-07-2018
07:39 PM
Hi @Dhiraj Sardana Can you check region server logs where SYSTEM.STATS table regions are present if you see any failures?
... View more
06-06-2018
06:46 PM
Can you check logs of mapper task under oozie launcher job? Also if you can attach yarn logs. yarn logs -applicationId <applicationid>
... View more
06-06-2018
06:07 PM
Hbase does not store NULL. Actually it stores nothing when you give null. So output you are getting is expected.
... View more
05-29-2018
01:14 PM
Looks like Hadoop configurations was missing under classpath and it is not able to detect the nameservice. Can you check hbase config directory on working region server and non-working region server whether there are missing core-site.xml or hdfs-site.xml files?
... View more
05-22-2018
07:53 PM
Both should be same <pathstart="pig-job"/> <actionname="pig-node"> Either they should be "pig-node" or "pig-job"
... View more