SlideShare a Scribd company logo
1 of 24
Download to read offline
Experiences with Evangelizing Java Within
the Database
The impact of MultiTenant Architecture in the develop of Java within the
RDBMS
The impact of MultiTenant Architecture in the develop
of Java within the RDBMS
About
●
About me
– CTO at Scotas.com
– Founder of the ArOUG
– ACE Member since 2006
– Open Source Developer (DBPrism/ DBPrism CMS, LDI, ...)
– Oracle developer since 1999
●
About Scotas
– A company specialized in free text search, synchronization
and Oracle
– OLS, Native Solr integration
– External Solr/ ElasticSearch integration
www.scotas.com
www.scotas.com
Agenda
– Database resident JVM
– History of the JVM implementation
– Multitenant Architecture
●
Process
●
Storage
●
OS resources
– Conclusion
Database resident JVM time-line
●
8i (1999, JDK1.2, JSP, ORB, NCOMP)
●
9i (2001, JDK 1.3, NCOMP)
●
10g (2003 R1, 2005 R2, JDK 1.4, NCOMP)
●
11g (2007, JDK 1.5, JIT)
●
12c (2013, JDK 1.6/1.7/.., JIT)
www.scotas.com
Database resident JVM architecture
www.scotas.com
Components
Sun’s JDK versus Database resident JVM
Sun’s JDK VM
● Thread Based
● Sharing across Threads
● Limited Scalability
● Classes in file system
● Resolve classes with
“Classpath”
● JIT
● Preemptive multi-threading
● Limited Robustness (process
failure)
Database resident JVM
● Database Session Model
● Session Isolation
● Unlimited Scalability
● Classes in database
● Resolve classes with
“Resolver Spec”
● JIT (11g and up)
● Non-Preemptive multi-
threading
● Does not crash as a whole
www.scotas.com
Oracle’s Commitment to OJVM
●
Used by a growing number of database customers acording
to Oracle
●
Used by Oracle Components
– InterMedia
– Spatial
– Text
– XQuery (XMLDB)
– WareHouse Builder
– CDC (Change Data Capture)
– ODM (Oracle Data Mining analytics functions)
●
12c Enhancements
www.scotas.com
●
Many among Fortune 500 companies
●
Some examples from
“Java in the Oracle Database @ Work – Customer Case Studies”
●
And for sure Scotas & Cima
Who is Using OJVM
www.scotas.com
Java in the Database: What For
www.scotas.com
● Trigger-based Notification System using
RMI
● Secure Credit-Card Processing using JSSE
● Custom Alert applications that monitor
business data
● Sending emails with attachment from
within the database
● Produce PDF files from Result Set
● Execute external OS commands and
external procedures
●
Implement Md5 CRC
● Publish Repository Content to Portal
● Portable Logistic Applications
● Implement Parsers for various File
Formats (txt, zip, xml, binary)
● Implement Image Transformation
and Format Conversion (GIF, PNG,
JPEG, etc)
● Implement Database-resident
Content Management System
● HTTP Call-Out
● JDBC Call-Out
● RMI Call-Out to SAP
● Web Services Call-Out
● Messaging across Tiers
● RESTful Database Web Services
● Near Real Time Full Text Search
Multitenant Architecture - Process
www.scotas.com
Multitenant Architecture - Storage
www.scotas.com
Multitenant resources
www.scotas.com
● Process
– CPU
– Memory
● Filesystem
● Network
Process - CPU resources
www.scotas.com
● Estimate CPU usage by OJVM
– Process connected using shared servers
– Process connected using dedicted servers
– Jobs process
– AQ process implemented in Java
● DBMS Resource Manager
– CPU Caging
● Dedicated plan for each PDBs
– Shares
– % CPU
– % Parallel Servers
● Dedicated plan for Jobs process
Process - Memory resources
www.scotas.com
● Estimate memory usage by OJVM
– SGA/UGA used by dedicated or shared server
process
– Jobs process count as dedicated process
– Look for global parameters:
● memory_target
● memory_max_target
● shared_pool_size (8Kb x load class)
● java_pool_size (during executing)
● java_soft_sessionspace_limit (soft limit, warning msg)
● java_max_sessionspace_limit (hard limit, default 4Gb)
● Fine tunning using JMX monitoring
Filesystem resources
www.scotas.com
● Logging
– $ORACLE_HOME/javavm/lib/logging.properties
● Accesing to files
– dbms_java.grant_permission
● Properties files
– $ORACLE_HOME/javavm/lib/management/jmxremote.access
– $ORACLE_HOME/javavm/lib/management/management.properties
● Trace files (Diag. directory)
– alert_orcl.log
– orcl_jnnn.trc
● Tablespaces/Datafiles
● JDK version per CDB 1.6/1.7
● IO metrics (Max. IOPS)
– dbms_resource_manager.calibrate_io
Network resources
www.scotas.com
● ACLs
– DBMS_NETWORK_ACL_ADMIN
● Protocol handlers (XMLDB)
– dbms_xdb.setFtpPort
– dbms_xdb.setHttpPort
● Security
– dbms_java.grant_permission
Network resources
www.scotas.com
● ACLs
– DBMS_NETWORK_ACL_ADMIN
● Protocol handlers (XMLDB)
– dbms_xdb.setFtpPort
– dbms_xdb.setHttpPort
● Security
– dbms_java.grant_permission
Deployments best practices
www.scotas.com
● CDB/PDBs
● Patching
● Application segmentation
Examples - Scotas OLS
www.scotas.com
●
An Embedded version of Solr Framework running inside Oracle JVM
●
42 new Java Classes and several new PLSQL Object Types
●
Four new SQL operators scontains(), sscore(), smlt(), shighlight() and
poweful text analysis functionalities
●
An orthogonal/up-to-date Solr solution for any programming language, especially
Java, Ruby, Python, PHP and .Net, currently latest production version – 4.0.0.
●
Available to any Oracle product such as BI, Apex, ODM
CREATE INDEX SIDX_A ON TEST_SOURCE_BIG(TEXT)
INDEXTYPE IS LUCENE.SOLRINDEX
parameters('DefaultColumn:text_tn;BatchCount:5000;CommitOnSync:false;LockMasterTable:f
alse;IncludeMasterColumn:false;Updater:localhost@9099;Searcher:localhost@9099;SyncMod
e:OnLine;LogLevel:WARNING;ExtraCols:text "text_tn",line "line_tin", type
"type_sn",substr(text,1,256)
"title";HighlightColumn:title;MltColumn:title;LobStorageParameters:STORAGE
(BUFFER_POOL KEEP) CACHE READS FILESYSTEM_LIKE_LOGGING');
CREATE INDEX SIDX_A ON TEST_SOURCE_BIG(TEXT)
INDEXTYPE IS LUCENE.SOLRINDEX
parameters('DefaultColumn:text_tn;BatchCount:5000;CommitOnSync:false;LockMasterTable:f
alse;IncludeMasterColumn:false;Updater:localhost@9099;Searcher:localhost@9099;SyncMod
e:OnLine;LogLevel:WARNING;ExtraCols:text "text_tn",line "line_tin", type
"type_sn",substr(text,1,256)
"title";HighlightColumn:title;MltColumn:title;LobStorageParameters:STORAGE
(BUFFER_POOL KEEP) CACHE READS FILESYSTEM_LIKE_LOGGING');
Examples – Scotas OLS in action
www.scotas.com
Examples – Scotas OLS in action
www.scotas.com
Conclusions
●
Multitenant is about isolating data
●
OS resources are shared
– Is very important take this into account
●
Applications need to be re-tested
again
●
Data which refers to OS resources
need to be updated when plug/unplug
PDBs
www.scotas.com
Answers!
www.scotas.com | info@scotas.com | +1 (650) 704-7915 | 440 North Wolfe Road, Sunnyvale, CA 94085
Thank
You!
www.scotas.com | info@scotas.com | +1 (650) 704-7915 | 440 North Wolfe Road, Sunnyvale, CA 94085

More Related Content

Recently uploaded

introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdfintroduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
VishalKumarJha10
 
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
masabamasaba
 
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
masabamasaba
 
TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service provider
mohitmore19
 
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 

Recently uploaded (20)

%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
 
AI & Machine Learning Presentation Template
AI & Machine Learning Presentation TemplateAI & Machine Learning Presentation Template
AI & Machine Learning Presentation Template
 
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdfintroduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
 
%in Harare+277-882-255-28 abortion pills for sale in Harare
%in Harare+277-882-255-28 abortion pills for sale in Harare%in Harare+277-882-255-28 abortion pills for sale in Harare
%in Harare+277-882-255-28 abortion pills for sale in Harare
 
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
 
Exploring the Best Video Editing App.pdf
Exploring the Best Video Editing App.pdfExploring the Best Video Editing App.pdf
Exploring the Best Video Editing App.pdf
 
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
 
SHRMPro HRMS Software Solutions Presentation
SHRMPro HRMS Software Solutions PresentationSHRMPro HRMS Software Solutions Presentation
SHRMPro HRMS Software Solutions Presentation
 
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
 
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdf
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdfPayment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdf
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdf
 
VTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learnVTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learn
 
Unlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language ModelsUnlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language Models
 
TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service provider
 
%in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park %in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park
 
%in Lydenburg+277-882-255-28 abortion pills for sale in Lydenburg
%in Lydenburg+277-882-255-28 abortion pills for sale in Lydenburg%in Lydenburg+277-882-255-28 abortion pills for sale in Lydenburg
%in Lydenburg+277-882-255-28 abortion pills for sale in Lydenburg
 
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
 
%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand
 
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
 
Announcing Codolex 2.0 from GDK Software
Announcing Codolex 2.0 from GDK SoftwareAnnouncing Codolex 2.0 from GDK Software
Announcing Codolex 2.0 from GDK Software
 
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
 

Featured

How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
ThinkNow
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
Kurio // The Social Media Age(ncy)
 

Featured (20)

2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot
 
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPT
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage Engineerings
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
 
Skeleton Culture Code
Skeleton Culture CodeSkeleton Culture Code
Skeleton Culture Code
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
 
How to have difficult conversations
How to have difficult conversations How to have difficult conversations
How to have difficult conversations
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best Practices
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project management
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
 

The impact of MultiTenant Architecture in the develop of Java within the RDBMS

  • 1. Experiences with Evangelizing Java Within the Database The impact of MultiTenant Architecture in the develop of Java within the RDBMS The impact of MultiTenant Architecture in the develop of Java within the RDBMS
  • 2. About ● About me – CTO at Scotas.com – Founder of the ArOUG – ACE Member since 2006 – Open Source Developer (DBPrism/ DBPrism CMS, LDI, ...) – Oracle developer since 1999 ● About Scotas – A company specialized in free text search, synchronization and Oracle – OLS, Native Solr integration – External Solr/ ElasticSearch integration www.scotas.com
  • 3. www.scotas.com Agenda – Database resident JVM – History of the JVM implementation – Multitenant Architecture ● Process ● Storage ● OS resources – Conclusion
  • 4. Database resident JVM time-line ● 8i (1999, JDK1.2, JSP, ORB, NCOMP) ● 9i (2001, JDK 1.3, NCOMP) ● 10g (2003 R1, 2005 R2, JDK 1.4, NCOMP) ● 11g (2007, JDK 1.5, JIT) ● 12c (2013, JDK 1.6/1.7/.., JIT) www.scotas.com
  • 5. Database resident JVM architecture www.scotas.com Components
  • 6. Sun’s JDK versus Database resident JVM Sun’s JDK VM ● Thread Based ● Sharing across Threads ● Limited Scalability ● Classes in file system ● Resolve classes with “Classpath” ● JIT ● Preemptive multi-threading ● Limited Robustness (process failure) Database resident JVM ● Database Session Model ● Session Isolation ● Unlimited Scalability ● Classes in database ● Resolve classes with “Resolver Spec” ● JIT (11g and up) ● Non-Preemptive multi- threading ● Does not crash as a whole www.scotas.com
  • 7. Oracle’s Commitment to OJVM ● Used by a growing number of database customers acording to Oracle ● Used by Oracle Components – InterMedia – Spatial – Text – XQuery (XMLDB) – WareHouse Builder – CDC (Change Data Capture) – ODM (Oracle Data Mining analytics functions) ● 12c Enhancements www.scotas.com
  • 8. ● Many among Fortune 500 companies ● Some examples from “Java in the Oracle Database @ Work – Customer Case Studies” ● And for sure Scotas & Cima Who is Using OJVM www.scotas.com
  • 9. Java in the Database: What For www.scotas.com ● Trigger-based Notification System using RMI ● Secure Credit-Card Processing using JSSE ● Custom Alert applications that monitor business data ● Sending emails with attachment from within the database ● Produce PDF files from Result Set ● Execute external OS commands and external procedures ● Implement Md5 CRC ● Publish Repository Content to Portal ● Portable Logistic Applications ● Implement Parsers for various File Formats (txt, zip, xml, binary) ● Implement Image Transformation and Format Conversion (GIF, PNG, JPEG, etc) ● Implement Database-resident Content Management System ● HTTP Call-Out ● JDBC Call-Out ● RMI Call-Out to SAP ● Web Services Call-Out ● Messaging across Tiers ● RESTful Database Web Services ● Near Real Time Full Text Search
  • 10. Multitenant Architecture - Process www.scotas.com
  • 11. Multitenant Architecture - Storage www.scotas.com
  • 12. Multitenant resources www.scotas.com ● Process – CPU – Memory ● Filesystem ● Network
  • 13. Process - CPU resources www.scotas.com ● Estimate CPU usage by OJVM – Process connected using shared servers – Process connected using dedicted servers – Jobs process – AQ process implemented in Java ● DBMS Resource Manager – CPU Caging ● Dedicated plan for each PDBs – Shares – % CPU – % Parallel Servers ● Dedicated plan for Jobs process
  • 14. Process - Memory resources www.scotas.com ● Estimate memory usage by OJVM – SGA/UGA used by dedicated or shared server process – Jobs process count as dedicated process – Look for global parameters: ● memory_target ● memory_max_target ● shared_pool_size (8Kb x load class) ● java_pool_size (during executing) ● java_soft_sessionspace_limit (soft limit, warning msg) ● java_max_sessionspace_limit (hard limit, default 4Gb) ● Fine tunning using JMX monitoring
  • 15. Filesystem resources www.scotas.com ● Logging – $ORACLE_HOME/javavm/lib/logging.properties ● Accesing to files – dbms_java.grant_permission ● Properties files – $ORACLE_HOME/javavm/lib/management/jmxremote.access – $ORACLE_HOME/javavm/lib/management/management.properties ● Trace files (Diag. directory) – alert_orcl.log – orcl_jnnn.trc ● Tablespaces/Datafiles ● JDK version per CDB 1.6/1.7 ● IO metrics (Max. IOPS) – dbms_resource_manager.calibrate_io
  • 16. Network resources www.scotas.com ● ACLs – DBMS_NETWORK_ACL_ADMIN ● Protocol handlers (XMLDB) – dbms_xdb.setFtpPort – dbms_xdb.setHttpPort ● Security – dbms_java.grant_permission
  • 17. Network resources www.scotas.com ● ACLs – DBMS_NETWORK_ACL_ADMIN ● Protocol handlers (XMLDB) – dbms_xdb.setFtpPort – dbms_xdb.setHttpPort ● Security – dbms_java.grant_permission
  • 18. Deployments best practices www.scotas.com ● CDB/PDBs ● Patching ● Application segmentation
  • 19. Examples - Scotas OLS www.scotas.com ● An Embedded version of Solr Framework running inside Oracle JVM ● 42 new Java Classes and several new PLSQL Object Types ● Four new SQL operators scontains(), sscore(), smlt(), shighlight() and poweful text analysis functionalities ● An orthogonal/up-to-date Solr solution for any programming language, especially Java, Ruby, Python, PHP and .Net, currently latest production version – 4.0.0. ● Available to any Oracle product such as BI, Apex, ODM CREATE INDEX SIDX_A ON TEST_SOURCE_BIG(TEXT) INDEXTYPE IS LUCENE.SOLRINDEX parameters('DefaultColumn:text_tn;BatchCount:5000;CommitOnSync:false;LockMasterTable:f alse;IncludeMasterColumn:false;Updater:localhost@9099;Searcher:localhost@9099;SyncMod e:OnLine;LogLevel:WARNING;ExtraCols:text "text_tn",line "line_tin", type "type_sn",substr(text,1,256) "title";HighlightColumn:title;MltColumn:title;LobStorageParameters:STORAGE (BUFFER_POOL KEEP) CACHE READS FILESYSTEM_LIKE_LOGGING'); CREATE INDEX SIDX_A ON TEST_SOURCE_BIG(TEXT) INDEXTYPE IS LUCENE.SOLRINDEX parameters('DefaultColumn:text_tn;BatchCount:5000;CommitOnSync:false;LockMasterTable:f alse;IncludeMasterColumn:false;Updater:localhost@9099;Searcher:localhost@9099;SyncMod e:OnLine;LogLevel:WARNING;ExtraCols:text "text_tn",line "line_tin", type "type_sn",substr(text,1,256) "title";HighlightColumn:title;MltColumn:title;LobStorageParameters:STORAGE (BUFFER_POOL KEEP) CACHE READS FILESYSTEM_LIKE_LOGGING');
  • 20. Examples – Scotas OLS in action www.scotas.com
  • 21. Examples – Scotas OLS in action www.scotas.com
  • 22. Conclusions ● Multitenant is about isolating data ● OS resources are shared – Is very important take this into account ● Applications need to be re-tested again ● Data which refers to OS resources need to be updated when plug/unplug PDBs www.scotas.com
  • 23. Answers! www.scotas.com | info@scotas.com | +1 (650) 704-7915 | 440 North Wolfe Road, Sunnyvale, CA 94085
  • 24. Thank You! www.scotas.com | info@scotas.com | +1 (650) 704-7915 | 440 North Wolfe Road, Sunnyvale, CA 94085