-Xprof significantly decrease performance of the application

Hello,
Problem:
java.exe -jar demo\jfc\SwingSet2\SwingSet2.jar
works fine but
java.exe -Xprof -jar demo\jfc\SwingSet2\SwingSet2.jar
works very slow almost not responding.
Indeed this problem appears not only on Swing demo.
JDK version is 1.6.0_02.
How to resolve or avoid this problem? Thank you.

I've found some info in relnotes.
"Use of the -Xprof option to generate profiling data can cause a significant slowdown in the execution of your application. To workaround this problem, you can use the following VM option:
-XX:SuspendRetryCount=5
See bug report 6474293 for more information"

Similar Messages

  • Logging performance of the application..!!!

    Hi,
    I am wondering how we can log the performance of the application (Oracle BPM 10.3g), so that we can easily analyze the bottlenecks in the process and tune the same.
    Is there any kind of performance analyzer kind of plugin can be used or so?
    Ideas welcomed...!!!
    Cheers

    Check out:
    Re: How to Achieve Performance Tuning
    I don't know of any tools that automatically do the performance tuning for you, however, you can create logs to locate bottlenecks.
    HTH
    -Kevin

  • How to improve the performance of the application

    Hi,
    We have customized the standard SRM BSP application and integrated to portal.
    Now it has got some performence issues. It is taking time to load the page and also while navigating between the views.
    We have done the performence tuning for the application to the maximum extent. But the problem is while loading the application, its taking time.
    Can anyone suggest how to improve the performence of the Application.
    Thanks & Regards
    Warun

    The system configuration is more than enough to run java applications.
    You are probalbly doing time-consuming operations in the event thread. Which blocks the event thread and the gui seems not to be responding. If you you have a very bad design.
    Use a thread for time consuming operations.

  • Where should I install the application itself as well as my library (SSD vs. HDD)?

    I have a seperate OS 100GB Sata III SSD drive along with another a 240GB Sata III SSD and then a RAID 0 configuration of two 500GB 7200 regular HDD totalling about 950GB of space.  I want to install Lightroom, Photoshop and Premiere.  Where shoud I put everything for best performance?  The applications could go on the RAID 0 HDD drives and then put my video and picture library on the 240GB Sata III SSD drive.  Wouldn't this allow for faster access to pictures and video since the application itself, once loaded, doesn't need to be accessed as often?  It's been a while since I've used both of these programs. Isn't there also a "scratch" or "cache" directory as well?  Where should I put that for best peformance?

    Yes, the programs use their own cache/ swap files.  Doesn't realyl matter where you put them. All your drivces are fast enough for any single one of them.
    Mylenium

  • Performance issue after application of patch ATG RUP 7

    Dear Friends,
    my env is Solaris SPARC 10 with 11.5.10.2 (10.2.0.4). I had applied upgraded developer 6i to 6.0.28 and applied ATG RUP7 patch last night and ever since the performance of the application is mighty slow. The concurrent programs take longer to run. The forms takes too much time to load(more than twice the time it used to than before). I can always see a load on the server level. I tried Gathering SCHEMA statistics for all users and its been running for the past 10 hours now. Could someone point me in the right direction as to what could have gone wrong. All the pre-req patches and post req patches have been applied as per the various docs.
    Thanks a lot

    Hi,
    Have you applied all the necessary patches as per (Known Issues On Top of 11i.ATG_PF.H.delta.7 (RUP7) - 6241631 [ID 858801.1])?
    Please see if these docs help.
    The Concurrent Request Submission Screen Hangs After Applying ATG.RUP7 [ID 1066678.1]
    After 11i.ATG_PF.H.RUP.7 PDF and XML Concurrent Requests Hangs [ID 968279.1]
    Thanks,
    Hussein

  • Number of elements in the FP affecting the performance of my application ?

    I developed a simple application which consists of aquiring a signal through a channel of a PXI 5102 module and commanding some relays of a SCXI 1161 module.
    This application has the following features :
    -The user can, at any time, change the configuration of the PXI 5102 module.
    -The signal acquired can be saved to a file whenever the user wants.
    -Instead of showing the signal acquired through the PXI 5102 channel, the user can load a given file which contains a saved signal.
    -The user can increase or decrease the pressure on a line through a VI that commands SCXI 1161 relays.
    As you can see, it is a fairly simple application but the problem is that it have been running for a time the fron
    t panel crashes. Is it because the high number of elements I have in the front panel ?
    To give you more information I tell you that the processes of saving, loading, decreasing and increasing the pressure on the line are event cases of an event structure.
    The front panel consists of a tab structure, 20 controls and indicators and a cluster consisting of 9 controls.

    No error take place. By crashing I mean that after a period of time the frontpanel control´s response to inputs of the user become so slow that after a short time there´s no response at all.
    The problem is that I´ve been dealing with this problem in this aplication for quite a while and although I´ve optimized, I think, its execution time and the way it deals with memory usage this problem persists.
    Since most of the operations performed by it depends on inputs by the user I´ve decided to use an event structure to manage them and decided to load the VIs related to them dynamically into memory to somewoh optimize memory usage.
    In order to make things more clear to you I´m sending you a zipped file containing pics that completely describe the frontpane
    l ad the block diagram of the appliction.
    Any help you can give will be deeply appreciated.
    PS : I´ve tried to sent the zipped file but awindow appeared notifying me that Developer Exchange is down for maintenance. If you need any more information to clarify what I mean please let me know.
    Sincerely,
    Giovani Marcelino Nesi
    DRV Desenvolvimento e Representação Virtual Ltda.

  • How to perform a bottom of the application toolbar by codding?

    Hi.
    I tried to found info about this, it seems to be easy, but i couldn't found it.
    I have a ALV Report (with funtion module not OO).
    I copied a gui status from program saplkkbl status gui: standard_fullscreen.
    In the ALV i have one column editable, i could refresh the info when i push the bottom that refers the function code &REFRESH
    I add a buttom in the application toolbar, i would like to execute or perform the standard funtion '&Refresh', and after that do my own code.
    how could i do it?
    thanks!!!
    Albio.-

    Hi.
    Well... i'm doing my program like you told me:
    FORM user_command USING r_ucomm LIKE sy-ucomm
      rs_selfield TYPE slis_selfield.
      rs_selfield-refresh = 'X'.
      CASE r_ucomm.
        WHEN 'CALC'. "buttom added by me
          PERFORM recalcula_formula.
        WHEN 'RUN'.  "buttom added by me
          PERFORM corre_batch_input.
        endcase.
    ENDFORM.                    "USER_COMMAND
    I need to execute the standard funtion bottom '&REFRESH' before my perform 'recalcula_formula'.

  • Regarding the performance comparision of application/web servers

    i want the details of performance comparision of application/web servers and which is the best, efficient and easy to use.

    Try google.
    However for the most part the performance is not related to the application/web server that you use.
    It more depends on
    - the machine you are running it on
    - what code you are running on it.
    With regards to "best", you can debate that forever.
    Tomcat is widely used, mainly because it is free. But it is solid.

  • How to check the usage of ram and cpu Performance for the particular application like sqlserver ,ms word

    how to check the usage of ram and cpu  Performance for the particular application like sqlserver ,ms word
    ranki

    Hi,
    You can use Performance Monitor and add the required counters.
    Check the below Technet article on Performance Monitor.
    http://technet.microsoft.com/en-us/library/cc749249.aspx
    Below are the steps to monitor the process in Performance Monitor.
    - Go to the Performance Monitor. 
    - Right-click on the graph and select "Add Counters".
    - In the "Available counters" list, open the "Process" section by clicking on the down arrow next to it. Select "% Processor Time" (and any other counter you want).
    - In the "Instances of selected object" list, select the process you want to track. Then click on "Add >>" button. Click on OK.
    Regards,
    Jack
    www.jijitechnologies.com

  • Gather Schema Statistics improve the performance of the R12 application?

    Hi All,
    If we run “Gather Schema Statistics” program, it will improve the performance of the R12 application?
    Platform Linux and DB version 10.2.0.4.
    Thanks & Regards,
    Tharun

    Hi Tharun,
    If we ruer n “Gather Schema Statistics” program, it will improve the performance of the R12 application?
    Yes, it will speed up as it ensures to have an up to date statistics.
    Please refer notes:
    Concurrent Processing - How To Gather Statistics On Oracle Applications Release 11i and/or Release 12 - Concurrent Process,Temp Tables, Manually [ID 419728.1]
    How Often Should Gather Schema Statistics Program be Run? [ID 168136.1]
    Why Stats Gather?
    Stats gathering must be set as a routine job and is recommended to be scheduled. Even though this program is available from the fronted in the form of submitting a concurrent program basically it performs a DB level enhancement and ensures that you have an up to date optimizer statistics.Because the objects in a database can be constantly changing, statistics must be regularly updated so that they accurately describe these database objects.
    For indepth understand as to why it should be run, please refer doc:
    Managing Optimizer Statistics
    Thanks &
    Best Regards,

  • How to get the Application perform actions when exits?

    How to get the Application perform actions when user clicks on the "X" icon in the top right hand corner?
    OR
    If i placed an Exit Button.... when actions that i need to use to allow my application to perform a certain action when it exits?
    Thanks

    frame.addWindowListener(new WindowAdapter() {
      public void windowClosing(WindowEvent e) {
        // do your stuff here
    });The WindowListener and WindowEvent can be found in java.awt.event package
    //David

  • How to increase the performance of an Application

    Hi,
    I am using jdeveloper11.1.1.2.0 and weblogic server10.3.2.I have lot of txn in the database.when click the txn menu then page landing is very slow.My Txn data is 24thousands records.
    My RAM is 8GB and 64bit machine .So how to fast my application?Is any idea then Please help me.
    Thanks
    Anup

    Hi Frank,
    I have follow the below link but there is no performance effect of my application.
    http://www.gebs.ro/blog/oracle/adf-view-object-performance-tuning-analysis/
    On VO level ,In Tuning
    I have modified In batch Of 26 ,As needed ,and Query Optimizer hints FIRST_ROWS_26
    AND ON the page level ,Table Column Property,Fetch size i have modified 26 and page definition level ExchangeTradedPlacementHeadVOIterator default range size is 25.
    So i have above change but there is no effect on the performance of my application.
    Please give me the Solution what will i do to increase the performance of an application.
    Thanks
    Anup

  • Any suggession on Tools for Performance testing of application designed for Blackberry phones.. which can get some details on CPU usage, memory, response time?? any help on the same is much appriciated.

    Hi Team,
    Any suggession on Tools for Performance testing of application designed for Blackberry phones.. which can get some details on CPU usage, memory, response time?? any help on the same is much appriciated.
    Thank You,
    Best Regards,
    neeraj

    Hi Team,
    Any suggession on Tools for Performance testing of application designed for Blackberry phones.. which can get some details on CPU usage, memory, response time?? any help on the same is much appriciated.
    Thank You,
    Best Regards,
    neeraj

  • TS3694 I am using iphone 3gs, I upgraded my i-os to 6.0 from 5.1.1 however I am facing performance issue, along with this all the applications including settings or any other shuts down automatically. Is there any way by which I can use my phone in better

    I am using iphone 3gs, I upgraded my i-os to 6.0 from 5.1.1 however I am facing performance issue, along with this all the applications including settings or any other shuts down automatically. Is there any way by which I can use my phone in better way?

    No, downgrading from any version of iOS to an earlier version is not supported.

  • Recording significantly delays the application begin recorded

    Hi All
    I have the trial version of Captivate 4, and I have purchased the real version. I can't get tech support until I register the product, but given its cost, I want to make sure that Captivate works the way I need it.
    I am trying to record the screen of an application 1280x1024. Other products seem to have no trouble, especially Camtasia. When I use captivate, it significantly delays the original application 10-20times, so it is almost unusable. I don't know if this is my fault. I use Full Motion, as the application updates the screen automatically, and I need to capture these updates that don't require user input or mouse movements. I don't care if the file is very large.
    Any Suggestions?
    Doug

    Hi Doug
    If there's anything worthwhile I've learned in life, it's that nothing beats honesty. So I'll be candid here.
    I dearly love using Captivate, but if Full Motion is what you are after, Camtasia is decidedly the superior product and you will likely be much happier using it. Full motion with Captivate has come a long way from where it once was, but Camtasia is king when it comes to full motion capture.
    Sometimes I record with Camtasia, then blend it with Captivate by dropping what I recorded into a Captivate slide.
    Personally, my vote is to have both applications in my quiver. Then recognize the strong suits of each and use each where appropriate. I compare this to the saws I might have in my garage. All saws cut wood. But a compound miter saw runs circles around a table saw for precise angle cuts. Likewise, nothing compares to a table saw for ripping long sections straightly.
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

Maybe you are looking for

  • How ATTACH multiple files from different folders in one ATTACH 'session'?

    Hi, In Mac Mail, I often have to attach 2 or 3 separate files, all from different folder locations on my hard drive. This requires clicking attach, selecting file 1 and clicking OK, which closes the Attach dialog. Then I have to do it again 2 times f

  • How do I delete emails in Mail App that are no longer on the server?

    HI, I have configured the Mail App on my brand new iPad to receive emails from my provider GMX.net. It is a POP3 account. The emails stay on the server until I fetch them with Outlook 2003 on my PC. After retrieving emails with Outlook they are delet

  • Excise duty credit in custmore sales return

    Hi Experts When we receive the sale return from customer we follow the below process. Create sales order with order type sales return Create return delivery. It create stock for return material. VF01 Accounting entry pass in customer account. J1IH fo

  • Incompatibility between iTunes 11.1.3 and Apple TV?

    Up until a few days ago, our 3rd generation Apple TV, purchased in August 2013, permitted home sharing with our iTunes music library without any problem. After having gone through every troubleshooting suggestion, we can no longer access the iTunes l

  • Nm-applet icon not showing in KDE

    hey guys, I'm running gnome networkmanager with the latest kde. The applet works fine but i can't see the icon. The icon shows up when i restart networkmanager (/etc/rc.d/networkmanager restart) but when i reboot the icon goes blank. Here's a screens