Sunlight Labs & MongoDB @ MongoDC

Preview:

DESCRIPTION

A look at how Sunlight Labs uses MongoDB. Presented at MongoDC on November 18, 2010.

Citation preview

MongoDB @ Sunlight

Luigi Montanezluigi@sunlightfoundation.com

Question? @LuigiMontanez

Question? @LuigiMontanez

Open Source + Open Data =

Open Government

Question? @LuigiMontanez

High Quality Raw Data

✴ First: Raw data in JSON, XML, or CSV✴ Second: RESTful APIs in JSON or XML✴ Third: Nothing else...

Question? @LuigiMontanez

MongoDB enablesopen data

Question? @LuigiMontanez

JSON has won(among developers)

Question? @LuigiMontanez

Opening Up Data

✴ Storing data from disparate sources✴ Data dumps✴ Web scraping✴ Text/PDF parsing

✴ Serving RESTful JSON APIs

Question? @LuigiMontanez

Three Projects

✴ National Data Catalog✴ Real-Time Congress API✴ Open State Project

Question? @LuigiMontanez

Three Projects

✴ National Data Catalog✴ Real-Time Congress API✴ Open State Project

Question? @LuigiMontanez

App designdrives

schema design

Text

{ "title": "Worldwide M1+ Earthquakes, Past Hour"}

Text

{ "title": "Worldwide M1+ Earthquakes, Past Hour", "description": "Real-time, worldwide earthquake list for the past hour", "homepage": "http://data.gov/raw/32", "official_docs": "http://earthquake.usgs.gov/eqcenter/catalogs/", "organization": "Department of the Interior", "original_catalog": "data.gov",}

Text

{ "title": "Worldwide M1+ Earthquakes, Past Hour", "description": "Real-time, worldwide earthquake list for the past hour", "homepage": "http://data.gov/raw/32", "official_docs": "http://earthquake.usgs.gov/eqcenter/catalogs/", "organization_id": "4cbcc0ff2c34576ba4000001", "catalog_id": "4cbcc0ab2d34d76b97020433",}

{ "title": "Worldwide M1+ Earthquakes, Past Hour", "description": "Real-time, worldwide earthquake list for the past hour", "homepage": "http://data.gov/raw/32", "official_docs": "http://earthquake.usgs.gov/eqcenter/catalogs/", "organization": { "name": "Department of the Interior", "id": "4cbcc0ff2c34576ba4000001", "slug": "us-dept-of-interior" }, "original_catalog": { "name": "data.gov", "id": "4cbcc0ab2d34d76b97020433", "slug": "datagov" }}

{ "title": "Worldwide M1+ Earthquakes, Past Hour", "description": "Real-time, worldwide earthquake list for the past hour", "homepage": "http://data.gov/raw/32", "official_docs": "http://earthquake.usgs.gov/eqcenter/catalogs/", "organization": { "name": "Department of the Interior", "id": "4cbcc0ff2c34576ba4000001", "slug": "us-dept-of-interior" }, "original_catalog": { "name": "data.gov", "id": "4cbcc0ab2d34d76b97020433", "slug": "datagov" }, "downloads": [ { "type": "csv", "url": "http://data.gov/download/32/csv" } ], "ratings" : { "average_rating": 3.5, "rating_count": 23 }, "comments": []}

Question? @LuigiMontanez

User-centric data?✴ Source document: contains collection of

user data✴ User document: contains collection of

source data✴ UserSource document✴ Rating, Favorite, Note docs

Question? @LuigiMontanez

Freedom of choice

Question? @LuigiMontanez

Three Projects

✴ National Data Catalog✴ Real-Time Congress API✴ Open State Project

Real-Time Congress API(Drumbone)

Credit: vgm8383 on Flickr

Android App: “Congress”

Politiwidgets

Question? @LuigiMontanez

Requirements✴ Aggregate lots of data

Biographical, Bills, Votes, Earmarks, Video Clips, Floor Updates, Legislative Documents, Committee Schedules, Contributions, Interest Group Ratings

✴ Lightweight responses

{legislator: { in_office: true, title: "Rep", nickname: "", district: "9", bioguide_id: "L000551", govtrack_id: "400237", phone: "202-225-2661", website: "http://lee.house.gov/index.html", twitter_id: "", last_name: "Lee", name_suffix: "", last_updated: "2010/04/13 00:00:14 +0000", party: "D", chamber: "house", state: "CA", youtube_url: "http://www.youtube.com/RepLee", first_name: "Barbara", gender: "F", congress_office: "2444 Rayburn House Office Building", earmarks: { average_number: 20, total_amount: 10000000, average_amount: 22994535, total_number: 28, last_updated: "2010-03-18", fiscal_year: 2010, } ...}

// limit selection to a subset of fieldsdb.people.find( { 'first_name' : 'john' }, { 'last_name' : 1, 'address' : 1 } );

// use dot-notation to dig into an objectdb.people.find( { 'state': 'CA' }, { 'address.zip_code': 1 } );

{legislator: { last_name: "Lee", first_name: "Barbara", state: "CA", earmarks: { average_number: 20, total_amount: 10000000, average_amount: 22994535, total_number: 28, last_updated: "2010-03-18", fiscal_year: 2010, }}

?sections=last_name,first_name,state,earmarks

{legislator: { last_name: "Lee", first_name: "Barbara", state: "CA", earmarks: { total_amount: 10000000, total_number: 28 }}

?sections=last_name,first_name,state,earmarks.total_amount,earmarks.total_number

Question? @LuigiMontanez

Partial responses make payloads

smaller

Question? @LuigiMontanez

Three Projects

✴ National Data Catalog✴ Real-Time Congress API✴ Open State Project

Question? @LuigiMontanez

50 States =50 Formats

Question? @LuigiMontanez

Schemalessness allows for

losslessness

Source Scraped JSON PythonTransform PostgreSQL

Source Scraped JSON MongoDB

Question? @LuigiMontanez

Three Projects

✴ National Data Catalog✴ Real-Time Congress API✴ Open State Project

Question? @LuigiMontanez

Thanks!sunlightlabs.com@LuigiMontanez

Recommended