SlideShare a Scribd company logo
Marcel Mitran – STSM, Architect Java on System z
mmitran@ca.ibm.com
November 20th, 2012




IBM Java PackedObjects: An Overview
IBM Software Group: Java Technology Centre




                                                   © 2012 IBM Corporation
Important Disclaimers



THE INFORMATION CONTAINED IN THIS PRESENTATION IS PROVIDED FOR INFORMATIONAL PURPOSES
ONLY.

WHILST EFFORTS WERE MADE TO VERIFY THE COMPLETENESS AND ACCURACY OF THE INFORMATION
CONTAINED IN THIS PRESENTATION, IT IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED.

ALL PERFORMANCE DATA INCLUDED IN THIS PRESENTATION HAVE BEEN GATHERED IN A CONTROLLED
ENVIRONMENT. YOUR OWN TEST RESULTS MAY VARY BASED ON HARDWARE, SOFTWARE OR
INFRASTRUCTURE DIFFERENCES.

ALL DATA INCLUDED IN THIS PRESENTATION ARE MEANT TO BE USED ONLY AS A GUIDE.

IN ADDITION, THE INFORMATION CONTAINED IN THIS PRESENTATION IS BASED ON IBM’S CURRENT
PRODUCT PLANS AND STRATEGY, WHICH ARE SUBJECT TO CHANGE BY IBM, WITHOUT NOTICE.

IBM AND ITS AFFILIATED COMPANIES SHALL NOT BE RESPONSIBLE FOR ANY DAMAGES ARISING OUT OF
THE USE OF, OR OTHERWISE RELATED TO, THIS PRESENTATION OR ANY OTHER DOCUMENTATION.

NOTHING CONTAINED IN THIS PRESENTATION IS INTENDED TO, OR SHALL HAVE THE EFFECT OF:

- CREATING ANY WARRANT OR REPRESENTATION FROM IBM, ITS AFFILIATED COMPANIES OR ITS OR
THEIR SUPPLIERS AND/OR LICENSORS



2                                                                               © 2012 IBM Corporation
PackedObject Delivery and Intended Use

PackedObject is an experimental feature in IBM J9 Virtual Machine.


Goal(s) of Feature:
■   Improve serialization and I/O of Java objects
■   Allow direct access to “native” (off-heap) data
■   Allow for explicit source-level representation of compact data-structure



Intended Use:
■   Provide an opportunity for feedback and experimentation
      – Not meant for production support
      – Not a committed language change




3                                                                              © 2012 IBM Corporation
PackedObjects for IBM's Java

        Features of today's Java work well in certain     ...changing how Java data is represented and
                                                        Present data is accessed and used introduces
                                                          native l
               scenarios, poorly in others...
                                                               new efficiencies into the Java language



    ●
      Bloated Objects: Data headers and                   ●
                                                              Shared Headers & No References
    references required to access and use data
    stored outside of Java

    ●
      No direct access to off-heap data: Java
    Native Interface or Direct Byte Buffers
                                                          ●
                                                              Direct access to native stored off-heap
    required when accessing.

    ●
     Redundant Data Copying: Copies of off-
    heap data required to incorporate/act-on              ●
                                                              Elimination of data copies
    changes to source data

    ●
      Suboptimal heap placement: Non-
    adjacent placement of objects in memory               ●
                                                              In-lined data allows for optimal caching
    slows down serialization, garbage collection

4                                                                                             © 2012 IBM Corporation
Speak to me in 'Java', I don't speak 'Native'
■   Java only speaks ‘Java’…
      – Data typically must be copied/(de)serialized/marshalled onto/off Java heap
      – Costly in path-length and footprint




5                                                                                    © 2012 IBM Corporation
On-Heap PackedObjects Example

■   Allows controlled layout of storage of data structures on the Java heap
      – Reduces footprint of data on Java heap
      – No (de)serialization required




    I/O
                 Native storage (20 bytes)



                  Java heap

                                                                               JVM




6                                                                             © 2012 IBM Corporation
Off-Heap Packed Objects Example
■   Enable Java to talk directly to the native data structure
     – Avoid overhead of data copy onto/off Java heap
     – No (de)serialization required




    I/O
                   Native storage (20 bytes)




                       Meta Data
                                                                  JVM




                     Java heap


7                                                               © 2012 IBM Corporation
Example: Distributed Computing High-Level Architecture


                                     Communication between nodes
                                       (RDMA, hyper-sockets, ORB, etc):          Using Java packed objects, data can
                                       ●   Data copy                                  be moved between the
                                       ●   (De)Serialization                          persistency and communication
                                                                                      layers without being copied or
                                                                                      (de)serialized onto/off the Java
    Data persistency on each                                                          heap
         node (DB, file-system,
         etc):
    ●    Data copy
    ●    (De)serialization         DB                                      DB




                                             JVM                                     JVM
                                    App.                                    App.
                                    Server                                  Server



                                  Node                                    Node


8                                                                                                       © 2012 IBM Corporation
© 2012 IBM Corporation


Page 9

 Example: Inter-language Communication
Java requires data
copies, marshalling and   COBOL     Java      C/C++
serialization across
language boundaries       foo(…){   goo(…){   loo(…){
                          …         …         …
                          goo();    loo();    }
                          }         }




Java packed objects
avoids data copies,       COBOL     Java      C/C++
marshaling and
serialization             foo(…){   goo(…){   loo(…){
                          …         …         …
                          goo();    loo();    }
                          }         }
PackedObjects 101
■    A new PackedObject type for the Java language, which allows for:
      – Direct access of data located outside of the Java heap
      – Contiguous allocation of all object's data (objects and arrays)
      – Is not derived from Object, and hence dis-allows assignment and casting
      – Special BoxingPackedObject is glue to reference a PackedObject from Object

                             java/lang/object                             java/lang/PackedObject




      java/math/BigDecimal                       etc…   java/lang/PackedArray                  etc…

                              java/lang/String                             java/lang/PackedString

        java/lang/HashMapEntry        java/lang/BoxedPackedObject   java/lang/PackedHashMapEntry




■    Current Java Capabilities
      – Current Java logic requires language interpreters and data copies for execution.
      – PackedObjects eliminate data copies across the Java Native Interface and the
        need to design and maintain Direct Byte Buffers
■    Using PackedObjects: annotation-based (or later a packed key word) above a class
     definition is required to create a packed class. The class instances can be accessed and
     modified identically to current Java objects
10                                                                                                 © 2012 IBM Corporation
Scope of Implementation
■    “@Packed” class annotation used to define a PackedObject class
■    “@Length” field annotation used to specify length of PackedObject arrays

Proposed Initial Rules
■    Packed types must directly subclass PackedObject
■    Packed inlining can only happen for field declarations which are primitives, PackedObjects or arrays of
     PackedObjects
■    Fields made up of arrays must provide a length that is a compile time constant
■    Regular Java primitive types cannot be used to declare a PackedObject array. Boxed types for
     primitive arrays must be used instead.
■    A field declaration cannot introduce a circular class dependency
■    When a PackedObject is instantiated, only the constructor for the top-level PackedObject is called
■    Local variable assignment and parameter passing of a PackedObject is copy-by-reference
■    BoxedPackedObject is used to box a PackedObject with an Object reference
■    Allocating a PackedObject using the 'new' keyword creates an on-heap PackedObject
■    Off-heap PackedObject creation is done using factory method provided in the class library


11                                                                                                © 2012 IBM Corporation
Code Snippets
■    Packed class definition      ■   On-Heap Packed Allocation




■    Off-heap Packed Allocation




12                                                                © 2012 IBM Corporation
Functionality Changes

                    Current Java                                    PackedObject

Data Field      ■   Object fields limited to primitives or      ■   When allocating a PackedObject, all
Allocation          references to other objects; non-               corresponding data fields get allocated
and Storage         primitives must be initialized and copied       simultaneously and packed into a single
                    into a format understood by Java.               contiguous object (rather than
                                                                    referenced).

                ■   Headers for child objects copied onto       ■   No headers for child objects which all
