कैसे एक सर्वर से दूसरे करने के लिए elasticsearch डेटा स्थानांतरित करने के लिए


94

मैं एलिस्टिक्स खोज के डेटा को एक सर्वर से दूसरे सर्वर पर कैसे स्थानांतरित करूं?

मेरे पास एक सर्वर है जिसमें कई सूचकांकों के साथ एक स्थानीय नोड पर एलीस्टैचर्च 1.1.1 चल रहा है । मैं उस डेटा को कॉपी करना चाहूंगा कि सर्वर बी को एलिटिक्स खोज 1.3.4 चला रहा है

अब तक की प्रक्रिया

  1. ES को सर्वर और सर्वर दोनों पर बंद करें
  2. नए डेटा पर सही डेटा dir के लिए सभी डेटा scp। (डेटा / var / lib / elasticsearch / मेरे डेबियन बक्से पर स्थित लगता है)
  3. अनुमतियाँ और स्वामित्व को इलास्टिक्सखोज में बदलें: इलास्टिक्सखोज
  4. नया ES सर्वर शुरू करें

जब मैं ES हेड प्लगइन के साथ क्लस्टर को देखता हूं, तो कोई सूचकांक दिखाई नहीं देता है।

ऐसा लगता है कि डेटा लोड नहीं है। क्या मैं कुछ भूल रहा हूँ?


2
यदि आप सूचकांकों से मतलब रखते हैं, तो आप केवल इलास्टिसर्च / डेटा / <clustername> / नोड्स / <नोड आईडी> फ़ोल्डर को नए संबंधित स्थान पर ले जा सकते हैं। यह विंडोज पर इलास्टिक्स खोज निर्देशिका संरचना है। यकीन नहीं अगर यह डेबियन पर एक ही है, हालांकि। लेकिन विचार यह है कि आप सीधे सूचकांक निर्देशिकाओं को एक क्लस्टर से दूसरे स्थान पर ले जा सकते हैं, जिससे यह माना जा सकता है कि संगतता टूटी नहीं है।
बिट्सुसरकर

1
क्या आप सुनिश्चित हैं कि ES 1.1.1 और ES 1.3.4 एक ही ल्यूसीन संस्करण का उपयोग करते हैं? यह संगतता समस्या का कारण हो सकता है। इसके अलावा, इस बात की कोई गारंटी नहीं है कि ES मेटाडेटा समान होगा। मैं सुझाव दूंगा कि प्रोग्राम को कॉपी करें। पहले इंडेक्स स्कीमा की प्रतिलिपि बनाएँ और फिर डेटा आयात करें।
ज़ूज़ियास

जवाबों:


125

चयनित उत्तर इसे ध्वनि की तुलना में थोड़ा अधिक जटिल बनाता है, आपको निम्नलिखित की आवश्यकता है (पहले अपने सिस्टम पर एनपीएम स्थापित करें)।

npm install -g elasticdump
elasticdump --input=http://mysrc.com:9200/my_index --output=http://mydest.com:9200/my_index --type=mapping
elasticdump --input=http://mysrc.com:9200/my_index --output=http://mydest.com:9200/my_index --type=data

यदि बाद में मैपिंग स्थिर रहती है, तो आप बाद की प्रतियों के लिए पहला इलास्टडम्प कमांड छोड़ सकते हैं।

मैंने अभी-अभी AWS से Qbox.io पर एक प्रवास किया है जो ऊपर से बिना किसी समस्या के है।

इस पर अधिक जानकारी:

https://www.npmjs.com/package/elasticdump

संपूर्णता के लिए शामिल सहायता पृष्ठ (फरवरी 2016 तक):

elasticdump: Import and export tools for elasticsearch

Usage: elasticdump --input SOURCE --output DESTINATION [OPTIONS]

--input
                    Source location (required)
--input-index
                    Source index and type
                    (default: all, example: index/type)
--output
                    Destination location (required)
--output-index
                    Destination index and type
                    (default: all, example: index/type)
--limit
                    How many objects to move in bulk per operation
                    limit is approximate for file streams
                    (default: 100)
--debug
                    Display the elasticsearch commands being used
                    (default: false)
--type
                    What are we exporting?
                    (default: data, options: [data, mapping])
--delete
                    Delete documents one-by-one from the input as they are
                    moved.  Will not delete the source index
                    (default: false)
--searchBody
                    Preform a partial extract based on search results
                    (when ES is the input,
                    (default: '{"query": { "match_all": {} } }'))
--sourceOnly
                    Output only the json contained within the document _source
                    Normal: {"_index":"","_type":"","_id":"", "_source":{SOURCE}}
                    sourceOnly: {SOURCE}
                    (default: false)
--all
                    Load/store documents from ALL indexes
                    (default: false)
--bulk
                    Leverage elasticsearch Bulk API when writing documents
                    (default: false)
--ignore-errors
                    Will continue the read/write loop on write error
                    (default: false)
--scrollTime
                    Time the nodes will hold the requested search in order.
                    (default: 10m)
--maxSockets
                    How many simultaneous HTTP requests can we process make?
                    (default:
                      5 [node <= v0.10.x] /
                      Infinity [node >= v0.11.x] )
--bulk-mode
                    The mode can be index, delete or update.
                    'index': Add or replace documents on the destination index.
                    'delete': Delete documents on destination index.
                    'update': Use 'doc_as_upsert' option with bulk update API to do partial update.
                    (default: index)
--bulk-use-output-index-name
                    Force use of destination index name (the actual output URL)
                    as destination while bulk writing to ES. Allows
                    leveraging Bulk API copying data inside the same
                    elasticsearch instance.
                    (default: false)
--timeout
                    Integer containing the number of milliseconds to wait for
                    a request to respond before aborting the request. Passed
                    directly to the request library. If used in bulk writing,
                    it will result in the entire batch not being written.
                    Mostly used when you don't care too much if you lose some
                    data when importing but rather have speed.
--skip
                    Integer containing the number of rows you wish to skip
                    ahead from the input transport.  When importing a large
                    index, things can go wrong, be it connectivity, crashes,
                    someone forgetting to `screen`, etc.  This allows you
                    to start the dump again from the last known line written
                    (as logged by the `offset` in the output).  Please be
                    advised that since no sorting is specified when the
                    dump is initially created, there's no real way to
                    guarantee that the skipped rows have already been
                    written/parsed.  This is more of an option for when
                    you want to get most data as possible in the index
                    without concern for losing some rows in the process,
                    similar to the `timeout` option.
--inputTransport
                    Provide a custom js file to us as the input transport
--outputTransport
                    Provide a custom js file to us as the output transport
--toLog
                    When using a custom outputTransport, should log lines
                    be appended to the output stream?
                    (default: true, except for `$`)
--help
                    This page

Examples:

# Copy an index from production to staging with mappings:
elasticdump \
  --input=http://production.es.com:9200/my_index \
  --output=http://staging.es.com:9200/my_index \
  --type=mapping
elasticdump \
  --input=http://production.es.com:9200/my_index \
  --output=http://staging.es.com:9200/my_index \
  --type=data

# Backup index data to a file:
elasticdump \
  --input=http://production.es.com:9200/my_index \
  --output=/data/my_index_mapping.json \
  --type=mapping
elasticdump \
  --input=http://production.es.com:9200/my_index \
  --output=/data/my_index.json \
  --type=data

# Backup and index to a gzip using stdout:
elasticdump \
  --input=http://production.es.com:9200/my_index \
  --output=$ \
  | gzip > /data/my_index.json.gz

# Backup ALL indices, then use Bulk API to populate another ES cluster:
elasticdump \
  --all=true \
  --input=http://production-a.es.com:9200/ \
  --output=/data/production.json
elasticdump \
  --bulk=true \
  --input=/data/production.json \
  --output=http://production-b.es.com:9200/

# Backup the results of a query to a file
elasticdump \
  --input=http://production.es.com:9200/my_index \
  --output=query.json \
  --searchBody '{"query":{"term":{"username": "admin"}}}'

------------------------------------------------------------------------------
Learn more @ https://github.com/taskrabbit/elasticsearch-dump`enter code here`

मैंने यह कोशिश की थी, लेकिन मुझे हर बार "त्रुटि उत्सर्जित => ECONNREFUSED कनेक्ट करें" मिलता है।
वागाबोंड

4
कैसे लागू करें मूल आधार?
मोहम्मद शाहिद

