You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 1, 2024. It is now read-only.
Under the current ledger-trimming design, we need to collect those ledgers that need to be deleted first, and then perform the asynchronous deletion of the ledger concurrently, but we do not continue to pay attention to whether the deletion operation is completed. If the meta-information update has been successfully completed but an error occurs during the asynchronous deletion, the ledger may not be deleted, but at the logical level we think that the deletion has been completed, which will make this part of the data remain in the storage layer forever (such as bk). As the usage time of the cluster becomes longer, the residual data that cannot be deleted will gradually increase.
In order to achieve this goal, we can separate the logic of meta-information update and ledger deletion. In the trimming process, we can first mark which ledgers are deletable, and update the results to the metadatastore. We can perform the deletion of marked ledgers asynchronously in the callback of updating the meta information, so that the original logic can be retained seamlessly. Therefore, when we are rolling upgrade or rollback, the only difference is whether the deleted ledger is marked for deletion.
To be more specific:
for upgrade, only the marker information of ledger has been added, and the logical sequence of deletion has not changed.
for rollback, some ledgers that have been marked for deletion may not be deleted due to the restart of the broker. This behavior is consistent with the original version.
In addition, if the ledger that has been marked is not deleted successfully, the marker will not be removed. So for this part of ledgers, every time trimming is triggered, it will be deleted again, which is equivalent to a check and retry mechanism.
Goal
We need to modify some logic in org.apache.bookkeeper.mledger.impl.ManagedLedgerImpl#internalTrimLedgers so that the ledger deletion logic in ledger-trimming is split into two stages, marking and deleting. Once the marker information is updated to the metadatastore, every trimming will try to trigger the ledger deletion until all the deleteable ledgers are successfully deleted.
API Changes
org.apache.bookkeeper.mledger.ManagedLedger
publicinterfaceManagedLedger {
...
/** * Mark deletable ledgers for bookkeeper and offload storage * * @param deletableLedgerIds * @param deletableOffloadedLedgerIds */voidmarkDeletableLedgers(Collection<Long> deletableLedgerIds, Collection<Long> deletableOffloadedLedgerIds);
/** * Get all deletable ledgers * * @return all the deletable ledgers of the managed-ledger */Set<Long> getAllDeletableLedgers();
/** * Get all deletable offloaded ledgers * * @return all the deletable offloaded ledgers of the managed-ledger */Set<Long> getAllDeletableOffloadedLedgers();
/** * Check and remove all the deletable ledgers */voidremoveAllDeletableLedgers();
}
Implementation
This proposal aims to separate the deletion logic in ledger-trimming, so that ManagedLedgerImpl#internalTrimLedgers is responsible for marking the deletable ledgers and then perform actual ledger deletion according to the metadatastore.
Therefore, the entire trimming process is broken down into the following steps:
mark deletable ledgers and update ledger metadata.
do acutual ledger deletion after metadata is updated.
For step 1, we can store the marker of deletable information in org.apache.bookkeeper.mledger.impl.ManagedLedgerImpl#propertiesMap. When retrieving the deleted ledger information, we can directly query by iterating propertiesMap. If this solution is not accepted, maybe we can create a new znode to store these information, but this approach will not be able to reuse the current design.
For step 2, we can perform the deletion of marked ledgers asynchronously in the callback of updating the meta information. And every trimming will trigger the check and delete for those deleteable ledgers.
Reject Alternatives
None
The text was updated successfully, but these errors were encountered:
Original Issue: apache#13526
Motivation
Related to apache#13238
Corresponding logic:
org.apache.bookkeeper.mledger.impl.ManagedLedgerImpl#internalTrimLedgers
Under the current ledger-trimming design, we need to collect those ledgers that need to be deleted first, and then perform the asynchronous deletion of the ledger concurrently, but we do not continue to pay attention to whether the deletion operation is completed. If the meta-information update has been successfully completed but an error occurs during the asynchronous deletion, the ledger may not be deleted, but at the logical level we think that the deletion has been completed, which will make this part of the data remain in the storage layer forever (such as bk). As the usage time of the cluster becomes longer, the residual data that cannot be deleted will gradually increase.
In order to achieve this goal, we can separate the logic of meta-information update and ledger deletion. In the trimming process, we can first mark which ledgers are deletable, and update the results to the metadatastore. We can perform the deletion of marked ledgers asynchronously in the callback of updating the meta information, so that the original logic can be retained seamlessly. Therefore, when we are rolling upgrade or rollback, the only difference is whether the deleted ledger is marked for deletion.
To be more specific:
In addition, if the ledger that has been marked is not deleted successfully, the marker will not be removed. So for this part of ledgers, every time trimming is triggered, it will be deleted again, which is equivalent to a check and retry mechanism.
Goal
We need to modify some logic in
org.apache.bookkeeper.mledger.impl.ManagedLedgerImpl#internalTrimLedgers
so that the ledger deletion logic in ledger-trimming is split into two stages, marking and deleting. Once the marker information is updated to the metadatastore, every trimming will try to trigger the ledger deletion until all the deleteable ledgers are successfully deleted.API Changes
org.apache.bookkeeper.mledger.ManagedLedger
Implementation
This proposal aims to separate the deletion logic in ledger-trimming, so that
ManagedLedgerImpl#internalTrimLedgers
is responsible for marking the deletable ledgers and then perform actual ledger deletion according to the metadatastore.Therefore, the entire trimming process is broken down into the following steps:
For step 1, we can store the marker of deletable information in
org.apache.bookkeeper.mledger.impl.ManagedLedgerImpl#propertiesMap
. When retrieving the deleted ledger information, we can directly query by iteratingpropertiesMap
. If this solution is not accepted, maybe we can create a new znode to store these information, but this approach will not be able to reuse the current design.For step 2, we can perform the deletion of marked ledgers asynchronously in the callback of updating the meta information. And every trimming will trigger the check and delete for those deleteable ledgers.
Reject Alternatives
None
The text was updated successfully, but these errors were encountered: