SlideShare a Scribd company logo
Driving Business Value in FS
with MongoDB
Matt Kalan, FS Solutions Architect
Email: Matt.kalan@10gen.com
Twitter: @matthewkalan
2
• FS requirements today
• Traditional approaches
• MongoDB approach
• Rapid adoption
• Technical overview
• Best fit usage patterns
• Case studies
Agenda
3
Trends in FS Driving Change
Mobile &
Gamification (retail)
New
Opportunities
Regulations
Enhanced Risk
Management
CCP
Central
Clearing
Cost
pressures
4
Requirements
• Aggregate disparate
data
• Change apps quickly
• Analyze data faster
• Store more data
• Increase productivity
• Reduce TCO
drastically
Putting Urgency on These IT
Requirements Like Never Before
5
Unfortunately, RDBMSs Not Built for
These Requirements
Data Types & OOP
• Unstructured data
• Semi-structured
data
• Polymorphic data
Volume of Data
• Petabytes of data
• Trillions of records
• Tens of millions of
queries per second
Agile Development
• Iterative
• Short development
cycles
• New workloads
New Architectures
• Horizontal scaling
• Commodity
servers
• Cloud computing
6
• Customfield1…100 or separate tables
• Caching & ORMs
• Expensive hardware and storage
• Schema migration
• One schema across apps
• Application-specific partitioning
• Use files instead of databases
• Schema change takes 6 months
As a Result, Shoehorn Requirements
Slow time-to-market
Agility lost
High cost
Business frustrated
7
Now There Is Help
2010
RDBMS
Key-Value/
Column Store
OLAP/BI
Hadoop
2000
RDBMS
OLAP/BI
1990
RDBMS
Operational
Data
Datawarehouse
Document DB
NoSQL
8
Database Landscape
• No Automatic Joins
• Document Transactions
• Fast, Scalable Read/Writes
9
Relational: All Data is Column/Row
Customer ID First Name Last Name City
0 John Doe New York
1 Mark Smith San Francisco
2 Jay Black Newark
3 Meagan White London
4 Edward Daniels Boston
Account Number Branch ID Account Type Customer ID
10 100 Checking 0
11 101 Savings 0
12 101 IRA 0
13 200 Checking 1
14 200 Savings 1
15 201 IRA 2
10
Have to Manage Change in 3 Places
Relational
Database
Object Relational
Mapping
Application
Code XML Config DB Schema
11
Instead Match the Data in your
Application
Relational MongoDB
{ customer_id : 1,
first_name : "Mark",
last_name : "Smith",
city : "San Francisco",
accounts : [ {
account_number : 13,
branch_ID : 200,
account_type : "Checking"
},
{ account_number : 14,
branch_ID : 200,
account_type : ”IRA”,
beneficiaries: […]
} ]
}
12
Instead Put Data Model in One Place
Application
Code
Relational
Database
Object Relational
Mapping
XML Config DB Schema
Application
Code
Rich
Queries
Geospatial
Text Search
Map Reduce
Aggregatio
n
13
No SQL But Still Flexible Querying
MongoDB
{ customer_id : 1,
first_name : "Mark",
last_name : "Smith",
city : "San Francisco",
accounts : [ {
account_number : 13,
branch_ID : 200,
account_type : "Checking"
},
{ account_number : 14,
branch_ID : 200,
account_type : ”IRA”,
beneficiaries: […]
} ]
}
Rich Queries
• Find all Mark’s accounts
• Find everybody who opened an account
last month
Geospatial
• Find all customers that live within 10
miles of NYC
Text Search
• Find all tweets that mention the
company within the last 2 days
Aggregation
• What’s the average value of Mark’s
accounts
Map Reduce
• How many customers that have a
checking account also have an IRA
14
Operational Database Use Cases
RDBMSs
Key/Value or
Column Stores
MongoDB
15
DB-Engines.com Ranks DB Popularity
16
• MetLife Leapfrogs Insurance Industry with MongoDB-Powered
Big Data Application
– “innovative customer service application…in 90 days…from 70+ existing systems”
• 10gen Establishes Financial Services Advisory Group
– “ten leading global institutions…including Barclays, Goldman Sachs and MetLife.”
• IBM and 10gen Collaborate to Bring Mobile to the Enterprise
– “IBM will standardize on BSON, MongoDB wire protocol and query language”
• Informatica and 10gen Partner to Expand Data Integration for
MongoDB
– “use PowerCenter Big Data Edition to access…data stored in the market's leading
NoSQL database”
Customers and Software
Heavyweights Support MongoDB
17
10gen Partners (150+) & Integration
Software & Services
Cloud & Channel Hardware
MongoDB Solution
19
MongoDB Business Benefits
Increased Developer Productivity Better Customer Experience
Faster Time to Market Lower TCO
20
MongoDB Technical Benefits
Horizontally Scalable
-Sharding
Agile &
Flexible
High
Performance
-Indexes
-RAM
Application
Highly
Available
-Replica Sets
{ name: “Mark Smith”,
date: “2013-08-01”),
address: “10 3rd St.”,
phone: [
{ home: 1234567890},
{ mobile: 1234568138} ]
}
db.cust.insert({…})
db.cust.find({
name:”Mark Smith”})
Best Fit for MongoDB
22
• New Application DB - normal real-time/OLTP application
database for new application
• Migrating Existing DB - migrated from RDBMS where
scale, agility, and/or cost is an issue
• Data Hub Above Core DBs/Apps – Layer above multiple
systems for real-time/request-response access
• Data Hub For Single Operational View - Single data
store from many disparate apps
• Data PaaS - Unlimited scalable data services as PaaS
Most Common Usage Patterns of
MongoDB
23
New Application Operational DB
MongoDB Cluster
Application
…
MongoDB
Driver/API
Datawarehouse
Environment
24
Migrating Operational DB
Application
Pain from performance, agility, or cost?
=> Best candidate for MongoDB
MongoDB Driver/API
Data
Access
Object/
Layer
ODBC
25
Application
Server
Fast Access Layer Above Core Apps
Application 1
MongoDB
Cluster
Application 2
Services
Layer
Application N
…
…
Mainframe
Core
Systems
RDMS
Core/legacy
Systems
ETL or
Pub/sub
REST/WS/API
26
Single View Across Disparate Systems
Source
database 1
Source
database 2
…
Source
Database N
• ETL
• File export
• Custom app
• Pub/sub
Document
• per record in
source system
Application 1
Application 2
Application M
OLTP/real-time
access
Queue to Update
Source Systems
…
27
Database PaaS
Application 1
MongoDB Cloud
Application 2
Application N
…
…
28
Common FS Use Cases
Capital Markets
1. Reference Data
Management
2. Risk Analysis &
Reporting
3. Private DBaaS
4. Buy-Side Portal
5. Regulatory Reporting
6. Trade Repository
7. Tick Data Capture &
Analysis
8. Order Capture
Banking
1. Single View of
Customer
2. Online Banking
3. Reference Data
Management
4. Risk Analysis &
Reporting
5. Product Catalog
6. Cybersecurity
Threat Analysis
Insurance
1. Single View of
the Customer
2. Online Quoting
3. Customer Portal
4. Risk Analysis &
Reporting
5. Reference Data
Distribution
6. Policy Definition
Catalog
29
Common FS Use Cases
Capital Markets
1. Reference Data
Management
2. Risk Analysis &
Reporting
3. Private DBaaS
4. Buy-Side Portal
5. Regulatory Reporting
6. Trade Repository
7. Tick Data Capture &
Analysis
8. Order Capture
Banking
1. Single View of
Customer
2. Online Banking
3. Reference Data
Management
4. Risk Analysis &
Reporting
5. Product Catalog
6. Cybersecurity
Threat Analysis
Insurance
1. Single View of
the Customer
2. Online Quoting
3. Customer Portal
4. Risk Analysis &
Reporting
5. Reference Data
Distribution
6. Policy Definition
Catalog
30
Distribute reference data globally in real-time for
fast local accessing and querying
Data Hub - Fast Access Case Study:
Global investment bank
Problem Why MongoDB Results
• Delays up to 36 hours in
distributing data by batch
• Charged multiple times
globally for same data
• Incurring regulatory
penalties from missing
SLAs
• Had to manage 20
distributed systems with
same data
• Dynamic schema: easy to
load initially & over time
• Auto-replication: data
distributed in real-time,
read locally
• Both cache and database:
cache always up-to-date
• Simple data modeling &
analysis: easy changes
and understanding
• Will save about
$40,000,000 in costs and
penalties over 5 years
• Only charged once for data
• Data in sync globally and
read locally
• Capacity to move to one
global shared data service
31
Previous Reference Data Management
Architecture
Feeds & Batch data
• Pricing
• Accounts
• Securities Master
• Corporate actions
Source
Master Data
(RDBMS)
Batch
Batch Batch
Batch
Batch
Batch
Batch
Destination
Data
(RDBMS)
Each represents
• People $
• Hardware $
• License $
• Reg penalty $
• & other downstream
problems
32
Solution with MongoDB
Feeds & Batch data
• Pricing
• Accounts
• Securities Master
• Corporate actions
Real-time
Real-time Real-time
Real-time
Real-time
Real-time
Real-time
Each represents
• No people $
• Less hardware $
• Less license $
• No penalty $
• & many less
problems
MongoDB
Secondaries
MongoDB
Primary
33
Global 360 degree view of customers’ policy portfolio
and interactions
Single View of Customer Case Study:
Tier 1 Global Insurance Provider
Problem Why MongoDB Results
• 70 systems and 20
screens to view
customer policies
• Many CSR calls taken
just to reroute customer
• Poor customer
experience
• Source systems are
hard to change
• Dynamic schema: can
combine 70 systems
easily
• Performance: can handle
all data in one DB
• Replication: local reads
and high availability
• Sharding: can add data
easily by scaling out
• Delivered in 3 months
with $4M – previous
attempts failed with $25M
• Unified customer view
available to all channels
• Shorter and less calls re-
routed
• Increased customer
satisfaction
34
Single View of Customer Case Study:
Tier 1 Global Insurance Provider
Source
database 1
Source
database 2
…
Source
Database 70
Custom app
exports JSON
Document
• per product
• per customer
CSR Application
Customer
Application
Agent/RM
Application
OLTP/real-time
access
Future phases
Queue to Update
Source Systems
35
More timely and accurate market risk analysis
Migrating Application DB Case Study:
Global FS Provider
Problem Why MongoDB Results
• Merger brought many
more users onto system
• Fed requiring longer
time window
• Need for versioning for
data lineage & auditing
• Could not scale existing
RDBMS
• Performance: can handle
more users and more
data all at once
• Dynamic schema: can
store disparate data and
make changes easily
• Replication: local reads
and high availability
• Sharding: can add data
easily by scaling out
• Risk analysis performed
every 15 minutes instead
of daily
• Have full audit trail of state
of the world at any time
• Can make application
changes much faster
• Trading desks can hedge
more effectively and use
more capital
36
Aggregating Risk Reporting
Reporting
Trades in
real-time
37
Online Banking/Trading Portal
Use case requirements:
• Store portfolios, accounts, positions/balances, orders, market values, etc.
• Ad hoc querying by account, security, date, trader, thresholds, etc.
• Fast response times and iteration keep customer satisfaction high
• Relationship manager wants real-time reporting and alerting on customer
activity
Why MongoDB?
• Low latency & caching => fast response times for all data available
• Dynamic schema => Can handle any portfolio structure, assets, or accounts
• High scalability => Reporting requirements on often large customer data
sets
• Aggregation Framework => calculate metrics, aggregations, and analysis
38
70%+ Lower TCO + New Capabilities
Commercial RDBMS
Compute – Scale-Up Servers
Storage – SAN
Dev. and Admin
Compute – Commodity HW
Storage – Local Storage
Dev. and Admin
$1,680K
$517K
39
• FS today requires agility, productivity, and low TCO
• RDBMS not supporting requirements well
• MongoDB addresses all these requirements as a general
purpose operational DB
• MongoDB has hit critical mass in adoption
• The best fit usage patterns are everywhere
• Many case studies demonstrating value in FS
• Let us know if we can help you get started
Summary
40
Training
Online and In-Person for Developers and Administrators
MongoDB Monitoring Service
Free, Cloud-Based Service for Monitoring and Alerts
MongoDB Backup Service
Cloud-Based Service for Backing Up and Restoring MongoDB
10gen Products and Services
Subscriptions
MongoDB Enterprise, Monitoring, Support, Commercial License
Consulting
Expert Resources for All Phases of MongoDB Implementations
41
Resource Location
MongoDB Downloads 10gen.com/download
Free Online Training education.10gen.com
Webinars and Events 10gen.com/events
White Papers 10gen.com/white-papers
Case Studies 10gen.com/customers
Presentations 10gen.com/presentations
Documentation docs.mongodb.org
Additional Info info@10gen.com
For More Information
Resource Location
Webinar: How to Drive Business Value in Financial Services with MongoDB

More Related Content

PPTX
Webinar: How to Drive Business Value in Financial Services with MongoDB
MongoDB
 
PPTX
How Insurance Companies Use MongoDB
MongoDB
 
PPTX
How to deliver a Single View in Financial Services
MongoDB
 
PDF
Final_CloudEventFrankfurt2017 (1).pdf
MongoDB
 
PPTX
Webinar: An Enterprise Architect’s View of MongoDB
MongoDB
 
PDF
Overcoming Today's Data Challenges with MongoDB
MongoDB
 
PPTX
Unlocking Operational Intelligence from the Data Lake
MongoDB
 
PPTX
Webinar: How Financial Firms Create a Single Customer View with MongoDB
MongoDB
 
Webinar: How to Drive Business Value in Financial Services with MongoDB
MongoDB
 
How Insurance Companies Use MongoDB
MongoDB
 
How to deliver a Single View in Financial Services
MongoDB
 
Final_CloudEventFrankfurt2017 (1).pdf
MongoDB
 
Webinar: An Enterprise Architect’s View of MongoDB
MongoDB
 
Overcoming Today's Data Challenges with MongoDB
MongoDB
 
Unlocking Operational Intelligence from the Data Lake
MongoDB
 
Webinar: How Financial Firms Create a Single Customer View with MongoDB
MongoDB
 

What's hot (20)

PPTX
Calculating ROI with Innovative eCommerce Platforms
MongoDB
 
PPTX
Business Jumpstart: The Right (and Wrong) Use Cases for MongoDB
MongoDB
 
PPTX
MongoDB Days Silicon Valley: Jumpstart: The Right and Wrong Use Cases for Mon...
MongoDB
 
PPT
Webinar: Making A Single View of the Customer Real with MongoDB
MongoDB
 
PPTX
Event-Based Subscription with MongoDB
MongoDB
 
PPTX
Webinar: How Financial Services Organizations Use MongoDB
MongoDB
 
PPTX
Webinar: MongoDB and Analytics: Building Solutions with the MongoDB BI Connector
MongoDB
 
PPT
Real World MongoDB: Use Cases from Financial Services by Daniel Roberts
MongoDB
 
PPTX
The Double win business transformation and in-year ROI and TCO reduction
MongoDB
 
PPTX
MongoDB on Financial Services Sector
Norberto Leite
 
PDF
IOOF Mongodb Australia
MongoDB
 
PPT
How Retail Banks Use MongoDB
MongoDB
 
PPTX
Best Practices for MongoDB in Today's Telecommunications Market
MongoDB
 
PPT
MongoDB in the Healthcare Enterprise
MongoDB
 
PPTX
Data Treatment MongoDB
Norberto Leite
 
PPTX
Webinar: How MongoDB is Used to Manage Reference Data - May 2014
MongoDB
 
PPTX
MongoDB Evenings Minneapolis: MongoDB is Cool But When Should I Use It?
MongoDB
 
PPTX
IOOF IT System Modernisation
MongoDB
 
PDF
Common MongoDB Use Cases
DATAVERSITY
 
PDF
Enabling Telco to Build and Run Modern Applications
Tugdual Grall
 
Calculating ROI with Innovative eCommerce Platforms
MongoDB
 
Business Jumpstart: The Right (and Wrong) Use Cases for MongoDB
MongoDB
 
MongoDB Days Silicon Valley: Jumpstart: The Right and Wrong Use Cases for Mon...
MongoDB
 
Webinar: Making A Single View of the Customer Real with MongoDB
MongoDB
 
