Incremental Garbage Collector is halting my server for MINUTES at a time.

I have a Java server which services hundreds (currently 300-700 on average, target of 2000+) of simultaneous client connections, with a staggering number of long lived (but not permanent) objects.
The docs for incremental garbage collection state: "The incremental garbage collector, which is off by default, will eliminate occasional garbage-collection pauses during program execution." This is NOT true in my case. During peak load, the Server halts occasionally (once an hour or more) and entire MINUTES tick by. Average wait time is 2.5 - 3.5 minutes, the highest I have seen is 4 minutes, 10 seconds. This is entirely unnacceptable.
The server is on Red Hat Linux 6.2, kernel 2.2.14-5.0, with a gig of RAM. My current command line options are
java -server -Xincgc -Xms256M -Xmx900M
And I have just added -verbose:gc to help analyze the gc performance. I have read the gc tuning guide at http://java.sun.com/docs/hotspot/gc/index.html but still feel rather clueless about what is the optimum setup for my particular application.
I will of course start experimenting, but I was hoping to find a "wise old elf" who might give some useful pointers to accelerate the process, seeing as how the Server is already running in a production capacity, time is critical.

Are you using a Java application server like Tomcat, Dynamo, WebLogic etc. ?
In that case consider running several server instances on the machine, with the applicationserver's software load balancer. Find the amount of RAM allocated to the heap per serverinstance where garbage collection runs takes a couple of seconds, and don't allocate more than this to each server. Start as many servers as you have available RAM for.
This is the approach recommended by application server vendors such as BEA http://edocs.bea.com/wls/docs61/perform/JVMTuning.html and ATG.
A side benefit of this approach is that in case you get more concurrent users than your computer can handle, you already have the setup for spreading the load over several computers.

