- Subscribe to RSS Feed
- Mark Question as New
- Mark Question as Read
- Float this Question for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
Will client wait during the compaction in hbase?
- Labels:
-
Apache Hadoop
-
Apache HBase
Created ‎01-18-2018 10:32 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Compaction is the common process in the hbase my doubt is
Will the client request wait until the compaction process complete or anything else?
Created ‎01-19-2018 08:05 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
no it will not. during compaction, temporary files are created which will be compacted. later when it's done the smaller files are removed and huge compacted files will come it it's place. So at no time client requests are blocked. response time might increase because of cpu overhead of compaction process.
Created ‎01-19-2018 08:05 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
no it will not. during compaction, temporary files are created which will be compacted. later when it's done the smaller files are removed and huge compacted files will come it it's place. So at no time client requests are blocked. response time might increase because of cpu overhead of compaction process.
Created ‎01-20-2018 06:01 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Tnx bro....