Event-Based Subscription with MongoDB
MongoDB
 
Webinar: How Financial Services Organizations Use MongoDB
MongoDB
 
Webinar: MongoDB and Analytics: Building Solutions with the MongoDB BI Connector
MongoDB
 
Real World MongoDB: Use Cases from Financial Services by Daniel Roberts
MongoDB
 
The Double win business transformation and in-year ROI and TCO reduction
MongoDB
 
MongoDB on Financial Services Sector
Norberto Leite
 
IOOF Mongodb Australia
MongoDB
 
How Retail Banks Use MongoDB
MongoDB
 
Best Practices for MongoDB in Today's Telecommunications Market
MongoDB
 
MongoDB in the Healthcare Enterprise
MongoDB
 
Data Treatment MongoDB
Norberto Leite
 
Webinar: How MongoDB is Used to Manage Reference Data - May 2014
MongoDB
 
MongoDB Evenings Minneapolis: MongoDB is Cool But When Should I Use It?
MongoDB
 
IOOF IT System Modernisation
MongoDB
 
Common MongoDB Use Cases
DATAVERSITY
 
Enabling Telco to Build and Run Modern Applications
Tugdual Grall
 
Ad

Similar to Webinar: How to Drive Business Value in Financial Services with MongoDB (20)

PPTX
Webinar: Achieving Customer Centricity and High Margins in Financial Services...
MongoDB
 
PPTX
An Enterprise Architect's View of MongoDB
MongoDB
 
PPTX
When to Use MongoDB...and When You Should Not...
MongoDB
 
PPTX
Enterprise architectsview 2015-apr
MongoDB
 
PDF
Single View of the Customer
MongoDB
 
PDF
MongoDB Europe 2016 - The Rise of the Data Lake
MongoDB
 
PDF
How Financial Services Organizations Use MongoDB
MongoDB
 
PDF
MongoDB Breakfast Milan - Mainframe Offloading Strategies
MongoDB
 
PPTX
L’architettura di Classe Enterprise di Nuova Generazione
MongoDB
 
PPT
MongoBD London 2013: Real World MongoDB: Use Cases from Financial Services pr...
MongoDB
 
PPTX
L’architettura di classe enterprise di nuova generazione
MongoDB
 
PPTX
3 Ways Modern Databases Drive Revenue
MongoDB
 
PPTX
Ops Jumpstart: MongoDB Administration 101
MongoDB
 
PPTX
Scaling Database Modernisation with MongoDB - Infosys
MongoDB
 
PDF
Webinar: Introducing the MongoDB Connector for BI 2.0 with Tableau
MongoDB
 
PPTX
MongoDB in a Mainframe World
MongoDB
 
PPTX
Enterprise Reporting with MongoDB and JasperSoft
MongoDB
 
PPTX
Advanced applications with MongoDB
Norberto Leite
 
PDF
Webinar: How Banks Manage Reference Data with MongoDB
MongoDB
 
PPTX
An afternoon with mongo db new delhi
Rajnish Verma
 
Webinar: Achieving Customer Centricity and High Margins in Financial Services...
MongoDB
 
An Enterprise Architect's View of MongoDB
MongoDB
 
When to Use MongoDB...and When You Should Not...
MongoDB
 
Enterprise architectsview 2015-apr
MongoDB
 
Single View of the Customer
MongoDB
 
MongoDB Europe 2016 - The Rise of the Data Lake
MongoDB
 
How Financial Services Organizations Use MongoDB
MongoDB
 
MongoDB Breakfast Milan - Mainframe Offloading Strategies
MongoDB
 
L’architettura di Classe Enterprise di Nuova Generazione
MongoDB
 
MongoBD London 2013: Real World MongoDB: Use Cases from Financial Services pr...
MongoDB
 
L’architettura di classe enterprise di nuova generazione
MongoDB
 
3 Ways Modern Databases Drive Revenue
MongoDB
 
Ops Jumpstart: MongoDB Administration 101
MongoDB
 
Scaling Database Modernisation with MongoDB - Infosys
MongoDB
 
Webinar: Introducing the MongoDB Connector for BI 2.0 with Tableau
MongoDB
 
MongoDB in a Mainframe World
MongoDB
 
Enterprise Reporting with MongoDB and JasperSoft
MongoDB
 
Advanced applications with MongoDB
Norberto Leite
 
Webinar: How Banks Manage Reference Data with MongoDB
MongoDB
 
An afternoon with mongo db new delhi
Rajnish Verma
 
Ad

More from MongoDB (20)

PDF
MongoDB SoCal 2020: Migrate Anything* to MongoDB Atlas
MongoDB
 
PDF
MongoDB SoCal 2020: Go on a Data Safari with MongoDB Charts!
MongoDB
 
PDF
MongoDB SoCal 2020: Using MongoDB Services in Kubernetes: Any Platform, Devel...
MongoDB
 
PDF
MongoDB SoCal 2020: A Complete Methodology of Data Modeling for MongoDB
MongoDB
 
PDF
MongoDB SoCal 2020: From Pharmacist to Analyst: Leveraging MongoDB for Real-T...
MongoDB
 
PDF
MongoDB SoCal 2020: Best Practices for Working with IoT and Time-series Data
MongoDB
 
PDF
MongoDB SoCal 2020: MongoDB Atlas Jump Start
MongoDB
 
PDF
MongoDB .local San Francisco 2020: Powering the new age data demands [Infosys]
MongoDB
 
PDF
MongoDB .local San Francisco 2020: Using Client Side Encryption in MongoDB 4.2
MongoDB
 
