Package org.apache.bookkeeper.bookie

Source Code of org.apache.bookkeeper.bookie.ScanAndCompareGarbageCollector

/**
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements.  See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership.  The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License.  You may obtain a copy of the License at
*
*   http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied.  See the License for the
* specific language governing permissions and limitations
* under the License.
*
*/

package org.apache.bookkeeper.bookie;

import java.util.Map;
import java.util.NavigableMap;
import java.util.Set;

import org.apache.bookkeeper.meta.LedgerManager;
import org.apache.bookkeeper.meta.LedgerManager.LedgerRange;
import org.apache.bookkeeper.meta.LedgerManager.LedgerRangeIterator;
import org.apache.bookkeeper.util.SnapshotMap;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
* Garbage collector implementation using scan and compare.
*
* <p>
* Garbage collection is processed as below:
* <ul>
* <li> fetch all existing ledgers from zookeeper or metastore according to
* the LedgerManager, called <b>globalActiveLedgers</b>
* <li> fetch all active ledgers from bookie server, said <b>bkActiveLedgers</b>
* <li> loop over <b>bkActiveLedgers</b> to find those ledgers that are not in
* <b>globalActiveLedgers</b>, do garbage collection on them.
* </ul>
* </p>
*/
public class ScanAndCompareGarbageCollector implements GarbageCollector{

    static final Logger LOG = LoggerFactory.getLogger(ScanAndCompareGarbageCollector.class);
    private SnapshotMap<Long, Boolean> activeLedgers;
    private LedgerManager ledgerManager;

    public ScanAndCompareGarbageCollector(LedgerManager ledgerManager, SnapshotMap<Long, Boolean> activeLedgers) {
        this.ledgerManager = ledgerManager;
        this.activeLedgers = activeLedgers;
    }

    @Override
    public void gc(GarbageCleaner garbageCleaner) {
        // create a snapshot first
        NavigableMap<Long, Boolean> bkActiveLedgersSnapshot =
                this.activeLedgers.snapshot();
        LedgerRangeIterator ledgerRangeIterator = ledgerManager.getLedgerRanges();
        try {
            // Empty global active ledgers, need to remove all local active ledgers.
            if (!ledgerRangeIterator.hasNext()) {
                for (Long bkLid : bkActiveLedgersSnapshot.keySet()) {
                    // remove it from current active ledger
                    bkActiveLedgersSnapshot.remove(bkLid);
                    garbageCleaner.clean(bkLid);
                }
            }
            while(ledgerRangeIterator.hasNext()) {
                LedgerRange lRange = ledgerRangeIterator.next();
                Map<Long, Boolean> subBkActiveLedgers = null;
                Long start = lRange.start();
                Long end = lRange.end();
                if (end != LedgerRange.NOLIMIT) {
                    subBkActiveLedgers = bkActiveLedgersSnapshot.subMap(start,
                            true, end, true);
                } else {
                    if (start != LedgerRange.NOLIMIT) {
                        subBkActiveLedgers = bkActiveLedgersSnapshot.tailMap(start);
                    } else {
                        subBkActiveLedgers = bkActiveLedgersSnapshot;
                    }
                }
                Set<Long> globalActiveLedgers = lRange.getLedgers();
                LOG.debug("All active ledgers for hash node {}, Current active ledgers from Bookie for hash node {}",
                        globalActiveLedgers, subBkActiveLedgers.keySet());
                for (Long bkLid : subBkActiveLedgers.keySet()) {
                    if (!globalActiveLedgers.contains(bkLid)) {
                        // remove it from current active ledger
                        subBkActiveLedgers.remove(bkLid);
                        garbageCleaner.clean(bkLid);
                    }
                }
            }
        } catch (Exception e) {
            // ignore exception, collecting garbage next time
            LOG.warn("Exception when iterating over the metadata {}", e);
        }
    }
}

TOP

Related Classes of org.apache.bookkeeper.bookie.ScanAndCompareGarbageCollector

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.