我正在使用弹性搜索来索引两种类型的对象 -
数据详情
合约对象 ~ 60 个属性(对象大小 - 120 字节) 风险项目对象 ~ 125 个属性(对象大小 - 250 字节)
合同是风险项的父项 (_parent)
我在单个索引中存储了 2.4 亿个此类对象(2.1 亿个风险项目,3000 万份合约)
索引大小为 - 322 GB
集群详细信息
11 m2.4x.large EC2 box [68 gb memory, 1.6 TB storage, 8 cores](1 box 是负载均衡节点,node.data = false)50 shards 1 replica
弹性搜索.yml
node.data: true
http.enabled: false
index.number_of_shards: 50
index.number_of_replicas: 1
index.translog.flush_threshold_ops: 10000
index.merge.policy.use_compound_files: false
indices.memory.index_buffer_size: 30%
index.refresh_interval: 30s
index.store.type: mmapfs
path.data: /data-xvdf,/data-xvdg
我正在使用以下命令启动弹性搜索节点 - /home/ec2-user/elasticsearch-0.90.2/bin/elasticsearch -f -Xms30g -Xmx30g
我的问题是我正在对风险项目类型进行以下查询,并且返回数据大约需要 10-15 秒,共 20 条记录。
我正在以 50 个并发用户的负载和大约 5000 个并行发生的风险项的批量索引负载运行此程序。
查询(加入父子)
http://:9200/contractindex/riskitem/_search*
{
"query": {
"has_parent": {
"parent_type": "contract",
"query": {
"range": {
"ContractDate": {
"gte": "2010-01-01"
}
}
}
}
},
"filter": {
"and": [{
"query": {
"bool": {
"must": [{
"query_string": {
"fields": ["RiskItemProperty1"],
"query": "abc"
}
},
{
"query_string": {
"fields": ["RiskItemProperty2"],
"query": "xyz"
}
}]
}
}
}]
}
}
一张表的查询
Query1(此查询大约需要 8 秒。)
<!-- language: lang-json -->
{
"query": {
"constant_score": {
"filter": {
"and": [{
"term": {
"CommonCharacteristic_BuildingScheme": "BuildingScheme1"
}
},
{
"term": {
"Address_Admin2Name": "Admin2Name1"
}
}]
}
}
}
}
**Query2** (This query takes around 6.5 seconds for Top 10 records ( but has sort on top of it)
<!-- language: lang-json -->
{
"query": {
"constant_score": {
"filter": {
"and": [{
"term": {
"Insurer": "Insurer1"
}
},
{
"term": {
"Status": "Status1"
}
}]
}
}
}
}
有人可以帮助我如何提高此查询性能吗?