Perl Search::Elasticsearch模組使用經驗總結

來源:互聯網
上載者:User

標籤:perl   es   elasticsearch   

在搭建Elasticsearch資料庫的過程中,首先使用了其推薦的Logstash工具匯入資料,但是用起來非常不順手,所以想用Perl擅長的Regex對資料進行過濾分類,然後匯入Elasticsearch,於是搜尋CPAN找到了Search::Elasticsearch模組。

該模組在CPAN上的文檔寫的比較簡潔,於是將使用過程中的經驗總結如下:


一、逐條資料寫入:

use Search::Elasticsearch;my $e=Search::Elasticsearch->new(nodes=>[‘localhost:9200‘]);$e->index(    index=>"$index_name",    type=>"$type_name",    id=>"$id_name",    body=>{        title=>"$data_name",        data=>"$data"    });


二、批量資料寫入:

use Search::Elasticsearch;my $e=Search::Elasticsearch->new(nodes=>[‘localhost:9200‘]);my $bulk=$e->bulk_helper(    index=>"$index_name",    type=>"$type_name");my $i=0;while(...){    #do something    $bulk->add_action(index=>{id=>$id_name,source=>{title =>$data_name,data=>$data}});    if ($i>999){        $bulk->flush;        $i=0;    }    $i++;}


三、讀取一條記錄:

use Search::Elasticsearch;my $e=Search::Elasticsearch->new(nodes=>[‘localhost:9200‘]);my $doc=$e->get(    index=>"$index_name",    type=>"$type_name",    id=>"$id_name");my $data=$doc->{_source}->{$data_name};#do something


四、依次讀取全部記錄:

use Search::Elasticsearch;my $e=Search::Elasticsearch->new(nodes=>[‘localhost:9200‘]);my $scroll=$e->scroll_helper(    index=>"$index_name",    type=>"$type_name",    body=>{        query=>{match_all=>{}},        size=>5000    });while (my $doc=$scroll->next){    my $id=$doc->{_id};    my $data=$doc->{_source}->{$data_name};    #do something}


本文出自 “如意靈臨” 部落格,請務必保留此出處http://417722381.blog.51cto.com/7856838/1880794

Perl Search::Elasticsearch模組使用經驗總結

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.