MySQL Backup Techniques Using mysqldump and SELECT INTO OUTFILE
Backup Tools
The mysqldump utility can be used on both the client and server sides.
The SELECT INTO OUTFILE command is limited to writing data directly to the server side.
Backup by Table
a. Backing up a single table
mysqldump -uusername -p database table1 >tableback.sql
mysql> select * into outfile 'D:/someBookes/mysql/pracitce/mysql_ ...
Posted on Mon, 15 Jun 2026 16:53:52 +0000 by phatgreenbuds
Elasticsearch Snapshot Backup Automation on Windows
Configuring Backup Repository
Navigate to the elasticsearch-6.2.2\config directory and modify the elasticsearch.yml configuration file. Add the following line at the end to specify the backup storage path:
path.repo: ["D:/backup_storage/elastic_backup"]
Create the designated folder at the specified location if it doesn't exist.
Crea ...
Posted on Thu, 14 May 2026 06:13:05 +0000 by Vidya_tr
Mastering Rsync for Efficient Data Synchronization
Mastering Rsync for Efficient Data Synchronization
Introduction to Rsync
Rsync is a powerful open-source utility designed for rapid, versatile file synchronization between systems. It excels at performing both full and incremental data transfers across local and remote systems, supporting multiple platforms including Unix, Linux, and Windows. ...
Posted on Mon, 11 May 2026 06:24:36 +0000 by Ramtree
Implementing S3 Backup and Restore in Easysearch
Easysearch includes native support for S3 storage, enabling users to create and restore snapshots directly to Amazon S3-compatible services without installing external plugins. This integration streamlines the backup and migration workflow for data managed within the cluster.
Prerequisite: Object Storage Setup
A compatible S3 service is require ...
Posted on Fri, 08 May 2026 13:14:46 +0000 by Naithin
Deep Dive into MySQL: MVCC, Logs, Replication, and Backup
Multi-Version Concurrency Control (MVCC)
1. What is MVCC?
MVCC stands for Multi-Version Concurrency Control. It allows concurrency control by managing multiple versions of data rows. This technology makes consistent reads possible under InnoDB transaction isolation levels. It allows reading rows that are being updated by another transaction, se ...
Posted on Fri, 08 May 2026 01:45:33 +0000 by TheDumbNerd