persistent session storage
play

Persistent Session Storage Henceforth referred to as PSS :) - - PowerPoint PPT Presentation

MONTREAL JUNE 30, JULY 1ST AND 2ND 2012 Persistent Session Storage Henceforth referred to as PSS :) - Ramsey Gurley Demo MONTREAL JUNE 30, JULY 1ST AND 2ND 2012 What does this mean? Robust, scalable, front end apps using component actions.


  1. MONTREAL JUNE 30, JULY 1ST AND 2ND 2012 Persistent Session Storage Henceforth referred to as PSS :) - Ramsey Gurley

  2. Demo

  3. MONTREAL JUNE 30, JULY 1ST AND 2ND 2012 What does this mean? Robust, scalable, front end apps using component actions.

  4. Advantages of PSS • Memory consumption • Long sessions • Distribution

  5. Memory Consumption • Sessions storage handled by EOF • Session memory freed after each request • Drastically improves stateful performance under load

  6. Long Sessions • WOSessionTimeOut=0 • Bookmarkable component actions

  7. Distribution • WOSession’s setDistributionEnabled() • Restart instances anytime • Improved scaling

  8. How do I enable PSS?

  9. Demo

  10. Steps to enable PSS • Add ERPersistentSessionStorage framework • Set up the connection dictionary for the model • Generate the schema from the model (Enable migrations)

  11. MONTREAL JUNE 30, JULY 1ST AND 2ND 2012 How now brown cow? Why has no one done this before now?

  12. Serialization Bug

  13. EOGenericRecord • Serialize EO EO EC • Serializes EC • Deserialize EO • Deserialize EC • Populate EO

  14. Workaround? • Serialize EC first! • Fails :(

  15. EOGenericRecord • Serialize EO EO EO • Serializes related • Deserialize EO • Deserialize related • Populate EO

  16. What happens? • EOCustomObject classDescription • EOGenericRecord serializes classDescription • Deserialize EOCustomObject sets values • Dictionary not created until EOGenericRecord sets classDescription • NullPointerException

  17. Serialization Bug Fix • Re-implement core classes • EOCustomObject • EOGenericRecord

  18. Other WO Serialization Erros • WODisplayGroup • D2WPage

  19. Serialization • Classpath order - ERD2W & ERPSS • General rule - Wonder first

  20. PSS Requirements

  21. PSS Requirements • Serializable components and classes • Serializable session • No memory leaks

  22. Serializable Classes

  23. serialVersionUID /** * Do I need to update serialVersionUID? See section 5.6 <cite>Type Changes * Affecting Serialization</cite> on page 51 of the <a * href="http://java.sun.com/j2se/1.4/pdf/serial-spec.pdf">Java Object * Serialization Spec</a> */ private static final long serialVersionUID = 1L;

  24. Update serialVersionUID? • Change class hierarchy • Delete fields • Make non-static into static • Make non-transient into transient • Change type of a primitive field

  25. Serializable Session

  26. Serializable Session • Serializable instance variables • Serializable object store contents

  27. No Memory Leaks

  28. Helpful Tools • FindBugs • jvisualvm • jMeter

  29. Find Serialization Errors

  30. FindBugs http://findbugs.cs.umd.edu/eclipse/

  31. FindBugs

  32. Serialization Debug Property sun.io.serialization.extendedDebugInfo=true

  33. Serialization Debug Property Caused by: java.io.NotSerializableException: er.extensions.localization.ERXLocalizer - field (class "er.modern.directtoweb.components.ERMDBatchSizeControl", name: "_localizer", ... - object (class "er.modern.directtoweb.components.ERMDBatchSizeControl",... - element of array (index: 5) - array (class "[Ljava.lang.Object;", size: 7) - field (class "com.webobjects.foundation.NSDictionary", name: "objects", type: "class [Ljava.lang.Object;") - custom writeObject data (class "com.webobjects.foundation.NSDictionary") - object (class "com.webobjects.foundation.NSMutableDictionary", ... - custom writeObject data (class "com.webobjects.appserver.WOComponent") - object (class "er.modern.look.pages.ERMODListPage", ... - field (class "com.webobjects.appserver._private.WOTransactionRecord", name: ... - object (class "com.webobjects.appserver._private.WOTransactionRecord", ... - element of array (index: 1) - array (class "[Ljava.lang.Object;", size: 2) - field (class "com.webobjects.foundation.NSDictionary", name: "objects", type: "class [Ljava.lang.Object;") - custom writeObject data (class "com.webobjects.foundation.NSDictionary") - object (class "com.webobjects.foundation.NSMutableDictionary", - field (class "com.webobjects.appserver.WOSession", name: "_contextRecords", ... - root object (class "wowodc.modernpss.Session", ...

  34. Other Serialization Issues

  35. D2WContext • D2WContext is not serializable • ERD2WContext is serializable • Use ERD2WContext factory

  36. ERD2WContext • Does not serialize entire context • frame • task • entity • propertyKey • pageConfiguration • object

  37. ERXEC • calls dispose() during writeObject()

  38. Find Memory Leaks

  39. jvisualvm • Installed with Java 1.6+ • Just type ‘jvisualvm’ into Terminal.app to launch • View CPU and memory usage

  40. No Memory Leak

  41. Memory Leak

  42. Analyzing Memory • Heap Dump • Object Query Language (OQL) • http://visualvm.java.net/oqlhelp.html

  43. Load Testing With JMeter

  44. JMeter • http://jmeter.apache.org/

  45. Finding a Memory Leak Demo

  46. Q & A

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend