GithubHelp home page GithubHelp logo

mysqlspdyimport's Introduction

mysqlspdyimport

Parallel-ized, concurrent-ized, STDIN mysql import tool. Just pipe INSERT statements in and watch your database fill up with your favorite mysql query tool.

Primary Motivators

  1. At 8tracks we use different databases on EC2 (mysql and postgres). We dump database/tables with SQL statements to transfer data between databases.
  2. Continue processing a file even if there are bad queries like unescaped quotes or backslashes.
  3. Speed up imports by using concurrency and parallelism of go.

Assumptions

  • The insert queries do not conflict with each other. If you're importing into a table that requires unique records but your queries are not unique, this could cause problems.
  • Insert order does not matter.

Install For Development

You'll need to setup go on your machine. Checkout http://golang.org/doc/install.

go get github.com/8tracks/mysqlspdyimport

Basic Usage

Use this tool like you would if you were to pipe a bunch of SQL commands into the mysql commandline tool.

By default, the following commands will use 3 goroutines and import data into the localhost mysql instance for the given database.

cat dump.sql | mysqlspdyimport -d DATABASE

Increase the number of goroutines to 100.

cat dump.sql | mysqlspdyimport -d DATABASE -c 100

The data piped in can be any query, but mysqlspdyimport will only run queries that start with INSERT.

mysqlspdyimport's People

Stargazers

Jan Brauer avatar

Watchers

Peter Bui avatar  avatar Remi Gabillet avatar Matthew Cieplak avatar Nathan Mock avatar James Cloos avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.