Re: Performance scale up Thread

2024-05-09 Thread Mandar K
ters/donated-licenses/yourkit-java-profiler.txt > > HTH > > Jacques > > Le 08/05/2024 à 20:30, Mandar K a écrit : > > Dear All, related to performance scale up thread wanted to share one > > observation : > > > > Everytime there is an increase in memory it g

Re: Performance scale up Thread

2024-05-09 Thread Mandar K
memory leak on production - it is meant for > developing mode. > > Best regards, > Ingo > > -Ursprüngliche Nachricht- > Von: Mandar K > Gesendet: Mittwoch, 8. Mai 2024 20:31 > An: ofbizuser > Betreff: Performance scale up Thread > > Dear Al

AW: Performance scale up Thread

2024-05-09 Thread Ingo Wolfmayr
2024 20:31 An: ofbizuser Betreff: Performance scale up Thread Dear All, related to performance scale up thread wanted to share one observation : Everytime there is an increase in memory it gets filled up. This may be due to a memory management bug in any code. Some processes are creating a lot

Re: Performance scale up Thread

2024-05-08 Thread Jacques Le Roux
I suggest you use YourKit Java Profiler BTW, it's free for Apache committers https://svn.apache.org/repos/private/committers/donated-licenses/yourkit-java-profiler.txt HTH Jacques Le 08/05/2024 à 20:30, Mandar K a écrit : Dear All, related to performance scale up thread wanted to share one

Performance scale up Thread

2024-05-08 Thread Mandar K
Dear All, related to performance scale up thread wanted to share one observation : Everytime there is an increase in memory it gets filled up. This may be due to a memory management bug in any code. Some processes are creating a lot of objects and not clearing afterwards. Requesting inputs

Performance improvement consultancy

2024-05-08 Thread Mandar K
Dear All, Greetings. We are looking for formal performance improvement assistance. Anyone who has optimized it can reach out to me directly for formal consultancy. Thanks and have a nice day -- Regards Mandar K Adaptability is the whole mystery of life - Swami Vivekanand

Re: Performance issues

2024-04-25 Thread Mandar K
y indexed. Missing > indexes can dramatically slow down query performance. > Query Analysis: Use tools like slow query logs to identify inefficient > queries and optimize them. > Connection Pooling: Verify that your database connection settings are > optimized for your usage pattern. &

Re: Performance issues

2024-04-25 Thread Mandar K
> > Met vriendelijke groet, > > Pierre > > > On Tue, Apr 23, 2024 at 6:53 AM Mandar K wrote: > >> Hi All, >> >> In a recent switchover to Ofbiz we are observing performance issues where >> almost all the application is running very slow. >> >&g

AW: Performance issues

2024-04-22 Thread Ingo Wolfmayr
Hi Mk, I recommend checking the following points first: 1. Database Optimization: Indexes: Ensure that your database tables are properly indexed. Missing indexes can dramatically slow down query performance. Query Analysis: Use tools like slow query logs to identify inefficient queries

Performance issues

2024-04-22 Thread Mandar K
Hi All, In a recent switchover to Ofbiz we are observing performance issues where almost all the application is running very slow. Please give pointers which will give breakthrough. Thanks for your inputs, much appreciated. Regards Mk

Re: OFBiz performance enhancement

2017-05-18 Thread Sanjeev Gupta
too.. Regards Sanjeev Gupta - Rgds Sanjeev Gupta -- View this message in context: http://ofbiz.135035.n4.nabble.com/OFBiz-performance-enhancement-tp4705974p4705983.html Sent from the OFBiz - User mailing list archive at Nabble.com.

Re: OFBiz performance enhancement

2017-05-18 Thread Giulio Speri - MpStyle Srl
ou're using the the default Derby >> database, there's your problem. >> >> If you're on Postgres, make sure you tune it. >> http://pgtune.leopard.in.ua/ >> >> Also if you're on Postgres make sure you're running a VACUUM at least >> weekly. Out of the box Post

Re: OFBiz performance enhancement

2017-05-18 Thread Paul Mandeltort
rd.in.ua/ >> >> Also if you're on Postgres make sure you're running a VACUUM at least >> weekly. Out of the box Postgres is set pretty conservative so it can run >> well on small VMs. >> >> If you're hosting the site in a generic virtual machine or AWS EC2 be >

Re: OFBiz performance enhancement

2017-05-18 Thread Giulio Speri - MpStyle Srl
eekly. Out of the box Postgres is set pretty conservative so it can run > well on small VMs. > > If you're hosting the site in a generic virtual machine or AWS EC2 be > aware that the IO performance on these systems is pretty lousy. Nowadays > I'd recommend just using Amazon RDS so y

Re: OFBiz performance enhancement

2017-05-18 Thread Paul Mandeltort
conservative so it can run well on small VMs. If you're hosting the site in a generic virtual machine or AWS EC2 be aware that the IO performance on these systems is pretty lousy. Nowadays I'd recommend just using Amazon RDS so you don't have to mess with it. Or just do like most folks

Re: OFBiz performance enhancement

2017-05-18 Thread Michael Brohl
Hi Giulio, have you already considered the production setup guide in [1]? If yes, we will need some more information as there are many possible performance issues (network, configuration etc.). Best regards, Michael Brohl ecomify GmbH www.ecomify.de [1] https://cwiki.apache.org/confluence

OFBiz performance enhancement

2017-05-18 Thread Giulio Speri - MpStyle Srl
Hello everyone, I would like to ask you some suggestion on improving performances of our eCommerce site We're monitoring our jvm with NewRelic tool and response times are quite good, and the server on which ofbiz run has minimal cpu/ram usage, but customers often complains slowness in page

Re: performance

2017-03-21 Thread Scott Gray
Is there any indication it consumes anything other than some small amount of RAM after startup? Regards Scott On 19 March 2017 at 22:23, Pierre Smits wrote: > With respect to gradle that is not entirely true. As you use it to run > OFBiz it will continue to consume

Re: performance

2017-03-19 Thread Pierre Smits
With respect to gradle that is not entirely true. As you use it to run OFBiz it will continue to consume hardware resources. Best regards, Pierre Smits ORRTIZ.COM OFBiz based solutions & services OFBiz Extensions Marketplace http://oem.ofbizci.net/oci-2/ On Sat, Mar

Re: performance

2017-03-18 Thread stimits
... - don't use gradle to start up, but use java - jar ofbiz.jar - set 'check-on-start' to false - set 'add-missing-on-start' to false - set 'check-inidices-on-start' to false ... I am curious if gradle and the others are just start up time issues...I am assuming these have no effect after

Re: performance

2017-03-18 Thread Pierre Smits
;> >> Here are some (other) tips to optimize your production environment for >> performance: >> >> - remove all components that you don't intend to use >> - remove all 3rd party solution integrations that you don't use >> (payment/shipment/etc) >>

Re: performance

2017-03-18 Thread Bahaa Alamood
Hi Pierre, Thanks for the tips, I use centos 7 for this server, do you have a startup script for this or hints on how to create one? On 3/18/2017 4:44 AM, Pierre Smits wrote: Hi Bahaaldin, Here are some (other) tips to optimize your production environment for performance: - remove

Re: performance

2017-03-18 Thread Pierre Smits
Hi Bahaaldin, Here are some (other) tips to optimize your production environment for performance: - remove all components that you don't intend to use - remove all 3rd party solution integrations that you don't use (payment/shipment/etc) - don't use gradle to start up, but use java

Re: performance

2017-03-17 Thread Bahaa Alamood
Dear Taher, Thanks that helped, it is much faster now. I will report back in a week to see if the performance degrades or not after that. thanks again On 3/17/2017 8:31 AM, Taher Alkhateeb wrote: Hi Bahaa, It's hard to tell without looking at some details. Did you perform any kind

Re: performance

2017-03-17 Thread Taher Alkhateeb
t; < balam...@arcdigitalsolutionsandconsultancy.com> wrote: > Hello, > > I have an of biz installation and it is used daily for accounting and > other things, however I am having to restart the server every week to keep > the performance at an acceptable speed. my environment is java 1.

performance

2017-03-17 Thread Bahaa Alamood
Hello, I have an of biz installation and it is used daily for accounting and other things, however I am having to restart the server every week to keep the performance at an acceptable speed. my environment is java 1.8 and the server has 4 GB RAM with 2 core processor. I have noticed

Re: OFBiz Performance, a good story

2014-02-23 Thread Jacques Le Roux
I'm not quite sure what you are looking for Before living the project David created a space for requirements https://cwiki.apache.org/confluence/display/OFBREQDES/Home But it's not open like the wiki. In the wiki you have this blank page

