blob: ee4801022cca28175661abfd62f33c640add1153 [file] [log] [blame]
/*
* 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.master.tableOps;
import org.apache.accumulo.core.client.impl.Namespace;
import org.apache.accumulo.core.client.impl.Table;
import org.apache.accumulo.core.client.impl.thrift.TableOperation;
import org.apache.accumulo.core.master.state.tables.TableState;
import org.apache.accumulo.fate.Repo;
import org.apache.accumulo.master.Master;
import org.slf4j.LoggerFactory;
public class ChangeTableState extends MasterRepo {
private static final long serialVersionUID = 1L;
private Table.ID tableId;
private Namespace.ID namespaceId;
private TableOperation top;
public ChangeTableState(Namespace.ID namespaceId, Table.ID tableId, TableOperation top) {
this.tableId = tableId;
this.namespaceId = namespaceId;
this.top = top;
if (top != TableOperation.ONLINE && top != TableOperation.OFFLINE)
throw new IllegalArgumentException(top.toString());
}
@Override
public long isReady(long tid, Master env) throws Exception {
// reserve the table so that this op does not run concurrently with create, clone, or delete
// table
return Utils.reserveNamespace(env, namespaceId, tid, false, true, top)
+ Utils.reserveTable(env, tableId, tid, true, true, top);
}
@Override
public Repo<Master> call(long tid, Master env) throws Exception {
TableState ts = TableState.ONLINE;
if (top == TableOperation.OFFLINE)
ts = TableState.OFFLINE;
env.getTableManager().transitionTableState(tableId, ts);
Utils.unreserveNamespace(env, namespaceId, tid, false);
Utils.unreserveTable(env, tableId, tid, true);
LoggerFactory.getLogger(ChangeTableState.class).debug("Changed table state {} {}", tableId, ts);
env.getEventCoordinator().event("Set table state of %s to %s", tableId, ts);
return null;
}
@Override
public void undo(long tid, Master env) throws Exception {
Utils.unreserveNamespace(env, namespaceId, tid, false);
Utils.unreserveTable(env, tableId, tid, true);
}
}