You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@activemq.apache.org by "Tim Bain (JIRA)" <ji...@apache.org> on 2015/09/13 03:13:45 UTC

[jira] [Comment Edited] (AMQ-3978) Allow KahaDB to "compact" journal files to remove messages that are no longer needed

    [ https://issues.apache.org/jira/browse/AMQ-3978?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14742286#comment-14742286 ] 

Tim Bain edited comment on AMQ-3978 at 9/13/15 1:13 AM:
--------------------------------------------------------

If you don't use mKahaDB, you might get better performance from using very small KahaDB files to increase the odds that a given file will have only "dead" data in it so that it can be deleted.  But it doesn't guarantee an improvement, it only increases the odds.  So mKahaDB is the preferred option if it works for your use case, since it's able to guarantee a predictable change in behavior if you understand your usage characteristics sufficiently well.


was (Author: tbain98):
If you don't use mKahaDB, you might get better performance from using very small KahaDB files so increase the odds that a given file will have only "dead" data in it so it can be deleted.  But it doesn't guarantee an improvement, it only increases the odds.  But mKahaDB is the preferred option if it works for your use case, since it's able to guarantee a predictable change in behavior if you understand your usage characteristics sufficiently well.

> Allow KahaDB to "compact" journal files to remove messages that are no longer needed
> ------------------------------------------------------------------------------------
>
>                 Key: AMQ-3978
>                 URL: https://issues.apache.org/jira/browse/AMQ-3978
>             Project: ActiveMQ
>          Issue Type: Improvement
>          Components: KahaDB, Message Store
>    Affects Versions: 5.6.0
>            Reporter: Tim Bain
>            Priority: Minor
>
> KahaDB uses a write-only journaling approach that ensures that a journal file will be deleted only when no content within it is still in use.  If a single byte of the file is still needed, the entire file must be kept, even if the rest of the file is not needed.
> This works fine when all messages are immediately removed from destinations within an ActiveMQ broker, but it fails ungracefully when messages that are consumed infrequently (or not at all, relying on TTL to delete the messages) are interspersed with large volumes of messages that are consumed quickly.  In this scenario, if a single infrequently-consumed message ends up in a journal file with a large number of quickly-consumed messages, the entire file will be kept even though nearly all of the content of the file is no longer needed.  When this happens for enough journal files, the KahaDB's disk/file limits are reached, even though the amount of actual "live" data within the KahaDB is far below the configured limits.
> To fix this, the periodic cleanup task that already looks for files that are unused should be changed so that if it determines that it cannot delete the file because it contains at least one live message but it contains less than a configurable percentage of live messages, the task will rewrite the journal file in question so it contains only those live messages into file, updating any in-memory indices that might show the offsets of messages within the file (if there are any such things). If any in-memory data structures will need to be updated, we need to appropriately synchronize to ensure that no one can use the portions of the data structure related to the file currently being compacted; access to similar information for all other data files can continue unrestricted.
> Note that this will result in us still having potentially many individual files, with each one having a much smaller file size than our target size. If that is problematic, it would be possible to combine multiple partial files together during the compaction process (while respecting the max file size) instead of writing live messages back into their current file.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)