Coder Social home page Coder Social logo

rpagliuca / stream-mysql-to-mongodb-with-go Goto Github PK

View Code? Open in Web Editor NEW
2.0 2.0 0.0 12 KB

Using the library go-mysql, I've setup a proof of concept environment where changes to a MySQL table are reflected into a MongoDB collection

Home Page: https://devser.com.br/posts/streaming-mysql-changes-to-mongodb-using-go-mysql/

Dockerfile 14.00% Go 64.26% Shell 16.22% TSQL 5.52%

stream-mysql-to-mongodb-with-go's Introduction

About

Using the library go-mysql, I've setup a proof of concept environment where changes to a MySQL table are reflected into a MongoDB collection

Usage

  • Start servers:
docker-compose up mysql-server mongodb-server
  • Initialize MySQL table with 3 records
docker-compose run mysql-cli init
  • List records from MongoDB collection (should return no records)
docker-compose run mongodb-fetcher
  • Initialize mysql-consumer, which will read changes from MySQL server
docker-compose up mysql-consumer
  • List records from MongoDB collection (should return 3 records)
docker-compose run mongodb-fetcher
  • Insert, update and delete records from MySQL table
docker-compose run mysql-cli 'INSERT INTO mytable(value) VALUES ("Record1"), ("Record2"), ("Another record")'

docker-compose run mysql-cli 'UPDATE mytable SET value="RecordTwo" WHERE value="Record2"'

docker-compose run mysql-cli 'DELETE FROM mytable WHERE value="Record1"'
  • List records from MongoDB collection (should return the new set of records)
docker-compose run mongodb-fetcher

stream-mysql-to-mongodb-with-go's People

Contributors

rpagliuca avatar

Stargazers

Leandro Missel avatar Wellmmer Lucas de Oliveira Pinto avatar

Watchers

James Cloos 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.