SlideShare a Scribd company logo
Storing and processing data
  with the WSO2 Platform
        Deependra Ariyadewa
         Wathsala Vithanage
WSO2
• Founded in 2005 by acknowledged leaders in XML, Web
  Services Technologies & Standards and Open Source

• Producing entire middleware platform 100% open source
  under Apache license

• Business model is to sell comprehensive support &
  maintenance for our products

• Venture funded by Intel Capital and Quest Software.

• Global corporation with offices in USA, UK & Sri Lanka

• 150+ employees and growing.
Introduction to Data Problem
• Information explosion
   o Rapid growth of published data.
   o Managing large amounts of data is difficult (this leads to
     an information overload)
   o Difficulties include
       Capture
       Storage
       Search
       Sharing
       Analytics
       Visualization
   o We need new tools to deal with BIG DATA.
The Well Known Data Solution
RDBMS
• For many years this has been the choice

• Scaling up RDBMS
   o   Put it in a bigger computer
   o   Replicate database over 2 - 3 nodes. This does not work well
       with more than 2 - 3 nodes.
   o    Partition data over several nodes. Although JOIN queries are
       hard across many nodes, may require custom code and
       configuration. Transactions may not scale well.
CAP Theorem and RDBMS
• RDBMS has two key features
   o Relational Model with SQL
   o ACID transactions (Atomic, Consistent, Isolation &
     Durable)
• CAP theorem states that in distributed systems it is only
  possible to have two properties out of the properties
  Consistency, Availability & Partition Tolerance at any given
  time.
   o Once you have picked two properties you will loose the
     remaining one.
• But there are some applications that do not need all the
  properties of RDBMS. Once these are dropped system
  scales. (e.g. Google Big Tables)
Rise of NoSQL
• Large internet companies hit the problem first, they build
  systems that are specific to their problem, and they did
  scale.
   o Google Big table
   o Amazon Dynamo

• Soon many others followed, and most of them are free and
  open source.

• Among advantages of NoSQL are
  o Scalability
  o Flexible schema
  o Designed to scale and support fault tolerance out of the
    Box
Finding the right Data Solution

• Data Types
  o Unstructured Data
      Files

  o   Semi Structured Data
       XML Databases, Queues, Graphs and Lists

  o   Structured Data
       DBMS
Handling Unstructured Data
• Storage Options
  o Key - Value storages for small data items
  o Distributed file systems for other cases
  o Metadata Registries (Nirvana, SDSC Resource broker)
• Scalability
  o Key - Value storages are highly Scalable (e.g. Amazon
    Dynamo)
  o Distributed File Systems are generally scalable (HDFS,
    Lustre)
  o Metadata Registries are also highly scalable
• Search
  o Each of above provide key based retrieval
  o Metadata registries provide property based search.
  o It is possible to build a index for content using tools like
    Lucence and use that for search.
Handling Semi-Structured Data
• Storage Options
   o   Answer depends on the type of structure. (e.g.
                                          XML = XML Databases,
       Graphs = Graph Databases, List = Data structure servers, work
       items = Queue)
   o   If there is a server optimized for a given type, it is often much more efficient than
       using a DB. (e.g. Graph databases can support fast relationship search)

• Scalabilty
   o   XML databases can shared data across nodes, so usually scalable, but others are not
       that scalable

• Search
   o   Very much custom. E.g. XML or any tree = XPath
   o   Graph can support very fast relationship search
Handling Structured Data (1-3 nodes)

                                                          • In general using DB here
               Small (1-3 nodes)
                                                            for every case might
               Loose         Operation     Transactions
               Consistency   Consistency                    work.
 Primary Key   DB/ KV/ CF    DB/ KV/ CF    DB             • Reason for using options
                                                            other than DB
 Where         DB/ CF/Doc    DB/ CF/Doc    DB
                                                             • When there is
 JOIN          DB            DB            DB                   potential need to scale
 Offline       DB/CF/Doc     DB/CF/Doc     DB/CF/Doc
                                                                later.
                                                             • High write throughput
                                                          • KV is 1-D where as other
                                                            two are 2D
*KV: Key-Value Systems, CF: Column
Families, Doc: document based
Systems
Handling Structured Data (10 nodes)

                                                     • KV, CF, and Doc can easily handle
          Scalable (10 nodes)
                                                       this case.
          Loose         Operation     Transactions
          Consistency   Consistency                  • If DBs used with data shredded
                                                       across many nodes.
Primary
Key
          KV/CF         KV/CF         Partitioned
                                      DB?
                                                        • Transactions might work with
Where     CF/Doc        CF/Doc        Partitioned
                                                            given that participants on one
                                      DB?                   transaction are not too many.
JOIN      ??            ??            Partitioned       • JOINs might need to transfer too
                                      DB??
                                                            much data between nodes.
Offline   CF/Doc        CF/Doc        No
                                                        • Also should consider in Memory
                                                            DBs like Vault DB
                                                     • Offline mode will work
                                                     • Most systems let users choose
*KV: Key-Value Systems, CF: Column                     consistency, and loose consistency
Families, Doc: document based                          can scale more. (e.g. Cassandra)
Systems
Highly Scalable System
                                                      • Transactions does not work in this scale.
               Highly Scalable (1000s nodes)            (CAP theorem).
                                                      • Same for the JOIN. Problem is sometime
          Loose          Operation     Transactions
          Consistency    Consistency                    too much data needs to be transferred
Primary   KV/CF          KV/CF         No               between nodes to perform the JOIN.
Key
                                                      • Offline case handled through Map-
Where     CF/Doc         CF/Doc        No               Reduce. Even JOIN case is OK since
                                                        there is time.
JOIN      No             No            No


Offline   CF/Doc         CF/Doc        No




 *KV: Key-Value Systems, CF: Column
 Families, Doc: document based
 Systems
Highly Scalable Systems + Primary Key Retrieval

                                                      • This is (comparatively) the easy one.
            Highly Scalable (1000s nodes)

           Loose         Operation     Transactions   • Can be solved through DHT
           Consistency   Consistency                    (Distributed Hash table) based solutions
Primary      KV/CF         KV/CF            No          or architectures like OceanStore.
  Key
 Where      CF/Doc(?)     CF/Doc(?)         No
                                                      • Both Key-Value Storages(KV) and
 JOIN          No            No             No          Column Families (CF) can be used. But
                                                        Key-Value model is preferred as it is
 Offline     CF/Doc        CF/Doc           No
                                                        more scalable.




*KV: Key-Value Systems, CF: Column
Families, Doc: document based
Systems
Highly scalable systems + WHERE
                                                     • This Generally OK, but tricky.
           Highly Scalable (1000s nodes)

          Loose         Operation     Transactions   • CF work through a Secondary index that
          Consistency   Consistency
                                                       do Scatter-gather (e.g. Cassandra).
Primary      KV/CF         KV/CF          No
  Key
                                                     • Doc work through Map-Reduce views
Where      CF/Doc(?)     CF/Doc(?)        No
                                                       (e.g. CouchDB).

 JOIN         No             No           No
                                                     • There is Bissa, which build a index for all
                                                       possible queries (No range queries)
Offline     CF/Doc         CF/Doc         No

                                                     • If you are doing this, you should do pilot
                                                       runs and make sure things work.


*KV: Key-Value Systems, CF: Column
Families, Doc: document based
Systems
Hybrid Approaches

• Some solution have many types of data and hence need
  more than one data solution (hybrid architectures).

• For example
   o Using DB for transactional data and CF for other data.
   o Keeping metadata and actual data separate for large data
     archives.
   o Use GraphDB to store relationship data while other while
     other data is in Column family storage.

• However, if transactions are needed, transactions have to
  be handled outside storages (e.g. using Atomicas,
  Zookeeper ).
Other Parameters

• Above list is not exhaustive, and there are other parameters
  o Read/Write ratio - when high, easy to scale.
  o High write throughput.
  o Very large data products - you will need a file system.
    May be keep metadata in Data registry and store data in
    a file system.
  o Flexible schema.
  o Archival usecases
  o Analytical usecases
  o Others ...
WSO2 Data Solutions




• Data Service Server - DSS

• Relational Storage Service - RSS
• Column Store Service - CSS
• File System as a service ( FSaaS) - HDFS

• DSS and RSS
• DSS and CSS
WSO2 Data Service Server (DSS)
WSO2 Data Service Server (DSS)
   Support for large XML outputs
   Content Filtering based on User's role
   Support for named parameters
   Ability to configure schema type for output elements
   Mixing multiple data sources in nested queries
   Distributed transaction support
   Oracle Ref Cursor support
   Support for multiple data source types
   Clustering support for High Availability and High Scalability
   Full support for WS-Security, WS-Trust, WS-Policy and WS-Secure Conversation and XKMS
   JMX and Web interface based monitoring and management
   WS-* and REST support
   Data validations
   UDT (User Defined Type) Support
   Complex Results
   Auto Generated Keys Support
   Boxcarring Support
   Batch Request Support
   Scheduled Tasks
   Registry Integration for Excel,CSV,XSLT
   Web Scraping Support
   Multiple SQL Dialect Support
   DB -> DS Generation
   Service Group/Hierarchy Support
   Database Explorer
   Data as a Service Features - DSS Stratos Service
     o Cassandra Integration
     o RDS Provisioning
WSO2 Data Service Server (DSS)
Data Services Description Language - DSDL
DSS Management Console
WSO2 Stratos Support for Relational Data

 • Offering a “database as as service” for tenants
    WSO2 Relational Storage Service
 • Users create database and receive JDBC URL
 • Database is allocated from Amazon RDS (MySQL) horizontal cluster
 • Tenants are isolated from each other and integrated with platform
   security model
WSO2 Relational Storage Service

• Use your own database server (anywhere)

• Register database connection as a datasource
  Use RSS to allocate a database
Stratos RSS
Stratos RSS
Stratos RSS
RSS Sample
WSO2 Column Store Service - CSS




Users can log in to the Web Console and create
Cassandra key spaces.
Column Store Service (Contd.)

• Key spaces will be allocated from a Cassandra clusters

• Users can manage and share his key spaces through Stratos
  Web Console and use those key spaces through Hector
  Client (Java Client for Cassandra)

• In essence we provide Cassandra as a part of Stratos as a
  Service with Multi-tenancy support and Security integration
  with WSO2 security model
WSO2 CSS Admin Console
 Left Menu




             Keyspace View
WSO2 CSS Admin Console

Keyspace Connection Details
WSO2 CSS Sample
File System as a Service - FSaaS
File System as a Service - FSaaS

The volume will be allocated from a HDFS cluster they are
isolated from other tenants in Stratos it is integrated with WSO2
Security model.

Users can manage and share his File system through Stratos
Web Console and use the file system like any other file
system.
FSaaS Sample
Data Processing - Mapreduce

• Mapreduce is inspired by map and reduce functions used in
  functional programming.
   o Initially introduced by Google with some parts being
     patented.

• Hadoop is a Mapreduce implementation that comes under
  Apache license agreement.

• WSO2 provides Mapreduce as a service.

• WSO2 Business Activity Monitor (BAM2) is an example use-
  case for WSO2's Mapreduce as a service.
WSO2 Mapreduce
• WSO2 Mapreduce is secure.

• WSO2 Mapreduce can use both FSaaS and DSS.
  o HDFS (FSaaS)
  o Cassendra (DSS)
WSO2 Mapreduce
WSO2 Mapreduce
WSO2 Mapreduce
WSO2 Mapreduce
WSO2 Mapreduce
WSO2 Mapreduce
Q&A
WSO2
• Founded in 2005 by acknowledged leaders in XML, Web
  Services Technologies & Standards and Open Source

• Producing entire middleware platform 100% open source
  under Apache license

• Business model is to sell comprehensive support &
  maintenance for our products

• Venture funded by Intel Capital and Quest Software.

• Global corporation with offices in USA, UK & Sri Lanka

• 150+ employees and growing.
Selected Customers



 https://ail.google.com/mail/u/0/?ui=2&i
 k=ad9ae58f41&view=att&th=1331a70
 983344a32&attid=0.1&disp=thd&reala
 ttid=f_gtxto6mk0&zw
WSO2 engagement model

• QuickStart
• Development
  Support
• Development
  Services
• Production
  Support
• Turnkey Solutions
  • WSO2 Mobile Services Solution
  • WSO2 FIX Gateway Solution
  • WSO2 SAP Gateway Solution

More Related Content

What's hot (20)

PDF
Introduction to failover clustering with sql server
Eduardo Castro
 
PPT
Introduction to Apache CloudStack by David Nalley
buildacloud
 
PPTX
Storage for VDI
Howard Marks
 
PPTX
Getting Started with Apache CloudStack
Joe Brockmeier
 
PDF
Cloud stack for_beginners
Radhika Puthiyetath
 
PDF
Cloud stack design camp on jun 15
Isaac Chiang
 
PPTX
2015 deploying flash in the data center
Howard Marks
 
PPTX
Big Data on Cloud Native Platform
Sunil Govindan
 
PPTX
Deploying Apache CloudStack from API to UI
Joe Brockmeier
 
PPTX
Introducing Node.js in an Oracle technology environment (including hands-on)
Lucas Jellema
 
PPTX
Building Event-Driven Systems with Apache Kafka
Brian Ritchie
 
PPTX
Software defined storage real or bs-2014
Howard Marks
 
PDF
Txlf2012
Joe Brockmeier
 
PPTX
Scott Schnoll - Exchange server 2013 high availability and site resilience
Nordic Infrastructure Conference
 
PPTX
Taking the open cloud to 11
Joe Brockmeier
 
PPTX
Azure DBA with IaaS
Kellyn Pot'Vin-Gorman
 
PPTX
Build public private cloud using openstack
Framgia Vietnam
 
PPTX
Building Storage for Clouds (ONUG Spring 2015)
Howard Marks
 
ODP
Guaranteeing Storage Performance by Mike Tutkowski
buildacloud
 
PDF
Maginatics Cloud Storage Platform - MCSP 3.0 Technical Highlights
Maginatics
 
Introduction to failover clustering with sql server
Eduardo Castro
 
Introduction to Apache CloudStack by David Nalley
buildacloud
 
Storage for VDI
Howard Marks
 
Getting Started with Apache CloudStack
Joe Brockmeier
 
Cloud stack for_beginners
Radhika Puthiyetath
 
Cloud stack design camp on jun 15
Isaac Chiang
 
2015 deploying flash in the data center
Howard Marks
 
Big Data on Cloud Native Platform
Sunil Govindan
 
Deploying Apache CloudStack from API to UI
Joe Brockmeier
 
Introducing Node.js in an Oracle technology environment (including hands-on)
Lucas Jellema
 
Building Event-Driven Systems with Apache Kafka
Brian Ritchie
 
Software defined storage real or bs-2014
Howard Marks
 
Txlf2012
Joe Brockmeier
 
Scott Schnoll - Exchange server 2013 high availability and site resilience
Nordic Infrastructure Conference
 
Taking the open cloud to 11
Joe Brockmeier
 
Azure DBA with IaaS
Kellyn Pot'Vin-Gorman
 
Build public private cloud using openstack
Framgia Vietnam
 
Building Storage for Clouds (ONUG Spring 2015)
Howard Marks
 
Guaranteeing Storage Performance by Mike Tutkowski
buildacloud
 
Maginatics Cloud Storage Platform - MCSP 3.0 Technical Highlights
Maginatics
 

Similar to Storing and processing data with the wso2 platform (20)

PDF
Finding the Right Data Solution for your Application in the Data Storage Hays...
DATAVERSITY
 
PPTX
No sql introduction_v1.1.1
Fan Ang
 
PDF
Finding the Right Data Solution for Your Application in the Data Storage Hays...
Srinath Perera
 
PPT
No sql
Shruti_gtbit
 
PDF
NoSQL overview #phptostart turin 11.07.2011
David Funaro
 
PPTX
A Survey of Advanced Non-relational Database Systems: Approaches and Applicat...
Qian Lin
 
PDF
Seminar.2010.NoSql
roialdaag
 
PPT
No sql
Murat Çakal
 
PDF
To SQL or No(t)SQL - PFCongres 2012
Jeroen van Dijk
 
PDF
No Sql
Michael Marth
 
PDF
Preparing yourdataforcloud
Inphina Technologies
 
PPTX
Big Data (NJ SQL Server User Group)
Don Demcsak
 
ODP
Nonrelational Databases
Udi Bauman
 
PPTX
Master.pptx
KarthikR780430
 
PDF
Mongodb my
Alexey Gaziev
 
PDF
MongoDB
SPBRUBY
 
PDF
SQL? NoSQL? NewSQL?!? What's a Java developer to do? - PhillyETE 2012
Chris Richardson
 
PDF
No sql findings
Christian van der Leeden
 
PDF
Cassandra
kspichale
 
Finding the Right Data Solution for your Application in the Data Storage Hays...
DATAVERSITY
 
No sql introduction_v1.1.1
Fan Ang
 
Finding the Right Data Solution for Your Application in the Data Storage Hays...
Srinath Perera
 
No sql
Shruti_gtbit
 
NoSQL overview #phptostart turin 11.07.2011
David Funaro
 
A Survey of Advanced Non-relational Database Systems: Approaches and Applicat...
Qian Lin
 
Seminar.2010.NoSql
roialdaag
 
No sql
Murat Çakal
 
To SQL or No(t)SQL - PFCongres 2012
Jeroen van Dijk
 
Preparing yourdataforcloud
Inphina Technologies
 
Big Data (NJ SQL Server User Group)
Don Demcsak
 
Nonrelational Databases
Udi Bauman
 
Master.pptx
KarthikR780430
 
Mongodb my
Alexey Gaziev
 
MongoDB
SPBRUBY
 
SQL? NoSQL? NewSQL?!? What's a Java developer to do? - PhillyETE 2012
Chris Richardson
 
No sql findings
Christian van der Leeden
 
Cassandra
kspichale
 
Ad

More from WSO2 (20)

PDF
Quantum Threats Are Closer Than You Think – Act Now to Stay Secure
WSO2
 
PDF
Modern Platform Engineering with Choreo - The AI-Native Internal Developer Pl...
WSO2
 
PDF
Application Modernization with Choreo - The AI-Native Internal Developer Plat...
WSO2
 
PDF
Build Smarter, Deliver Faster with Choreo - An AI Native Internal Developer P...
WSO2
 
PDF
Platformless Modernization with Choreo.pdf
WSO2
 
PDF
Application Modernization with Choreo for the BFSI Sector
WSO2
 
PDF
Choreo - The AI-Native Internal Developer Platform as a Service: Overview
WSO2
 
PDF
[Roundtable] Choreo - The AI-Native Internal Developer Platform as a Service
WSO2
 
PPTX
WSO2Con 2025 - Building AI Applications in the Enterprise (Part 1)
WSO2
 
PPTX
WSO2Con 2025 - Building Secure Business Customer and Partner Experience (B2B)...
WSO2
 
PPTX
WSO2Con 2025 - Building Secure Customer Experience Apps
WSO2
 
PPTX
WSO2Con 2025 - AI-Driven API Design, Development, and Consumption with Enhanc...
WSO2
 
PPTX
WSO2Con 2025 - AI-Driven API Design, Development, and Consumption with Enhanc...
WSO2
 
PPTX
WSO2Con 2025 - Unified Management of Ingress and Egress Across Multiple API G...
WSO2
 
PPTX
WSO2Con 2025 - How an Internal Developer Platform Lets Developers Focus on Code
WSO2
 
PPTX
WSO2Con 2025 - Architecting Cloud-Native Applications
WSO2
 
PDF
Mastering Intelligent Digital Experiences with Platformless Modernization
WSO2
 
PDF
Accelerate Enterprise Software Engineering with Platformless
WSO2
 
PDF
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
WSO2
 
PDF
architecting-ai-in-the-enterprise-apis-and-applications.pdf
WSO2
 
Quantum Threats Are Closer Than You Think – Act Now to Stay Secure
WSO2
 
Modern Platform Engineering with Choreo - The AI-Native Internal Developer Pl...
WSO2
 
Application Modernization with Choreo - The AI-Native Internal Developer Plat...
WSO2
 
Build Smarter, Deliver Faster with Choreo - An AI Native Internal Developer P...
WSO2
 
Platformless Modernization with Choreo.pdf
WSO2
 
Application Modernization with Choreo for the BFSI Sector
WSO2
 
Choreo - The AI-Native Internal Developer Platform as a Service: Overview
WSO2
 
[Roundtable] Choreo - The AI-Native Internal Developer Platform as a Service
WSO2
 
WSO2Con 2025 - Building AI Applications in the Enterprise (Part 1)
WSO2
 
WSO2Con 2025 - Building Secure Business Customer and Partner Experience (B2B)...
WSO2
 
WSO2Con 2025 - Building Secure Customer Experience Apps
WSO2
 
WSO2Con 2025 - AI-Driven API Design, Development, and Consumption with Enhanc...
WSO2
 
WSO2Con 2025 - AI-Driven API Design, Development, and Consumption with Enhanc...
WSO2
 
WSO2Con 2025 - Unified Management of Ingress and Egress Across Multiple API G...
WSO2
 
WSO2Con 2025 - How an Internal Developer Platform Lets Developers Focus on Code
WSO2
 
WSO2Con 2025 - Architecting Cloud-Native Applications
WSO2
 
Mastering Intelligent Digital Experiences with Platformless Modernization
WSO2
 
Accelerate Enterprise Software Engineering with Platformless
WSO2
 
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
WSO2
 
architecting-ai-in-the-enterprise-apis-and-applications.pdf
WSO2
 
Ad

Recently uploaded (20)

PPTX
MSP360 Backup Scheduling and Retention Best Practices.pptx
MSP360
 
PDF
The Builder’s Playbook - 2025 State of AI Report.pdf
jeroen339954
 
PPTX
UiPath Academic Alliance Educator Panels: Session 2 - Business Analyst Content
DianaGray10
 
PDF
Exolore The Essential AI Tools in 2025.pdf
Srinivasan M
 
PPTX
Building Search Using OpenSearch: Limitations and Workarounds
Sease
 
PDF
Smart Trailers 2025 Update with History and Overview
Paul Menig
 
PDF
CIFDAQ Market Insights for July 7th 2025
CIFDAQ
 
PDF
SFWelly Summer 25 Release Highlights July 2025
Anna Loughnan Colquhoun
 
PDF
Blockchain Transactions Explained For Everyone
CIFDAQ
 
PDF
Log-Based Anomaly Detection: Enhancing System Reliability with Machine Learning
Mohammed BEKKOUCHE
 
PDF
Empower Inclusion Through Accessible Java Applications
Ana-Maria Mihalceanu
 
PPTX
Q2 FY26 Tableau User Group Leader Quarterly Call
lward7
 
PDF
[Newgen] NewgenONE Marvin Brochure 1.pdf
darshakparmar
 
PDF
Building Real-Time Digital Twins with IBM Maximo & ArcGIS Indoors
Safe Software
 
PPTX
"Autonomy of LLM Agents: Current State and Future Prospects", Oles` Petriv
Fwdays
 
PDF
LLMs.txt: Easily Control How AI Crawls Your Site
Keploy
 
PDF
Presentation - Vibe Coding The Future of Tech
yanuarsinggih1
 
PDF
How Startups Are Growing Faster with App Developers in Australia.pdf
India App Developer
 
PPTX
Top iOS App Development Company in the USA for Innovative Apps
SynapseIndia
 
PDF
Fl Studio 24.2.2 Build 4597 Crack for Windows Free Download 2025
faizk77g
 
MSP360 Backup Scheduling and Retention Best Practices.pptx
MSP360
 
The Builder’s Playbook - 2025 State of AI Report.pdf
jeroen339954
 
UiPath Academic Alliance Educator Panels: Session 2 - Business Analyst Content
DianaGray10
 
Exolore The Essential AI Tools in 2025.pdf
Srinivasan M
 
Building Search Using OpenSearch: Limitations and Workarounds
Sease
 
Smart Trailers 2025 Update with History and Overview
Paul Menig
 
CIFDAQ Market Insights for July 7th 2025
CIFDAQ
 
SFWelly Summer 25 Release Highlights July 2025
Anna Loughnan Colquhoun
 
Blockchain Transactions Explained For Everyone
CIFDAQ
 
Log-Based Anomaly Detection: Enhancing System Reliability with Machine Learning
Mohammed BEKKOUCHE
 
Empower Inclusion Through Accessible Java Applications
Ana-Maria Mihalceanu
 
Q2 FY26 Tableau User Group Leader Quarterly Call
lward7
 
[Newgen] NewgenONE Marvin Brochure 1.pdf
darshakparmar
 
Building Real-Time Digital Twins with IBM Maximo & ArcGIS Indoors
Safe Software
 
"Autonomy of LLM Agents: Current State and Future Prospects", Oles` Petriv
Fwdays
 
LLMs.txt: Easily Control How AI Crawls Your Site
Keploy
 
Presentation - Vibe Coding The Future of Tech
yanuarsinggih1
 
How Startups Are Growing Faster with App Developers in Australia.pdf
India App Developer
 
Top iOS App Development Company in the USA for Innovative Apps
SynapseIndia
 
Fl Studio 24.2.2 Build 4597 Crack for Windows Free Download 2025
faizk77g
 

