SlideShare a Scribd company logo
Javaone 2010 report
Tadaya Tsuyukubo
tw: @ttddyy
http://bit.ly/ttddyy_javaone2010
Agenda
• pics
• java roadmap
o projects
o feature
o release plan
• summary of Java EE sessions
• case studies
o mint.com
o ebay
o etc.
• other tech sessions
Oracle OpenWorld
+
JavaOne
Year 2010 Sep 19-23
San Francisco
JavaOne_2010
Java 7, 8
• Productivity
• Performance
• Modularity
o Project Coin
 Productivity with More Concise Code
o Project Lambda
 Closures for Java
o Project Jigsaw
 The Modular Java Platform
NIO2(jsr203), Concurrency and Collections updates(jsr166y),
JDBC4.1, etc.
Project Coin
• Diamond
Map<String, List<Integer>> map = new HashMap<>()
• Try-with-resources
try( InputStream is = new FileInputStream(in);
OutputStream os = new FileOutputStream(out) ) {
...
} catch (Exception e) {
...
}
• Strings in Switch
• Improved integral literals
• Vargs warnings
• Multi-catch & precise rethrow
Project Lambda
• SAM (Single Abstract Method)
Collections.sort( data, #( int a, int b ){ a.length() - b.length() } );
double max =
students.filter( #{ s -> s.gradYear == 2010 })
.map( #{ s -> s.score })
.max();
• Method Reference
Collections.sortBy(students,
#Student.getName);
Project Jigsaw
• eliminate the class path
• light weight memory foot print
• module-info.java
o meta data (module dependency info)
@Version("1.0")
@ImportModules( {
@ImportModule(name="java.se"),
@ImportModule(name="com.foo.OrderProcessingService"),
@ImportModule(name="com.bar.PrintService")
} )
@MainClass("hello.HelloWorld")
module hello;
etc.
• Value Class
value class Foo {
property Foo parent;
property String name;
}
• JVM
o upto 32G Heap Compaction
o NUMA (Non-Uniform Memory Access)
o G1GC (Garbage First GC)
• Integrate JRockit to HotSpot
o Nondisruptive, Scalable, High Performance VM
Java Release Plan
Plan B
• Java7 (mid 2011)
o most of "Project Coin"
o New I/O APIs
o Fork/Join Framework
o InvokeDynamic
o etc.
• Java8 (late 2012)
o Project Lambda
o Project Jigsaw
o Rest of Project Coin
o etc.
Web related tech sessions
• EJB3 features (Transaction, Business Tier)
o Bean Validation (JSR303)
 Hibernate Validator
o CDI(Contexts and Dependency Injection) (JSR299)
 @Inject, @Model, @Singleton, @Stateless, etc.
o JPA 2.0 (JSR317)
• For Java6
o Common Annotation for the Java Platform (JSR250)
 @Resource, @PostConstruct, @PreDestroy
Annotation Jam
@Secure
@Transactional
@RequestScoped
@Named
class SomeClass {
......
}
@BusinessLogic
class SomeClass {
}
use customized stereotype
Web session summary
• new features are mostly available in spring
o using spring is a correct choice
o giving more confusion to developers
• EJB containers are required
o mostly commercial
o still heavy weight
Advantage of using EJB
• session clustering
• remoting
• commercial support?
• vendor specific tools
spring is much better!!
- lightweight
- integration to other tech
Case Study (mint.com)
• Free personal financial management web
• 2billion financial transaction
• 10m+ transaction per day
Architecture
• spring + hibernate
• memcached
• intensive use of AOP
DB Scaling
NOSQL
• lose integrity ==> not best fit
User ID based sharding
• Hierarchical data model
• Logical database separation
o user data & non user data
• put user_id to all hierarchical entities (user data)
o every user data is exclusive and have locality
Implementation
Minimize infrastructure sharding info to implementation context
• annotation
• AOP
@MintUserdata
class UserService {
....
}
@MintCommondata
class MasterDataService {
....
}
switch SessionFactory, Datasource by AOP
based on the annotation
Monitoring
• collect data from real prod requests
o viewed page, traffic, behavior
o cache statistics
o hibernate statistics
o thread pool & queue size
• monitoring overhead must be low
o aggregate results in memory
o persist periodically
Monitoring Impl
monitor all spring beans
• AOP autoproxy all beans, no code change
• All methods (request-response lifecycle) can be drilldown
• build custom tool (80/20 rule)
• intensive use of AOP to monitor application error logs
• log messages are parametrized, centeralized
• web tool to easily search/parse errors
o like splunk
~/account.htm?id=1 100ms
AccountController#info() 10ms
AccountService#getInfo() 20ms
AccountDao#getInfoById() 70ms
Security & How to reduce Bug
Use hibernate to enforce isolation
• use AOP or hibernate callback
o if data tries to access data that doesn't belong to the user,
throws exception
Detect crosstalk (multi thread test)
• run test class with multiple user (sequential, multithread)
Case Study (eBay)
• 10bil requests per day
• 10K java servers
• partition everything
• asynchronous everywhere
• automate everything
• everything fails
• embrace inconsistency
• expect (r)evolution
• dependencies matters
• respect authority (data)
• never enough data
• custom infrastructure
Case Study (Sinapto)
Online Poker in Italy
3000 concurrent players
Architecture
• Vertical, Horizontal partitioning (table, tournament)
• asynchronous (event driven)
• pass around status object
Case Study (Caché)
Specialized to write huge data
example:
3-D map of Galaxy
monitor 1billion stars, more & more newly found ones
(Peta byte level data)
stock market trading information
government, healthcare, financial industry
solution:
o wrote DB : 130+K sustained inserts per sec
JDBC:
runs over tcp/ip (even locally)
use JNI (Java Native Interface)
Store multi dimensional data
XEP: serialize & store
MDS: Monitoring & Deiscovery Service
NOSQL
• This does not replace RDBMS
• Suit for representing data in a simple datastructure
o High Scalability
o Flexible modification
o Specialized process
Characteristic
• no join
• mostly search data by single rowkey
• eventual consistency
Data Model
Eventual Consistency
• no transaction, no consistency
o application needs to handle consistency
Example:
For column based DB, there is no association table, and no
cascade delete.
When parent data is removed, child data needs to deleted
by application
RDBMS NoSQL
relational column, KV, etc.
Testing
Unit Test
• selenium IDE
• junit
• mock
Integration Test
• starting container at beginning of test in code
Functional Programming
"OO is better to project our world structure
FP excels at actual coding of the algorithm"
Use OO to build classes
Use FP to implement methods
Java 7, 8 will have FP(closure) feature. (lambda project)
Conclusion
spring is the best!!
Java future roadmap, Case Studies
javaone "2010"
Technical sessions...
• Spring One
• Server Side
• No Fluff, Just Stuff
met jp java community

More Related Content

PDF
SANSA ISWC 2017 Talk
PPTX
DSpace at ILRI: A semi-technical overview of “CGSpace”
PPTX
C* Summit 2013: Optimizing the Public Cloud for Cost and Scalability with Cas...
PDF
Electron, databases, and RxDB
PDF
Introduction to datomic
PDF
Datomic – A Modern Database - StampedeCon 2014
PPTX
Utilizing the OpenNTF Domino API
PDF
Presto Meetup (2015-03-19)
SANSA ISWC 2017 Talk
DSpace at ILRI: A semi-technical overview of “CGSpace”
C* Summit 2013: Optimizing the Public Cloud for Cost and Scalability with Cas...
Electron, databases, and RxDB
Introduction to datomic
Datomic – A Modern Database - StampedeCon 2014
Utilizing the OpenNTF Domino API
Presto Meetup (2015-03-19)

What's hot (20)

PDF
Tale of ISUCON and Its Bench Tools
PDF
Using Atlassian UAL and ActiveObjects for Rapid Plugin Development - AtlasCam...
PDF
Presto @ Treasure Data - Presto Meetup Boston 2015
PDF
FITC presents: Mobile & offline data synchronization in Angular JS
PDF
MySQL 8 loves JavaScript
PDF
Clustered Columnstore - Deep Dive
PDF
DSpace at ILRI : A semi-technical overview of “CGSpace”
PDF
Scalding @ Coursera
PPTX
Oracle OpenWo2014 review part 03 three_paa_s_database
PDF
Scaling ELK Stack - DevOpsDays Singapore
KEY
MongoDB SF Ruby
PPTX
ELK - Stack - Munich .net UG
PPTX
Netezza online training at GoLogica
PPTX
MongoDB
PDF
Spark: Taming Big Data
PDF
Iceberg: A modern table format for big data (Strata NY 2018)
PDF
Building an API layer for C* at Coursera
DOCX
Oracle golden gate training course
PPTX
Getting started with SparkSQL - Desert Code Camp 2016
PDF
Introducing Project Alternator - Scylla’s Open-Source DynamoDB-compatible API
Tale of ISUCON and Its Bench Tools
Using Atlassian UAL and ActiveObjects for Rapid Plugin Development - AtlasCam...
Presto @ Treasure Data - Presto Meetup Boston 2015
FITC presents: Mobile & offline data synchronization in Angular JS
MySQL 8 loves JavaScript
Clustered Columnstore - Deep Dive
DSpace at ILRI : A semi-technical overview of “CGSpace”
Scalding @ Coursera
Oracle OpenWo2014 review part 03 three_paa_s_database
Scaling ELK Stack - DevOpsDays Singapore
MongoDB SF Ruby
ELK - Stack - Munich .net UG
Netezza online training at GoLogica
MongoDB
Spark: Taming Big Data
Iceberg: A modern table format for big data (Strata NY 2018)
Building an API layer for C* at Coursera
Oracle golden gate training course
Getting started with SparkSQL - Desert Code Camp 2016
Introducing Project Alternator - Scylla’s Open-Source DynamoDB-compatible API
Ad

Similar to JavaOne_2010 (20)

PPT
Java one 2010
PDF
Application Architecture Trends
PPT
Tu1 1 5l
PPTX
Ups and downs of enterprise Java app in a research setting
PPTX
Spring
PPTX
SeaJUG May 2012 mybatis
PDF
Polygot persistence for Java Developers - August 2011 / @Oakjug
PDF
Migrating traditional Java EE Applications to mobile
PPT
Spring Framework
KEY
Writing Scalable Software in Java
DOC
The Complete Spring Tutorial
PPTX
Introduction To Building Enterprise Web Application With Spring Mvc
ODP
Enterprise Java in 2012 and Beyond, by Juergen Hoeller
PPT
Rollin onj Rubyv3
PPT
Tech Days 2010
PPT
Spring - a framework written by developers
PPTX
spring
PPT
Java Persistence API (JPA) - A Brief Overview
PDF
Composable Software Architecture with Spring
PPTX
Yes, Sql!
Java one 2010
Application Architecture Trends
Tu1 1 5l
Ups and downs of enterprise Java app in a research setting
Spring
SeaJUG May 2012 mybatis
Polygot persistence for Java Developers - August 2011 / @Oakjug
Migrating traditional Java EE Applications to mobile
Spring Framework
Writing Scalable Software in Java
The Complete Spring Tutorial
Introduction To Building Enterprise Web Application With Spring Mvc
Enterprise Java in 2012 and Beyond, by Juergen Hoeller
Rollin onj Rubyv3
Tech Days 2010
Spring - a framework written by developers
spring
Java Persistence API (JPA) - A Brief Overview
Composable Software Architecture with Spring
Yes, Sql!
Ad

Recently uploaded (20)

PPTX
Digital-Transformation-Roadmap-for-Companies.pptx
PDF
Advanced methodologies resolving dimensionality complications for autism neur...
PPTX
Understanding_Digital_Forensics_Presentation.pptx
PDF
Review of recent advances in non-invasive hemoglobin estimation
DOCX
The AUB Centre for AI in Media Proposal.docx
PDF
Encapsulation_ Review paper, used for researhc scholars
PDF
Network Security Unit 5.pdf for BCA BBA.
PPT
Teaching material agriculture food technology
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
PDF
Chapter 3 Spatial Domain Image Processing.pdf
PDF
Approach and Philosophy of On baking technology
PDF
Building Integrated photovoltaic BIPV_UPV.pdf
PDF
MIND Revenue Release Quarter 2 2025 Press Release
PDF
Empathic Computing: Creating Shared Understanding
PDF
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PPTX
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
PDF
Unlocking AI with Model Context Protocol (MCP)
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PDF
Per capita expenditure prediction using model stacking based on satellite ima...
Digital-Transformation-Roadmap-for-Companies.pptx
Advanced methodologies resolving dimensionality complications for autism neur...
Understanding_Digital_Forensics_Presentation.pptx
Review of recent advances in non-invasive hemoglobin estimation
The AUB Centre for AI in Media Proposal.docx
Encapsulation_ Review paper, used for researhc scholars
Network Security Unit 5.pdf for BCA BBA.
Teaching material agriculture food technology
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
Chapter 3 Spatial Domain Image Processing.pdf
Approach and Philosophy of On baking technology
Building Integrated photovoltaic BIPV_UPV.pdf
MIND Revenue Release Quarter 2 2025 Press Release
Empathic Computing: Creating Shared Understanding
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
Reach Out and Touch Someone: Haptics and Empathic Computing
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
Unlocking AI with Model Context Protocol (MCP)
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
Per capita expenditure prediction using model stacking based on satellite ima...

JavaOne_2010

  • 1. Javaone 2010 report Tadaya Tsuyukubo tw: @ttddyy http://bit.ly/ttddyy_javaone2010
  • 2. Agenda • pics • java roadmap o projects o feature o release plan • summary of Java EE sessions • case studies o mint.com o ebay o etc. • other tech sessions
  • 3. Oracle OpenWorld + JavaOne Year 2010 Sep 19-23 San Francisco
  • 5. Java 7, 8 • Productivity • Performance • Modularity o Project Coin  Productivity with More Concise Code o Project Lambda  Closures for Java o Project Jigsaw  The Modular Java Platform NIO2(jsr203), Concurrency and Collections updates(jsr166y), JDBC4.1, etc.
  • 6. Project Coin • Diamond Map<String, List<Integer>> map = new HashMap<>() • Try-with-resources try( InputStream is = new FileInputStream(in); OutputStream os = new FileOutputStream(out) ) { ... } catch (Exception e) { ... } • Strings in Switch • Improved integral literals • Vargs warnings • Multi-catch & precise rethrow
  • 7. Project Lambda • SAM (Single Abstract Method) Collections.sort( data, #( int a, int b ){ a.length() - b.length() } ); double max = students.filter( #{ s -> s.gradYear == 2010 }) .map( #{ s -> s.score }) .max(); • Method Reference Collections.sortBy(students, #Student.getName);
  • 8. Project Jigsaw • eliminate the class path • light weight memory foot print • module-info.java o meta data (module dependency info) @Version("1.0") @ImportModules( { @ImportModule(name="java.se"), @ImportModule(name="com.foo.OrderProcessingService"), @ImportModule(name="com.bar.PrintService") } ) @MainClass("hello.HelloWorld") module hello;
  • 9. etc. • Value Class value class Foo { property Foo parent; property String name; } • JVM o upto 32G Heap Compaction o NUMA (Non-Uniform Memory Access) o G1GC (Garbage First GC) • Integrate JRockit to HotSpot o Nondisruptive, Scalable, High Performance VM
  • 10. Java Release Plan Plan B • Java7 (mid 2011) o most of "Project Coin" o New I/O APIs o Fork/Join Framework o InvokeDynamic o etc. • Java8 (late 2012) o Project Lambda o Project Jigsaw o Rest of Project Coin o etc.
  • 11. Web related tech sessions • EJB3 features (Transaction, Business Tier) o Bean Validation (JSR303)  Hibernate Validator o CDI(Contexts and Dependency Injection) (JSR299)  @Inject, @Model, @Singleton, @Stateless, etc. o JPA 2.0 (JSR317) • For Java6 o Common Annotation for the Java Platform (JSR250)  @Resource, @PostConstruct, @PreDestroy
  • 12. Annotation Jam @Secure @Transactional @RequestScoped @Named class SomeClass { ...... } @BusinessLogic class SomeClass { } use customized stereotype
  • 13. Web session summary • new features are mostly available in spring o using spring is a correct choice o giving more confusion to developers • EJB containers are required o mostly commercial o still heavy weight Advantage of using EJB • session clustering • remoting • commercial support? • vendor specific tools spring is much better!! - lightweight - integration to other tech
  • 14. Case Study (mint.com) • Free personal financial management web • 2billion financial transaction • 10m+ transaction per day Architecture • spring + hibernate • memcached • intensive use of AOP
  • 15. DB Scaling NOSQL • lose integrity ==> not best fit User ID based sharding • Hierarchical data model • Logical database separation o user data & non user data • put user_id to all hierarchical entities (user data) o every user data is exclusive and have locality
  • 16. Implementation Minimize infrastructure sharding info to implementation context • annotation • AOP @MintUserdata class UserService { .... } @MintCommondata class MasterDataService { .... } switch SessionFactory, Datasource by AOP based on the annotation
  • 17. Monitoring • collect data from real prod requests o viewed page, traffic, behavior o cache statistics o hibernate statistics o thread pool & queue size • monitoring overhead must be low o aggregate results in memory o persist periodically
  • 18. Monitoring Impl monitor all spring beans • AOP autoproxy all beans, no code change • All methods (request-response lifecycle) can be drilldown • build custom tool (80/20 rule) • intensive use of AOP to monitor application error logs • log messages are parametrized, centeralized • web tool to easily search/parse errors o like splunk ~/account.htm?id=1 100ms AccountController#info() 10ms AccountService#getInfo() 20ms AccountDao#getInfoById() 70ms
  • 19. Security & How to reduce Bug Use hibernate to enforce isolation • use AOP or hibernate callback o if data tries to access data that doesn't belong to the user, throws exception Detect crosstalk (multi thread test) • run test class with multiple user (sequential, multithread)
  • 20. Case Study (eBay) • 10bil requests per day • 10K java servers • partition everything • asynchronous everywhere • automate everything • everything fails • embrace inconsistency • expect (r)evolution • dependencies matters • respect authority (data) • never enough data • custom infrastructure
  • 21. Case Study (Sinapto) Online Poker in Italy 3000 concurrent players Architecture • Vertical, Horizontal partitioning (table, tournament) • asynchronous (event driven) • pass around status object
  • 22. Case Study (Caché) Specialized to write huge data example: 3-D map of Galaxy monitor 1billion stars, more & more newly found ones (Peta byte level data) stock market trading information government, healthcare, financial industry solution: o wrote DB : 130+K sustained inserts per sec
  • 23. JDBC: runs over tcp/ip (even locally) use JNI (Java Native Interface) Store multi dimensional data XEP: serialize & store MDS: Monitoring & Deiscovery Service
  • 24. NOSQL • This does not replace RDBMS • Suit for representing data in a simple datastructure o High Scalability o Flexible modification o Specialized process Characteristic • no join • mostly search data by single rowkey • eventual consistency
  • 25. Data Model Eventual Consistency • no transaction, no consistency o application needs to handle consistency Example: For column based DB, there is no association table, and no cascade delete. When parent data is removed, child data needs to deleted by application RDBMS NoSQL relational column, KV, etc.
  • 26. Testing Unit Test • selenium IDE • junit • mock Integration Test • starting container at beginning of test in code
  • 27. Functional Programming "OO is better to project our world structure FP excels at actual coding of the algorithm" Use OO to build classes Use FP to implement methods Java 7, 8 will have FP(closure) feature. (lambda project)
  • 28. Conclusion spring is the best!! Java future roadmap, Case Studies javaone "2010" Technical sessions... • Spring One • Server Side • No Fluff, Just Stuff met jp java community