Child objects
                    the Java heap when accessed.                    share global header on the
                                                                    PackedObject.

 Arrays         ■   For arrays of objects each element in an    ■   Arrays packed together contiguously
                    array has it's own header and a                 under one common header; array length
                    reference to it. The elements are not           marked in PackedObject header. Full
                    contiguous in memory.                           access to elements in array and bounds
                                                                    checking still performed.

Off-heap        ■   Data can not be accessed or modified        ■   Data that does not exist in Java can be
                    outside of the Java heap. Data must be          accessed and modified directly by using
                    converted into a Java version and then          the data's memory location. The Java
                    this copy can then be accessed and              Virtual Machine takes care of the
                    manipulated.                                    accessors and modifiers internally.


13                                                                                               © 2012 IBM Corporation
Off Heap Benefit: Lowers Memory Footprint, increases performance
Before                                                          Native memory               ●
                                                                                             Java requires objects to be in primitive form to be
                              Header                                                        accessed directly*
                                                                                Header
                                                       Hea                                  ●
                                                                                             If objects are not in primitive form, references and
     Header                    Data                       der
                                                                                  Data      copies required to access data; time-consuming
                                                   Data                                     conversion process
       Data
                                reference                                                   ●
                                                                                              When objects are graphed onto the heap, they
              reference
                                                   reference
                                                                                reference
                                                                                            are placed randomly and occupy more space than
                                                                                            is needed
                                               He              Java Heap
                                                  ad
 HEADER




                                            Da     e                       er
                               Header         ta C r                   d                     Memory bloat occurs due to data copies (data
                                                                                            ●
               Data Copy                                           Hea
                                                  opy                     opy               must be accessed and copied, including headers)
                   Header                                              taC
                             Data Copy                            Da
                                                                                                                       *without the use of JNI or DBB




 After                                                                                      ●
                                                                                             PackedObjects eliminate requirement for objects to
                                                                                            be in primitive form
                                                                                            ●
                                                                                             PackedObjects can be accessed directly from source
                                                                                            without the redundant copying; no conversion
                                                                                            ●
                                                                                              PackedObject allocates and packs all data fields
     HEADER




                                                                                            (including other PackedObject and arrays) into a
                            Direct Access, No Copy
                                                                                            single well defined contiguous storage area


14                                                                                                                                 © 2012 IBM Corporation
Copyright and Trademarks



© IBM Corporation 2012. All Rights Reserved.


IBM, the IBM logo, and ibm.com are trademarks or registered trademarks of International
Business Machines Corp., and registered in many jurisdictions worldwide.


Other product and service names might be trademarks of IBM or other companies.


A current list of IBM trademarks is available on the Web – see the IBM “Copyright and
trademark information” page at URL: www.ibm.com/legal/copytrade.shtml




15                                                                                © 2012 IBM Corporation

More Related Content

What's hot (19)

PPTX
Hibernate tutorial
Mumbai Academisc
 
PPTX
Easy Data Object Relational Mapping Tool
Hasitha Guruge
 
PPT
Hibernate
Ajay K
 
PDF
Couchbase - Yet Another Introduction
Kelum Senanayake
 
PDF
Hibernate 3
Rajiv Gupta
 
PDF
Node.js Introduction
Kelum Senanayake
 
PPT
Teradata vs-exadata
Louis liu
 
PDF
Jsf+ejb 50
lullabyte
 
PDF
Hibernate training at HarshithaTechnologySolutions @ Nizampet
Jayarajus
 
PPTX
Technical Interview
prashant patel
 
PDF
Introduction to hadoop and hdfs
TrendProgContest13
 
PDF
Netezza vs Teradata vs Exadata
Asis Mohanty
 
PDF
Scotas - Oracle Open World Sao Pablo
Julian Arocena
 
PDF
BeJUG JavaFx In Practice
Pursuit Consulting
 
DOC
Hibernate tutorial for beginners
Rahul Jain
 
ODP
Hibernate Developer Reference
Muthuselvam RS
 
PDF
Architecting the Future of Big Data & Search - Eric Baldeschwieler
lucenerevolution
 
PPTX
WORKS 11 Presentation
dgarijo
 
PPSX
JSP - Part 1
Hitesh-Java
 
Hibernate tutorial
Mumbai Academisc
 
Easy Data Object Relational Mapping Tool
Hasitha Guruge
 