Re: OFBiz Performance, a good story

2014-02-23 Thread Todd Thorner
Thanks very much for the information, Mr. Le Roux. I'm not sure what I might be able to do to help the project, so I'll look into the contributor thing. Considering how little time I've had to spend on my company's OFBiz rollout, I'm still counted among the newest of the newbies. I am starting

RE: OFBiz Performance, a good story

2014-02-14 Thread Len Shein
Help Documentation. http://bigfish.solveda.com/help/guideCachingAndMemory.htm Regards Len -Original Message- From: Mike [mailto:mz4whee...@gmail.com] Sent: Thursday, February 13, 2014 4:29 PM To: user Subject: Re: OFBiz Performance, a good story These are pretty

OFBiz Performance, a good story

2014-02-13 Thread Nick Rosser
, and peaks around the 11th, 12th Feb * peak #visitors (day): 20,000 * peak #pageviews (day): 150,000 * peak #orders (day): ~4000 * peak #concurrent users: 275 And perhaps the most impressive fact around performance was that during peak the site was flying, no noticeable difference

Re: OFBiz Performance, a good story

2014-02-13 Thread Ted Byers
On Thu, Feb 13, 2014 at 12:36 PM, Todd Thorner tthor...@infotinuum.comwrote: Thank you, Mr. Byers, for posting such a remark-worthy suggestion, and thank you, Mr. Rosser, for providing the inertia that might help start an exciting new OFBiz-related project (congrats as well on securing a

Re: OFBiz Performance, a good story

2014-02-13 Thread Todd Thorner
Hi Ted, I'm still in full-doofus mode regarding OFBiz and its capabilities for integrating with third-party services/apps from various frameworks/languages. I'm not even strong enough on the uptake to know whether something like the ASF's Camel project might be stepping in the right direction.

Re: Calculate Product Price Service - Product Price Rule Performance

2013-01-23 Thread Jacques Le Roux
come across any performance issues since calculateProductPrice service may be called from multiple areas of an eCommerce Site (list page and detail page)? I remember the Neogia project did something about that. It's at least used in the OYA ERP http://www.c-libre.net/web/guest/oya which

FW: Calculate Product Price Service - Product Price Rule Performance

2013-01-21 Thread Len Shein
to determine if any price conditions are 'true' by calling method 'checkPriceCondition'. In my scenario over '3000' DB hits would have been made and processing of 6000 rows is performed to determine if a 'single' product has price rules. Has anyone come across any performance issues since

Re: Performance of Ofbiz

2012-05-02 Thread hzzg6y
Please can someone help me with performance tips for Ofbiz. I am really struggling to get to high performance of the ecommerce site. Rgds, -- View this message in context: http://ofbiz.135035.n4.nabble.com/Performance-of-Ofbiz-tp4586418p4602795.html Sent from the OFBiz - User mailing list

Re: Performance of Ofbiz

2012-05-02 Thread Hans Bakker
check my blog i wrote sometime ago http://www.antwebsystems.com/control/ViewBlogArticle?contentId=16640 Regards, Hans On 05/02/2012 05:16 PM, hzzg6y wrote: Please can someone help me with performance tips for Ofbiz. I am really struggling to get to high performance of the ecommerce site

Re: Performance of Ofbiz

2012-05-02 Thread Scott Gray
On 2/05/2012, at 10:22 PM, Hans Bakker wrote: check my blog i wrote sometime ago http://www.antwebsystems.com/control/ViewBlogArticle?contentId=16640 Regards, Hans On 05/02/2012 05:16 PM, hzzg6y wrote: Please can someone help me with performance tips for Ofbiz. I am really

Re: Performance of Ofbiz

2012-05-02 Thread hzzg6y
Thanks a lot to Hans Scott for prompt response. Scott, If we don't disable visit function, do we have any other choice. Ecommerce site should be working like amazon.com else it is of NO use. We need to make ofbiz with top performance as normal PHP+MYSQL site else we will lose visitors

Re: Performance of Ofbiz

2012-05-02 Thread Adrian Crum
This thread illustrates the fundamental problem with most performance tuning advice - there are no statistics, no metrics, no examples, etc. In other words, there is no concrete information to base a decision on. I would recommend hiring a qualified and experienced professional to evaluate

Re: Performance of Ofbiz

2012-05-02 Thread Scott Gray
illustrates the fundamental problem with most performance tuning advice - there are no statistics, no metrics, no examples, etc. In other words, there is no concrete information to base a decision on. I would recommend hiring a qualified and experienced professional to evaluate your site

Re: Performance of Ofbiz

2012-05-02 Thread Mike
it as /opt/java/bin/java. On Wed, May 2, 2012 at 3:16 AM, hzzg6y rupadh...@gmail.com wrote: Please can someone help me with performance tips for Ofbiz. I am really struggling to get to high performance of the ecommerce site. Rgds, -- View this message in context: http://ofbiz.135035.n4

Re: Performance of Ofbiz

2012-05-02 Thread hzzg6y
this container as well, as for my scenario, I am not getting anything from JNDI. -- View this message in context: http://ofbiz.135035.n4.nabble.com/Performance-of-Ofbiz-tp4586418p4603549.html Sent from the OFBiz - User mailing list archive at Nabble.com.

Re: Performance of Ofbiz

2012-05-02 Thread hzzg6y
Mike, Thanks ... You mean that JDK6 is better than JDK7 ( jdk-7u4-linux-x64.rpm ). Please clarify that whether I should use the old version of JDK which finely tuned with Ofbiz. Rgsd -- View this message in context: http://ofbiz.135035.n4.nabble.com/Performance-of-Ofbiz

Re: Performance of Ofbiz

2012-05-02 Thread hzzg6y
Since We are using Postgresql. Is it the issue with DB. We can fine to switch to MYSQL but performance need to be improved for ecommerce site. -- View this message in context: http://ofbiz.135035.n4.nabble.com/Performance-of-Ofbiz-tp4586418p4603628.html Sent from the OFBiz - User mailing list

Re: Performance of Ofbiz

2012-05-02 Thread Mike
are using Postgresql. Is it the issue with DB. We can fine to switch to MYSQL but performance need to be improved for ecommerce site. -- View this message in context: http://ofbiz.135035.n4.nabble.com/Performance-of-Ofbiz-tp4586418p4603628.html Sent from the OFBiz - User mailing list archive

Re: Performance of Ofbiz

2012-05-02 Thread Sanjeev Gupta
Also try configuring Apache HTTP server as a fronted to Ofbiz server. Although it will add an additional layer in the architecture, it will handle all static and cached content rendering to browser and improve your app server's performance. That said, please do to keep in mind that a Java bases

Re: Performance of Ofbiz

2012-05-02 Thread Deepak Agarwal
in the architecture, it will handle all static and cached content rendering to browser and improve your app server's performance. That said, please do to keep in mind that a Java bases server can't be tuned to perform like the LAMP stack. both have their own merits and demerits, but when it come

Re: Performance of Ofbiz

2012-04-25 Thread Mike
rupadh...@gmail.com wrote: Dear All, I have just started using the Ofbiz for my ecommerce website. However I am seeing a huge performance problems with ofbiz. My website is quite slow compared to many other websites on ecommerce. I have modified cache Settings ( cache.properties) debug

Re: Performance of Ofbiz

2012-04-25 Thread hzzg6y
No, I am using Postgresql not MYSQL. -- View this message in context: http://ofbiz.135035.n4.nabble.com/Performance-of-Ofbiz-tp4586418p4587311.html Sent from the OFBiz - User mailing list archive at Nabble.com.

Re: Performance of Ofbiz

2012-04-25 Thread madppiper
Well, there certainly are ways to push ofbiz. Have you taken a look at Syracus? www.syracus.net -- View this message in context: http://ofbiz.135035.n4.nabble.com/Performance-of-Ofbiz-tp4586418p4587352.html Sent from the OFBiz - User mailing list archive at Nabble.com.

Re: Users - OfBiz -performance

2012-03-19 Thread amitagrawal
can I learn ofBiz as quickly as possible ? Thanks and Regards Amit Agrawal amitagrawal.mits...@gmail.com -- View this message in context: http://ofbiz.135035.n4.nabble.com/Users-OfBiz-performance-tp139865p4484282.html Sent from the OFBiz - User mailing list archive at Nabble.com.

Re: Users - OfBiz -performance

2012-03-19 Thread Nitesh Suryavanshi
Agrawal amitagrawal.mits...@gmail.com -- View this message in context: http://ofbiz.135035.n4.nabble.com/Users-OfBiz-performance-tp139865p4484282.html Sent from the OFBiz - User mailing list archive at Nabble.com.

Re: Users - OfBiz -performance

2012-03-19 Thread amitagrawal
these questions and also suggest me how can I learn ofBiz as quickly as possible ? Thanks and Regards Amit Agrawal [hidden email] http://user/SendEmail.jtp?type=nodenode=4484586i=0 -- View this message in context: http://ofbiz.135035.n4.nabble.com/Users-OfBiz-performance

Re: Users - OfBiz -performance

2012-03-19 Thread manish
You can connect with data base using entityEngine.xml. And then read Entity Model in Ofbiz Tutorial.You will find your solution there. -- View this message in context: http://ofbiz.135035.n4.nabble.com/Users-OfBiz-performance-tp139865p4484892.html Sent from the OFBiz - User mailing list

OFBiz performance levels ?

2011-04-18 Thread Nitin Mittal
Hello, I have just started evaluating OFBiz and curious to know what performance levels does it support. Experienced users, please share some data based on your experience. For example, how many concurrent users does it support ? What is the average response time ? Not looking for exact

Re: OFBiz performance levels ?

2011-04-18 Thread Jacques Le Roux
: Hello, I have just started evaluating OFBiz and curious to know what performance levels does it support. Experienced users, please share some data based on your experience. For example, how many concurrent users does it support ? What is the average response time ? Not looking for exact figures

Re: OFBiz performance levels ?

2011-04-18 Thread Nitin Mittal
pricing rules * couple of promotions running at a time (not more than 5)  thanks, Nitin Mittal   From: Jacques Le Roux jacques.le.r...@les7arts.com To: user@ofbiz.apache.org Sent: Mon, 18 April, 2011 12:12:19 PM Subject: Re: OFBiz performance levels ? OFBiz

Re: OFBiz performance levels ?

2011-04-18 Thread Jacques Le Roux
12:12:19 PM Subject: Re: OFBiz performance levels ? OFBiz is based on Tomcat s. So it is very scalable and depends on hardware and configuration you use (app and db clusters, farms, etc.). This sais when heavily used (hundreds and more) Price Rules, Promotions, or even Items per Order are known

Re: demo server performance

2010-12-09 Thread Jacques Le Roux
I have spent a lot of time (I mean in respect of my free time) this last days to understand the problems. It appears that removing the help was a great relief for our demo sever. For few hours now we are running with trunk: -Xms128M -Xmx768M -XX:MaxPermSize=192m (so max seems 768+192=960MB but

Catalog management performance issue

2010-08-17 Thread Michał Cukierman
Hi, I have a problem with performence (and Out of Memmory Issue) with catalog management module. There is a section invoked after Choose Top Category CollectionGenericValue allCategories = delegator.findList(ProductCategory, null, null, null, null, false); for (GenericValue curCat:

Re: Catalog management performance issue

2010-08-17 Thread BJ Freeman
as far as performance how much memory have you allocated to ofbiz? what version of ofbiz are you using? There is a top Category that should be checked for first. have not been in that part of the code for a while. Michał Cukierman sent the following on 8/17/2010 7:41 AM: Hi, I have a problem

Re: Catalog management performance issue

2010-08-17 Thread Michał Cukierman
on DynamicViewEntity (I was able to find out how to creat inner join only) 2) How to implement my whereString (Haven't found in a code such a use case) Regards, Michał Dnia 2010-08-17, wto o godzinie 07:54 -0700, BJ Freeman pisze: as far as performance how much memory have you allocated to ofbiz? what

Re: Catalog management performance issue

2010-08-17 Thread Ruth Hoffman
found in a code such a use case) Regards, Michał Dnia 2010-08-17, wto o godzinie 07:54 -0700, BJ Freeman pisze: as far as performance how much memory have you allocated to ofbiz? what version of ofbiz are you using? There is a top Category that should be checked for first. have not been

Re: Catalog management performance issue

2010-08-17 Thread Michał Cukierman
‚ Dnia 2010-08-17, wto o godzinie 07:54 -0700, BJ Freeman pisze: as far as performance how much memory have you allocated to ofbiz? what version of ofbiz are you using? There is a top Category that should be checked for first. have not been in that part of the code for a while

Re: Catalog management performance issue

2010-08-17 Thread David E Jones
(Haven't found in a code such a use case) Regards, Michał Dnia 2010-08-17, wto o godzinie 07:54 -0700, BJ Freeman pisze: as far as performance how much memory have you allocated to ofbiz? what version of ofbiz are you using? There is a top Category that should be checked for first

Re: Catalog management performance issue

2010-08-17 Thread Ruth Hoffman
inner join only) 2) How to implement my whereString (Haven't found in a code such a use case) Regards, Michał Dnia 2010-08-17, wto o godzinie 07:54 -0700, BJ Freeman pisze: as far as performance how much memory have you allocated to ofbiz? what version

Re: Catalog management performance issue

2010-08-17 Thread David E Jones
: as far as performance how much memory have you allocated to ofbiz? what version of ofbiz are you using? There is a top Category that should be checked for first. have not been in that part of the code for a while. Michał Cukierman sent the following on 8/17/2010 7:41 AM: Hi, I

Re: Catalog management performance issue

2010-08-17 Thread Ruth Hoffman
-17, wto o godzinie 07:54 -0700, BJ Freeman pisze: as far as performance how much memory have you allocated to ofbiz? what version of ofbiz are you using? There is a top Category that should be checked for first. have not been in that part of the code for a while. Michał

Re: Catalog management performance issue

2010-08-17 Thread Michał Cukierman
whereString (Haven't found in a code such a use case) Regards, Michał Dnia 2010-08-17, wto o godzinie 07:54 -0700, BJ Freeman pisze: as far as performance how much memory have you allocated to ofbiz? what version of ofbiz are you using

Re: Catalog management performance issue

2010-08-17 Thread Ruth Hoffman
in a code such a use case) Regards, Michał Dnia 2010-08-17, wto o godzinie 07:54 -0700, BJ Freeman pisze: as far as performance how much memory have you allocated to ofbiz? what version of ofbiz are you using? There is a top Category that should be checked for first

Re: Catalog management performance issue

2010-08-17 Thread BJ Freeman
Right/Left joins on DynamicViewEntity (I was able to find out how to creat inner join only) 2) How to implement my whereString (Haven't found in a code such a use case) Regards, Michał Dnia 2010-08-17, wto o godzinie 07:54 -0700, BJ Freeman pisze: as far as performance how much memory

Re: Performance issue: org.ofbiz.entity.transaction.TransactionUtil seems to be bottleneck

2010-06-01 Thread Deyan Tsvetanov
set caches? https://cwiki.apache.org/confluence/display/OFBTECH/Apache+OFBiz+Technical+Production+Setup+Guide#ApacheOFBizTechnicalProductionSetupGuide-CacheSettings https://cwiki.apache.org/confluence/display/OFBADMIN/Scaling+and+Performance+Plan Jacques From: Martin Kreidenweis

Re: Performance issue: org.ofbiz.entity.transaction.TransactionUtil seems to be bottleneck

2010-06-01 Thread Deyan Tsvetanov
+Guide#ApacheOFBizTechnicalProductionSetupGuide-CacheSettings https://cwiki.apache.org/confluence/display/OFBADMIN/Scaling+and+Performance+Plan Jacques From: Martin Kreidenweis martin.kreidenw...@tngtech.com Hi, we are currently evaluating Apache OFBiz for use in one of our

Re: Performance issue: org.ofbiz.entity.transaction.TransactionUtil seems to be bottleneck

2010-06-01 Thread rrhati2010
Thanks for the findings and suggestionseven I am facing the same problem deploying in Jboss4.2 and tested with Jmeter for it's performance. Everytime I start putting load on server it gets me Error: OutofMemory or OutofSwapSpace or Not able to create a new native thread even though

Re: Performance issue: org.ofbiz.entity.transaction.TransactionUtil seems to be bottleneck

2010-06-01 Thread Deyan Tsvetanov
still produces OutOfMemory than there is a memory leak for sure. -- Deyan On Mon, 2010-05-31 at 22:35 -0700, rrhati2010 wrote: Thanks for the findings and suggestionseven I am facing the same problem deploying in Jboss4.2 and tested with Jmeter for it's performance. Everytime I start

Re: Performance issue: org.ofbiz.entity.transaction.TransactionUtil seems to be bottleneck

2010-06-01 Thread rrhati2010
Hi Deyan, I have tried out these things i.e (option -Xmx256m Increase it to 1024m). The Server runs fine with 2-5 users load, but goes out of memory for 100 users load when tested with Jmeter for it's performance. Do I need to profile the Ofbiz code. Or, Can u suggest any other solution

Re: Performance issue: org.ofbiz.entity.transaction.TransactionUtil seems to be bottleneck

2010-06-01 Thread Deyan Tsvetanov
with Jmeter for it's performance. Do I need to profile the Ofbiz code. Or, Can u suggest any other solution. - RRH

Re: Performance issue: org.ofbiz.entity.transaction.TransactionUtil seems to be bottleneck

2010-06-01 Thread Martin Kreidenweis
Hi, we probably found a simple solution for the synchronized begin() problem. We set the TransactionUtil.debugResources flag to false; so no more DebugXaResources are created in the begin() method, which seems to be the problematic (performance-wise) part. Now this method is a lot less

Re: Performance issue: org.ofbiz.entity.transaction.TransactionUtil seems to be bottleneck

2010-06-01 Thread David E Jones
To be clear, I wasn't recommending that we remove synchronized from the begin method in OFBiz, just that they remove it temporarily and then redo their performance tests to see if that really is the problem. You're absolutely right that more work will be necessary to localize

Re: Performance issue: org.ofbiz.entity.transaction.TransactionUtil seems to be bottleneck

2010-06-01 Thread Deyan Tsvetanov
, David E Jones wrote: To be clear, I wasn't recommending that we remove synchronized from the begin method in OFBiz, just that they remove it temporarily and then redo their performance tests to see if that really is the problem. You're absolutely right that more work will be necessary

Performance issue: org.ofbiz.entity.transaction.TransactionUtil seems to be bottleneck

2010-05-31 Thread Martin Kreidenweis
Hi, we are currently evaluating Apache OFBiz for use in one of our projects. We expect a high load on our application. So we did a test with jMeter on the sample ecommerce application with 100 parallel sessions and in average 400 msec (randomized) wait time between requests. During profiling we

Re: Performance issue: org.ofbiz.entity.transaction.TransactionUtil seems to be bottleneck

2010-05-31 Thread Jacques Le Roux
1st level of answer, did you set caches? https://cwiki.apache.org/confluence/display/OFBTECH/Apache+OFBiz+Technical+Production+Setup+Guide#ApacheOFBizTechnicalProductionSetupGuide-CacheSettings https://cwiki.apache.org/confluence/display/OFBADMIN/Scaling+and+Performance+Plan Jacques From

Re: Performance issue: org.ofbiz.entity.transaction.TransactionUtil seems to be bottleneck

2010-05-31 Thread Karl Pitrich
+Technical+Production+Setup+Guide#ApacheOFBizTechnicalProductionSetupGuide-CacheSettings https://cwiki.apache.org/confluence/display/OFBADMIN/Scaling+and+Performance+Plan Jacques From: Martin Kreidenweis martin.kreidenw...@tngtech.com Hi, we are currently evaluating Apache OFBiz for use in one

Re: Performance issue: org.ofbiz.entity.transaction.TransactionUtil seems to be bottleneck

2010-05-31 Thread David E Jones
/OFBADMIN/Scaling+and+Performance+Plan Jacques From: Martin Kreidenweis martin.kreidenw...@tngtech.com Hi, we are currently evaluating Apache OFBiz for use in one of our projects. We expect a high load on our application. So we did a test with jMeter on the sample ecommerce application

Re: OFBiz performance issue.

2010-04-13 Thread David E Jones
, 2010 10:27 AM To: user@ofbiz.apache.org Subject: Re: OFBiz performance issue. You need to remove the cache timeouts. There are caches for all of the XML widgets that cache it objects that are created from the XML files so no more interpretation is needed in order to execute them. If you

RE: OFBiz performance issue.

2010-04-12 Thread Anil Soni
) Is there any solution for this ? -Original Message- From: David E Jones [mailto:d...@me.com] Sent: Friday, April 09, 2010 10:27 AM To: user@ofbiz.apache.org Subject: Re: OFBiz performance issue. You need to remove the cache timeouts. There are caches for all of the XML widgets

Re: OFBiz performance issue.

2010-04-09 Thread Jeroen van der Wal
timeouts. There are caches for all of the XML widgets that cache it objects that are created from the XML files so no more interpretation is needed in order to execute them. If you have the default timeouts still enabled those will be thrown away every 10 seconds, causing HUGE performance problems

java.lang.OutOfMemory when doing performance tunning of ofbiz on JBoss

2010-04-09 Thread Pardeep Ruhil
Hi, I was doing performance testing of OFBiz. My system configuration are : OS : Windows Server 2003 (64 Bit) Standard Edition. Ram : 4 G.B Database : Postgres J2EE server : Jboss 4.2.2 GL When I am testing OFBiz for 100 concurrent

OFBiz performance issue.

2010-04-08 Thread Anil Soni
Dear Users, I am doing OFBiz performance testing on JBOSS application server. I've done all the performance setting on both side application side and database side. But still results are very poor then I decided to find the root cause for the problem. For that I've used Java Profiler

Re: OFBiz performance issue.

2010-04-08 Thread David E Jones
, causing HUGE performance problems. These settings are in the cache.properties file, and you can use the WebTools Cache Management pages to check on the cache settings to make sure they are what you expect (ie NO timeouts for the widget and other XML files, including service defs, etc, etc

serious performance problems?

2010-02-27 Thread Florin Popa
Hello all, I had a quick look here http://cwiki.apache.org/confluence/display/OFBIZ/Apache+OFBiz+User+List and it seems most of the ecommerce samples are either no longer available or not using ofbiz anymore. I only found one http://www.actionenvelope.com which is for sure based on

Re: Performance issues

2009-05-14 Thread snowch
-- View this message in context: http://www.nabble.com/Performance-issues-tp23490557p23552601.html Sent from the OFBiz - User mailing list archive at Nabble.com.

Performance issues

2009-05-11 Thread snowch
) [ ContextFilter.java:182:INFO ] [Request]: /xxx/control/ImageServlet 2009-05-11 20:38:01,612 (TP-Processor3) [ ContextFilter.java:182:INFO ] [Request]: /xxx/control/ImageServlet -- View this message in context: http://www.nabble.com/Performance-issues-tp23490557p23490557.html Sent from

Re: Performance issues

2009-05-11 Thread BJ Freeman
Start with memory allocation, then CPU usage. Also check if you have the cache turned on other thing you can do on you page is put a start and stop time that shows page load time. see if this is the same as the real time you experience. there also could be some ways for streamlining your code

Re: Performance issues

2009-05-11 Thread Harmeet Bedi
/Canada Eastern Subject: Performance issues Hi Forum, My application needs to serve images to users but each image request is checked to ensure the user has permission to view the image. To do this, I have created a custom bsh servlet to serve the images for a ftl page (which are included using tags

RE: Credit Card Transactions -- Payflow/Verisign Performance Woes

2008-12-04 Thread Nick Rosser
@ofbiz.apache.org Subject: Re: Credit Card Transactions -- Payflow/Verisign Performance Woes From the PayFlowPro Developer's Guide: The entire process is a real-time synchronous transaction. Once connected, the transaction is immediately processed and the answer returned in about three seconds

Re: Credit Card Transactions -- Payflow/Verisign Performance Woes

2008-12-04 Thread Adrian Crum
: Adrian Crum [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 03, 2008 5:50 PM To: user@ofbiz.apache.org Subject: Re: Credit Card Transactions -- Payflow/Verisign Performance Woes From the PayFlowPro Developer's Guide: The entire process is a real-time synchronous transaction. Once connected

Credit Card Transactions -- Payflow/Verisign Performance Woes

2008-12-03 Thread Nick Rosser
We're using payflow / verisign for cc processing. We have 2 batch processes that run each evening. One creates ~5000 orders; and issues a credit card authorize transaction. The other completes ~5000 orders; and issues a credit card capture transaction. We've found that for both runs the

Re: Credit Card Transactions -- Payflow/Verisign Performance Woes

2008-12-03 Thread David E Jones
2-3 seconds does sound pretty normal. Because there is communication over the internet involved, I'd be surprised no matter how good the code is to see it under 1 second. I'm going out on a limb here... but it sounds like you're processing the orders 1 at a time. Chances are all of the

Re: Credit Card Transactions -- Payflow/Verisign Performance Woes

2008-12-03 Thread Adrian Crum
From the PayFlowPro Developer's Guide: The entire process is a real-time synchronous transaction. Once connected, the transaction is immediately processed and the answer returned in about three seconds. An alternative to David's suggestion might be to modify the services in PayflowPro.java

  1   2   >