खबरदार यह अभी तक Elasticsearch 5 का समर्थन नहीं करता है: github.com/taskrabbit/elasticsearch-dump/issues/259
Ortomala Lokni

: 5.x के लिए समर्थन की तरह @OrtomalaLokni दिखता में है github.com/taskrabbit/elasticsearch-dump/pull/268
Beau

मैंने elasticsearch के लिए प्रमाणीकरण सेट किया है, क्या आप कृपया मुझे बता सकते हैं कि इनपुट और आउटपुट स्थान के साथ कमांड में उपयोगकर्ता नाम और पासवर्ड कैसे पारित करें?
Gr8 Adakron

42

ElasticDump का प्रयोग करें

1) यम एपल-रिलीज स्थापित करें

2) यम को नोडज स्थापित करें

3) यम एनपीएम स्थापित करें

4) एनपीएम इलास्टिकडंप स्थापित करें

5) सीडी नोड_मॉड्यूल / इलास्टिकडंप / बिन

6)

./elasticdump \

  --input=http://192.168.1.1:9200/original \

  --output=http://192.168.1.2:9200/newCopy \

  --type=data

यह तब होता है जब डेटा को एक स्थान से दूसरे स्थान पर एक ही सर्वर पर ट्रैसफर करने की आवश्यकता होती है। क्या होगा यदि डेटा को दो अलग-अलग आईपी पते के साथ दो अलग-अलग सर्वर स्थानों पर स्थानांतरित करने की आवश्यकता है?
वागाबोंड

2
@ ट्रैक यह 2 अलग-अलग आईपी पते हैं
डे राड

1
खबरदार यह अभी तक Elasticsearch 5 का समर्थन नहीं करता है: github.com/taskrabbit/elasticsearch-dump/issues/259
Ortomala Lokni

2
ऐसा लगता है कि एलियटेसर्च 5 अब समर्थित है github.com/taskrabbit/elasticsearch-dump/pull/268
hayduke

22

आप इसके लिए Elasticsearch में उपलब्ध स्नैपशॉट / पुनर्स्थापना सुविधा का उपयोग कर सकते हैं । एक बार आपके पास एक फाइलसिस्टम आधारित स्नैपशॉट स्टोर होने के बाद, आप इसे क्लस्टर के बीच घुमा सकते हैं और एक अलग क्लस्टर पर रीस्टोर कर सकते हैं


1
: अधिक जानकारी के लिए इस लिंक की जाँच करें qbox.io/blog/elasticsearch-data-snapshots-restore-tutorial
WaughWaugh

6

मैंने ubuntu पर ELK 2.4.3 से ELK 5.1.1 पर डेटा स्थानांतरित करने की कोशिश की

निम्नलिखित कदम हैं

$ sudo apt-get update

$ sudo apt-get install -y python-software-properties python g++ make

$ sudo add-apt-repository ppa:chris-lea/node.js

$ sudo apt-get update

$ sudo apt-get install npm

$ sudo apt-get install nodejs

$ npm install colors

$ npm install nomnom

$ npm install elasticdump

होम डायरेक्टरी गोटो में

$ cd node_modules/elasticdump/

आज्ञा का पालन करें

यदि आपको मूल http की आवश्यकता है, तो आप इसे इस तरह से उपयोग कर सकते हैं:

--input=http://name:password@localhost:9200/my_index

उत्पादन से एक सूचकांक कॉपी करें:

$ ./bin/elasticdump --input="http://Source:9200/Sourceindex" --output="http://username:password@Destination:9200/Destination_index"  --type=data

यह अच्छा है। बस sudo apt-get install -y software-properties-commonऐड-रिपॉजिटरी से पहले दौड़ना सुनिश्चित करें
सहस

आशा है कि यह +1
अक्षय पाटिल

5

_reindexविकल्प भी है

प्रलेखन से:

5.x और बाद के संस्करण में उपलब्ध Elasticsearch reindex API के माध्यम से, आप अपनी नई Elasticsearch सेवा परिनियोजन को अपने पुराने Elasticsearch क्लस्टर से दूरस्थ रूप से कनेक्ट कर सकते हैं। यह आपके पुराने क्लस्टर से डेटा को खींचता है और इसे आपके नए में अनुक्रमित करता है। रिंडेक्सिंग अनिवार्य रूप से खरोंच से सूचकांक का पुनर्निर्माण करता है और इसे चलाने के लिए अधिक संसाधन गहन हो सकता है।