Hibernate
Ajay K
 
Couchbase - Yet Another Introduction
Kelum Senanayake
 
Hibernate 3
Rajiv Gupta
 
Node.js Introduction
Kelum Senanayake
 
Teradata vs-exadata
Louis liu
 
Jsf+ejb 50
lullabyte
 
Hibernate training at HarshithaTechnologySolutions @ Nizampet
Jayarajus
 
Technical Interview
prashant patel
 
Introduction to hadoop and hdfs
TrendProgContest13
 
Netezza vs Teradata vs Exadata
Asis Mohanty
 
Scotas - Oracle Open World Sao Pablo
Julian Arocena
 
BeJUG JavaFx In Practice
Pursuit Consulting
 
Hibernate tutorial for beginners
Rahul Jain
 
Hibernate Developer Reference
Muthuselvam RS
 
Architecting the Future of Big Data & Search - Eric Baldeschwieler
lucenerevolution
 
WORKS 11 Presentation
dgarijo
 
JSP - Part 1
Hitesh-Java
 

Viewers also liked (20)

PPTX
Low latency in java 8 by Peter Lawrey
J On The Beach
 
PDF
Die Java Plattform Strategie
Java Usergroup Berlin-Brandenburg
 
PDF
Presentation Erfolgreiche Software mit großartiger Dokumentation - Asciidoctor
Robert Panzer
 
PDF
Spark SQL: Another 16x Faster After Tungsten: Spark Summit East talk by Brad ...
Spark Summit
 
PDF
Java Concurrency Quick Guide
Anton Shchastnyi
 
PDF
Get Back in Control of your SQL
Java Usergroup Berlin-Brandenburg
 
PDF
Java & low latency applications
Ruslan Shevchenko
 
PDF
Robust and Scalable Concurrent Programming: Lesson from the Trenches
Sangjin Lee
 
PDF
Was jeder Java-Entwickler über Strings wissen sollte
berndmueller
 
PDF
What are the Cool Kids Doing With Continuous Delivery?
CA Technologies
 
PDF
A Post-Apocalyptic sun.misc.Unsafe World
Christoph Engelbert
 
PDF
Pitfalls of migrating projects to JDK 9
Pavel Bucek
 
PDF
Technische Schulden in Architekturen erkennen und beseitigen
Carola Lilienthal
 
PDF
Low latency Java apps
Simon Ritter
 
PPTX
Low latency microservices in java QCon New York 2016
Peter Lawrey
 
PDF
Workshop: Introduction to the Disruptor
Trisha Gee
 
PPTX
Infrastructure as Code
Sascha Möllering
 
PPSX
Java9 and the impact on Maven Projects (JFall 2016)
Robert Scholte
 
PPTX
Ein Prozess lernt laufen – LEGO® MINDSTORMS® Steuerung mit BPMN
Oliver Hock
 
PDF
Introduction to the Disruptor
Trisha Gee
 
Low latency in java 8 by Peter Lawrey
J On The Beach
 
Die Java Plattform Strategie
Java Usergroup Berlin-Brandenburg
 
Presentation Erfolgreiche Software mit großartiger Dokumentation - Asciidoctor
Robert Panzer
 
Spark SQL: Another 16x Faster After Tungsten: Spark Summit East talk by Brad ...
Spark Summit
 
Java Concurrency Quick Guide
Anton Shchastnyi
 
Get Back in Control of your SQL
Java Usergroup Berlin-Brandenburg
 
Java & low latency applications
Ruslan Shevchenko
 
Robust and Scalable Concurrent Programming: Lesson from the Trenches
Sangjin Lee
 
Was jeder Java-Entwickler über Strings wissen sollte
berndmueller
 
What are the Cool Kids Doing With Continuous Delivery?
CA Technologies
 
A Post-Apocalyptic sun.misc.Unsafe World
Christoph Engelbert
 
Pitfalls of migrating projects to JDK 9
Pavel Bucek
 
Technische Schulden in Architekturen erkennen und beseitigen
Carola Lilienthal
 
Low latency Java apps
Simon Ritter
 
Low latency microservices in java QCon New York 2016
Peter Lawrey
 
