Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Real time data driven applications

lanzani
July 26, 2014

Real time data driven applications

This is the talk I delivered at PyData Berlin 2014 about building real time data driven applications using Python and pandas.

Video available soon.

lanzani

July 26, 2014
Tweet

More Decks by lanzani

Other Decks in Technology

Transcript

  1. GoDataDriven PROUDLY PART OF THE XEBIA GROUP Real time data

    driven applications Giovanni Lanzani Data Whisperer Using Python + pandas as back end
  2. Real-time, data driven app? •No store and retrieve; •Store, {transform,

    enrich, analyse} and retrieve; •Real-time: retrieve is not a batch process; •App: something your mother could use: SELECT attendees ! FROM!pydataberlin2014 ! WHERE password = '1234';
  3. Is it Big Data? •Raw logs are in the order

    of 40TB; •We use Hadoop for storing, enriching and pre- processing; •(10 nodes, 24TB per nodes)
  4. Challenges 1. Privacy; 2. Huge pile of data; 3. Real-time

    retrieval; 4. Some real-time analysis.
  5. Flask from flask import Flask! app = Flask(__name__)! ! @app.route("/hello")!

    def hello():! return "Hello World!"! ! if __name__ == "__main__":! app.run()
  6. Flask from flask import Flask! app = Flask(__name__)! ! @app.route("/hello")!

    def hello():! return "Hello World!"! ! if __name__ == "__main__":! app.run()
  7. app.py example @app.route('/api/<postcode>/<date>/<radius>', methods=['GET'])! @app.route('/api/<postcode>/<date>', methods=['GET'])! def datapoints(postcode, date, radius=1.0):!

    ...! stats, timeline, points = helper.get_json(postcode, date, radius)! return … # returns a JSON object for AngularJS
  8. data example date hour id_activity postcode hits delta sbi 2013-01-01

    12 1234 1234AB 35 22 1 2013-01-08 12 1234 1234AB 45 35 1 2013-01-01 11 2345 5555ZB 2 1 2 2013-01-08 11 2345 5555ZB 55 2 2
  9. helper.py example def get_json(postcode, date, radius):! ...! ! lat, lon

    = get_lat_lon(postcode)! postcodes = get_postcodes(postcode, radius)! ! data = get_data(postcodes, dates)! ! stats = get_statistics(data, sbi)! timeline = get_timeline(data, sbi)! ! return stats, timeline, data.to_json(orient='records')
  10. helper.py example def get_json(postcode, date, radius):! ...! ! lat, lon

    = get_lat_lon(postcode)! postcodes = get_postcodes(postcode, radius)! ! data = get_data(postcodes, dates)! ! stats = get_statistics(data, sbi)! timeline = get_timeline(data, sbi)! ! return stats, timeline, data.to_json(orient='records')
  11. helper.py example def get_statistics(data, sbi):! sbi_df = data[data.sbi == sbi]

    # filter by sbi! ! hits = sbi_df.hits.sum() # sum the hits ! delta_hits = sbi_df.delta.sum() # sum the delta hits! ! if delta_hits:! percentage = (hits - delta_hits) / delta_hits! else:! percentage = 0! ! return {"sbi": sbi, "total": hits, "percentage": percentage}
  12. helper.py example def get_statistics(data, sbi):! sbi_df = data[data.sbi == sbi]

    # filter by sbi! ! hits = sbi_df.hits.sum() # sum the hits ! delta_hits = sbi_df.delta.sum() # sum the delta hits! ! if delta_hits:! percentage = (hits - delta_hits) / delta_hits! else:! percentage = 0! ! return {"sbi": sbi, "total": hits, "percentage": percentage}
  13. helper.py example def get_json(postcode, date, radius):! ...! ! lat, lon

    = get_lat_lon(postcode)! postcodes = get_postcodes(postcode, radius)! dates = date.split(';')! ! data = get_data(postcodes, dates)! ! stats = get_statistics(data)! timeline = get_timeline(data, dates)! ! return stats, timeline, data.to_json(orient='records')
  14. Who has my data? •First iteration was a (pre)-POC, less

    data (3GB vs 500GB); •Time constraints; •Oeps:
  15. Who has my data? •First iteration was a (pre)-POC, less

    data (3GB vs 500GB); •Time constraints; •Oeps: import pandas as pd! ...! source_data = pd.read_csv("data.csv", …)! ...! def get_data(postcodes, dates):! result = filter_data(source_data, postcodes, dates)! return result
  16. Advantage of “everything is a df” Pro: •Fast!! •Use what

    you know •NO DBA’s! •We all love CSV’s! ! ! !
  17. Advantage of “everything is a df” Pro: •Fast!! •Use what

    you know •NO DBA’s! •We all love CSV’s! ! ! ! Contra: •Doesn’t scale; •Huge startup time; •NO DBA’s! •We all hate CSV’s!
  18. If you want to go down this path •Set the

    dataframe index wisely; •Align the data to the index: ! •Beware of modifications of the original dataframe! source_data.sort_index(inplace=True)
  19. If you want to go down this path The reason

    pandas is faster is because I came up with a better algorithm
  20. If you don’t… data = get_data(postcodes, dates) database.py Data psycopg2

    AngularJS app.py helper.py REST Front-end Back-end JSON
  21. If you don’t… data = get_data(db, postcodes, dates) database.py Data

    psycopg2 AngularJS app.py helper.py REST Front-end Back-end JSON
  22. Handling geo-data def get_json(postcode, date, radius):! """! ...! """! lat,

    lon = get_lat_lon(postcode)! postcodes = get_postcodes(postcode, radius)! dates = date.split(';')! ! data = get_data(postcodes, dates)! ! stats = get_statistics(data)! timeline = get_timeline(data, dates)! ! return stats, timeline, data.to_json(orient='records')
  23. Issues?! •With a radius of 10km, in Amsterdam, you get

    10k postcodes. You need to do this in your SQL: ! ! ! •Index on date and postcode, but single queries running more than 20 minutes. SELECT * FROM datapoints ! WHERE ! date IN date_array ! ! ! AND ! ! ! ! postcode IN postcode_array;
  24. Postgres + Postgis (2.x) PostGIS is a spatial database extender

    for PostgreSQL. Supports geographic objects allowing location queries SELECT *! FROM datapoints! WHERE ST_DWithin(lon, lat, 1500)! AND dates IN ('2013-02-30', '2013-02-31');! -- every point within 1.5km ! -- from (lat, lon) on imaginary dates
  25. Steps to solve it 1. Align data on disk by

    date; 2. Use the temporary table trick: ! ! ! ! 3. Lose precision: 1234AB→1234 4. (Compression) CREATE TEMPORARY TABLE tmp (postcodes STRING NOT NULL PRIMARY KEY);! INSERT INTO tmp (postcodes) VALUES postcode_array;! ! SELECT * FROM tmp! JOIN datapoints d! ON d.postcode = tmp.postcodes! WHERE! d.dt IN dates_array;