inteloid
inteloid

Reputation: 737

Random Reads and Scans inside the same HBase cluster

We have a situation where we host data for:

All inside the same cluster/table.

With YARN we can manage resources like CPU and RAM, but during intensive scans HDD can become a bottleneck and can slow down random read performance. How to manage that resource

How this kind of situations are being handled in general?

Upvotes: 1

Views: 54

Answers (1)

halil
halil

Reputation: 1812

Since mapreduce generally does not require live data, people often make a backup of hbase table and run mapreduce on backup data table. Or do a snapshot of table and run mp. on it.

Upvotes: 0

Related Questions