কীভাবে এক সার্ভার থেকে অন্য সার্ভারে স্থিতিস্থাপক ডেটা স্থানান্তরিত হয়


98

আমি কীভাবে একটি সার্ভার থেকে অন্য সার্ভারে স্থিতিস্থাপকীয় ডেটা স্থানান্তর করব?

আমার একাধিক সূচী সহ একটি স্থানীয় নোডে সার্ভার একটি চলমান ইলাস্টিকসার্ক 1.1.1 রয়েছে। আমি সেই তথ্যটি ইলাস্টিকসার্ক 1.3.4 চলমান সার্ভার বিতে অনুলিপি করতে চাই

প্রক্রিয়া এখনও অবধি

  1. ES বন্ধ করুন উভয় সার্ভারে এবং
  2. নতুন সার্ভারে সমস্ত ডেটা সঠিক ডাটা ডিরে স্ক্যাপ করুন। (আমার ডেবিয়ান বাক্সগুলিতে ডেটাটি / var / lib / ইলাস্টিকসर्च / অবস্থিত বলে মনে হচ্ছে)
  3. ইলাস্টিকসर्चে অনুমতি এবং মালিকানা পরিবর্তন করুন: স্থিতিস্থাপক অনুসন্ধান
  4. নতুন ইএস সার্ভারটি শুরু করুন

আমি যখন ইএস হেড প্লাগইন সহ ক্লাস্টারটি দেখি তখন কোনও সূচক উপস্থিত হয় না।

দেখে মনে হচ্ছে ডেটা লোড হয়নি। আমি কিছু অনুপস্থিত করছি?


4
ডেটা দ্বারা যদি আপনার সূচকগুলি বোঝানো হয়, আপনি কেবল সূচকগুলি ফোল্ডারটি স্থিতিস্থাপক / ডেটা / <clustername> / নোড / <নোড আইডি> ফোল্ডারে নতুন সম্পর্কিত স্থানে সরিয়ে নিতে পারেন। এটি উইন্ডোজের স্থিতিস্থাপক ডিরেক্টরি কাঠামো। যদিও এটি ডেবিয়ানে একই রকম কিনা তা নিশ্চিত নয়। তবে ধারণাটি হ'ল আপনি সরাসরি সূচক ডিরেক্টরিগুলি একটি ক্লাস্টার থেকে অন্য ক্লাস্টারে নিয়ে যেতে পারেন অনুমান করে যে সামঞ্জস্যতা ভঙ্গ হয়নি।
বিট্টুসরকর

4
আপনি কি নিশ্চিত যে ES 1.1.1 এবং ES 1.3.4 একই লুসিন সংস্করণ ব্যবহার করেছে? এটি একটি সামঞ্জস্য সমস্যা হতে পারে। এছাড়াও, ES মেটাডেটা একই হবে এমন কোনও গ্যারান্টি নেই। আমি কপিটি প্রোগ্রামটিমেটিকভাবে করার পরামর্শ দেব। প্রথমে সূচিপত্রগুলি অনুলিপি করুন এবং তারপরে ডেটা আমদানি করুন।
জোউজিয়াস

উত্তর:


129

নির্বাচিত উত্তর এটির চেয়ে কিছুটা জটিল শোনায়, আপনার যা প্রয়োজন তা নিম্নলিখিতটি (প্রথমে আপনার সিস্টেমে এনপিএম ইনস্টল করুন)।

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

যদি ম্যাপিং স্থির থাকে তবে আপনি পরবর্তী অনুলিপিগুলির জন্য প্রথম ইলাস্টিকডাম্প কমান্ডটি এড়িয়ে যেতে পারেন।

আমি কোনও সমস্যা ছাড়াই উপরোক্ত সাথে স্রেফ এডাব্লুএস থেকে কিউবক্স.আইওতে স্থানান্তর করেছি।

আরও বিশদ এখানে:

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" পাই get
ওয়াগাবন্ড

4
বেসিক লেখার প্রয়োগ কীভাবে?
মোহাম্মদ শহীদ

সাবধান থাকুন এটি এখনও ইলাস্টিকস र्च
অরটোমালা লোকনি

@ অরটোমালা লোকনি দেখে মনে হচ্ছে 5x এর সমর্থন এখন রয়েছে: github.com/taskrabbit/elasticsearch-dump/pull/268
Beau

আমি স্থিতিস্থাপক অনুসন্ধানের জন্য প্রমাণীকরণ সেট করে রেখেছি, আপনি দয়া করে আমাকে কীভাবে ইনপুট এবং আউটপুট অবস্থানের সাথে কমান্ডটিতে ব্যবহারকারীর নাম এবং পাসওয়ার্ডটি পাস করবেন তা আমাকে বলতে পারেন?
GR8 অ্যাডাক্রন