Workshop: Introduction to the Disruptor
Trisha Gee
 
Infrastructure as Code
Sascha Möllering
 
Java9 and the impact on Maven Projects (JFall 2016)
Robert Scholte
 
Ein Prozess lernt laufen – LEGO® MINDSTORMS® Steuerung mit BPMN
Oliver Hock
 
Introduction to the Disruptor
Trisha Gee
 
Ad

Similar to IBM Java PackedObjects (20)

PDF
JavaOne 2013: Introduction to PackedObjects
Ryan Sciampacone
 
PDF
Runtime Innovation - Nextgen Ninja Hacking of the JVM, by Ryan Sciampacone
ZeroTurnaround
 
PDF
What`s new in Java 7
Georgian Micsa
 
PPT
Java7
Dinesh Guntha
 
PPT
Java Performance Monitoring & Tuning
Muhammed Shakir
 
PDF
JavaOne 2013: Memory Efficient Java
Chris Bailey
 
PDF
Jvm internals
Luiz Fernando Teston
 
PPTX
Introduction to Java Basics Programming Java Basics-I.pptx
SANDHYAP32
 
PPTX
Presentación rs232 java
John Rojas
 
PDF
Packed Objects: Fast Talking Java Meets Native Code - Steve Poole (IBM)
jaxLondonConference
 
PPT
J2SE 5
Luqman Shareef
 
PPTX
14.jun.2012
Tech_MX
 
PDF
Why should i switch to Java SE 7
Vinay H G
 
PPTX
Java 7 - New Features - by Mihail Stoynov and Svetlin Nakov
Svetlin Nakov
 
PPTX
Introduction to java by priti sajja
Priti Srinivas Sajja
 
PDF
New Features of Java7 SE
dogangoko
 
PDF
Direct memory jugl-2012.03.08
Benoit Perroud
 
PPTX
Simple insites into JVM
Ramakanth Tarimala
 
PPT
JavaClassPresentation
juliasceasor
 
PDF
Terence Barr - jdk7+8 - 24mai2011
Agora Group
 
JavaOne 2013: Introduction to PackedObjects
Ryan Sciampacone
 
Runtime Innovation - Nextgen Ninja Hacking of the JVM, by Ryan Sciampacone
ZeroTurnaround
 
What`s new in Java 7
Georgian Micsa
 
Java Performance Monitoring & Tuning
Muhammed Shakir
 
JavaOne 2013: Memory Efficient Java
Chris Bailey
 
Jvm internals
Luiz Fernando Teston
 
Introduction to Java Basics Programming Java Basics-I.pptx
SANDHYAP32
 
Presentación rs232 java
John Rojas
 
Packed Objects: Fast Talking Java Meets Native Code - Steve Poole (IBM)
jaxLondonConference
 
14.jun.2012
Tech_MX
 
Why should i switch to Java SE 7
Vinay H G
 
Java 7 - New Features - by Mihail Stoynov and Svetlin Nakov
Svetlin Nakov
 
Introduction to java by priti sajja
Priti Srinivas Sajja
 
New Features of Java7 SE
dogangoko
 
Direct memory jugl-2012.03.08
Benoit Perroud
 
Simple insites into JVM
Ramakanth Tarimala
 
JavaClassPresentation
juliasceasor
 
Terence Barr - jdk7+8 - 24mai2011
Agora Group
 
Ad

Recently uploaded (20)

PDF
Achieving Consistent and Reliable AI Code Generation - Medusa AI
medusaaico
 
DOCX
Python coding for beginners !! Start now!#
Rajni Bhardwaj Grover
 
PDF
The 2025 InfraRed Report - Redpoint Ventures
Razin Mustafiz
 
PDF
Newgen 2022-Forrester Newgen TEI_13 05 2022-The-Total-Economic-Impact-Newgen-...
darshakparmar
 
PDF
Book industry state of the nation 2025 - Tech Forum 2025
BookNet Canada
 
PDF
Transcript: Book industry state of the nation 2025 - Tech Forum 2025
BookNet Canada
 
PDF
Bitcoin for Millennials podcast with Bram, Power Laws of Bitcoin
Stephen Perrenod
 
