All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.hadoop.hbase.regionserver.MemStoreSnapshot Maven / Gradle / Ivy

There is a newer version: 3.0.0-beta-1
Show newest version
/*
 * 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.hadoop.hbase.regionserver;

import java.util.List;
import org.apache.yetus.audience.InterfaceAudience;

/**
 * {@link MemStoreSnapshot} is a Context Object to hold details of the snapshot taken on a MemStore.
 * Details include the snapshot's identifier, count of cells in it and total memory size occupied by
 * all the cells, timestamp information of all the cells and the snapshot immutableSegment.
 * 

* NOTE:Every time when {@link MemStoreSnapshot#getScanners} is called, we create new * {@link SnapshotSegmentScanner}s on the {@link MemStoreSnapshot#snapshotImmutableSegment},and * {@link Segment#incScannerCount} is invoked in the {@link SnapshotSegmentScanner} ctor to increase * the reference count of {@link MemStoreLAB} which used by * {@link MemStoreSnapshot#snapshotImmutableSegment}, so after we finish using these scanners, we * must call their close method to invoke {@link Segment#decScannerCount}. */ @InterfaceAudience.Private public class MemStoreSnapshot { private final long id; private final int cellsCount; private final MemStoreSize memStoreSize; private final TimeRangeTracker timeRangeTracker; private final boolean tagsPresent; private final ImmutableSegment snapshotImmutableSegment; public MemStoreSnapshot(long id, ImmutableSegment snapshot) { this.id = id; this.cellsCount = snapshot.getCellsCount(); this.memStoreSize = snapshot.getMemStoreSize(); this.timeRangeTracker = snapshot.getTimeRangeTracker(); this.tagsPresent = snapshot.isTagsPresent(); this.snapshotImmutableSegment = snapshot; } /** Returns snapshot's identifier. */ public long getId() { return id; } /** Returns Number of Cells in this snapshot. */ public int getCellsCount() { return cellsCount; } public long getDataSize() { return memStoreSize.getDataSize(); } public MemStoreSize getMemStoreSize() { return memStoreSize; } /** Returns {@link TimeRangeTracker} for all the Cells in the snapshot. */ public TimeRangeTracker getTimeRangeTracker() { return timeRangeTracker; } /** * Create new {@link SnapshotSegmentScanner}s for iterating over the snapshot.
* NOTE:Here when create new {@link SnapshotSegmentScanner}s, {@link Segment#incScannerCount} is * invoked in the {@link SnapshotSegmentScanner} ctor,so after we use these * {@link SnapshotSegmentScanner}s, we must call {@link SnapshotSegmentScanner#close} to invoke * {@link Segment#decScannerCount}. * @return {@link KeyValueScanner}s(Which type is {@link SnapshotSegmentScanner}) for iterating * over the snapshot. */ public List getScanners() { return snapshotImmutableSegment.getSnapshotScanners(); } /** Returns true if tags are present in this snapshot */ public boolean isTagsPresent() { return this.tagsPresent; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy