當前位置: 首頁>>代碼示例>>Java>>正文


Java Index.getName方法代碼示例

本文整理匯總了Java中org.elasticsearch.index.Index.getName方法的典型用法代碼示例。如果您正苦於以下問題:Java Index.getName方法的具體用法?Java Index.getName怎麽用?Java Index.getName使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在org.elasticsearch.index.Index的用法示例。


在下文中一共展示了Index.getName方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: deleteIndexStore

import org.elasticsearch.index.Index; //導入方法依賴的package包/類
/**
 * Deletes the index store trying to acquire all shards locks for this index.
 * This method will delete the metadata for the index even if the actual shards can't be locked.
 *
 * Package private for testing
 */
void deleteIndexStore(String reason, IndexMetaData metaData, ClusterState clusterState) throws IOException {
    if (nodeEnv.hasNodeFile()) {
        synchronized (this) {
            Index index = metaData.getIndex();
            if (hasIndex(index)) {
                String localUUid = indexService(index).indexUUID();
                throw new IllegalStateException("Can't delete index store for [" + index.getName() + "] - it's still part of the indices service [" + localUUid + "] [" + metaData.getIndexUUID() + "]");
            }

            if (clusterState.metaData().hasIndex(index.getName()) && (clusterState.nodes().getLocalNode().isMasterNode() == true)) {
                // we do not delete the store if it is a master eligible node and the index is still in the cluster state
                // because we want to keep the meta data for indices around even if no shards are left here
                final IndexMetaData idxMeta = clusterState.metaData().index(index.getName());
                throw new IllegalStateException("Can't delete index store for [" + index.getName() + "] - it's still part of the " +
                                                "cluster state [" + idxMeta.getIndexUUID() + "] [" + metaData.getIndexUUID() + "], " +
                                                "we are master eligible, so will keep the index metadata even if no shards are left.");
            }
        }
        final IndexSettings indexSettings = buildIndexSettings(metaData);
        deleteIndexStore(reason, indexSettings.getIndex(), indexSettings);
    }
}
 
開發者ID:justor,項目名稱:elasticsearch_my,代碼行數:29,代碼來源:IndicesService.java

示例2: GroupBy

import org.elasticsearch.index.Index; //導入方法依賴的package包/類
GroupBy(Throwable t) {
    if (t instanceof ElasticsearchException) {
        final Index index = ((ElasticsearchException) t).getIndex();
        if (index != null) {
            this.index = index.getName();
        } else {
            this.index = null;
        }
    } else {
        index = null;
    }
    reason = t.getMessage();
    causeType = t.getClass();
}
 
開發者ID:justor,項目名稱:elasticsearch_my,代碼行數:15,代碼來源:ExceptionsHelper.java

示例3: PendingDelete

import org.elasticsearch.index.Index; //導入方法依賴的package包/類
/**
 * Creates a new pending delete of a shard
 */
public PendingDelete(Index index, Settings settings) {
    this.index = index.getName();
    this.shardId = -1;
    this.settings = settings;
    this.deleteIndex = true;
}
 
開發者ID:baidu,項目名稱:Elasticsearch,代碼行數:10,代碼來源:IndicesService.java


注:本文中的org.elasticsearch.index.Index.getName方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。