PDF
MongoDB .local San Francisco 2020: Using MongoDB Services in Kubernetes: any ...
MongoDB
 
PDF
MongoDB .local San Francisco 2020: Go on a Data Safari with MongoDB Charts!
MongoDB
 
PDF
MongoDB .local San Francisco 2020: From SQL to NoSQL -- Changing Your Mindset
MongoDB
 
PDF
MongoDB .local San Francisco 2020: MongoDB Atlas Jumpstart
MongoDB
 
PDF
MongoDB .local San Francisco 2020: Tips and Tricks++ for Querying and Indexin...
MongoDB
 
PDF
MongoDB .local San Francisco 2020: Aggregation Pipeline Power++
MongoDB
 
PDF
MongoDB .local San Francisco 2020: A Complete Methodology of Data Modeling fo...
MongoDB
 
PDF
MongoDB .local San Francisco 2020: MongoDB Atlas Data Lake Technical Deep Dive
MongoDB
 
PDF
MongoDB .local San Francisco 2020: Developing Alexa Skills with MongoDB & Golang
MongoDB
 
PDF
MongoDB .local Paris 2020: Realm : l'ingrédient secret pour de meilleures app...
MongoDB
 
PDF
MongoDB .local Paris 2020: Upply @MongoDB : Upply : Quand le Machine Learning...
MongoDB
 
MongoDB SoCal 2020: Migrate Anything* to MongoDB Atlas
MongoDB
 
MongoDB SoCal 2020: Go on a Data Safari with MongoDB Charts!
MongoDB
 
MongoDB SoCal 2020: Using MongoDB Services in Kubernetes: Any Platform, Devel...
MongoDB
 
MongoDB SoCal 2020: A Complete Methodology of Data Modeling for MongoDB
MongoDB
 
MongoDB SoCal 2020: From Pharmacist to Analyst: Leveraging MongoDB for Real-T...
MongoDB
 
MongoDB SoCal 2020: Best Practices for Working with IoT and Time-series Data
MongoDB
 
MongoDB SoCal 2020: MongoDB Atlas Jump Start
MongoDB
 
MongoDB .local San Francisco 2020: Powering the new age data demands [Infosys]
MongoDB
 
MongoDB .local San Francisco 2020: Using Client Side Encryption in MongoDB 4.2
MongoDB
 
MongoDB .local San Francisco 2020: Using MongoDB Services in Kubernetes: any ...
MongoDB
 
MongoDB .local San Francisco 2020: Go on a Data Safari with MongoDB Charts!
MongoDB
 
MongoDB .local San Francisco 2020: From SQL to NoSQL -- Changing Your Mindset
MongoDB
 
MongoDB .local San Francisco 2020: MongoDB Atlas Jumpstart
MongoDB
 
MongoDB .local San Francisco 2020: Tips and Tricks++ for Querying and Indexin...
MongoDB
 
MongoDB .local San Francisco 2020: Aggregation Pipeline Power++
MongoDB
 
MongoDB .local San Francisco 2020: A Complete Methodology of Data Modeling fo...
MongoDB
 
MongoDB .local San Francisco 2020: MongoDB Atlas Data Lake Technical Deep Dive
MongoDB
 
MongoDB .local San Francisco 2020: Developing Alexa Skills with MongoDB & Golang
MongoDB
 
MongoDB .local Paris 2020: Realm : l'ingrédient secret pour de meilleures app...
MongoDB
 
MongoDB .local Paris 2020: Upply @MongoDB : Upply : Quand le Machine Learning...
MongoDB
 

Recently uploaded (20)

PDF
Trying to figure out MCP by actually building an app from scratch with open s...
Julien SIMON
 
PDF
Unlocking the Future- AI Agents Meet Oracle Database 23ai - AIOUG Yatra 2025.pdf
Sandesh Rao
 
PDF
Structs to JSON: How Go Powers REST APIs
Emily Achieng
 
PDF
Tea4chat - another LLM Project by Kerem Atam
a0m0rajab1
 
PPTX
Applied-Statistics-Mastering-Data-Driven-Decisions.pptx
parmaryashparmaryash
 
PDF
OFFOFFBOX™ – A New Era for African Film | Startup Presentation
ambaicciwalkerbrian
 
PPTX
What-is-the-World-Wide-Web -- Introduction
tonifi9488
 
PDF
The Future of Artificial Intelligence (AI)
Mukul
 
PDF
NewMind AI Weekly Chronicles - July'25 - Week IV
NewMind AI
 
PDF
Make GenAI investments go further with the Dell AI Factory
Principled Technologies
 
PPTX
AI in Daily Life: How Artificial Intelligence Helps Us Every Day
vanshrpatil7
 
PDF
AI-Cloud-Business-Management-Platforms-The-Key-to-Efficiency-Growth.pdf
Artjoker Software Development Company
 
PPTX
Agile Chennai 18-19 July 2025 | Emerging patterns in Agentic AI by Bharani Su...
AgileNetwork
 
PDF
GDG Cloud Munich - Intro - Luiz Carneiro - #BuildWithAI - July - Abdel.pdf
Luiz Carneiro
 
PDF
How Open Source Changed My Career by abdelrahman ismail
a0m0rajab1
 
PPTX
Dev Dives: Automate, test, and deploy in one place—with Unified Developer Exp...
AndreeaTom
 
PDF
CIFDAQ's Market Wrap : Bears Back in Control?
CIFDAQ
 
PDF
Security features in Dell, HP, and Lenovo PC systems: A research-based compar...
Principled Technologies
 
PPTX
cloud computing vai.pptx for the project
vaibhavdobariyal79
 
