Package com.alibaba.wasp.master

Examples of com.alibaba.wasp.master.FServerManager.sendDisableTable()


    // notify server to clean the table's meta cache.
    FServerManager serverManager = ((FMasterServices) server)
        .getFServerManager();
    for (ServerName serverName : serverManager.getOnlineServersList()) {
      serverManager.sendDisableTable(serverName, tableNameStr);
    }

    LOG.debug("Setting table" + tableNameStr + " deleted on ZK");
    // If entry for this table in zk, and up in AssignmentManager, remove it.
    assignmentManager.getZKTable().setDeletedTable(Bytes.toString(tableName));
View Full Code Here


    // notify server to clean the table's meta cache.
    FServerManager serverManager = ((FMasterServices) server)
        .getFServerManager();
    for (ServerName serverName : serverManager.getOnlineServersList()) {
      serverManager.sendDisableTable(serverName, Bytes.toString(tableName));
    }
    // Flip the table to disabled if success.
    if (done) {
      this.assignmentManager.getZKTable().setDisabledTable(this.tableNameStr);
    } else {
View Full Code Here

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.