Plug-in slow on heavy date

Hi there,
I'm running an applet, which opens a swing dialog, showing a table with only a few hundred rows of data. After closing the dialog, the applet is damn slow. I mean, really slow. The dialog close() method does contain a dispose() and System.gc(). What else can be done to speed up things (besides not showing so many rows) ? Any hints?
regards
Heiner

ahm, I'm sorry. I think you didn't quite understand my problem (or I wasn't describing it good enough). Its not a problem of loading. It's a runtime problem. I have an applet running, which works fine. Somewhere, during runtime, I open a dialog with a few hundred rows. The user hits 'ignore' or 'accept' and the dialog is closed. In the close method, I call dispose() and System.gc() to clean up things. However, afterwards the applet becomes very damn slow. I assume this is because it still deals with this huge amount of data, somewhere in the background. Now, my question is, how can I clean up after me, to convince the system for no longer caring about the data.
greetings
Heiner

Similar Messages

  • I was mid facetime call and my phone turned off and wouldnt turn on until i plugged it in. then the date was wrong,it said no service, and wont let me turn wifi on. also it wont stay on for more than a few minutes at a time

    i was mid facetime call and my phone turned off and wouldnt turn on until i plugged it in. then the date was wrong,it said no service, and wont let me turn wifi on. also it wont stay on for more than a few minutes at a time. Help?

    Sounds like a hardware failure.
    Make an appointment at the genius bar and take it in for them to look at. It will probably need to be replaced.

  • Videos will no longer play and add-ons and plug-ins say up to date?

    My computer no longer plays videos-- whether on facebook or youtube... facebook videos get a tiny square but never open to play-- youtube screen where video should be is blank... all add-ons and plug-ins say up to date. I have comcast internet. Thank you

    Please try two things, please clear the storage for the flash plug in by right clicking where the video should be and clicking "Global settings" and navigate to storage. Clear the stored data and restart Firefox.
    Some problems with Flash video playback can be resolved by disabling hardware acceleration in your Flash Player settings. (See [[Flash Plugin - Keep it up to date and troubleshoot problems|this article]] for more information on using the Flash plugin in Firefox).
    To disable hardware acceleration in Flash Player:
    #Go to this [http://helpx.adobe.com/flash-player/kb/video-playback-issues.html#main_Solve_video_playback_issues Adobe Flash Player Help page].
    #Right-click on the Flash Player logo on that page.
    #Click on '''Settings''' in the context menu. The Adobe Flash Player Settings screen will open.
    # Click on the icon at the bottom-left of the Adobe Flash Player Settings window to open the Display panel. <br/> <br/>[[Image:fpSettings1.PNG]] <br/>
    # Remove the check mark from '''Enable hardware acceleration'''.
    # Click '''Close''' to close the Adobe Flash Player Settings Window.
    # Restart Firefox.
    This [http://www.macromedia.com/support/documentation/en/flashplayer/help/help01.html Flash Player Help - Display Settings page] has more information on Flash Player hardware acceleration, if you're interested.
    Does this solve the problem? Let us know.

  • Viewer slow while retrieving data while changing value from a page item

    Hi, I am using 9.0.2 to create reports. My end-users are using Viewer to run these reports. Recently, we are experiencing performance problems with Viewer. We have reports with Page Item. Let say a report takes 1 min to run. After running the report if a different value is selected for a page item, it is takes another 1 min to get new data. Whereas, Desktop is not taking any additional time (noticable) for a different value for the page item. Recently, we are experiencing this problem. I thought that it was cache problem in Application server, so we restarted all the pieces in aps server. However, the problem still exists. We are using a materialized for this particular report.
    Any tips would be highly appreciated. Thanks.

    The performance differences can be attributed to the differences in product. Desktop is a client server product. A query executes and ALL data is returned to the desktop. You can manipulate that data in any way and the database is not required. Web (Plus/Viewer) only return the data needed to satisfy the query currently being viewed. If you change a page item, a database call is made to retreive additional/different data.
    In other words this is just how things work. You can alter settings in your prefs.txt file to improve performance in Viewer/Plus. Changing number of rows returned, memory settings, row fetch limits, rows per fetch all can improve/reduce performance.
    As best I know there is not a "magic" setting for these values. It is based on the server/volume of data/workbook content/ workbook layout. etc. Crosstab workbooks are much slower to return data than page -detail.

  • I have Mac OS X 10.4.11. I keep getting a message that QuickTime plug in is out of date. I've done software updates and this hasn't resolved them warning. Any suggestions?

    I have Mac OS X 10.4.11 and use Firefox. I keep getting a message that QuickTime 7.6.6 plug in is out of date. I have done the software update and it shows no current updates available. Certain videos won't play and it says that this may make my computer vulnerable. Any suggestions?

    La-MacMom wrote:
    I have Mac OS X 10.4.11 and use Firefox. I keep getting a message that QuickTime 7.6.6 plug in is out of date.
    Are you using the lastest version of Firefox for os 10.4.11?  If you are, start using TenFourFox.  Quicktime works just fine with that browser.

  • Plug ins are up to date but still having touble with not responding & freezing

    my plug ins are up to date. why am i still getting a mozilla not responding message and computer freezing?'''bold text'''

    I have had this problem for a few days, no sound in Firefox, but IE and WMP (offline) have sound, this is a Firefox ONLY problem, so the volumes are all set correctly and the drivers and needed files are there, I've tried every fix that people have suggested on Google like checking the flash player settings, creating the "missing.reg" registry file and importing it, etc...
    nothing works, I may just have to switch to Safari or Chrome, I watch a lot of video online (Youtube, ESPN3, NFL.com, etc.) so this is a huge problem...

  • Fast online processing and heavy data crunching in cluster

    Hi,
    I have a Coherence cluster and two types of operations I need to perform:
    1. Lightweight online processing e.g. updating user profiles etc. This type of processing is invoked by web application and must be very fast, so that application is responsive for the users.
    2. Heavy data crunching (data aggregation). This type of processing must occur on hourly basis.
    Both types of operations work on the same data.
    I would like to minimize the impact of data crunching on online processing. What is the best way of doing it?
    Is is possible to "dedicate" part of servers to do the fast, online work and run heavy tasks on other part of cluster?
    I can imagine using active-passive sort of architecture, where data crunching is done on passive cluster. Is there any other option, avoiding active-passive pattern?
    Best regards,
    Jarek

    Hi Jarek,
    It may be simpler to use different services to dedicate different servers to different tasks, for example:
    cache-config.xml:
    <?xml version="1.0"?>
    <!DOCTYPE cache-config SYSTEM "cache-config.dtd">
    <cache-config>
        <caching-scheme-mapping>
            <cache-mapping>
                <cache-name>processing</cache-name>
                <scheme-name>processing</scheme-name>
            </cache-mapping>
            <cache-mapping>
                <cache-name>aggregation</cache-name>
                <scheme-name>aggregation</scheme-name>
            </cache-mapping>
        </caching-scheme-mapping>
        <caching-schemes>
            <distributed-scheme>
                <scheme-name>processing</scheme-name>
                <local-storage system-property="processing.localstorage">false</local-storage>
                <service-name>processing</service-name>
                <backing-map-scheme>
                    <read-write-backing-map-scheme>
                        <internal-cache-scheme>
                            <local-scheme/>
                        </internal-cache-scheme>
                        <cachestore-scheme>
                            <class-scheme>
                                <class-name>MyCacheStore</class-name>
                                <init-params>
                                    <init-param>
                                        <param-type>string</param-type>
                                        <param-value>aggregation</param-value>
                                    </init-param>
                                </init-params>
                            </class-scheme>
                        </cachestore-scheme>
                    </read-write-backing-map-scheme>
                </backing-map-scheme>
                <autostart>true</autostart>
            </distributed-scheme>
            <distributed-scheme>
                <scheme-name>aggregation</scheme-name>
                <local-storage system-property="aggregation.localstorage">false</local-storage>
                <service-name>aggregation</service-name>
                <backing-map-scheme>
                    <local-scheme/>
                </backing-map-scheme>
                <autostart>true</autostart>
            </distributed-scheme>
        </caching-schemes>
    </cache-config>MyCacheStore.java:
    import com.tangosol.net.cache.MapCacheStore;
    import com.tangosol.net.CacheFactory;
    * dimitri Feb 22, 2010 7:28:39 PM
    public class MyCacheStore extends MapCacheStore
        public MyCacheStore(String sCacheName)
            super(CacheFactory.getCache(sCacheName));
        }and run servers dedicated to online processing with -Dprocessing.localstorage=true -Daggregation.locastorage=false and servers dedicated to aggregation with -Dprocessing.localstorage=false -Daggregation.localstorage=true.
    Regards,
    Dimitri

  • My Macbook Pro Stops running as normal, when it is not connected to the charger. Once it goes off the plug, it slows down to a point where it is not usable.

    My Macbook Pro Stops running as normal, when it is not connected to the charger. Once it goes off the plug, it slows down to a point where it is not usable. is there any fix to this?

    https://support.apple.com/kb/HT3964

  • Firefox still tells me my Adobe Flas Player Plug in is out of date

    Despite updating last week to Adobe Flash player 16.0.0.305 when I check if my plug ins are up to date I still get the following message:
    Adobe Flash PlayerRealNetworks(tm) RealDownloader PepperFlashVideoShim Plug-In vulnerable 1.3.3.66
    I again pressed Update Now but I still keep getting the same message.
    Help, please?
    Thanks,
    Anthony

    Dear Philipp and James,
    Thank you so much for all your help. I do appreciate it.
    Regards,
    Anthony

  • Iphone 6 heavy data usage

    I bought my iPhone 6 in the States late last year - unlocked and sim free.  While in the states on a pre pay sim, data use was as expected, I am not a heavy data user on my phone.
    Back in Europe, I used my Belgian pre pay sim with much the same result as the USA - no unusual data use.
    Get to England and put my Vodafon pre pay sim in and my data gets munched up before I know what is happening - 500mb gone in less than two days.
    I always keep my apps closed when not in use, don't use cloud, all software is up to date.
    My gut feeling is that the data use is only high on the UK sim.  I have read lots of other comments about this problem from worldwide users but none give a definitive resolution, some blaming carrier updates, others suggesting resetting the phones from scratch.  I spoke with vodafone who gave me some credit back on my data account (strangely enough - without me even asking for it or suggesting it) and have tried a phone reset but am now worried about putting the UK sim back in.  The phone can easily munch through my data allowance AND an additional 10-15 pounds per day in extra data
    Does anyone have any ideas or simimlar experiences

    Brett
    Thanks for the link - it has re-enforced how I already use my phone.  I am seeing some strange things though - mapping and app store are the biggest consumers and look like the culprits that are sucking my data.  I find this very strange though as the mapping service consumes the most but when I have no mapping apps open and I NEVER use the app store via my phone.  Even when I turn them off as you suggested, they still consume data.
    I regularly close off all apps by double tapping the home button and then swiping the app up.  I never allow apps to send me notifications, nor do I allow any app access to my data.  I have a couple of apps that I allow access only while using them, Runkeeper being one such app but when I see their consumption it is always measured in Kb rather than Mb so that doesn't worry me too much.
    I am currently turning off cellular data to stop the bleed but this means useful things like iMessage will not work for incoming messages.
    I am sure there is something else being missed.  Any ideas?  Especially concerned that when I have disabled something in the settings, it can still continue to use data.

  • Audigy 2 makes "scritches" when making heavy data tranf

    Hi everyone.
    I've have a weird problem with my Audigy 2: When I'm making heavy data transfers between my dri'ves (I've seven of them...), the soundcard starts making very agrressi've noise "scritches" through the speakers, regardless of the player. It does that with MediaPlayer, iTunes, MusicMatcjh and PovwerDVD, so I'm pretty sure it's not player-related. It is also prone to make such noises when I go over the internet.
    Now, in the normal course of my doings, I don't make huge transfers, so it's fairly managable. But when I tranfer big chucks of data (500+ Gb), it starts. It's particulary loud when I'm tranfering to another computer, either FiWi, USB or RJ45. And it occurs from any dri've to any dri've.
    When I game, play movies, do PhotoShop, ANY usage, even highly demanding CPU processes, no problem. But if I simply move chunks of data from a dri've to the other (no problem in searches or seeking), it happens.
    Any idea why so? My setup in a nutshell:
    WinXP SP2, firewalled, antivirused and antispied
    Various demanding games and applications
    ASUS P4C800 Deluxe
    ,5 Gb DDRAM, 400 FSB
    480 watt power supply
    4 fans
    x 60 Gb IDE
    x 80 Gb IDE
    x 80 Gb IDE, on Promise channel
    x 20 Gb IDE
    x 200 Gb IDE, on Promise channel
    x 200 Gb SATA
    x 300 Gb SATA
    Audigy 2 Platinum
    nVidia GeForce FX 5200
    ATI RADEON 9250
    I'm a but fuzzy on the brand of the HDDs, I haven't opened my case in a while, but I know I have Maxtor and WD dri'ves.
    Any help would be glady appreciated.
    Thanks!
    Vaixe

    - check if Audigy is sharing IRQ with IDE/SATA, NIC, FireWire, USB controller?
    - check if DMA transfers for IDE channels are set correctly for best performance (if you transfer from IDE disks).
    - check how antivirus program is set (if it is set to scan files when transferred).
    - decrease graphic card(s) PCI latencies to 28 (you can do this with PCI Latency tool (if you do use your PC otherwise acti'vely (not just listening music) while transfering files).
    - check if you have autoupdete(s) running/acti've on OS/other programs
    these came into mind now ...
    .jtpMessage Edited by jutapa on 09-4-2005 06:33 PM

  • 'Check to see if plug ins are up to date' not working

    The 'Check to see if your plug ins are up to date' link on the Add-ons Manager page is not working correctly. The link opens on Mozilla Student Reps page. I'm using Firefox 12.0

    The problem has been reported as Bug 752161. You can open the Plugin Check page manually by going to the link below.
    * [http://www.mozilla.org/en-US/plugincheck/ http://www.mozilla.org/en-US/plugincheck/]

  • Sudden slow down in data transfer

    I'm reading data from the hard disk on a Target PXI System (8106 RT) and sending it via Ethernet to a Host PC and writing it to its hard disk. I read a chuck of data from the Target, send it using TCP Write function. The Host uses the TCP Read function get the data and write it to its hard disk. Data is being transfer over a Gbit Ethernet. A total of 9 files ranging in size from 700 MB - 2 GB are being transferred. The process moves along at an adequate speed until it suddenly slows down to slower than a snail's pace in the middle of a file.
    By using probes (see enclosures) I've been able to determine it take approximately 17 seconds between when the data is read on the PXI to when it is written on the Host. However, an iteration of the loop on the Target has increased to over 3 minutes. The CPU usage on the Target and Host are minimal, less than 1%. Memory usage on the Host is also small. Any suggestions on how to diagnose what has caused this sudden slow down?
    Attachments:
    Slide1.PNG ‏104 KB
    Slide2.PNG ‏124 KB
    Slide3.PNG ‏39 KB

    I would recommend using smaller chunk sizes for your data transfers. I would recommend something inthe 10K to 50K range. I have done quite a bit of profiling for sending large amounts of data and I have found that it is better to send lots of smaller chunks rather than fewer large chunks. Also make sure that you are not automatically building up large buffers in your application if you are using shift registers. If you are reading from a file read the file in chunks and send the chuncks. Don't read the whole file in in one read. One experiment I ran resulted in a single read of a large file (2 MB or so) took something like 10 minutes to read it in one read. However it only took a couple of 100 ms to read the whole thing in 10K chunks. Same applies to wrinting very large chunks using the TCP write. You can easily get a timeout if you write 1 MB as a single write because the receiver has not consumed all of the data within the timeout period. However, multiple small writes will reset the timeout for each chunk written.
    Mark Yedinak
    "Does anyone know where the love of God goes when the waves turn the minutes to hours?"
    Wreck of the Edmund Fitzgerald - Gordon Lightfoot

  • Upgrade ST-A/PI and ST-PI plug-in in R3 source data

    Hi gurus:
    I planning an upgrade of this tools in R3 4.6C system (source data):
    addon: ST-A/PI from 01H_R3_46C to 01J_R3_46C
    and
    addon: from ST-PI 2005_1_46C SP level 4 to 2005_1_46C SP level 7
    I have a R3 4.6C and BW system 3.5 (BW system extract data from R3 by RFC).
    This upgrade (in plug in tools of R3) generate some errors in BW vs R3 interactions???
    BW use this tools for extract data???
    BW system have this level tools:
    ST-A/PI 01J_BCO640
    ST-PI 2005_1_640 SP level 6
    I must have some considerations for make this upgrade in R3??
    Best regards,

    Hi Raghu,
    you can get into the problems which I have said if you dont implement that,also many support packs do have their dependencies on ST-PI and ST-A/PI and seriously I havent heard people implementing this on prod and not dev and qa....I have worked on with many big clients but never heard this
    Also if you ignore whatever I have said,still it is still recommended that you never apply anything directly on Production,It is always better if you first implement on dev and qa and see if you are facing any issues while implementing...so its always better to implement on dev and then qa
    and It doesnt take too much of time,so that should not be an issue after all
    Always follow SAP best Practices
    Rohit

  • SSRS reports running slow while fetching data from SQL server DB

    We are currently facing issues with lots of our SSRS reports running very slow. Approx they are taking around 15-20 minutes compared to earlier which was 2-3 minutes.
    Also, the SSRS reports which fetch their data from a Database is acting as Subscriber for a reporting server. That is we have an OLTP DB server whose Database say 'A' is getting replicated onto the server where say Database 'B'. On this B we have our SSRS
    reports fetching the required data and are reported to be running very slow.
    As a start I have checked for Index and stats to be properly updated and yes they are.
    I am not sure now, from where to start analysing the issue.
    I believe replication, not to be the issue as earlier also we had replication set up and never saw the slowness.
    IS memory or IO causing a problem, please help as i am not sure on how to find a fix for this?
    Thanks in advance!

    Hi,
    You need to first find out what all are slow? Is it that the whole instance is slow? How about other queries /replication etc against those databases? Are they slow?
    Check the reports which are slow, try to find the slowest reports and then start looking at execution plans. Check if there is any kind of blocking happening during the time the reports run. Also try running the reports manually and see if there is a difference
    in execution time. Take a look at the waitstats during the time the reports are running.
    Read this to get more better understanding -
    https://technet.microsoft.com/en-us/library/ms177500%28v=sql.105%29.aspx?f=255&MSPPError=-2147217396
    Regards, Ashwin Menon My Blog - http:\\sqllearnings.com

Maybe you are looking for

  • Account email changed but will not allow use

    I changed my account email and veryfied it. Now, it says I have not verified it, but when I click yes for instructions it says I have verified it. HELP!!!!

  • Output noise - can't find the source of it

    I opened up a project that I hadn't worked on since I switched from a G4 to an iMac. I'm getting a dirty white noise, almost like I have a guitar plugged into an input. If I mute all tracks its still there on the master fader, you can see the activit

  • How to make "Read Report" pick up enhancement code as well

    I want to enhance a SAP ECC6 program - H99CWTR0 (Wage type reporter). I need to add some more master data objects from other HR tables. I have succesfully applied implicit enhancements to this program to allow my users to select extra data objects an

  • AM policy agents for Weblogic help

    I installed a Policy Agent for Weblogic Server 8.1 When I try to start the Weblogic server after modifications, the portal server throws an exception.... com.sun.identity.agents.AmAgentFilter not found When u enter the URL for that application runnin

  • I need to logout from the iCloud account that's on my iPhone

    I'm using a used iPhone that has an iCloud account logged in and I don't know how to logout. Please help, I think I'm sharing iMessage with the old owner of the iPhone!