PPTX
Future Tech Innovations 2025 – A TechLists Insight
TechLists
 
PDF
Reverse Engineering of Security Products: Developing an Advanced Microsoft De...
nwbxhhcyjv
 
PDF
The Rise of AI and IoT in Mobile App Tech.pdf
IMG Global Infotech
 
PDF
CIFDAQ Token Spotlight for 9th July 2025
CIFDAQ
 
PPTX
From Sci-Fi to Reality: Exploring AI Evolution
Svetlana Meissner
 
PDF
Transforming Utility Networks: Large-scale Data Migrations with FME
Safe Software
 
PPTX
AUTOMATION AND ROBOTICS IN PHARMA INDUSTRY.pptx
sameeraaabegumm
 
PPTX
MuleSoft MCP Support (Model Context Protocol) and Use Case Demo
shyamraj55
 
PPTX
Seamless Tech Experiences Showcasing Cross-Platform App Design.pptx
presentifyai
 
PPTX
Mastering ODC + Okta Configuration - Chennai OSUG
HathiMaryA
 
PDF
"AI Transformation: Directions and Challenges", Pavlo Shaternik
Fwdays
 
PDF
Smart Trailers 2025 Update with History and Overview
Paul Menig
 
PDF
CIFDAQ Market Insights for July 7th 2025
CIFDAQ
 
Achieving Consistent and Reliable AI Code Generation - Medusa AI
medusaaico
 
Python coding for beginners !! Start now!#
Rajni Bhardwaj Grover
 
The 2025 InfraRed Report - Redpoint Ventures
Razin Mustafiz
 
Newgen 2022-Forrester Newgen TEI_13 05 2022-The-Total-Economic-Impact-Newgen-...
darshakparmar
 
Book industry state of the nation 2025 - Tech Forum 2025
BookNet Canada
 
Transcript: Book industry state of the nation 2025 - Tech Forum 2025
BookNet Canada
 
Bitcoin for Millennials podcast with Bram, Power Laws of Bitcoin
Stephen Perrenod
 
Future Tech Innovations 2025 – A TechLists Insight
TechLists
 
Reverse Engineering of Security Products: Developing an Advanced Microsoft De...
nwbxhhcyjv
 
The Rise of AI and IoT in Mobile App Tech.pdf
IMG Global Infotech
 
CIFDAQ Token Spotlight for 9th July 2025
CIFDAQ
 
From Sci-Fi to Reality: Exploring AI Evolution
Svetlana Meissner
 
Transforming Utility Networks: Large-scale Data Migrations with FME
Safe Software
 
AUTOMATION AND ROBOTICS IN PHARMA INDUSTRY.pptx
sameeraaabegumm
 
MuleSoft MCP Support (Model Context Protocol) and Use Case Demo
shyamraj55
 
Seamless Tech Experiences Showcasing Cross-Platform App Design.pptx
presentifyai
 
Mastering ODC + Okta Configuration - Chennai OSUG
HathiMaryA
 
"AI Transformation: Directions and Challenges", Pavlo Shaternik
Fwdays
 
Smart Trailers 2025 Update with History and Overview
Paul Menig
 
CIFDAQ Market Insights for July 7th 2025
CIFDAQ
 

