我在PHP中排序有问题,这是我的映射:
{
"jdbc": {
"mappings": {
"jdbc": {
"properties": {
"admitted_date": {
"type": "date",
"format": "dateOptionalTime"
},
"et_tax": {
"type": "string"
},
"jt_tax": {
"type": "string"
},
"loc_cityname": {
"type": "string"
},
"location_countryname": {
"type": "string"
},
"location_primary": {
"type": "string"
},
"pd_firstName": {
"type": "string"
}
}
}
}
}
}
当我按排序使用结果时,它将使用字母数字对结果进行排序,它将首先使用数字加载结果。我只需要开始字母字母排序结果。现在它的订单如下:
http://localhost:9200/jdbc/_search?pretty=true&sort=pd_lawFirmName:asc
- BM&安培; A
- Gomez-Acebo&庞博
- Addleshaw Goddard
醇>
如何订购这样的结果?
- Addleshaw Goddard
- BM&安培; A
- Gomez-Acebo&庞博
醇>
这是我用于索引的查询
{
"type" : "jdbc",
"jdbc" : {
"driver" : "com.mysql.jdbc.Driver",
"url" : "jdbc:mysql://localhost:3306/dbname",
"user" : "user",
"password" : "pass",
"sql" : "SQL QUERY",
"poll" : "24h",
"strategy" : "simple",
"scale" : 0,
"autocommit" : true,
"bulk_size" : 5000,
"max_bulk_requests" : 30,
"bulk_flush_interval" : "5s",
"fetchsize" : 100,
"max_rows" : 149669,
"max_retries" : 3,
"max_retries_wait" : "10s",
"locale" : "in",
"digesting" : true,
"mappings": {
"sorting": {
"properties": {
"pd_lawFirmName": {
"type": "string",
"fields": {
"raw": {
"type": "string",
"index": "not_analyzed"
}
}
}
}
}
}
}
}
答案 0 :(得分:2)
这就是因为Elasticsearch将使用默认分析器(standard
)对文本进行标记。例如,McDermott Will Amery
的索引类似于:
"amery",
"mcdermott",
"will"
如果您想这样排序,我建议您更改pd_lawFirmName
的映射,如下所示:
"pd_lawFirmName": {
"type": "string",
"fields": {
"raw": {
"type": "string",
"index": "not_analyzed"
}
}
}
并按raw
子字段排序:
http://localhost:9200/jdbc/_search?pretty=true&sort=pd_lawFirmName.raw:asc