[
https://issues.apache.org/jira/browse/OPENEJB-1955?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13505508#comment-13505508
]
Howard W. Smith, Jr. commented on OPENEJB-1955:
-----------------------------------------------
20121128_profileLogin1.jpg
Shows the performance of my original use of JPA, which includes dynamic SQL
(SELECT * from table WHERE ...). Below is the code that was issued:
q = getEntityManager().createQuery(queryStr);
20121128_profileLogin2.jpg
Shows performance after added eclipselink.read-only = true as query hint
q = getEntityManager().createQuery(queryStr).setHint("eclipselink.read-only",
"true");
20121128_profileLogin3.jpg
Shows performance of using named query
q = getEntityManager().createNamedQuery("Orders.filterByDate");
q.setParameter("from", dateFrom, TemporalType.TIMESTAMP).
setParameter("to", dateTo, TemporalType.TIMESTAMP);
> TomEE 1.5.1 SNAPSHOT (and CDI beans) running slow on my production server
> -------------------------------------------------------------------------
>
> Key: OPENEJB-1955
> URL: https://issues.apache.org/jira/browse/OPENEJB-1955
> Project: OpenEJB
> Issue Type: Question
> Components: container system
> Affects Versions: 1.6.0
> Environment: Windows Server 2003, 32-bit, PrimeFaces 3.5 SNAPSHOT,
> PrimeFaces Push (Atmosphere/websockets) configured;
> Internet connection is powered by Verizon Wireless 4G
> Reporter: Howard W. Smith, Jr.
> Priority: Minor
> Labels: 2003, atmosphere, server, tomee, windows
> Fix For: 1.6.0
>
> Attachments: 20121128_profileLogin1.jpg, 20121128_profileLogin2.jpg,
> 20121128_profileLogin3.jpg, catalina.2012-11-27.log, jvisualvm_20121127.csv,
> jvisualvm_20121127.html, jvisualvm_20121127.nps, jvisualvm.csv,
> jvisualvm.html, jvisualvm.nps, jvisualvm_tomee_excel_smaller.csv,
> jvisualvm_tomee.html, jvisualvm_tomee.nps, jvisualvm_tomee_smaller.csv,
> jvisualvm_tomee_smaller.html, web.xml
>
> Original Estimate: 612h
> Remaining Estimate: 612h
>
> I was working with Romain and Mark Struberg on this one, and decided to open
> an issue, so I could attach files and continue discussion here.
> My TomEE/CDI-managed-beans web application is running really slow on
> production server (Windows Server 2003 32-bit Verizon Wireless 4G internet
> connection); runs faster on Windows Server 2008 64bit (cablemodem internet
> connection).
> Currently in production, the Glassfish 3.1.2.2 and JSF-managed-beans version
> of the web application is running much faster than the
> TomEE/CDI-managed-beans version of the web application.
> Per Romain and Mark, I ran jvisualvm to provide some benchmarks.
> Please review attached files and confirm and advise.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira