Member since
05-22-2017
126
Posts
16
Kudos Received
14
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
2529 | 02-07-2019 11:03 AM | |
6863 | 08-09-2018 05:08 AM | |
1292 | 07-06-2018 07:51 AM | |
3244 | 06-22-2018 02:28 PM | |
3312 | 05-29-2018 01:14 PM |
04-22-2018
08:53 AM
Can you share log/error details?
... View more
04-20-2018
08:22 AM
Can you try below : explain SELECT/+ INDEX(VARIANTJOIN_RTSALTED24 jv2_chrom_int) / VJ.chrom_int, genomic_range FROM VARIANTJOIN_RTSALTED24 as VJ WHERE (chrom_int =18 ) limit 5;
... View more
04-20-2018
08:19 AM
1 Kudo
There are two parameters which you should pass in INDEX hint function (Table and index table name) INDEX(my_table my_index) Example:
SELECT /*+ INDEX(my_table my_index) */ v2 FROM my_table WHERE v1 = 'foo' Ref - https://phoenix.apache.org/secondary_indexing.html
... View more
04-19-2018
12:52 PM
Hi @Pandu123
P, Could you please check errors in yarn application logs? -Shubham
... View more
04-19-2018
12:44 PM
@n cIf above information helped you, Could you please accept answer?
... View more
04-19-2018
12:43 PM
@Dhiraj Sardana If information helped you, Could you please accept answer?
... View more
04-19-2018
12:42 PM
@Koundinya Ravulapati,If above information helped you, Could you please accept answer?
... View more
04-19-2018
12:40 PM
@Rakesh AN If above information helped you, Could you please accept answer?
... View more
04-19-2018
12:39 PM
@n c Did you above information helped you. If yes, Please accept answer.
... View more
04-15-2018
07:39 AM
---->Basically command "hbase hbck <options>" provides multiple options to fix different kind of inconsistencies. Examples : -fix Try to fix region
assignments. This is for backwards
compatiblity
-fixAssignments Try to fix
region assignments. Replaces the old
-fix -fixMeta Try to fix meta problems. This assumes HDFS region info is good.
-noHdfsChecking Don't load/check
region info from HDFS. Assumes hbase:meta region info is good. Won't check/fix
any HDFS issue, e.g. hole, orphan, or overlap -fixHdfsHoles Try to fix region holes in hdfs.
-fixHdfsOrphans Try to fix
region dirs with no .regioninfo file in hdfs ----> repair option is Shortcut which fixes mutiple
inconsistencies. Options/Description: Metadata Repair
shortcuts -repair Shortcut for -fixAssignments
-fixMeta -fixHdfsHoles -fixHdfsOrphans -fixHdfsOverlaps -fixVersionFile
-sidelineBigOverlaps -fixReferenceFiles -fixHFileLinks -fixTableLocks
-fixOrphanedTableZnodes -repairHoles Shortcut for -fixAssignments -fixMeta
-fixHdfsHoles You can run below command to see all possible options and
their meanings: hbase hbck -help This Link has also details of the hbck -
https://hbase.apache.org/book.html#hbck.in.depth and when to run.
... View more