這篇文章將為大家詳細(xì)講解有關(guān)ElasticSearch如何修改mapping,小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。
創(chuàng)新互聯(lián)建站網(wǎng)站建設(shè)提供從項(xiàng)目策劃、軟件開發(fā),軟件安全維護(hù)、網(wǎng)站優(yōu)化(SEO)、網(wǎng)站分析、效果評(píng)估等整套的建站服務(wù),主營業(yè)務(wù)為網(wǎng)站設(shè)計(jì)制作、成都網(wǎng)站設(shè)計(jì),成都app軟件開發(fā)公司以傳統(tǒng)方式定制建設(shè)網(wǎng)站,并提供域名空間備案等一條龍服務(wù),秉承以專業(yè)、用心的態(tài)度為用戶提供真誠的服務(wù)。創(chuàng)新互聯(lián)建站深信只要達(dá)到每一位用戶的要求,就會(huì)得到認(rèn)可,從而選擇與我們長(zhǎng)期合作。這樣,我們也可以走得更遠(yuǎn)!
目前網(wǎng)上來講,具體實(shí)現(xiàn)代碼很少,我找了好久只找到了Python的實(shí)現(xiàn)。本文基于ES官方代碼的PHP SDK和bulk有一個(gè)遷移實(shí)現(xiàn)。
'127.0.0.1', "port"=>'9200', 'scheme' => 'http' ); $client = Elasticsearch\ClientBuilder::create() ->setSSLVerification(false) ->setHosts($hosts) ->build(); for ($i = 1; $i <= 10; $i++) { if ($i != 10) { $params['index'] = 'index-0'.$i; } else { $params['index'] = 'index-'.$i; } echo $params["index"]."\r\n"; $params['type'] = 'raw'; $params['scroll'] = '120s'; $params["size"] = 50000; $params["body"] = array( "query" => array( "match_all" => array() ) ); $response = $client->search($params); $step = 1; while (isset($response['hits']['hits']) && count($response['hits']['hits']) > 0) { echo $step++."\t"; $scroll_id = $response['_scroll_id']; unset($response); $response = $client->scroll( array( "scroll_id" => $scroll_id, "scroll" => "120s" ) ); if (count($response['hits']['hits']) > 0) { $bulk = array('index'=>$params['index']."-reindex",'type'=>$params['type']); foreach ($response["hits"]["hits"] as $key=>$val) { $bulk['body'][]=array( 'index' => array( '_id'=>$val['_id'] ), ); $bulk['body'][] = $val['_source']; } // insert reindex $res = $client->bulk($bulk); unset($bulk); } else { break; } } }
關(guān)于“ElasticSearch如何修改mapping”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,使各位可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),請(qǐng)把它分享出去讓更多的人看到。