001/*
002 * Licensed to the Apache Software Foundation (ASF) under one
003 * or more contributor license agreements.  See the NOTICE file
004 * distributed with this work for additional information
005 * regarding copyright ownership.  The ASF licenses this file
006 * to you under the Apache License, Version 2.0 (the
007 * "License"); you may not use this file except in compliance
008 * with the License.  You may obtain a copy of the License at
009 *
010 *     http://www.apache.org/licenses/LICENSE-2.0
011 *
012 * Unless required by applicable law or agreed to in writing, software
013 * distributed under the License is distributed on an "AS IS" BASIS,
014 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
015 * See the License for the specific language governing permissions and
016 * limitations under the License.
017 */
018package org.apache.hadoop.hbase.master;
019
020import static org.junit.Assert.assertEquals;
021import static org.junit.Assert.assertNotNull;
022import static org.junit.Assert.assertTrue;
023
024import java.io.IOException;
025import java.util.List;
026import org.apache.hadoop.hbase.HBaseClassTestRule;
027import org.apache.hadoop.hbase.HBaseTestingUtil;
028import org.apache.hadoop.hbase.HConstants;
029import org.apache.hadoop.hbase.NamespaceDescriptor;
030import org.apache.hadoop.hbase.SingleProcessHBaseCluster;
031import org.apache.hadoop.hbase.TableName;
032import org.apache.hadoop.hbase.client.Put;
033import org.apache.hadoop.hbase.client.Table;
034import org.apache.hadoop.hbase.regionserver.HRegionServer;
035import org.apache.hadoop.hbase.regionserver.Region;
036import org.apache.hadoop.hbase.testclassification.MediumTests;
037import org.apache.hadoop.hbase.util.Bytes;
038import org.apache.hadoop.hbase.util.JVMClusterUtil;
039import org.junit.After;
040import org.junit.Before;
041import org.junit.ClassRule;
042import org.junit.Test;
043import org.junit.experimental.categories.Category;
044
045import org.apache.hadoop.hbase.shaded.protobuf.generated.ClusterStatusProtos.RegionStoreSequenceIds;
046
047/**
048 * Trivial test to confirm that we can get last flushed sequence id by encodedRegionName. See
049 * HBASE-12715.
050 */
051@Category(MediumTests.class)
052public class TestGetLastFlushedSequenceId {
053
054  @ClassRule
055  public static final HBaseClassTestRule CLASS_RULE =
056    HBaseClassTestRule.forClass(TestGetLastFlushedSequenceId.class);
057
058  private final HBaseTestingUtil testUtil = new HBaseTestingUtil();
059
060  private final TableName tableName = TableName.valueOf(getClass().getSimpleName(), "test");
061
062  private final byte[] family = Bytes.toBytes("f1");
063
064  private final byte[][] families = new byte[][] { family };
065
066  @Before
067  public void setUp() throws Exception {
068    testUtil.getConfiguration().setInt("hbase.regionserver.msginterval", 1000);
069    testUtil.startMiniCluster();
070  }
071
072  @After
073  public void tearDown() throws Exception {
074    testUtil.shutdownMiniCluster();
075  }
076
077  @Test
078  public void test() throws IOException, InterruptedException {
079    testUtil.getAdmin()
080      .createNamespace(NamespaceDescriptor.create(tableName.getNamespaceAsString()).build());
081    Table table = testUtil.createTable(tableName, families);
082    table
083      .put(new Put(Bytes.toBytes("k")).addColumn(family, Bytes.toBytes("q"), Bytes.toBytes("v")));
084    SingleProcessHBaseCluster cluster = testUtil.getMiniHBaseCluster();
085    List<JVMClusterUtil.RegionServerThread> rsts = cluster.getRegionServerThreads();
086    Region region = null;
087    for (int i = 0; i < cluster.getRegionServerThreads().size(); i++) {
088      HRegionServer hrs = rsts.get(i).getRegionServer();
089      for (Region r : hrs.getRegions(tableName)) {
090        region = r;
091        break;
092      }
093    }
094    assertNotNull(region);
095    Thread.sleep(2000);
096    RegionStoreSequenceIds ids = testUtil.getHBaseCluster().getMaster().getServerManager()
097      .getLastFlushedSequenceId(region.getRegionInfo().getEncodedNameAsBytes());
098    assertEquals(HConstants.NO_SEQNUM, ids.getLastFlushedSequenceId());
099    // This will be the sequenceid just before that of the earliest edit in memstore.
100    long storeSequenceId = ids.getStoreSequenceId(0).getSequenceId();
101    assertTrue(storeSequenceId > 0);
102    testUtil.getAdmin().flush(tableName);
103    Thread.sleep(2000);
104    ids = testUtil.getHBaseCluster().getMaster().getServerManager()
105      .getLastFlushedSequenceId(region.getRegionInfo().getEncodedNameAsBytes());
106    assertTrue(ids.getLastFlushedSequenceId() + " > " + storeSequenceId,
107      ids.getLastFlushedSequenceId() > storeSequenceId);
108    assertEquals(ids.getLastFlushedSequenceId(), ids.getStoreSequenceId(0).getSequenceId());
109    table.close();
110  }
111}