Package com.alibaba.wasp.master.handler

Examples of com.alibaba.wasp.master.handler.CreateIndexHandler


  public CreateIndexResponse createIndex(RpcController controller,
      CreateIndexRequest request) throws ServiceException {
    Index index = Index.convert(request.getIndexSchema());
    try {
      checkInitialized();
      CreateIndexHandler ciHandle = new CreateIndexHandler(Bytes.toBytes(index
          .getDependentTableName()), index, this, this,
          EventHandler.EventType.C_M_CREATE_INDEX);
      this.executorService.submit(ciHandle);
    } catch (IOException ioe) {
      throw new ServiceException(ioe);
View Full Code Here

TOP

Related Classes of com.alibaba.wasp.master.handler.CreateIndexHandler

Copyright © 2018 www.massapicom. 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.