PPTX
The-Ethical-Hackers-Imperative-Safeguarding-the-Digital-Frontier.pptx
sujalchauhan1305
 
Trying to figure out MCP by actually building an app from scratch with open s...
Julien SIMON
 
Unlocking the Future- AI Agents Meet Oracle Database 23ai - AIOUG Yatra 2025.pdf
Sandesh Rao
 
Structs to JSON: How Go Powers REST APIs
Emily Achieng
 
Tea4chat - another LLM Project by Kerem Atam
a0m0rajab1
 
Applied-Statistics-Mastering-Data-Driven-Decisions.pptx
parmaryashparmaryash
 
OFFOFFBOX™ – A New Era for African Film | Startup Presentation
ambaicciwalkerbrian
 
What-is-the-World-Wide-Web -- Introduction
tonifi9488
 
The Future of Artificial Intelligence (AI)
Mukul
 
NewMind AI Weekly Chronicles - July'25 - Week IV
NewMind AI
 
Make GenAI investments go further with the Dell AI Factory
Principled Technologies
 
AI in Daily Life: How Artificial Intelligence Helps Us Every Day
vanshrpatil7
 
AI-Cloud-Business-Management-Platforms-The-Key-to-Efficiency-Growth.pdf
Artjoker Software Development Company
 
Agile Chennai 18-19 July 2025 | Emerging patterns in Agentic AI by Bharani Su...
AgileNetwork
 
GDG Cloud Munich - Intro - Luiz Carneiro - #BuildWithAI - July - Abdel.pdf
Luiz Carneiro
 
How Open Source Changed My Career by abdelrahman ismail
a0m0rajab1
 
Dev Dives: Automate, test, and deploy in one place—with Unified Developer Exp...
AndreeaTom
 
CIFDAQ's Market Wrap : Bears Back in Control?
CIFDAQ
 
Security features in Dell, HP, and Lenovo PC systems: A research-based compar...
Principled Technologies
 
cloud computing vai.pptx for the project
vaibhavdobariyal79
 
The-Ethical-Hackers-Imperative-Safeguarding-the-Digital-Frontier.pptx
sujalchauhan1305
 