IBM Java PackedObjects

  • 1. Marcel Mitran – STSM, Architect Java on System z [email protected] November 20th, 2012 IBM Java PackedObjects: An Overview IBM Software Group: Java Technology Centre © 2012 IBM Corporation
  • 2. Important Disclaimers THE INFORMATION CONTAINED IN THIS PRESENTATION IS PROVIDED FOR INFORMATIONAL PURPOSES ONLY. WHILST EFFORTS WERE MADE TO VERIFY THE COMPLETENESS AND ACCURACY OF THE INFORMATION CONTAINED IN THIS PRESENTATION, IT IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED. ALL PERFORMANCE DATA INCLUDED IN THIS PRESENTATION HAVE BEEN GATHERED IN A CONTROLLED ENVIRONMENT. YOUR OWN TEST RESULTS MAY VARY BASED ON HARDWARE, SOFTWARE OR INFRASTRUCTURE DIFFERENCES. ALL DATA INCLUDED IN THIS PRESENTATION ARE MEANT TO BE USED ONLY AS A GUIDE. IN ADDITION, THE INFORMATION CONTAINED IN THIS PRESENTATION IS BASED ON IBM’S CURRENT PRODUCT PLANS AND STRATEGY, WHICH ARE SUBJECT TO CHANGE BY IBM, WITHOUT NOTICE. IBM AND ITS AFFILIATED COMPANIES SHALL NOT BE RESPONSIBLE FOR ANY DAMAGES ARISING OUT OF THE USE OF, OR OTHERWISE RELATED TO, THIS PRESENTATION OR ANY OTHER DOCUMENTATION. NOTHING CONTAINED IN THIS PRESENTATION IS INTENDED TO, OR SHALL HAVE THE EFFECT OF: - CREATING ANY WARRANT OR REPRESENTATION FROM IBM, ITS AFFILIATED COMPANIES OR ITS OR THEIR SUPPLIERS AND/OR LICENSORS 2 © 2012 IBM Corporation
  • 3. PackedObject Delivery and Intended Use PackedObject is an experimental feature in IBM J9 Virtual Machine. Goal(s) of Feature: ■ Improve serialization and I/O of Java objects ■ Allow direct access to “native” (off-heap) data ■ Allow for explicit source-level representation of compact data-structure Intended Use: ■ Provide an opportunity for feedback and experimentation – Not meant for production support – Not a committed language change 3 © 2012 IBM Corporation
  • 4. PackedObjects for IBM's Java Features of today's Java work well in certain ...changing how Java data is represented and Present data is accessed and used introduces native l scenarios, poorly in others... new efficiencies into the Java language ● Bloated Objects: Data headers and ● Shared Headers & No References references required to access and use data stored outside of Java ● No direct access to off-heap data: Java Native Interface or Direct Byte Buffers ● Direct access to native stored off-heap required when accessing. ● Redundant Data Copying: Copies of off- heap data required to incorporate/act-on ● Elimination of data copies changes to source data ● Suboptimal heap placement: Non- adjacent placement of objects in memory ● In-lined data allows for optimal caching slows down serialization, garbage collection 4 © 2012 IBM Corporation
  • 5. Speak to me in 'Java', I don't speak 'Native' ■ Java only speaks ‘Java’… – Data typically must be copied/(de)serialized/marshalled onto/off Java heap – Costly in path-length and footprint 5 © 2012 IBM Corporation
  • 6. On-Heap PackedObjects Example ■ Allows controlled layout of storage of data structures on the Java heap – Reduces footprint of data on Java heap – No (de)serialization required I/O Native storage (20 bytes) Java heap JVM 6 © 2012 IBM Corporation
  • 7. Off-Heap Packed Objects Example ■ Enable Java to talk directly to the native data structure – Avoid overhead of data copy onto/off Java heap – No (de)serialization required I/O Native storage (20 bytes) Meta Data JVM Java heap 7 © 2012 IBM Corporation
  • 8. Example: Distributed Computing High-Level Architecture Communication between nodes (RDMA, hyper-sockets, ORB, etc): Using Java packed objects, data can ● Data copy be moved between the ● (De)Serialization persistency and communication layers without being copied or (de)serialized onto/off the Java Data persistency on each heap node (DB, file-system, etc): ● Data copy ● (De)serialization DB DB JVM JVM App. App. Server Server Node Node 8 © 2012 IBM Corporation
  • 9. © 2012 IBM Corporation Page 9 Example: Inter-language Communication Java requires data copies, marshalling and COBOL Java C/C++ serialization across language boundaries foo(…){ goo(…){ loo(…){ … … … goo(); loo(); } } } Java packed objects avoids data copies, COBOL Java C/C++ marshaling and serialization foo(…){ goo(…){ loo(…){ … … … goo(); loo(); } } }
  • 10. PackedObjects 101 ■ A new PackedObject type for the Java language, which allows for: – Direct access of data located outside of the Java heap – Contiguous allocation of all object's data (objects and arrays) – Is not derived from Object, and hence dis-allows assignment and casting – Special BoxingPackedObject is glue to reference a PackedObject from Object java/lang/object java/lang/PackedObject java/math/BigDecimal etc… java/lang/PackedArray etc… java/lang/String java/lang/PackedString java/lang/HashMapEntry java/lang/BoxedPackedObject java/lang/PackedHashMapEntry ■ Current Java Capabilities – Current Java logic requires language interpreters and data copies for execution. – PackedObjects eliminate data copies across the Java Native Interface and the need to design and maintain Direct Byte Buffers ■ Using PackedObjects: annotation-based (or later a packed key word) above a class definition is required to create a packed class. The class instances can be accessed and modified identically to current Java objects 10 © 2012 IBM Corporation
  • 11. Scope of Implementation ■ “@Packed” class annotation used to define a PackedObject class ■ “@Length” field annotation used to specify length of PackedObject arrays Proposed Initial Rules ■ Packed types must directly subclass PackedObject ■ Packed inlining can only happen for field declarations which are primitives, PackedObjects or arrays of PackedObjects ■ Fields made up of arrays must provide a length that is a compile time constant ■ Regular Java primitive types cannot be used to declare a PackedObject array. Boxed types for primitive arrays must be used instead. ■ A field declaration cannot introduce a circular class dependency ■ When a PackedObject is instantiated, only the constructor for the top-level PackedObject is called ■ Local variable assignment and parameter passing of a PackedObject is copy-by-reference ■ BoxedPackedObject is used to box a PackedObject with an Object reference ■ Allocating a PackedObject using the 'new' keyword creates an on-heap PackedObject ■ Off-heap PackedObject creation is done using factory method provided in the class library 11 © 2012 IBM Corporation
  • 12. Code Snippets ■ Packed class definition ■ On-Heap Packed Allocation ■ Off-heap Packed Allocation 12 © 2012 IBM Corporation
  • 13. Functionality Changes Current Java PackedObject Data Field ■ Object fields limited to primitives or ■ When allocating a PackedObject, all Allocation references to other objects; non- corresponding data fields get allocated and Storage primitives must be initialized and copied simultaneously and packed into a single into a format understood by Java. contiguous object (rather than referenced). ■ Headers for child objects copied onto ■ No headers for child objects which all Child objects the Java heap when accessed. share global header on the PackedObject. Arrays ■ For arrays of objects each element in an ■ Arrays packed together contiguously array has it's own header and a under one common header; array length reference to it. The elements are not marked in PackedObject header. Full contiguous in memory. access to elements in array and bounds checking still performed. Off-heap ■ Data can not be accessed or modified ■ Data that does not exist in Java can be outside of the Java heap. Data must be accessed and modified directly by using converted into a Java version and then the data's memory location. The Java this copy can then be accessed and Virtual Machine takes care of the manipulated. accessors and modifiers internally. 13 © 2012 IBM Corporation
  • 14. Off Heap Benefit: Lowers Memory Footprint, increases performance Before Native memory ● Java requires objects to be in primitive form to be Header accessed directly* Header Hea ● If objects are not in primitive form, references and Header Data der Data copies required to access data; time-consuming Data conversion process Data reference ● When objects are graphed onto the heap, they reference reference reference are placed randomly and occupy more space than is needed He Java Heap ad HEADER Da e er Header ta C r d Memory bloat occurs due to data copies (data ● Data Copy Hea opy opy must be accessed and copied, including headers) Header taC Data Copy Da *without the use of JNI or DBB After ● PackedObjects eliminate requirement for objects to be in primitive form ● PackedObjects can be accessed directly from source without the redundant copying; no conversion ● PackedObject allocates and packs all data fields HEADER (including other PackedObject and arrays) into a Direct Access, No Copy single well defined contiguous storage area 14 © 2012 IBM Corporation
  • 15. Copyright and Trademarks © IBM Corporation 2012. All Rights Reserved. IBM, the IBM logo, and ibm.com are trademarks or registered trademarks of International Business Machines Corp., and registered in many jurisdictions worldwide. Other product and service names might be trademarks of IBM or other companies. A current list of IBM trademarks is available on the Web – see the IBM “Copyright and trademark information” page at URL: www.ibm.com/legal/copytrade.shtml 15 © 2012 IBM Corporation