POST _reindex
{
  "source": {
    "remote": {
      "host": "https://REMOTE_ELASTICSEARCH_ENDPOINT:PORT",
      "username": "USER",
      "password": "PASSWORD"
    },
    "index": "INDEX_NAME",
    "query": {
      "match_all": {}
    }
  },
  "dest": {
    "index": "INDEX_NAME"
  }
}

4

यदि आप क्लस्टर में दूसरा सर्वर जोड़ सकते हैं, तो आप ऐसा कर सकते हैं:

  1. सर्वर ए के साथ क्लस्टर में सर्वर बी जोड़ें
  2. सूचकांकों के लिए प्रतिकृतियों की वृद्धि संख्या
  3. ईएस स्वचालित रूप से सूचकांकों को सर्वर बी में कॉपी करेगा
  4. सर्वर A बंद करें
  5. सूचकांकों के लिए प्रतिकृतियों की संख्या में कमी

यह केवल तभी काम करेगा जब संख्याओं की संख्या नोड्स की संख्या के बराबर हो।


3
मेरा मानना ​​है कि जब संस्करण अलग-अलग होंगे तो यह काम नहीं करेगा (जैसा कि ओपी के सवाल में मामला है)
WoJ

ज़रूर। अब मैं अपने डेटा को ESv1.7 से ESv5 पर माइग्रेट करने पर काम कर रहा हूं। मेरा विकल्प इसके लिए काम नहीं करेगा, क्योंकि मैपिंग में बहुत सी चीजें बदल गईं।
एंड्रीप

3

अगर किसी को भी इस मुद्दे का सामना करना पड़ता है, तो इलास्टिक्सर्च <2.0 से> 2.0 तक डंप करने की कोशिश करते समय आपको करना होगा:

elasticdump --input=http://localhost:9200/$SRC_IND --output=http://$TARGET_IP:9200/$TGT_IND --type=analyzer
elasticdump --input=http://localhost:9200/$SRC_IND --output=http://$TARGET_IP:9200/$TGT_IND --type=mapping
elasticdump --input=http://localhost:9200/$SRC_IND --output=http://$TARGET_IP:9200/$TGT_IND --type=data --transform "delete doc.__source['_id']"

1

मुझे हमेशा सफलता मिली है बस नए सर्वर पर इंडेक्स डायरेक्टरी / फोल्डर को कॉपी करके फिर से शुरू करने की। आपको इंडेक्स आईडी मिल जाएगी GET /_cat/indicesऔर इस आईडी से मेल खाने वाला फ़ोल्डर data\nodes\0\indices(जब तक आप इसे स्थानांतरित नहीं करते हैं तब तक यह आपके इलास्टिक्स खोज फ़ोल्डर के अंदर होता है)।


1

हम बैकअप का उपयोग कर सकते हैं elasticdumpया multielasticdumpइसे पुनर्स्थापित कर सकते हैं, हम डेटा को एक सर्वर / क्लस्टर से दूसरे सर्वर / क्लस्टर में स्थानांतरित कर सकते हैं।

कृपया एक विस्तृत उत्तर खोजें, जो मैंने यहाँ प्रदान किया है


0

यदि आपको केवल एक इलास्टिक्स खोज सर्वर से दूसरे में डेटा ट्रांसफर करने की आवश्यकता है, तो आप इलास्टिक्सर्च-डॉक्यूमेंट-ट्रांसफर का भी उपयोग कर सकते हैं ।

कदम:

  1. अपने टर्मिनल में एक निर्देशिका खोलें और चलाएं
    $ npm install elasticsearch-document-transfer.
  2. एक फ़ाइल बनाएँ config.js
  3. में दोनों elasticsearch सर्वर के कनेक्शन विवरण जोड़ें config.js
  4. में उचित मान सेट करें options.js
  5. टर्मिनल में चलाएं
    $ node index.js

0

आप अपने क्लस्टर (संपूर्ण डेटा सूचकांकों सहित) की पूर्ण स्थिति का स्नैपशॉट ले सकते हैं और उन्हें नए क्लस्टर या सर्वर में पुनर्स्थापित कर सकते हैं (एपीआई पुनर्स्थापित कर सकते हैं)।

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.