Webinar: How to Drive Business Value in Financial Services with MongoDB

  • 1. Driving Business Value in FS with MongoDB Matt Kalan, FS Solutions Architect Email: [email protected] Twitter: @matthewkalan
  • 2. 2 • FS requirements today • Traditional approaches • MongoDB approach • Rapid adoption • Technical overview • Best fit usage patterns • Case studies Agenda
  • 3. 3 Trends in FS Driving Change Mobile & Gamification (retail) New Opportunities Regulations Enhanced Risk Management CCP Central Clearing Cost pressures
  • 4. 4 Requirements • Aggregate disparate data • Change apps quickly • Analyze data faster • Store more data • Increase productivity • Reduce TCO drastically Putting Urgency on These IT Requirements Like Never Before
  • 5. 5 Unfortunately, RDBMSs Not Built for These Requirements Data Types & OOP • Unstructured data • Semi-structured data • Polymorphic data Volume of Data • Petabytes of data • Trillions of records • Tens of millions of queries per second Agile Development • Iterative • Short development cycles • New workloads New Architectures • Horizontal scaling • Commodity servers • Cloud computing
  • 6. 6 • Customfield1…100 or separate tables • Caching & ORMs • Expensive hardware and storage • Schema migration • One schema across apps • Application-specific partitioning • Use files instead of databases • Schema change takes 6 months As a Result, Shoehorn Requirements Slow time-to-market Agility lost High cost Business frustrated
  • 7. 7 Now There Is Help 2010 RDBMS Key-Value/ Column Store OLAP/BI Hadoop 2000 RDBMS OLAP/BI 1990 RDBMS Operational Data Datawarehouse Document DB NoSQL
  • 8. 8 Database Landscape • No Automatic Joins • Document Transactions • Fast, Scalable Read/Writes
  • 9. 9 Relational: All Data is Column/Row Customer ID First Name Last Name City 0 John Doe New York 1 Mark Smith San Francisco 2 Jay Black Newark 3 Meagan White London 4 Edward Daniels Boston Account Number Branch ID Account Type Customer ID 10 100 Checking 0 11 101 Savings 0 12 101 IRA 0 13 200 Checking 1 14 200 Savings 1 15 201 IRA 2
  • 10. 10 Have to Manage Change in 3 Places Relational Database Object Relational Mapping Application Code XML Config DB Schema
  • 11. 11 Instead Match the Data in your Application Relational MongoDB { customer_id : 1, first_name : "Mark", last_name : "Smith", city : "San Francisco", accounts : [ { account_number : 13, branch_ID : 200, account_type : "Checking" }, { account_number : 14, branch_ID : 200, account_type : ”IRA”, beneficiaries: […] } ] }
  • 12. 12 Instead Put Data Model in One Place Application Code Relational Database Object Relational Mapping XML Config DB Schema Application Code Rich Queries Geospatial Text Search Map Reduce Aggregatio n
  • 13. 13 No SQL But Still Flexible Querying MongoDB { customer_id : 1, first_name : "Mark", last_name : "Smith", city : "San Francisco", accounts : [ { account_number : 13, branch_ID : 200, account_type : "Checking" }, { account_number : 14, branch_ID : 200, account_type : ”IRA”, beneficiaries: […] } ] } Rich Queries • Find all Mark’s accounts • Find everybody who opened an account last month Geospatial • Find all customers that live within 10 miles of NYC Text Search • Find all tweets that mention the company within the last 2 days Aggregation • What’s the average value of Mark’s accounts Map Reduce • How many customers that have a checking account also have an IRA
  • 14. 14 Operational Database Use Cases RDBMSs Key/Value or Column Stores MongoDB
  • 16. 16 • MetLife Leapfrogs Insurance Industry with MongoDB-Powered Big Data Application – “innovative customer service application…in 90 days…from 70+ existing systems” • 10gen Establishes Financial Services Advisory Group – “ten leading global institutions…including Barclays, Goldman Sachs and MetLife.” • IBM and 10gen Collaborate to Bring Mobile to the Enterprise – “IBM will standardize on BSON, MongoDB wire protocol and query language” • Informatica and 10gen Partner to Expand Data Integration for MongoDB – “use PowerCenter Big Data Edition to access…data stored in the market's leading NoSQL database” Customers and Software Heavyweights Support MongoDB
  • 17. 17 10gen Partners (150+) & Integration Software & Services Cloud & Channel Hardware
  • 19. 19 MongoDB Business Benefits Increased Developer Productivity Better Customer Experience Faster Time to Market Lower TCO
  • 20. 20 MongoDB Technical Benefits Horizontally Scalable -Sharding Agile & Flexible High Performance -Indexes -RAM Application Highly Available -Replica Sets { name: “Mark Smith”, date: “2013-08-01”), address: “10 3rd St.”, phone: [ { home: 1234567890}, { mobile: 1234568138} ] } db.cust.insert({…}) db.cust.find({ name:”Mark Smith”})
  • 21. Best Fit for MongoDB
  • 22. 22 • New Application DB - normal real-time/OLTP application database for new application • Migrating Existing DB - migrated from RDBMS where scale, agility, and/or cost is an issue • Data Hub Above Core DBs/Apps – Layer above multiple systems for real-time/request-response access • Data Hub For Single Operational View - Single data store from many disparate apps • Data PaaS - Unlimited scalable data services as PaaS Most Common Usage Patterns of MongoDB
  • 23. 23 New Application Operational DB MongoDB Cluster Application … MongoDB Driver/API Datawarehouse Environment
  • 24. 24 Migrating Operational DB Application Pain from performance, agility, or cost? => Best candidate for MongoDB MongoDB Driver/API Data Access Object/ Layer ODBC
  • 25. 25 Application Server Fast Access Layer Above Core Apps Application 1 MongoDB Cluster Application 2 Services Layer Application N … … Mainframe Core Systems RDMS Core/legacy Systems ETL or Pub/sub REST/WS/API
  • 26. 26 Single View Across Disparate Systems Source database 1 Source database 2 … Source Database N • ETL • File export • Custom app • Pub/sub Document • per record in source system Application 1 Application 2 Application M OLTP/real-time access Queue to Update Source Systems …
  • 27. 27 Database PaaS Application 1 MongoDB Cloud Application 2 Application N … …
  • 28. 28 Common FS Use Cases Capital Markets 1. Reference Data Management 2. Risk Analysis & Reporting 3. Private DBaaS 4. Buy-Side Portal 5. Regulatory Reporting 6. Trade Repository 7. Tick Data Capture & Analysis 8. Order Capture Banking 1. Single View of Customer 2. Online Banking 3. Reference Data Management 4. Risk Analysis & Reporting 5. Product Catalog 6. Cybersecurity Threat Analysis Insurance 1. Single View of the Customer 2. Online Quoting 3. Customer Portal 4. Risk Analysis & Reporting 5. Reference Data Distribution 6. Policy Definition Catalog
  • 29. 29 Common FS Use Cases Capital Markets 1. Reference Data Management 2. Risk Analysis & Reporting 3. Private DBaaS 4. Buy-Side Portal 5. Regulatory Reporting 6. Trade Repository 7. Tick Data Capture & Analysis 8. Order Capture Banking 1. Single View of Customer 2. Online Banking 3. Reference Data Management 4. Risk Analysis & Reporting 5. Product Catalog 6. Cybersecurity Threat Analysis Insurance 1. Single View of the Customer 2. Online Quoting 3. Customer Portal 4. Risk Analysis & Reporting 5. Reference Data Distribution 6. Policy Definition Catalog
  • 30. 30 Distribute reference data globally in real-time for fast local accessing and querying Data Hub - Fast Access Case Study: Global investment bank Problem Why MongoDB Results • Delays up to 36 hours in distributing data by batch • Charged multiple times globally for same data • Incurring regulatory penalties from missing SLAs • Had to manage 20 distributed systems with same data • Dynamic schema: easy to load initially & over time • Auto-replication: data distributed in real-time, read locally • Both cache and database: cache always up-to-date • Simple data modeling & analysis: easy changes and understanding • Will save about $40,000,000 in costs and penalties over 5 years • Only charged once for data • Data in sync globally and read locally • Capacity to move to one global shared data service
  • 31. 31 Previous Reference Data Management Architecture Feeds & Batch data • Pricing • Accounts • Securities Master • Corporate actions Source Master Data (RDBMS) Batch Batch Batch Batch Batch Batch Batch Destination Data (RDBMS) Each represents • People $ • Hardware $ • License $ • Reg penalty $ • & other downstream problems
  • 32. 32 Solution with MongoDB Feeds & Batch data • Pricing • Accounts • Securities Master • Corporate actions Real-time Real-time Real-time Real-time Real-time Real-time Real-time Each represents • No people $ • Less hardware $ • Less license $ • No penalty $ • & many less problems MongoDB Secondaries MongoDB Primary
  • 33. 33 Global 360 degree view of customers’ policy portfolio and interactions Single View of Customer Case Study: Tier 1 Global Insurance Provider Problem Why MongoDB Results • 70 systems and 20 screens to view customer policies • Many CSR calls taken just to reroute customer • Poor customer experience • Source systems are hard to change • Dynamic schema: can combine 70 systems easily • Performance: can handle all data in one DB • Replication: local reads and high availability • Sharding: can add data easily by scaling out • Delivered in 3 months with $4M – previous attempts failed with $25M • Unified customer view available to all channels • Shorter and less calls re- routed • Increased customer satisfaction
  • 34. 34 Single View of Customer Case Study: Tier 1 Global Insurance Provider Source database 1 Source database 2 … Source Database 70 Custom app exports JSON Document • per product • per customer CSR Application Customer Application Agent/RM Application OLTP/real-time access Future phases Queue to Update Source Systems
  • 35. 35 More timely and accurate market risk analysis Migrating Application DB Case Study: Global FS Provider Problem Why MongoDB Results • Merger brought many more users onto system • Fed requiring longer time window • Need for versioning for data lineage & auditing • Could not scale existing RDBMS • Performance: can handle more users and more data all at once • Dynamic schema: can store disparate data and make changes easily • Replication: local reads and high availability • Sharding: can add data easily by scaling out • Risk analysis performed every 15 minutes instead of daily • Have full audit trail of state of the world at any time • Can make application changes much faster • Trading desks can hedge more effectively and use more capital
  • 37. 37 Online Banking/Trading Portal Use case requirements: • Store portfolios, accounts, positions/balances, orders, market values, etc. • Ad hoc querying by account, security, date, trader, thresholds, etc. • Fast response times and iteration keep customer satisfaction high • Relationship manager wants real-time reporting and alerting on customer activity Why MongoDB? • Low latency & caching => fast response times for all data available • Dynamic schema => Can handle any portfolio structure, assets, or accounts • High scalability => Reporting requirements on often large customer data sets • Aggregation Framework => calculate metrics, aggregations, and analysis
  • 38. 38 70%+ Lower TCO + New Capabilities Commercial RDBMS Compute – Scale-Up Servers Storage – SAN Dev. and Admin Compute – Commodity HW Storage – Local Storage Dev. and Admin $1,680K $517K
  • 39. 39 • FS today requires agility, productivity, and low TCO • RDBMS not supporting requirements well • MongoDB addresses all these requirements as a general purpose operational DB • MongoDB has hit critical mass in adoption • The best fit usage patterns are everywhere • Many case studies demonstrating value in FS • Let us know if we can help you get started Summary
  • 40. 40 Training Online and In-Person for Developers and Administrators MongoDB Monitoring Service Free, Cloud-Based Service for Monitoring and Alerts MongoDB Backup Service Cloud-Based Service for Backing Up and Restoring MongoDB 10gen Products and Services Subscriptions MongoDB Enterprise, Monitoring, Support, Commercial License Consulting Expert Resources for All Phases of MongoDB Implementations
  • 41. 41 Resource Location MongoDB Downloads 10gen.com/download Free Online Training education.10gen.com Webinars and Events 10gen.com/events White Papers 10gen.com/white-papers Case Studies 10gen.com/customers Presentations 10gen.com/presentations Documentation docs.mongodb.org Additional Info [email protected] For More Information Resource Location