Similar Messages

  • Garbage Collector pausing my Server for MINUTES at a time

    Garbage Collection pauses are really crippling my server. Here is a grep of Full GCs from the log file. (The lines following each Full GC have a timestamp, yymmdd:hhmmss.sss)
    [Full GC 876186K->169083K(222400K), 28.4152794 secs]
    011120:004809.413:
    [Full GC 883850K->214246K(259008K), 68.2294388 secs]
    011120:033449.558: *** RECLAIMED MemoryManager( Idle ) - Memory Usage: 209.2 MB/900.0 MB (Free: 43.7 MB, Allocated: 252.9 MB)
    [Full GC 881484K->300898K(347200K), 73.3787317 secs]
    011120:045927.680: *** RECLAIMED MemoryManager( Idle ) - Memory Usage: 293.8 MB/900.0 MB (Free: 45.2 MB, Allocated: 339.1 MB)
    [Full GC 886225K->269194K(317824K), 79.8212023 secs]
    011120:055800.166: *** RECLAIMED MemoryManager( Idle ) - Memory Usage: 262.9 MB/900.0 MB (Free: 47.5 MB, Allocated: 310.4 MB)
    [Full GC 890405K->261774K(338112K), 104.6192760 secs]
    011120:064350.312: *** RECLAIMED MemoryManager( Idle ) - Memory Usage: 255.6 MB/900.0 MB (Free: 74.5 MB, Allocated: 330.2 MB)
    [Full GC 893451K->306762K(361024K), 134.4052782 secs]
    011120:073523.335: *** RECLAIMED MemoryManager( Idle ) - Memory Usage: 299.6 MB/900.0 MB (Free: 53.0 MB, Allocated: 352.6 MB)
    [Full GC 896034K->286275K(350016K), 103.4689894 secs]
    011120:081636.710: *** RECLAIMED MemoryManager( Idle ) - Memory Usage: 279.6 MB/900.0 MB (Free: 62.2 MB, Allocated: 341.8 MB)
    [Full GC 882755K->260923K(310272K), 129.6787672 secs]
    011120:093812.612: *** RECLAIMED MemoryManager( Idle ) - Memory Usage: 254.8 MB/900.0 MB (Free: 48.2 MB, Allocated: 303.0 MB)
    You can see that between 12:48am and 9:38am, the Server is pausing for a combined total of TWELVE MINUTES! Often for 2 whole minutes at a time, during which the Server is completely unresponsive.
    I have read Sun's GC tuning guide at http://java.sun.com/docs/hotspot/gc/index.html but it is not much help:
    It says "Pauses can be minimized by using a small young generation and incremental collection, at the expense of throughput."
    Well, I AM using incremental collection, and the young generation is the default size, which is quite small I believe. (32 MB max?)
    It also says "Unless you have problems with pauses, try granting as much memory as possible to the JVM. The default size (64MB) is often too small."
    Well I DO have problems with pauses, but I HAVE to allocate a ton of memory. The Server must support hundreds of simultaneous users, each with hundreds of K's of personal, dynamic, temporary data.
    It also says "Unless you find problems with excessive major collection or pause times, grant plenty of memory to the young generation. The default MaxNewSize (32MB) is generally too small."
    I AM having problems with excessive major collections and pause times, so according to this I should NOT grant more memory to young generation (eden).
    What am I left with? Nothing! I am totally out to lunch here. The box this is running on is a dual P3-600 with a gig of RAM and Red Hat 6.2, with Sun JRE 1.3.1_02. My startup command line options are:
    java -server -Xincgc -verbose:gc -Xms256M -Xmx900M
    What should I do? The Tuning guide essentially says to screw around with generation sizes, but none of its specific tips seem to apply to me! This is a production server and I am worried about making things worse by playing around, so I was hoping someone out there might have some experience with this and concrete advice before I just start messing around with the memory map. Should I increase the young generation size? Decrease it? Something else altogether? HELP!

    With default settings, I am getting horrible performance, under peak load, 25%-50% of server time is being spent with GC, approx. 11,000 minor GCs per hour! And a Full GC every hour or two which takes up several minutes. On average, I am losing 13.09 minutes per hour due to minor GC, and 54.5 seconds to major GC.
    I tried your settings, Chuck, and they seemed to be working beautifully at first... minor GCs were now occuring once every few minutes for a couple seconds, instead of 3 times per second for a tenth of a second. Minor GC were now taking 1.06 minutes per hour instead of 13.09, more than a 1300% improvement!
    HOWEVER...
    After 7 hours, the Server started getting REALLY slow for no apparent reason. It seemed almost as if reading from sockets was suddenly becoming extremely time intensive. Then I got a HUGE minor GC that took 25.6 seconds. [GC 507410K->478034K(551296K), 25.6328459 secs], then a couple minutes later, the Server CRASHED with this output:
    An unexpected exception has been detected in native code outside the VM.
    Unexpected Signal : 11 occurred at PC=0x40573aa7
    Function name=malloc
    Library=/lib/libc.so.6
    Current Java thread:
    Dynamic libraries:
    011121:231738.194: Search ( pizzala, lzh ) returned 50 results (28 ms)
    08048000-0804c000 r-xp 00000000 08:06 376904 /usr/local/java/jre1.3.1_01/bin/i386/native_threads/java
    0804c000-0804d000 rw-p 00003000 08:06 376904 /usr/local/java/jre1.3.1_01/bin/i386/native_threads/java
    40000000-40013000 r-xp 00000000 08:06 311298 /lib/ld-2.1.3.so
    40013000-40014000 rw-p 00012000 08:06 311298 /lib/ld-2.1.3.so
    40015000-40016000 r--p 00000000 08:06 2424834 /usr/share/locale/en_US/LC_MESSAGES/SYS_LC_MESSAGES
    40016000-40017000 r--p 00000000 08:06 2408452 /usr/share/locale/en_US/LC_MONETARY
    40017000-40018000 r--p 00000000 08:06 2408454 /usr/share/locale/en_US/LC_TIME
    40018000-40023000 r-xp 00000000 08:06 311344 /lib/libpthread-0.8.so
    40023000-4002a000 rw-p 0000a000 08:06 311344 /lib/libpthread-0.8.so
    4002b000-40034000 r-xp 00000000 08:06 1081477 /usr/local/java/jre1.3.1_01/lib/i386/native_threads/libhpi.so
    40034000-40035000 rw-p 00008000 08:06 1081477 /usr/local/java/jre1.3.1_01/lib/i386/native_threads/libhpi.so
    40035000-403b0000 r-xp 00000000 08:06 2769091 /usr/local/java/jre1.3.1_01/lib/i386/server/libjvm.so
    403b0000-403b1000 ---p 0037b000 08:06 2769091 /usr/local/java/jre1.3.1_01/lib/i386/server/libjvm.so
    403b1000-404fd000 rw-p 0037b000 08:06 2769091 /usr/local/java/jre1.3.1_01/lib/i386/server/libjvm.so
    40515000-40517000 r-xp 00000000 08:06 311314 /lib/libdl-2.1.3.so
    40517000-40519000 rw-p 00001000 08:06 311314 /lib/libdl-2.1.3.so
    4051a000-40607000 r-xp 00000000 08:06 311305 /lib/libc-2.1.3.so
    40607000-4060b000 rw-p 000ec000 08:06 311305 /lib/libc-2.1.3.so
    4060f000-40621000 r-xp 00000000 08:06 311318 /lib/libnsl-2.1.3.so
    40621000-40623000 rw-p 00011000 08:06 311318 /lib/libnsl-2.1.3.so
    40625000-40641000 r-xp 00000000 08:06 311316 /lib/libm-2.1.3.so
    40641000-40642000 rw-p 0001b000 08:06 311316 /lib/libm-2.1.3.so
    40642000-40676000 r-xp 00000000 08:06 704575 /usr/lib/libstdc++-2-libc6.1-1-2.9.0.so
    40676000-40682000 rw-p 00033000 08:06 704575 /usr/lib/libstdc++-2-libc6.1-1-2.9.0.so
    40684000-40695000 r-xp 00000000 08:06 1081479 /usr/local/java/jre1.3.1_01/lib/i386/libverify.so
    40695000-40697000 rw-p 00010000 08:06 1081479 /usr/local/java/jre1.3.1_01/lib/i386/libverify.so
    40697000-406b8000 r-xp 00000000 08:06 1081480 /usr/local/java/jre1.3.1_01/lib/i386/libjava.so
    406b8000-406ba000 rw-p 00020000 08:06 1081480 /usr/local/java/jre1.3.1_01/lib/i386/libjava.so
    406bb000-406cf000 r-xp 00000000 08:06 1081481 /usr/local/java/jre1.3.1_01/lib/i386/libzip.so
    406cf000-406d2000 rw-p 00013000 08:06 1081481 /usr/local/java/jre1.3.1_01/lib/i386/libzip.so
    406d2000-41400000 r--s 00000000 08:06 1081510 /usr/local/java/jre1.3.1_01/lib/rt.jar
    4142d000-416d2000 r--s 00000000 08:06 1081511 /usr/local/java/jre1.3.1_01/lib/i18n.jar
    416d2000-416e8000 r--s 00000000 08:06 1081498 /usr/local/java/jre1.3.1_01/lib/sunrsasign.jar
    77a9f000-77ab5000 r--p 00000000 08:06 2408451 /usr/share/locale/en_US/LC_CTYPE
    77ab5000-77abd000 r--p 00000000 08:06 2408450 /usr/share/locale/en_US/LC_COLLATE
    77abd000-77abe000 r--p 00000000 08:06 2408453 /usr/share/locale/en_US/LC_NUMERIC
    77abe000-77abf000 r-xp 00000000 08:06 1622117 /usr/lib/gconv/ISO8859-1.so
    77abf000-77ac0000 rw-p 00000000 08:06 1622117 /usr/lib/gconv/ISO8859-1.so
    77ac1000-77ac9000 r-xp 00000000 08:06 311336 /lib/libnss_files-2.1.3.so
    77ac9000-77aca000 rw-p 00007000 08:06 311336 /lib/libnss_files-2.1.3.so
    77b37000-77b40000 r-xp 00000000 08:06 1081484 /usr/local/java/jre1.3.1_01/lib/i386/libnet.so
    77b40000-77b41000 rw-p 00008000 08:06 1081484 /usr/local/java/jre1.3.1_01/lib/i386/libnet.so
    77b41000-77b45000 r-xp 00000000 08:06 1081513 /usr/local/java/jre1.3.1_01/lib/i386/libNBIO.so
    77b45000-77b46000 rw-p 00003000 08:06 1081513 /usr/local/java/jre1.3.1_01/lib/i386/libNBIO.so
    77b46000-77b4f000 r-xp 00000000 08:06 311342 /lib/libnss_nisplus-2.1.3.so
    77b4f000-77b51000 rw-p 00008000 08:06 311342 /lib/libnss_nisplus-2.1.3.so
    77b51000-77b59000 r-xp 00000000 08:06 311340 /lib/libnss_nis-2.1.3.so
    77b59000-77b5b000 rw-p 00007000 08:06 311340 /lib/libnss_nis-2.1.3.so
    77b5b000-77b5e000 r-xp 00000000 08:06 311334 /lib/libnss_dns-2.1.3.so
    77b5e000-77b5f000 rw-p 00002000 08:06 311334 /lib/libnss_dns-2.1.3.so
    77b5f000-77b6b000 r-xp 00000000 08:06 311346 /lib/libresolv-2.1.3.so
    77b6b000-77b6c000 rw-p 0000b000 08:06 311346 /lib/libresolv-2.1.3.so
    Local Time = Wed Nov 21 23:17:38 2001
    Elapsed Time = 26581
    # The exception above was detected in native code outside the VM
    # Java VM: Java HotSpot(TM) Server VM (1.3.1_01 mixed mode)
    # An error report file has been saved as hs_err_pid20055.log.
    # Please refer to the file for further information.
    Yummy. Signal 11's really make my day fun :(. I tried restarting the Server, but it crashed again in the same way 15 minutes later. Then I switched back to default settings and it has run fine all weekend.
    The Sig11 makes me think either our C lib is buggy (our Linux distro is getting a bit old), or we have a physical memory problem. Odd that it only shows up when I tried your new settings though...

  • Galaxy Note II Unresponsive for minutes at a time

    I'm on my 3rd galaxy note 2.  My first one had an overheating problem that caused the battery to last for 2 hours even though it was idle.  They ended up replacing it for me.  My 2nd one was actually perfect.  I had zero problems with it for nearly a year until the day after the 4.3 update, the screen went off and never came back on.  I just got my replacement about a week ago and I'm having an issue with the screen becoming unresponsive for minutes at a time.
    I factory reset the phone yesterday thinking that maybe I had a rogue app installed but it seems that any time I try to launch a game or if I try to browse the internet while an app is updating, the phone is unusable for a few minutes.  It's like it can't multitask. Eventually it'll come back with the phone at my home screen with my background image gone, but eventually it comes back too. It's similar to when windows explorer crashes and it reloads. I'll go through the same process for 2 or 3 more times before the game finally launches or the internet browser is finally usable.
    Before I call this phone defective, I was wondering if it's a problem related to 4.3 that I should be aware of?  I installed a monitor and it looks like with no apps open, from a fresh reboot my ram is 50-80% used which doesn't leave much room for opening apps or playing games.  I even installed a virus protection and scanned for a virus (i know viruses on smartphones is a stretch) and it returned no issues.
    Any ideas?  I could factory reset it again, but I just did that last night and it didn't help still having the same problem with very minimal apps reinstalled.  One note, I factory reset it with the restore from backup functionality turned off, so the apps I did install were from scratch, not my google account.

    I decided to call in.  I tell the rep my problems and he tells me to launch the phone in safe mode. Done. I could reproduce the issue. It then says wifi unstable.  The phone freezes with wifi on. Tells me to turn the wifi off. No more freezing while in safe mode, I guess wifi is the problem didn't think that was an issue before. He tells me that wifi issues have been reported but none of those issues cause the phone to freeze, he said that samsung told them to tell customers to turn that feature (ie: wifi) off until the next software update. He said samsung is working on a fix for the wifi issues but said there's no eta. I asked him for his gut feel and he said phones that are newer than 18 months normally get priority, given that the note 2 was release in november of 2012 and we're in 2014, that he estimated 3-4 months for the next update. I know I can't hold him to that but even if he's right, I have to leave wifi off for 3-4 months?...Now to the best part, "Since there is no freezing with wifi off in safe mode, and in safe mode the phone behaves in the state samsung designed it to be in, I've determined that it's not a hardware or operating system issue, so there's nothing I can do for you. I'm sorry I couldn't send you a new phone or resolve this problem for you, I hope you find a solution for the software issue you're having, good night."
    Rather than get mad I realized I wouldn't get anywhere with him so I didn't try to push the issue. I know I have unlimited data so it's not that big of deal, but wouldn't you consider the phone not working regularly with wifi turned on a hardware or os system problem?  It's not like I can uninstall and reinstall wifi.  The drivers are embedded in the system and since it's a refurb phone, who's to say that the parts that were refurbed are really factory oem?
    Now I'm stuck with a phone that is unusable randomly for 3-5 minutes using the phone normally with the mobile network/wifi because the agent didn't consider the problem to be hardware or os related and the only way to keep it from having issues is to not turn on wifi and keep the phone in factory default settings.
    I'm not going to threaten to leave or go somewhere else because it would serve no purpose, maybe that's why there was no attempt made to help me other than saying no from the beginning of the conversation, but in my 15 years of being a loyal customer, you would think "i hope you find a solution on your own" would be after sending me a new device if the problem persisted. 

  • Fontd process causing Mac to lock up for minutes at a time

    Here is a problem and also the solution, (in case you have the same problem):
    My Mac (running OS X Lion) was exhibiting a problem whereby it paused for minutes at a time; the mouse moved, but no applications could respond (and they all showed the spinning beachball). Turned out to be a rogue ‘fontd’ process. This is how I fixed it.
    So the symptoms were that occasionally applications would stop responding for a minute or two. This would especially happen when I launched a new app or browser window, and also occurred when I logged in after rebooting: it would hang with a near-empty screen, slowly opening my apps, waiting a(n agonising) couple of minutes between each one.
    To cut a long story short (long version here: http://dysphoria.net/2012/02/18/mac-keeps-pausing-fontd-run-amuck/ ), the solution was to flush the font cache, as described in a Macworld article here: http://www.macworld.com/article/139383/2009/03/fontcacheclear.html
    At the command line:
    atsutil databases -removeUser
    atsutil databases -remove
    atsutil server -shutdown
    atsutil server -ping

    The next time you have the problem, note the exact times when it starts and ends: hour, minute, second.
    If you have more than one user account, these instructions must be carried out as an administrator.
    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left.
    Scroll back in the log to the time you noted above. Post any messages timestamped during that interval – the text, please, not a screenshot.
    When posting a log extract, be selective. In most cases, a few dozen lines are more than enough.
    Please do not indiscriminately dump thousands of lines from the log into a message.
    Important: Some private information, such as your name, may appear in the log. Edit it out by search-and-replace in a text editor before posting.

  • My 3 year-old macbook pro is very slow. I have run disk utility and virus scan with no improvement. The "beach ball" will spin for minutes at a time when opening, closing or changing windows. Apple Store looked at it a few months ago with no help.

    my 3 year-old macbook pro is very slow. I have run disk utility and virus scan with no improvement. The "beach ball" will spin for minutes at a time when opening, closing or changing windows. Apple Store looked at it a few months ago with no help. What can I do?

    Under CPU: 3.5% user; 5% system; 91% idle; 441 threads; 90 processes.
    Under System: out of 2GB - 54.7MB free; 530MB wired; 603MB active; 862MB inactive; 1.95GB used.
    Is too much of the system memory tied up? If so, what can I do to free some up?

  • Trouble with iCal.  It locks up for minutes at a time.

    I can no longer use iCal. It is extremely slow and often locks up for minutes at a time. Has any one experienced this and is there a way to fix it?

    The next time you have the problem, note the exact times when it starts and ends: hour, minute, second.
    If you have more than one user account, these instructions must be carried out as an administrator.
    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left.
    Scroll back in the log to the time you noted above. Post any messages timestamped during that interval – the text, please, not a screenshot.
    When posting a log extract, be selective. In most cases, a few dozen lines are more than enough.
    Please do not indiscriminately dump thousands of lines from the log into a message.
    Important: Some private information, such as your name, may appear in the log. Edit it out by search-and-replace in a text editor before posting.

  • Why does iTunes freeze up for minutes at a time when modifying INFO (CMD-i) ?  My files are not corrupted after it is done like many other threads i have readed.

    Why does iTunes freeze up for minutes at a time when modifying INFO (CMD-i) ?  My files are not corrupted after it is done like many other threads i have readed.  Sometimes it's changing the title of a movie or editing the season and episode number of a TV show ect.....

    Yup same here
    I am running the latest iTunes, the latest updates to the OS and on an iMac 3.4GHz Quad core i7 with 8GB of RAM and the music stored on local HDD.
    Still locks up iTunes for between 2 minutes up to 20 minutes.
    Really annoying.
    If you find a fix please, please let me know, I have just been throwing hardware at it with no joy at all

  • IPhone 5s screen freezes for minutes at a time after iOS 8.0.2 install

    My previously perfect iphone 5s has just been updated to iOS 8.0.2 and now for minutes at a time  the touch screen doesn't work. The buttons do, but not the screen. It then comes back to life for a minute or two before it stops working again. Anything I can do? Thanx

    Hey there Shortos,
    It sounds like your phone touchscreen is not consistently working for you after updating to iOS 8. I can see how that would be pretty frustrating. It sounds to me like this could be a software issue or an issue with the screen itself. I would start with the troubleshooting in the following article to help troubleshoot the screen itself:
    iPhone, iPad, iPod touch: Troubleshooting touchscreen response
    Restart your device
    Hold the On/Off button until "slide to power off" appears. Slide to power off your device. When it is off, press the On/Off button to turn it back on.
    If you can't restart your device, reset it by pressing and holding the Sleep/Wake button and the Home button at the same time for a least ten seconds, until the Apple logo appears.
    Clean the screen with a soft, slightly damp, lint-free cloth.
    Avoid using the device while wearing gloves, with wet hands, or immediately after applying hand lotion.
    If you have a protective case, or if you are using a plastic sheet or film on the display, try removing them and testing the device without it.
    If that does not resolve the issue, I would next quit all the running apps on the device:
    iOS: Force an app to close
    Double-click the Home button.
    Swipe left or right until you have located the app you wish to close.
    Swipe the app up to close it.
    When you have done that restart the device and test the issue again:
    iOS: Turning off and on (restarting) and resetting
    Thank you for using Apple Support Communities.
    All the very best,
    Sterling

  • Connection drops for minutes at a time

    Hi there.
    As I said in the title, the connection to the internet drops for minutes at a time although I am still connected to Airport Extreme. It has and can be down for pu to 20 minutes, with the only way of solving it that I see to be renewing the DHCP licence. Even when I do this, it can take up to 5 minutes to start working again.
    When the error is happening, in the assist pane of the Network settings, all the little lights are green up to ISP. Internet and below are orange.
    Any ideas?

    Any?

  • Shared external HDD minimum 2TB (or server) for 4 Macs with time machine backup?

    I work in a small design studio running 4 macs we need to put all of our work on one central harddrive that everyone can access. But then we would also like one Mac with an external harddrive attached to back up the contents of that shared drive. I have spoken with the people in the business centre But they dont seem to understand what I am trying to do.
    I appreciate any ideas you may have.
    So far what i have been sugested by the business centre is airport exterme with external HDD attached. But when i ask about using time machine to back up that HDD they get confused.

    I have found on my server log the following information:
    07/29 13:33:13  WDShareSpace daemon.warn afpd[3105]: volume "WD_Backup" does not support Extended Attributes, using ea:ad instead
    What is the "Extended Attributes" and how do I use "ea:ad" instead?

  • My Macbook Pro has started freezing or 'hanging' for minutes at a time.

    Cannot figure out what has caused this. Been doing it for three weeks now. Have re-installed OSX, wiped and restored from Time Machine but no difference. I would very much appreciate any help with this...... Console log looks like this:
    21/12/2013 12:49:39.000 pm kernel[0]: full wake (reason 1) 306 ms
    21/12/2013 12:49:39.000 pm kernel[0]: AirPort_Brcm43xx::powerChange: System Wake - Full Wake/ Dark Wake / Maintenance wake
    21/12/2013 12:49:39.000 pm kernel[0]: Previous Sleep Cause: 5
    21/12/2013 12:49:39.000 pm kernel[0]: **** [IOBluetoothHostControllerUSBTransport][SuspendDevice] -- Resume -- suspendDeviceCallResult = 0x0000 (kIOReturnSuccess) -- 0xa000 ****
    21/12/2013 12:49:39.000 pm kernel[0]: wlEvent: en1 en1 Link DOWN virtIf = 0
    21/12/2013 12:49:39.000 pm kernel[0]: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    21/12/2013 12:49:39.534 pm WindowServer[165]: CGXDisplayDidWakeNotification [2300400851183]: posting kCGSDisplayDidWake
    21/12/2013 12:49:39.535 pm WindowServer[165]: handle_will_sleep_auth_and_shield_windows: NULL shield_window (lock state: 1)
    21/12/2013 12:49:39.666 pm UserEventAgent[11]: Captive: CNPluginHandler en1: Inactive
    21/12/2013 12:49:39.728 pm configd[17]: network changed: v4(en1-:192.168.0.6) DNS- Proxy-
    21/12/2013 12:49:39.731 pm netbarrierd[80]: Switched to No Network. No active profile set
    21/12/2013 12:49:39.743 pm mDNSResponder[42]: mDNSPlatformSourceAddrForDest: connect 121.210.128.136 failed errno 51 (Network is unreachable)
    21/12/2013 12:49:39.000 pm kernel[0]: 00000000  00000020  NVEthernet::setLinkStatus - not Active
    21/12/2013 12:49:40.613 pm CalendarAgent[230]: [com.apple.calendar.store.log.caldav.queue] [Account refresh failed with error: Error Domain=NSURLErrorDomain Code=-1009 "The Internet connection appears to be offline." UserInfo=0x7ff26e008b30 {NSUnderlyingError=0x7ff26e01a170 "The Internet connection appears to be offline.", NSErrorFailingURLStringKey=https://chris.molloy%[email protected]/48736889/principal///chris.molloy%[email protected]/48736889/principal/, NSErrorFailingURLKey=https://chris.molloy%[email protected]/48736889/principal///chris.molloy%[email protected]/48736889/principal/, AccountName=iCloud, CalDAVErrFromRefresh=YES, NSLocalizedDescription=The Internet connection appears to be offline.}]
    21/12/2013 12:49:40.694 pm CalendarAgent[230]: [com.apple.calendar.store.log.caldav.queue] [Adding [<CalDAVAccountRefreshQueueableOperation: 0x7ff269ed6140; Sequence: 0>] to failed operations.]
    21/12/2013 12:49:43.578 pm mDNSResponder[42]: mDNSPlatformSourceAddrForDest: connect 121.210.128.136 failed errno 51 (Network is unreachable)
    21/12/2013 12:50:17.000 pm kernel[0]: **** [IOBluetoothHostControllerUSBTransport][SuspendDevice] -- Suspend -- suspendDeviceCallResult = 0x0000 (kIOReturnSuccess) -- 0xa000 ****
    21/12/2013 12:51:00.000 pm kernel[0]: disk0s2: I/O error.
    21/12/2013 12:51:01.488 pm IntegoMenu[262]: (
              0   CoreFoundation                      0x00007fff86cb641c __exceptionPreprocess + 172
              1   libobjc.A.dylib                     0x00007fff8fa24e75 objc_exception_throw + 43
              2   CoreFoundation                      0x00007fff86cb5fc9 -[NSException raise] + 9
              3   personalbackup                      0x00000001030298e6 personalbackup + 10470
              4   Foundation                          0x00007fff8c3f9094 __NSFireTimer + 96
              5   CoreFoundation                      0x00007fff86c1d724 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 20
              6   CoreFoundation                      0x00007fff86c1d25f __CFRunLoopDoTimer + 1151
              7   CoreFoundation                      0x00007fff86c8e76a __CFRunLoopDoTimers + 298
              8   CoreFoundation                      0x00007fff86bd8aa5 __CFRunLoopRun + 1525
              9   CoreFoundation                      0x00007fff86bd8275 CFRunLoopRunSpecific + 309
              10  HIToolbox                           0x00007fff8930ff0d RunCurrentEventLoopInMode + 226
              11  HIToolbox                           0x00007fff8930fcb7 ReceiveNextEventCommon + 479
              12  HIToolbox                           0x00007fff8930fabc _BlockUntilNextEventMatchingListInModeWithFilter + 65
              13  AppKit                              0x00007fff8799d28e _DPSNextEvent + 1434
              14  AppKit                              0x00007fff8799c8db -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
              15  AppKit                              0x00007fff879909cc -[NSApplication run] + 553
              16  AppKit                              0x00007fff8797b803 NSApplicationMain + 940
              17  IntegoMenu                          0x0000000100001aa8 start + 52
    21/12/2013 12:51:02.144 pm com.apple.time[217]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    21/12/2013 12:51:02.341 pm xpcproxy[557]: assertion failed: 13B42: xpcproxy + 3438 [EE7817B0-1FA1-3603-B88A-BD5E595DA86F]: 0x2
    21/12/2013 12:51:02.737 pm com.apple.iCloudHelper[557]: AOSKit ERROR: Config request failed, url=https://setup.icloud.com/configurations/init, requestHeaders=
        "Accept-Language" = "en-au";
        "X-Mme-Client-Info" = "<MacBookPro5,1> <Mac OS X;10.9.1;13B42> <com.apple.AOSKit/176>";
        "X-Mme-Country" = AU;
        "X-Mme-Nac-Version" = 11A457;
        "X-Mme-Timezone" = AEDT;
    error=Error Domain=kCFErrorDomainCFNetwork Code=-1009 "The Internet connection appears to be offline." UserInfo=0x7f8b9b562c70 {NSErrorFailingURLStringKey=https://setup.icloud.com/configurations/init, NSLocalizedDescription=The Internet connection appears to be offline., NSErrorFailingURLKey=https://setup.icloud.com/configurations/init}, httpStatusCode=-1, responseHeaders=
    (null)
    21/12/2013 12:51:02.959 pm com.apple.iCloudHelper[557]: AOSKit ERROR: Config request failed, url=https://setup.icloud.com/configurations/init, requestHeaders=
        "Accept-Language" = "en-au";
        "X-Mme-Client-Info" = "<MacBookPro5,1> <Mac OS X;10.9.1;13B42> <com.apple.AOSKit/176>";
        "X-Mme-Country" = AU;
        "X-Mme-Nac-Version" = 11A457;
        "X-Mme-Timezone" = AEDT;
    error=Error Domain=kCFErrorDomainCFNetwork Code=-1009 "The Internet connection appears to be offline." UserInfo=0x7f8b9b446c10 {NSErrorFailingURLStringKey=https://setup.icloud.com/configurations/init, NSLocalizedDescription=The Internet connection appears to be offline., NSErrorFailingURLKey=https://setup.icloud.com/configurations/init}, httpStatusCode=-1, responseHeaders=
    (null)
    21/12/2013 12:51:02.961 pm com.apple.iCloudHelper[557]: AOSKit ERROR: Setup request failed, appleID=48736889, url=(null), requestHeaders=
    (null),
    error=Error Domain=AOSErrorDomain Code=1000 "The operation couldn’t be completed. (AOSErrorDomain error 1000.)" UserInfo=0x7f8b9b438ed0 {HttpStatusCode=0, DialogInfo={
        DialogType = Unknown;
    }}, httpStatusCode=0, responseHeaders=
    (null),
    responseBody=
    (null)
    21/12/2013 12:51:03.000 pm kernel[0]: **** [IOBluetoothHostControllerUSBTransport][SuspendDevice] -- Resume -- suspendDeviceCallResult = 0x0000 (kIOReturnSuccess) -- 0xa000 ****
    21/12/2013 12:51:03.000 pm kernel[0]: MacAuthEvent en1   Auth result for: 00:26:18:67:14:8c  MAC AUTH succeeded
    21/12/2013 12:51:03.000 pm kernel[0]: wlEvent: en1 en1 Link UP virtIf = 0
    21/12/2013 12:51:03.000 pm kernel[0]: AirPort: Link Up on en1
    21/12/2013 12:51:03.000 pm kernel[0]: en1: BSSID changed to 00:26:18:67:14:8c
    21/12/2013 12:51:03.000 pm kernel[0]: AirPort: RSN handshake complete on en1
    21/12/2013 12:51:04.000 pm kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    21/12/2013 12:51:04.606 pm sandboxd[115]: ([280]) coreaudiod(280) deny file-read-data /Library/Audio/Plug-Ins/Components/GuitarRig 2.component
    21/12/2013 12:51:04.613 pm sandboxd[115]: ([280]) coreaudiod(280) deny file-read-metadata /Library/Audio/Plug-Ins/Components/GuitarRig 2.component/Contents
    21/12/2013 12:51:04.619 pm sandboxd[115]: ([280]) coreaudiod(280) deny file-read-metadata /Library/Audio/Plug-Ins/Components/GuitarRig 2.component
    21/12/2013 12:51:04.956 pm airportd[67]: _doAutoJoin: Already associated to “BigPond4447”. Bailing on auto-join.
    21/12/2013 12:51:07.122 pm mDNSResponder[42]: mDNSPlatformSourceAddrForDest: connect 121.210.128.136 failed errno 51 (Network is unreachable)
    21/12/2013 12:51:11.622 pm mDNSResponder[42]: mDNSPlatformSourceAddrForDest: connect 121.210.128.136 failed errno 51 (Network is unreachable)
    21/12/2013 12:51:14.030 pm fontd[223]: ATSFindFolder timeout. (domain:-32763, dirType:'font', createFolder:false, ATSServer pid:223)
    21/12/2013 12:51:20.000 pm kernel[0]: nfs server localhost:/qjWzPqR3WaunoZwZ79rEAX: not responding
    21/12/2013 12:51:20.140 pm KernelEventAgent[48]: tid 54485244 received event(s) VQ_NOTRESP (1)
    21/12/2013 12:51:51.000 pm kernel[0]: nfs server localhost:/qjWzPqR3WaunoZwZ79rEAX: not responding
    21/12/2013 12:51:54.000 pm kernel[0]: **** [IOBluetoothHostControllerUSBTransport][SuspendDevice] -- Suspend -- suspendDeviceCallResult = 0x0000 (kIOReturnSuccess) -- 0xa000 ****
    21/12/2013 12:52:20.000 pm kernel[0]: nfs server localhost:/qjWzPqR3WaunoZwZ79rEAX: dead
    21/12/2013 12:52:20.183 pm KernelEventAgent[48]: tid 54485244 received event(s) VQ_DEAD (32)
    21/12/2013 12:52:20.183 pm KernelEventAgent[48]: tid 54485244 type 'mtmfs', mounted on '/Volumes/MobileBackups', from 'localhost:/qjWzPqR3WaunoZwZ79rEAX', dead
    21/12/2013 12:52:20.184 pm KernelEventAgent[48]: tid 54485244 force unmount localhost:/qjWzPqR3WaunoZwZ79rEAX from /Volumes/MobileBackups
    21/12/2013 12:52:20.184 pm KernelEventAgent[48]: tid 54485244 found 1 filesystem(s) with problem(s)
    21/12/2013 12:52:23.000 pm kernel[0]: disk0s2: I/O error.
    21/12/2013 12:52:24.423 pm configd[17]: network changed: DNS* Proxy
    21/12/2013 12:52:24.425 pm UserEventAgent[11]: Captive: [CNInfoNetworkActive:1655] en1: SSID 'BigPond4447' making interface primary (cache indicates network not captive)
    21/12/2013 12:52:24.430 pm UserEventAgent[11]: Captive: CNPluginHandler en1: Evaluating
    21/12/2013 12:52:24.432 pm UserEventAgent[11]: Captive: en1: Not probing 'BigPond4447' (cache indicates not captive)
    21/12/2013 12:52:24.433 pm UserEventAgent[11]: Captive: CNPluginHandler en1: Authenticated
    21/12/2013 12:52:24.476 pm configd[17]: network changed: v4(en1!:192.168.0.6) DNS+ Proxy+ SMB
    21/12/2013 12:52:24.502 pm netbarrierd[80]: Unidentified network detected. Switch to profile "Home"
    21/12/2013 12:52:24.813 pm com.apple.backupd[562]: Starting automatic backup
    21/12/2013 12:52:24.000 pm kernel[0]: nspace-handler-set-snapshot-time: 1387590746
    21/12/2013 12:52:24.960 pm com.apple.mtmd[40]: Set snapshot time: 2013-12-21 12:52:26 +1100 (current time: 2013-12-21 12:52:24 +1100)
    21/12/2013 12:52:25.070 pm netbarrierd[80]: Switched to Network (Router IP(192.168.0.1) MAC(00:24:b2:a3:4a:d0) Name(BigPond4447)
    21/12/2013 12:52:25.070 pm netbarrierd[80]: Known network detected. Switch to profile "Home"
    21/12/2013 12:52:28.508 pm apsd[65]: Unrecognized leaf certificate
    21/12/2013 12:52:29.625 pm CalendarAgent[230]: [com.apple.calendar.store.log.subscription] [Failed to refresh <CalManagedSubscriptionInfo: 0x7ff26e51c7a0> (entity: SubscriptionInfo; id: 0x40012b <x-coredata://46AC892B-FBE5-404E-98CB-56251B43F9AA/SubscriptionInfo/p1> ; data: {
        calendar = "0x14000eb <x-coredata://46AC892B-FBE5-404E-98CB-56251B43F9AA/CalDAVSubscribedCalendar/p5> ";
        hasAlarmFilter = 0;
        hasAttachmentFilter = 0;
        hasTaskFilter = 0;
        isAutoProvisioned = 0;
        isAutoRefreshed = 0;
        languageCode = nil;
        lastError = "0x5680016b <x-coredata://46AC892B-FBE5-404E-98CB-56251B43F9AA/SubscriptionError/p346>";
        locationCode = nil;
        needsRefresh = 0;
        refreshDate = nil;
        refreshInterval = 0;
        subscriptionID = nil;
        subscriptionNotes = nil;
        subscriptionTitle = nil;
        subscriptionURL = "(...not nil..)";
        subscriptionURLString = "webcal://ical.me.com/alexyim/Holidays.ics";
    }) with error Error Domain=CalSubscriptionErrorDomain Code=-1 "The operation couldn’t be completed. (CalSubscriptionErrorDomain error -1.)"]
    21/12/2013 12:52:29.000 pm kernel[0]: wlEvent: en1 en1 Link DOWN virtIf = 0
    21/12/2013 12:52:29.000 pm kernel[0]: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    21/12/2013 12:52:30.000 pm kernel[0]: MacAuthEvent en1   Auth result for: 20:c9:d0:a8:60:47  MAC AUTH succeeded
    21/12/2013 12:52:30.000 pm kernel[0]: wlEvent: en1 en1 Link UP virtIf = 0
    21/12/2013 12:52:30.000 pm kernel[0]: AirPort: Link Up on en1
    21/12/2013 12:52:30.000 pm kernel[0]: en1: BSSID changed to 20:c9:d0:a8:60:47
    21/12/2013 12:52:30.000 pm kernel[0]: AirPort: RSN handshake complete on en1
    21/12/2013 12:52:30.065 pm configd[17]: LINKLOCAL en1: parent has no IP
    21/12/2013 12:52:30.081 pm UserEventAgent[11]: Captive: CNPluginHandler en1: Inactive
    21/12/2013 12:52:30.000 pm kernel[0]: **** [IOBluetoothHostControllerUSBTransport][SuspendDevice] -- Resume -- suspendDeviceCallResult = 0x0000 (kIOReturnSuccess) -- 0xa000 ****
    21/12/2013 12:52:30.239 pm configd[17]: network changed: v4(en1-:192.168.0.6) DNS- Proxy-
    21/12/2013 12:52:30.243 pm netbarrierd[80]: Switched to No Network. No active profile set
    21/12/2013 12:52:30.258 pm configd[17]: network changed: DNS* Proxy
    21/12/2013 12:52:30.260 pm UserEventAgent[11]: Captive: [CNInfoNetworkActive:1655] en1: SSID 'Time Machine' making interface primary (cache indicates network not captive)
    21/12/2013 12:52:30.261 pm UserEventAgent[11]: Captive: CNPluginHandler en1: Evaluating
    21/12/2013 12:52:30.263 pm UserEventAgent[11]: Captive: en1: Not probing 'Time Machine' (cache indicates not captive)
    21/12/2013 12:52:30.263 pm UserEventAgent[11]: Captive: CNPluginHandler en1: Authenticated
    21/12/2013 12:52:30.321 pm configd[17]: network changed: v4(en1!:192.168.0.6) DNS+ Proxy+ SMB
    21/12/2013 12:52:30.328 pm netbarrierd[80]: Switched to Network (Router IP(192.168.0.1) MAC(00:24:b2:a3:4a:d0) Name(Time Machine)
    21/12/2013 12:52:30.328 pm netbarrierd[80]: Known network detected. Switch to profile "Home"
    21/12/2013 12:52:30.000 pm kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    21/12/2013 12:52:31.164 pm airportd[67]: _doAutoJoin: Already associated to “Time Machine”. Bailing on auto-join.
    21/12/2013 12:52:32.466 pm com.apple.backupd[562]: Attempting to mount network destination URL: afp://Christopher%20Molloy;[email protected]/Data
    21/12/2013 12:52:32.539 pm NetAuthSysAgent[570]: TUAMHandler::SetUAMType setting UAMType to 13
    21/12/2013 12:52:32.745 pm com.apple.backupd[562]: Mounted network destination at mount point: /Volumes/Data using URL: afp://Christopher%20Molloy;[email protected]/Data
    21/12/2013 12:52:32.752 pm mds[41]: (Normal) Volume: volume:0x7ff0f1094000 ********** Bootstrapped Creating a default store:0 SpotLoc:(null) SpotVerLoc:(null) occlude:0 /Volumes/Data
    21/12/2013 12:52:33.492 pm apsd[65]: Unrecognized leaf certificate
    21/12/2013 12:52:34.782 pm CalendarAgent[230]: [com.apple.calendar.store.log.subscription] [Failed to refresh <CalManagedSubscriptionInfo: 0x7ff269ed4250> (entity: SubscriptionInfo; id: 0x40012b <x-coredata://46AC892B-FBE5-404E-98CB-56251B43F9AA/SubscriptionInfo/p1> ; data: {
        calendar = "0x14000eb <x-coredata://46AC892B-FBE5-404E-98CB-56251B43F9AA/CalDAVSubscribedCalendar/p5> ";
        hasAlarmFilter = 0;
        hasAttachmentFilter = 0;
        hasTaskFilter = 0;
        isAutoProvisioned = 0;
        isAutoRefreshed = 0;
        languageCode = nil;
        lastError = "0x5700016b <x-coredata://46AC892B-FBE5-404E-98CB-56251B43F9AA/SubscriptionError/p348>";
        locationCode = nil;
        needsRefresh = 0;
        refreshDate = nil;
        refreshInterval = 0;
        subscriptionID = nil;
        subscriptionNotes = nil;
        subscriptionTitle = nil;
        subscriptionURL = "(...not nil..)";
        subscriptionURLString = "webcal://ical.me.com/alexyim/Holidays.ics";
    }) with error Error Domain=CalSubscriptionErrorDomain Code=-1 "The operation couldn’t be completed. (CalSubscriptionErrorDomain error -1.)"]
    21/12/2013 12:53:08.000 pm kernel[0]: **** [IOBluetoothHostControllerUSBTransport][SuspendDevice] -- Suspend -- suspendDeviceCallResult = 0x0000 (kIOReturnSuccess) -- 0xa000 ****
    21/12/2013 12:53:54.000 pm kernel[0]: disk0s2: I/O error.
    21/12/2013 12:55:13.000 pm kernel[0]: disk0s2: I/O error.
    21/12/2013 12:56:32.000 pm kernel[0]: disk0s2: I/O error.
    21/12/2013 12:56:34.567 pm WindowServer[165]: disable_update_timeout: UI updates were forcibly disabled by application "Finder" for over 1.00 seconds. Server has re-enabled them.
    21/12/2013 12:56:35.086 pm WindowServer[165]: common_reenable_update: UI updates were finally reenabled by application "Finder" after 1.52 seconds (server forcibly re-enabled them after 1.00 seconds)
    21/12/2013 12:56:39.000 pm kernel[0]: jnl: disk2s2: replay_journal: from: 3809280 to: 4624384 (joffset 0x3a28000)
    21/12/2013 12:56:42.000 pm kernel[0]: jnl: disk2s2: journal replay done.
    21/12/2013 12:56:42.000 pm kernel[0]: hfs: mounted Time Machine Backups on device disk2s2
    21/12/2013 12:56:43.769 pm com.apple.backupd[562]: Disk image /Volumes/Data/Christopher Molloy’s PowerBook G4 15".sparsebundle mounted at: /Volumes/Time Machine Backups
    21/12/2013 12:56:44.601 pm com.apple.backupd[562]: Backing up to /dev/disk2s2: /Volumes/Time Machine Backups/Backups.backupdb
    21/12/2013 12:56:44.633 pm mds[41]: (Error) Volume: Root store set to FSOnly with matching create! (loaded:1)
    21/12/2013 12:58:01.000 pm kernel[0]: disk0s2: I/O error.
    21/12/2013 12:58:03.968 pm com.apple.backupd[562]: Event store UUIDs don't match for volume: Macintosh HD
    21/12/2013 12:58:08.287 pm com.apple.backupd[562]: Deep event scan at path:/ reason:must scan subdirs|new event db|
    21/12/2013 12:59:24.000 pm kernel[0]: disk0s2: I/O error.
    21/12/2013 1:00:01.882 pm SystemUIServer[273]: Metadata.framework [Error]: mdsCopyStoreInformation failed: (268451843) (ipc/rcv) timed out
    21/12/2013 1:00:11.885 pm SystemUIServer[273]: Metadata.framework [Error]: mdsCopyStoreInformation failed: (268451843) (ipc/rcv) timed out
    21/12/2013 1:00:34.913 pm SystemUIServer[273]: Metadata.framework [Error]: mdsCopyStoreInformation failed: (268451843) (ipc/rcv) timed out
    21/12/2013 1:00:50.000 pm kernel[0]: disk0s2: I/O error.
    21/12/2013 1:02:11.000 pm kernel[0]: disk0s2: I/O error.
    21/12/2013 1:02:12.651 pm Console[599]: setPresentationOptions called with NSApplicationPresentationFullScreen when there is no visible fullscreen window; this call will be ignored.
    21/12/2013 1:03:32.000 pm kernel[0]: disk0s2: I/O error.
    21/12/2013 1:04:51.000 pm kernel[0]: disk0s2: I/O error.

    One thing our logs have in common is the "SystemUIServer[...]: Metadata.framework [Error]: mdsCopyStoreInformation failed: (268451843) (ipc/rcv) timed out" part ...

  • Since yesterday, I have been seeing "bookmark syncing in progress" on the status bar for minutes at a time, and the browser becomes almost useless as it freezes.

    At some point, I'll see 'bookmark syncing failed', and the browser then acts normally, BUT the behavior is cyclic. I uninstalled 7.0.1 and installed 3.6.20 and the behavior continued. I disabled sync in both installs and the behavior continued. I even deleted the sync server URL in about:config and the behavior *continued*. Oddly, the logs don't show any failures, and report success every time.
    BTW, the bug-reporting procedure needs serious clean-up. It is very difficult to navigate the maze. And the help files are atrocious.

    That maybe fixes some issues, but not this one. This one has to do with Sync and is getting seriously annoying.

  • Firefox 9.01 hangs for minutes at a time on three different computers.

    I upgraded all three of my machines to 9.01. All XP service pack 3. Before, if there was a stall in the data flow, I could access the other tabs or do other tasks.
    Now if the modem hangs, I get a "not responding" from Firefox, which might last for 5 minutes.
    I started watching my DSL modem, and realized that the data light was not blinking at all.
    It was as though Firefox was not even pinging for data.
    For a while, then the modem would go quiet and it would hang again.
    I ran visualtrace to see where the blockage was, and as soon as I started the trace, the modem started downloading data, but Firefox does not see it.
    The trace shows no blockages.
    I used to open 4 or 5 tabs at once in the morning, and read them as they download.
    Now, the browser is stalled until they all download, and that might take a long time, because no data is flowing.
    If I click on the close button, the browser closes instantly, with no warning about closing tabs.
    When I reopen it, it treats the close as a crash and give me the option of which tabs to try to reopen.
    I am using Kaspersky but disabling it does not help.
    I'm sure you will find the bug soon, and I will keep checking for updates.
    I downloaded Chrome to have something to use while I waited, but saw a place where I could download version 8,X of Firefox. I will revert back to it at my office because I need a usable browser. I will try to limp along with 9 on my two personal machines, unless it takes too long.
    I have the copy of 8.X on a thumb drive just in case.
    I hope you find this bug soon. I want to stay current in my browser, and Chrome sucks.

    Firefox Hangs
    https://support.mozilla.com/en-US/kb/Firefox%20hangs
    Check and tell if its working.

  • Since installing Mountain Lion my computer freezes up for minutes at a time.

    I can't even force quit. It seems to freeze often when using Chrome. I just got a freeze up when I tried to open a new window in Chrome.
    I have already try Disk Utility in Safe mode which fixed a lot of permissions errors, but I am still having the freezing issues. Below is the log from the latest Chrome error:
    11/19/12 2:21:10.606 PM com.apple.launchd[1]: (com.apple.coremedia.videodecoder[679]) Exit timeout elapsed (20 seconds). Killing
    11/19/12 2:26:43.000 PM kernel[0]: disk0s2: I/O error.
    11/19/12 2:26:58.708 PM loginwindow[42]: *** WARNING: -[NSImage compositeToPoint:operation:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    11/19/12 2:26:58.708 PM loginwindow[42]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    11/19/12 2:28:22.000 PM kernel[0]: disk0s2: I/O error.
    I've also noticed a lot of other errors, but I don't know what they mean. Here is more log (sorry it's so long, don't know what is the important sections)
    11/19/12 1:47:42.343 PM coreservicesd[65]: SendFlattenedData, got error #268435460 (ipc/send) timed out from ::mach_msg(), sending notification kLSNotifyApplicationNameChanged to notificationID=299
    11/19/12 1:47:49.136 PM Google Chrome Helper EH[628]: CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary on line 3. Parsing will be abandoned. Break on _CFPropertyListMissingSemicolon to debug.
    11/19/12 1:47:49.137 PM Google Chrome Helper EH[628]: CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary on line 3. Parsing will be abandoned. Break on _CFPropertyListMissingSemicolon to debug.
    11/19/12 1:48:33.453 PM netbiosd[80]: name servers down?
    11/19/12 1:48:56.819 PM Google Chrome Helper EH[632]: CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary on line 3. Parsing will be abandoned. Break on _CFPropertyListMissingSemicolon to debug.
    11/19/12 1:48:56.819 PM Google Chrome Helper EH[632]: CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary on line 3. Parsing will be abandoned. Break on _CFPropertyListMissingSemicolon to debug.
    11/19/12 1:48:57.637 PM GoogleTalkPlugin[634]: objc[634]: Class MacCocoaSocketServerHelper is implemented in both /Library/Application Support/Google/GoogleTalkPlugin.app/Contents/MacOS/GoogleTalkPlugin and /Library/Application Support/Google/GoogleTalkPlugin.app/Contents/Frameworks/libgoogletalkremoting.d ylib. One of the two will be used. Which one is undefined.
    11/19/12 1:49:00.981 PM Google Chrome[609]: QuickTimeUSBVDCDigitizer:  Found a camera (0x24400000) , but was not able to start it up (0xe00002c5)
    11/19/12 1:49:42.299 PM netbiosd[80]: name servers down?
    11/19/12 1:49:46.000 PM kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=646[ksadmin] clearing CS_VALID
    11/19/12 1:49:46.000 PM kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=647[ksadmin] clearing CS_VALID
    11/19/12 1:53:14.468 PM netbiosd[80]: name servers down?
    11/19/12 1:54:05.030 PM netbiosd[80]: name servers down?
    11/19/12 1:55:18.480 PM netbiosd[80]: name servers down?
    11/19/12 1:56:25.510 PM netbiosd[80]: name servers down?
    11/19/12 1:57:41.643 PM netbiosd[80]: name servers down?
    11/19/12 1:58:59.491 PM netbiosd[80]: name servers down?
    11/19/12 2:00:33.921 PM Safari[663]: Performance: Please update this scripting addition to supply a value for ThreadSafe for each event handler: "/Library/ScriptingAdditions/SIMBL.osax"
    11/19/12 2:00:34.616 PM Safari[663]: CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary on line 3. Parsing will be abandoned. Break on _CFPropertyListMissingSemicolon to debug.
    11/19/12 2:00:34.617 PM Safari[663]: CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary on line 3. Parsing will be abandoned. Break on _CFPropertyListMissingSemicolon to debug.
    11/19/12 2:00:34.617 PM Safari[663]: CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary on line 3. Parsing will be abandoned. Break on _CFPropertyListMissingSemicolon to debug.
    11/19/12 2:00:34.731 PM EvernoteHelper[316]: No result from Safari loading plugins.
    11/19/12 2:00:56.435 PM Evernote[680]: objc[680]: Class ENSystemUtils is implemented in both /Applications/Evernote.app/Contents/Frameworks/ENPopover.framework/Versions/A/E NPopover and /Applications/Evernote.app/Contents/MacOS/Evernote. One of the two will be used. Which one is undefined.
    11/19/12 2:00:57.615 PM netbiosd[80]: name servers down?
    11/19/12 2:00:58.889 PM SIMBL Enabler for Sandboxed Apps[682]: Set up watching for containers directory at URL file://localhost/Users/Gatekeeper/Library/Containers/
    11/19/12 2:00:58.974 PM com.apple.SecurityServer[17]: Session 100019 created
    11/19/12 2:01:04.637 PM locationd[684]: NOTICE,Location icon should now be in state 0
    11/19/12 2:01:06.931 PM EvernoteHelper[316]: EvernoteHelper updating preferences from main application
    11/19/12 2:01:07.087 PM Evernote[680]: Performance: Please update this scripting addition to supply a value for ThreadSafe for each event handler: "/Library/ScriptingAdditions/SIMBL.osax"
    11/19/12 2:01:07.154 PM WindowServer[95]: CGXSetWindowBackgroundBlurRadius: Invalid window 0xffffffff
    11/19/12 2:01:07.646 PM xpcd[323]: Evernote[680]: registration request failed: (0x12, 0xd) process failed sandbox check
    11/19/12 2:01:07.699 PM Evernote[680]: Domain extension failed: 13: process failed sandbox check
    11/19/12 2:01:07.000 PM kernel[0]: Sandbox: sandboxd(686) deny mach-lookup com.apple.coresymbolicationd
    11/19/12 2:01:08.762 PM com.apple.XType.FontHelper[688]: FontHelper:  message received. (<dictionary: 0x7f887bc2e670> { count = 2, contents =
              "query" => <string: 0x7f887bc2e7e0> { length = 116, contents = "com_apple_ats_name_postscript == "HelveticaNeue-Regular" && kMDItemContentTypeTree != com.adobe.postscript-lwfn-font" }
              "restricted" => <bool: 0x11160d320>: true
    11/19/12 2:01:08.762 PM com.apple.XType.FontHelper[688]: AutoActivation:  scopes (
        "/Library/Application Support/Apple/Fonts"
    11/19/12 2:01:11.568 PM sandboxd[686]: ([680]) Evernote(680) deny file-read-data /Users/Gatekeeper/Library/Application Support/SIMBL/Plugins/Afloat.bundle/Contents/MacOS/Afloat
    11/19/12 2:01:13.895 PM SIMBL Enabler for Sandboxed Apps[682]: Will terminate until reinvoked again by launchd.
    11/19/12 2:01:27.785 PM SIMBL Enabler for Sandboxed Apps[691]: Set up watching for containers directory at URL file://localhost/Users/Gatekeeper/Library/Containers/
    11/19/12 2:01:42.786 PM SIMBL Enabler for Sandboxed Apps[691]: Will terminate until reinvoked again by launchd.
    11/19/12 2:02:10.806 PM SIMBL Enabler for Sandboxed Apps[693]: Set up watching for containers directory at URL file://localhost/Users/Gatekeeper/Library/Containers/
    11/19/12 2:02:25.808 PM SIMBL Enabler for Sandboxed Apps[693]: Will terminate until reinvoked again by launchd.
    11/19/12 2:02:44.345 PM SIMBL Enabler for Sandboxed Apps[695]: Set up watching for containers directory at URL file://localhost/Users/Gatekeeper/Library/Containers/
    11/19/12 2:02:59.347 PM SIMBL Enabler for Sandboxed Apps[695]: Will terminate until reinvoked again by launchd.
    11/19/12 2:03:39.384 PM netbiosd[80]: name servers down?
    11/19/12 2:08:59.918 PM netbiosd[80]: name servers down?
    Please help.

    That maybe fixes some issues, but not this one. This one has to do with Sync and is getting seriously annoying.

  • I installed itunes 11. It takes 100% of cpu and GUI is not responsive for minutes at a time.  Keystrokes are lost in the search box because of this. This worked fine in previous release. I have 4300 albums and 70k  songs.

    I have an itunes library of 4000+ albums and 70k+ songs. Worked great until itunes 11 today. Now, when ever I go to the search field and type 1 character, I go to 100% CPU busy and all the other characters are lost. "itunes not responding" for a couple of minutes.  
    Also happens when I am importing a CD from physical media, and I switch to music and try and find another album. Gui becomes unresponsive and activity monitor ends up reporting "Itunes (not responding)".
    How go I go back to the working itunes?

    Thanks. That was it I don't know why it got changed during the upgrade to iTunes 11.
    However, it still takes 5-10 seconds for this menu to appear, with the cpu at 100% one core. Seems like iTunes should support multi-threaded/multi-core processing, especially for the GUI.

Maybe you are looking for

  • How do I use two ipods with the same itunes programme?

    I am new to everything about ipod / itunes and I'm sure my question must have been answered somewhere on this forum - but I can't find it. I have recently bought an ipod for my wife and have of course installed itunes on my computer. So far I've put

  • Ipod 4g not found by itunes 10.6.0.40 under Windows 7 Ultimate

    Hi, I own the Ipod Touch 4g. It's found under Windows 7 Ultimate, the icon Apple Ipod is displayed but the Ipod is not detected by Itunes 10.6.0.40. Ituners needs also a lot of time to start and to display the menus, more than 5 minutes when the ipod

  • How do I open a postscript file, like I open an excel file?

    I'm trying to open a file that I saved as a .ps. I want to open it in the same maner as I open an excel file?

  • Safari not remembering username and password

    Hello, I have my settings set so that Safari remembers my username and passwords to make logins faster. One site I use for school has had my username and password saved since I first started using it. But all of a sudden, it's not remembering my info

  • Busines rule in web form

    Hi, If I have a rule assigned to a web form that is 'Run on Save', can I stop it appearing in the list of available rules in the bottom left panel when I open the form? Thanks CD