42

ইলাস্টিকডাম্প ব্যবহার করুন

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

এটি তখনই হয় যখন ডেটাটি এক অবস্থান থেকে অন্য স্থানে ট্রান্সফার করা উচিত তবে একই সার্ভারে। যদি ডেটাটি দুটি পৃথক আইপি অ্যাড্রেস সহ দুটি আলাদা সার্ভার লোকেশনে স্থানান্তরিত করা দরকার হয় তবে কী হবে?
ওয়াগাবন্ড

4
@ ট্র্যাম্প এটি 2 টি পৃথক আইপি ঠিকানা
ডি রাড

4
সাবধান থাকুন এটি এখনও ইলাস্টিকসার্ক 5 সমর্থন করে না: github.com/taskrabbit/elasticsearch-dump/issues/259
অরটোমালা লোকনি

4
দেখে মনে হচ্ছে ইলাস্টিকসার্ক 5 এখন github.com/taskrabbit/elasticsearch-dump/pull/268
হাইডু

22

আপনি এর জন্য ইলাস্টিকসर्चে উপলভ্য স্ন্যাপশট / পুনরুদ্ধার বৈশিষ্ট্যটি ব্যবহার করতে পারেন । একবার আপনি একটি ফাইল সিস্টেম ভিত্তিক স্ন্যাপশট স্টোর সেটআপ করে নিলে, আপনি এটিকে ক্লাস্টারগুলির মধ্যে নিয়ে যেতে পারেন এবং একটি ভিন্ন ক্লাস্টারে পুনরুদ্ধার করতে পারেন


4
আরও তথ্যের জন্য এই লিঙ্কটি পরীক্ষা করুন: qbox.io/blog/elasticsearch-data-snapshots-restore- টিউটোরিয়াল
ওয়াহউউ

6

আমি উবুন্টুতে 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 এ উপলব্ধ এবং তারপরে, আপনি আপনার নতুন ইলাস্টিকসার্ক পরিষেবা স্থাপনাকে দূরবর্তীভাবে আপনার পুরানো ইলাস্টিকসার্ক ক্লাস্টারের সাথে সংযুক্ত করতে পারেন। এটি আপনার পুরানো ক্লাস্টার থেকে ডেটা টানবে এবং এটিকে আপনার নতুনটিতে সূচিযুক্ত করে। রিইন্ডেক্সিং মূলত সূচিটি সূচি থেকে পুনর্নির্মাণ করে এবং এটি চালানোর জন্য আরও সংস্থানীয় সংস্থান হতে পারে।

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. ES সার্ভার বিতে স্বয়ংক্রিয়ভাবে সূচকগুলি অনুলিপি করবে
  4. সার্ভার বন্ধ করুন
  5. সূচকের জন্য প্রতিরূপ সংখ্যা হ্রাস

এটি কেবল তখনই কাজ করবে যদি নোডের সংখ্যার সমান প্রতিস্থাপনের সংখ্যা।


4
আমি বিশ্বাস করি সংস্করণগুলি পৃথক হলে এটি কাজ করবে না (যেমনটি ওপি-র প্রশ্নের ক্ষেত্রে এটি)
WoJ

অবশ্যই আমি এখন ESv1.7 থেকে আমার ডেটা ESv5 এ স্থানান্তরিত করতে কাজ করছি। আমার বিকল্প এটির জন্য কার্যকর হবে না, কারণ ম্যাপিংগুলিতে অনেক কিছুই পরিবর্তিত হয়েছে।
AndreyP

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. উভয় স্থিতিস্থাপক সার্ভারের সংযোগের বিশদ যুক্ত করুন config.js
  4. মধ্যে উপযুক্ত মান সেট করুন options.js
  5. টার্মিনালে চালান
    $ node index.js

0

আপনি আপনার ক্লাস্টারের সম্পূর্ণ স্থিতির স্ন্যাপশট নিতে পারেন (সমস্ত ডেটা সূচক সহ) এবং নতুন ক্লাস্টার বা সার্ভারে সেগুলি পুনরুদ্ধার করুন (পুনরায় সংস্থাগুলি ব্যবহার করে)।


আমাদের সাইট ব্যবহার করে, আপনি স্বীকার করেছেন যে আপনি আমাদের কুকি নীতি এবং গোপনীয়তা নীতিটি পড়েছেন এবং বুঝতে পেরেছেন ।
Licensed under cc by-sa 3.0 with attribution required.