Editor's Notes

  • #2: Mention FS includes cap markets, banking, and insurance. Looking at attendees, cap markets most but also touch on insurance and banking
  • #4: Reg- Cap markets – uncertainty plus changing regs with Dodd-Frank, Basel III, Volkor, etc. More regulatory reporting demands as GreatBanking – pressure from the fed for reportings, TBTFRisk mgmt – financial crisis showing failure of risk mgmt, so changing analytics, and the drive to be intraday, take more factors into accountCost pressure – esp. banking with low interest rates and fees
  • #5: Bringing data together (regulatory, risk, trade repository, etc.) painful with RDBMS => polymorphicAgility to change systems generally is painful => agileRun risk analysis more often towards intraday => performanceStore many years of audit info cheaply but online => scaleData warehouse not timely or performant enough => performanceStuck in expensive contracts without leverage => cost
  • #6: RDBMSs built before OOP, agile, cloud, and big dataData types – social networking and IM compliance; multiple desks, products, geographiesVolumes – store and analyze more data than ever for auditing and risk esp. and at low cost; data warehouse has some data but not how you want it and performant enough
  • #18: 152 partners, growing ~20% monthlyCertification: Cloud, BI/ETL, Analytics, Auditing/SecurityOther partners in BI (e.g., Pentaho, Jaspersoft) with many more comingIBM: Standardizing on BSON, MongoDB query language, and MongoDB wire protocol; integration with Guardium security product; integration with WebSphereRed Hat: Collaborating on a secure architecture for MongoDBInformatica: Integration with ETLAmazon: Easily deploy MongoDB on Amazon EC2; we have worked together to develop reference architectures and to use MongoDB with Amazon’s latest technologies, such as SSD instances and Provisioned IOPS (PIOPS)Rackspace: Rackspace offers a purpose-build database-as-a-service offering for MongoDB (through acquisition of ObjectRocket)Microsoft Azure: We have collaborated on tools to make it easy to deploy MongoDB on Microsoft AzureIntel, EMC, NetApp: We’re certified to work with their hardware. More to come.
  • #34: Good for regulatory reporting, e.g. KYC
  • #36: Good for regulatory reporting, e.g. KYC
  • #39: Then 10x better performance50% less dev time