IYohoIndex.java
1.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
package com.yoho.search.consumer.common;
import com.yoho.search.consumer.index.fullbuild.IIndexBuilder;
import com.yoho.search.core.es.IElasticsearchClient;
import java.util.List;
import java.util.Map;
public interface IYohoIndex {
/**
* 获取索引属于的客户端
* @return
*/
public IElasticsearchClient getIndexClient();
/**
* 获取索引名
*
* @return
*/
public String getYohoIndexName();
/**
* 设置索引名
*
* @param name
*/
public void setYohoIndexName(String name);
/**
* 获取索引配置属性
*
* @return
*/
public Map<String, String> getIndexSettings();
/**
* 设置索引配置属性
*
* @param properties
*/
public void setIndexSettings(Map<String, String> properties);
/**
* 获取分词器设置
*
* @return
*/
public Map<String,Object> getAnalysisSettings();
/**
* 设置分词器设置
*
* @return
*/
public void setAnalysisSettings(Map<String, Object> analysisSettings);
/**
* 获取索引建造器
*
* @return
*/
public List<IIndexBuilder> getIndexBuilderList();
/**
* 设置索引建造器的类名
*
* @return
*/
public void setIndexBuilderClassName(String indexBuilderClassName);
/**
* 获取索引建造器的类名
* @return
*/
public String getIndexBuilderClassName();
/**
* 设置索引mapping文件
*
* @return
*/
public void setMappingContent(String mappingContent);
/**
* 获取索引mapping内容
*
* @return
*/
public String getMappingContent();
/**
* 获取重建分页数
*/
public Integer getRebuildPageSize();
/**
* 设置重建分页数
*/
public void setRebuildPageSize(Integer rebuildPageSize);
}