第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

如何在特定字段上使用排序

如何在特定字段上使用排序

FFIVE 2023-10-18 20:47:40
我有一個(gè)文件如何在elasticsearch上的特定字段上使用排序我的查詢(xún)?nèi)缦聓   "sort":{      "name":"desc"   },   "from":10,   "size":149,   "query":{      "match_all":{               }   }}我收到錯(cuò)誤Text fields are not optimised for operations that require per-document field data like aggregations and sorting, so these operations are disabled by default. Please use a keyword field instead. Alternatively, set fielddata=true on [name] in order to load field data by uninverting the inverted index. Note that this can use significant memory.')\"}" }我的索引名稱(chēng)是 data_new下面是插入索引的代碼test = [   {'id':1,'name': 'Cost Accounting 400', 'professor': ['Bill Cage', 'accounting']},    { 'id':2,  'name': 'Computer Internals 250', 'professor': ['Gregg Payne', 'engineering']},    {'id':3,   'name': 'Accounting Info Systems 350',   'professor': ['Bill Cage', 'accounting']},    {'id':4,'name': 'Tax Accounting 200', 'professor': ['Thomas Baszo', 'finance']},    {'id':5,'name': 'Capital Markets 350', 'professor': ['Thomas Baszo', 'finance']},    {'id':6,'name': 'Theatre 410', 'professor': ['Sebastian Hern', 'art']},    {'id':7,'name': 'Accounting 101', 'professor': ['Thomas Baszo', 'finance']},    {'id':8,'name': 'Marketing 101', 'professor': ['William Smith', 'finance']},    {'id':8,'name': 'Anthropology 230', 'professor': ['Devin Cranford', 'history']},    {'id':10,   'name': 'Computer Science 101',        'professor': ['Gregg Payne', 'engineering']}]from elasticsearch import Elasticsearchimport jsones = Elasticsearch()es.indices.create(index='data_new', ignore=400)for e in test:        es.index(index="data_new", body=e, id=e['id'])search = es.search(index="data_new", body={"from" : 0, "size" : 2,"query": {"match_all": {}}})search['hits']['hits']預(yù)計(jì)出我的第一個(gè)預(yù)期輸出>我需要對(duì)輸出進(jìn)行name排序第二個(gè)預(yù)期輸出 > 相對(duì)于namethen排序id如何進(jìn)行修改search = es.search(index="data_new", body={"from" : 0, "size" : 2,"query": {"match_all": {}}})https://www.elastic.co/guide/en/elasticsearch/reference/6.8/search-request-sort.html我瀏覽了沒(méi)有幫助的網(wǎng)址
查看完整描述

2 回答

?
侃侃爾雅

TA貢獻(xiàn)1801條經(jīng)驗(yàn) 獲得超16個(gè)贊

在啟用之前fielddata,請(qǐng)考慮為什么要使用文本字段進(jìn)行聚合、排序或在腳本中使用。這樣做通常沒(méi)有意義。


在建立索引之前會(huì)分析文本字段,以便可以通過(guò)搜索或 forNew York找到類(lèi)似的值。當(dāng)您可能需要一個(gè)名為newyorknewyorkNew York


相反,您應(yīng)該有一個(gè)用于全文搜索的文本字段,以及一個(gè)啟用聚合的未分析關(guān)鍵字字段doc_values,如下所示:


PUT data_new

{

? "mappings": {

? ? "properties": {

? ? ? "name": {?

? ? ? ? "type": "text",

? ? ? ? "fields": {

? ? ? ? ? "keyword": {?

? ? ? ? ? ? "type": "keyword"

? ? ? ? ? }

? ? ? ? }

? ? ? }

? ? }

? }

}

name.keyword 我想您已經(jīng)可以使用如下所示將名稱(chēng)視為關(guān)鍵字,


GET /data_new/_search

{

? "sort" : [

? ? ?{ "name.keyword" : {"order" : "asc"}}

? ],

?"from":10,

?"size":149,

?"query":{

? ?"match_all":{

? ? ?

? ? ?}

? ?}

}

查看完整回答
反對(duì) 回復(fù) 2023-10-18
?
catspeake

TA貢獻(xiàn)1111條經(jīng)驗(yàn) 獲得超0個(gè)贊

您可以對(duì)索引發(fā)出 PUT 請(qǐng)求以將 fielddata 設(shè)置為 true:


curl --location --request PUT 'http://localhost:9200/index_name/info/_mapping' \

--header 'Content-Type: application/json' \

--data-raw '{

  "properties": {

     "desc": { 

       "type":     "text",

       "fielddata": true

     }

  }

}'

desc列名在哪里


查看完整回答
反對(duì) 回復(fù) 2023-10-18
  • 2 回答
  • 0 關(guān)注
  • 175 瀏覽
慕課專(zhuān)欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢(xún)優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)