GithubHelp home page GithubHelp logo

isabella232 / reinvent-demo Goto Github PK

View Code? Open in Web Editor NEW

This project forked from swipely/reinvent-demo

0.0 0.0 0.0 153 KB

Demo for Swipely's Data Pipeline talk

License: MIT License

Ruby 80.86% Shell 19.14%

reinvent-demo's Introduction

reinvent-demo

Demo for Swipely's Data Pipeline talk

Setup

  • Settlements data file saved to s3://swipely-reinvent-demo/data/settlements.csv with form card_token, store, occurred_at, price, authorization_id:

    abc01,merchant-20,2012-06-08 00:59:25,1495,123
    abc02,merchant-09,2012-06-12 22:09:30,2800,456
    abc03,merchant-09,2012-06-12 22:43:37,2550,789
    
  • MySQL instance:

    create database customer_demo;
    use customer_demo;
    create table sales_by_day (store varchar(64), day datetime, total_sales decimal(10,2), primary key (store, day));
    
    create user 'pipeline'@'%' identified by '...';
    grant all privileges on customer_demo.* to 'pipeline'@'%';
    
  • config.yml:

    db_host: db-customer-demo.cynvbd7p6omk.us-east-1.rds.amazonaws.com
    db_database: customer_demo
    db_username: pipeline
    db_password: ...
    

reinvent-demo's People

Contributors

bfulton 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.