Package org.apache.accumulo.server.master.tserverOps

Source Code of org.apache.accumulo.server.master.tserverOps.FlushTablets

/*
* 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.accumulo.server.master.tserverOps;

import java.util.Collection;

import org.apache.accumulo.server.fate.Repo;
import org.apache.accumulo.server.master.EventCoordinator.Listener;
import org.apache.accumulo.server.master.LiveTServerSet.TServerConnection;
import org.apache.accumulo.server.master.Master;
import org.apache.accumulo.server.master.state.DistributedStoreException;
import org.apache.accumulo.server.master.state.MetaDataStateStore;
import org.apache.accumulo.server.master.state.TabletLocationState;
import org.apache.accumulo.server.master.state.TabletStateStore;
import org.apache.accumulo.server.master.state.ZooTabletStateStore;
import org.apache.accumulo.server.master.tableOps.MasterRepo;
import org.apache.log4j.Logger;

public class FlushTablets extends MasterRepo {
 
  private static final long serialVersionUID = 1L;
  private static final Logger log = Logger.getLogger(FlushTablets.class);
  String logger;
 
  public FlushTablets(String logger) {
    this.logger = logger;
  }
 
  @Override
  public long isReady(long tid, Master environment) throws Exception {
    return 0;
  }
 
  @Override
  public Repo<Master> call(long tid, Master m) throws Exception {
    // TODO move this code to isReady() and drop while loop?
    // Make sure nobody is still using logs hosted on that node
    Listener listener = m.getEventCoordinator().getListener();
    while (m.stillMaster()) {
      boolean flushed = false;
      ZooTabletStateStore zooTabletStateStore = null;
      try {
        zooTabletStateStore = new ZooTabletStateStore();
      } catch (DistributedStoreException e) {
        log.warn("Unable to open ZooTabletStateStore, will retry", e);
      }
      MetaDataStateStore theRest = new MetaDataStateStore();
      for (TabletStateStore store : new TabletStateStore[] {zooTabletStateStore, theRest}) {
        if (store != null) {
          for (TabletLocationState tabletState : store) {
            for (Collection<String> logSet : tabletState.walogs) {
              for (String logEntry : logSet) {
                if (logger.equals(logEntry.split("/")[0])) {
                  TServerConnection tserver = m.getConnection(tabletState.current);
                  if (tserver != null) {
                    log.info("Requesting " + tabletState.current + " flush tablet " + tabletState.extent + " because it has a log entry " + logEntry);
                    tserver.flushTablet(m.getMasterLock(), tabletState.extent);
                  }
                  flushed = true;
                }
              }
            }
          }
        }
      }
      if (zooTabletStateStore != null && !flushed)
        break;
      listener.waitForEvents(1000);
    }
    return new StopLogger(logger);
  }
 
  @Override
  public void undo(long tid, Master m) throws Exception {}
 
}
TOP

Related Classes of org.apache.accumulo.server.master.tserverOps.FlushTablets

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.