Socket
Socket
Sign inDemoInstall

indexdump

Package Overview
Dependencies
57
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    indexdump

Manticore Search index dump utility


Version published
Maintainers
1
Created

Changelog

Source

1.2.0

Improvements

  • Create archive
  • Add --dry-run option
  • Add --data-dir options
  • Add --add-config option
  • Add --help option
  • Documentation changed

Readme

Source

Manticore Search index dump utility

Used for logical backup of indexes and exceptions, stopwords and wordforms files. For a physical backup of the index files, use indexbackup

To work correctly, all text fields must be stored. If the field is only indexed - you can not get the original data. If the index specifies absolute path for the exceptions, stopwords and wordforms files, they are required for backup. File paths are automatically changed to current_directory/index_name/file_name. To backup these files, you need to have read access or use sudo

WARNING: Testing only on Manticore Search 5 for RT indexes

Quick start

Install

:/var/backup# yarn global add indexdump

Check backup possibility

:/var/backup# indexdump --dry-run test_index

Backup

:/var/backup# indexdump test_index > test_index.tar.gz 

Restore

:/var/backup# tar -xOzf test_index.tar.gz dump.sql | mysql -P9306

View advanced settings

:/var/backup# indexdump --help

View version

:/var/backup# indexdump -v

Full sample dump to AWS s3

Install and config aws cli

For this example, you must have aws-cli configured

Dumping indexes is associated with transferring large amounts of data, so you need to set the chunk size for aws s3

I use eu-central-1 but you can choose any available

# ~/.aws/config
[default]
region = eu-central-1
output = json
s3 =
    multipart_chunksize = 256MB

Create bucket

:/var/backup# aws s3 mb s3://bucketname --region=eu-central-1

Check result

:/var/backup# aws s3 ls

Check possibility for dump

:/var/backup# indexdump --dry-run limit=10 --all 

Create dump and send to aws s3 in stream

:/var/backup# indexdump --add-drop-index --all | aws s3 cp - s3://bucketname/alldump.tar.gz

Restore

Extract exceptions, stopwords and wordforms files
aws s3 cp s3://bucketname/alldump.tar.gz - | tar -C . -xzf --exclude="dump.sql" -
Restore indexes dump
aws s3 cp s3://bucketname/alldump.tar.gz - | tar -xOzf - dump.sql | mysql -P9306

Keywords

FAQs

Last updated on 06 Aug 2022

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc