Member since
07-05-2017
13
Posts
0
Kudos Received
0
Solutions
09-14-2017
01:20 PM
Hadoop: 2.7.3 , HBase 1.3.1 Major compaction has been triggered for all the tables in hbase via hbase client. for(String table: listofTables) admin.majorCompact(table) Compaction has been triggered for all the tables which can be confirmed from hbase logs, but completion logs are not present for all the tables(checked logs even after two hours of compaction trigger)
... View more
07-10-2017
10:43 AM
1 Kudo
When you know the row key you can use Get. HBase should automatically convert the Scan with same start and end key as get. With the get the block reads in a HFile are positional reads(better for random reads) than seek + read(better for scanning).
... View more
08-27-2018
03:42 PM
Were you able to find the cause of the issue? Thanks Manish
... View more