Storing and processing data with the wso2 platform

  • 1. Storing and processing data with the WSO2 Platform Deependra Ariyadewa Wathsala Vithanage
  • 2. WSO2 • Founded in 2005 by acknowledged leaders in XML, Web Services Technologies & Standards and Open Source • Producing entire middleware platform 100% open source under Apache license • Business model is to sell comprehensive support & maintenance for our products • Venture funded by Intel Capital and Quest Software. • Global corporation with offices in USA, UK & Sri Lanka • 150+ employees and growing.
  • 3. Introduction to Data Problem • Information explosion o Rapid growth of published data. o Managing large amounts of data is difficult (this leads to an information overload) o Difficulties include  Capture  Storage  Search  Sharing  Analytics  Visualization o We need new tools to deal with BIG DATA.
  • 4. The Well Known Data Solution RDBMS • For many years this has been the choice • Scaling up RDBMS o Put it in a bigger computer o Replicate database over 2 - 3 nodes. This does not work well with more than 2 - 3 nodes. o Partition data over several nodes. Although JOIN queries are hard across many nodes, may require custom code and configuration. Transactions may not scale well.
  • 5. CAP Theorem and RDBMS • RDBMS has two key features o Relational Model with SQL o ACID transactions (Atomic, Consistent, Isolation & Durable) • CAP theorem states that in distributed systems it is only possible to have two properties out of the properties Consistency, Availability & Partition Tolerance at any given time. o Once you have picked two properties you will loose the remaining one. • But there are some applications that do not need all the properties of RDBMS. Once these are dropped system scales. (e.g. Google Big Tables)
  • 6. Rise of NoSQL • Large internet companies hit the problem first, they build systems that are specific to their problem, and they did scale. o Google Big table o Amazon Dynamo • Soon many others followed, and most of them are free and open source. • Among advantages of NoSQL are o Scalability o Flexible schema o Designed to scale and support fault tolerance out of the Box
  • 7. Finding the right Data Solution • Data Types o Unstructured Data  Files o Semi Structured Data  XML Databases, Queues, Graphs and Lists o Structured Data  DBMS
  • 8. Handling Unstructured Data • Storage Options o Key - Value storages for small data items o Distributed file systems for other cases o Metadata Registries (Nirvana, SDSC Resource broker) • Scalability o Key - Value storages are highly Scalable (e.g. Amazon Dynamo) o Distributed File Systems are generally scalable (HDFS, Lustre) o Metadata Registries are also highly scalable • Search o Each of above provide key based retrieval o Metadata registries provide property based search. o It is possible to build a index for content using tools like Lucence and use that for search.
  • 9. Handling Semi-Structured Data • Storage Options o Answer depends on the type of structure. (e.g. XML = XML Databases, Graphs = Graph Databases, List = Data structure servers, work items = Queue) o If there is a server optimized for a given type, it is often much more efficient than using a DB. (e.g. Graph databases can support fast relationship search) • Scalabilty o XML databases can shared data across nodes, so usually scalable, but others are not that scalable • Search o Very much custom. E.g. XML or any tree = XPath o Graph can support very fast relationship search
  • 10. Handling Structured Data (1-3 nodes) • In general using DB here Small (1-3 nodes) for every case might Loose Operation Transactions Consistency Consistency work. Primary Key DB/ KV/ CF DB/ KV/ CF DB • Reason for using options other than DB Where DB/ CF/Doc DB/ CF/Doc DB • When there is JOIN DB DB DB potential need to scale Offline DB/CF/Doc DB/CF/Doc DB/CF/Doc later. • High write throughput • KV is 1-D where as other two are 2D *KV: Key-Value Systems, CF: Column Families, Doc: document based Systems
  • 11. Handling Structured Data (10 nodes) • KV, CF, and Doc can easily handle Scalable (10 nodes) this case. Loose Operation Transactions Consistency Consistency • If DBs used with data shredded across many nodes. Primary Key KV/CF KV/CF Partitioned DB? • Transactions might work with Where CF/Doc CF/Doc Partitioned given that participants on one DB? transaction are not too many. JOIN ?? ?? Partitioned • JOINs might need to transfer too DB?? much data between nodes. Offline CF/Doc CF/Doc No • Also should consider in Memory DBs like Vault DB • Offline mode will work • Most systems let users choose *KV: Key-Value Systems, CF: Column consistency, and loose consistency Families, Doc: document based can scale more. (e.g. Cassandra) Systems
  • 12. Highly Scalable System • Transactions does not work in this scale. Highly Scalable (1000s nodes) (CAP theorem). • Same for the JOIN. Problem is sometime Loose Operation Transactions Consistency Consistency too much data needs to be transferred Primary KV/CF KV/CF No between nodes to perform the JOIN. Key • Offline case handled through Map- Where CF/Doc CF/Doc No Reduce. Even JOIN case is OK since there is time. JOIN No No No Offline CF/Doc CF/Doc No *KV: Key-Value Systems, CF: Column Families, Doc: document based Systems
  • 13. Highly Scalable Systems + Primary Key Retrieval • This is (comparatively) the easy one. Highly Scalable (1000s nodes) Loose Operation Transactions • Can be solved through DHT Consistency Consistency (Distributed Hash table) based solutions Primary KV/CF KV/CF No or architectures like OceanStore. Key Where CF/Doc(?) CF/Doc(?) No • Both Key-Value Storages(KV) and JOIN No No No Column Families (CF) can be used. But Key-Value model is preferred as it is Offline CF/Doc CF/Doc No more scalable. *KV: Key-Value Systems, CF: Column Families, Doc: document based Systems
  • 14. Highly scalable systems + WHERE • This Generally OK, but tricky. Highly Scalable (1000s nodes) Loose Operation Transactions • CF work through a Secondary index that Consistency Consistency do Scatter-gather (e.g. Cassandra). Primary KV/CF KV/CF No Key • Doc work through Map-Reduce views Where CF/Doc(?) CF/Doc(?) No (e.g. CouchDB). JOIN No No No • There is Bissa, which build a index for all possible queries (No range queries) Offline CF/Doc CF/Doc No • If you are doing this, you should do pilot runs and make sure things work. *KV: Key-Value Systems, CF: Column Families, Doc: document based Systems
  • 15. Hybrid Approaches • Some solution have many types of data and hence need more than one data solution (hybrid architectures). • For example o Using DB for transactional data and CF for other data. o Keeping metadata and actual data separate for large data archives. o Use GraphDB to store relationship data while other while other data is in Column family storage. • However, if transactions are needed, transactions have to be handled outside storages (e.g. using Atomicas, Zookeeper ).
  • 16. Other Parameters • Above list is not exhaustive, and there are other parameters o Read/Write ratio - when high, easy to scale. o High write throughput. o Very large data products - you will need a file system. May be keep metadata in Data registry and store data in a file system. o Flexible schema. o Archival usecases o Analytical usecases o Others ...
  • 17. WSO2 Data Solutions • Data Service Server - DSS • Relational Storage Service - RSS • Column Store Service - CSS • File System as a service ( FSaaS) - HDFS • DSS and RSS • DSS and CSS
  • 18. WSO2 Data Service Server (DSS)
  • 19. WSO2 Data Service Server (DSS)  Support for large XML outputs  Content Filtering based on User's role  Support for named parameters  Ability to configure schema type for output elements  Mixing multiple data sources in nested queries  Distributed transaction support  Oracle Ref Cursor support  Support for multiple data source types  Clustering support for High Availability and High Scalability  Full support for WS-Security, WS-Trust, WS-Policy and WS-Secure Conversation and XKMS  JMX and Web interface based monitoring and management  WS-* and REST support  Data validations  UDT (User Defined Type) Support  Complex Results  Auto Generated Keys Support  Boxcarring Support  Batch Request Support  Scheduled Tasks  Registry Integration for Excel,CSV,XSLT  Web Scraping Support  Multiple SQL Dialect Support  DB -> DS Generation  Service Group/Hierarchy Support  Database Explorer  Data as a Service Features - DSS Stratos Service o Cassandra Integration o RDS Provisioning
  • 20. WSO2 Data Service Server (DSS)
  • 21. Data Services Description Language - DSDL
  • 23. WSO2 Stratos Support for Relational Data • Offering a “database as as service” for tenants WSO2 Relational Storage Service • Users create database and receive JDBC URL • Database is allocated from Amazon RDS (MySQL) horizontal cluster • Tenants are isolated from each other and integrated with platform security model
  • 24. WSO2 Relational Storage Service • Use your own database server (anywhere) • Register database connection as a datasource Use RSS to allocate a database
  • 29. WSO2 Column Store Service - CSS Users can log in to the Web Console and create Cassandra key spaces.
  • 30. Column Store Service (Contd.) • Key spaces will be allocated from a Cassandra clusters • Users can manage and share his key spaces through Stratos Web Console and use those key spaces through Hector Client (Java Client for Cassandra) • In essence we provide Cassandra as a part of Stratos as a Service with Multi-tenancy support and Security integration with WSO2 security model
  • 31. WSO2 CSS Admin Console Left Menu Keyspace View
  • 32. WSO2 CSS Admin Console Keyspace Connection Details
  • 34. File System as a Service - FSaaS
  • 35. File System as a Service - FSaaS The volume will be allocated from a HDFS cluster they are isolated from other tenants in Stratos it is integrated with WSO2 Security model. Users can manage and share his File system through Stratos Web Console and use the file system like any other file system.
  • 37. Data Processing - Mapreduce • Mapreduce is inspired by map and reduce functions used in functional programming. o Initially introduced by Google with some parts being patented. • Hadoop is a Mapreduce implementation that comes under Apache license agreement. • WSO2 provides Mapreduce as a service. • WSO2 Business Activity Monitor (BAM2) is an example use- case for WSO2's Mapreduce as a service.
  • 38. WSO2 Mapreduce • WSO2 Mapreduce is secure. • WSO2 Mapreduce can use both FSaaS and DSS. o HDFS (FSaaS) o Cassendra (DSS)
  • 45. Q&A
  • 46. WSO2 • Founded in 2005 by acknowledged leaders in XML, Web Services Technologies & Standards and Open Source • Producing entire middleware platform 100% open source under Apache license • Business model is to sell comprehensive support & maintenance for our products • Venture funded by Intel Capital and Quest Software. • Global corporation with offices in USA, UK & Sri Lanka • 150+ employees and growing.
  • 47. Selected Customers https://ail.google.com/mail/u/0/?ui=2&i k=ad9ae58f41&view=att&th=1331a70 983344a32&attid=0.1&disp=thd&reala ttid=f_gtxto6mk0&zw
  • 48. WSO2 engagement model • QuickStart • Development Support • Development Services • Production Support • Turnkey Solutions • WSO2 Mobile Services Solution • WSO2 FIX Gateway Solution • WSO2 SAP Gateway Solution