You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@bookkeeper.apache.org by "Matteo Merli (JIRA)" <ji...@apache.org> on 2015/04/10 23:13:13 UTC

[jira] [Created] (BOOKKEEPER-848) Use volatile for lastAddConfirmed

Matteo Merli created BOOKKEEPER-848:
---------------------------------------

             Summary: Use volatile for lastAddConfirmed
                 Key: BOOKKEEPER-848
                 URL: https://issues.apache.org/jira/browse/BOOKKEEPER-848
             Project: Bookkeeper
          Issue Type: Bug
    Affects Versions: 4.3.0
            Reporter: Matteo Merli
            Assignee: Matteo Merli
            Priority: Minor
             Fix For: 4.4.0


LastAddConfirmed in LedgerHandle is updated when an entry is persisted successfully. 

When sending a new entry, the most recent lastAddConfirmed is sent along. The reason is to start with a reasonable (confirmed) entryId when doing ledger recovery, by reading all entries from lastAddConfirmed until a NoEntryException is reached. 

If lastAddConfirmed updates are not visible to the thread that is writing new entries, new entries will carrie an older lastAddConfirmed value, and recovering the ledger will requiring reading one-by-one many entries.
When writing several thousand of entries per sec, the lastAddConfirmed can lag behind a lot from the real last entry.

We should use volatile, to ensure writing thread sees the updated version.



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