High CPU and Delay when applying metadata

Hi All:
I have an issue where my CPU hits 60% when applying keywords. This can be when I apply it to one image or to 100s. Obviously, when I have more pictures selected or more keywords, there is a much larger delay.
Ideas from anyone?
Thanks

Hi All,
There is a workaround to resolve this issue. As it is related to modifying registry, please be very careful and take backup of your registry first.
The workaround is to set the value of "Disable Performance Counters" to 0 @ HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\PerfProc\Performance
If this registry entry is not present, create one. Meanwhile, we are working on fixing this issue.
Hope this helps!
Thanks,
Deepika
PS: Edit the Registry at your own risk. Inappropriate changes to the Windows Registry can disable the operating system! To safeguard against such an accident, back up your existing registry by choosing Registry » Export Registry File after launching the Registry Editor and before making any changes

Similar Messages

  • Performance issue with high CPU and IO

    Hi guys,
    I am encountering huge user response time on a production system and I don’t know how to solve it.
    Doing some extra tests and using the instrumentation that we have in the code we concluded that the DB is the bottleneck.
    We generated some AWR reports and noticed the CPU was in top wait events. Also noticed that in a random manner some simple sql take a long time to execute. We activated the sql trace on the system and noticed that for very simple SQLs (unique index access on one table) we have huge exec times. 9s
    In the trace file the huge time we had it in fetch area: 9.1s cpu and elapsed 9.2.
    And no or very small waits for this specific SQL.
    it seems like the bottle neck is on the CPU but at that point there were very few processes running on the DB. Why can we have such a big cpu wait on a simple select? This is a machine with 128 cores. We have quicker responses on machines smaller/busier than this.
    We noticed that we had a huge db_cache_size (12G) and after we scale it down we noticed some improvements but not enough. How can I prove that there is a link between high CPU and big cache_size? (there was not wait involved in SQL execution). what can we do in the case we need big DB cache size?
    The second issue is that I tried to execute an sql on a big table (FTS on a big table. no join). Again on that smaller machine it runs in 30 seconds and on this machine it runs in 1038 seconds.
    Also generated a trace for this SQL on the problematic machine:
    call     count       cpu    elapsed       disk      query    current        rows
    Parse        1      0.00       0.00          0          0          0           0
    Execute      1      0.00       0.00          0          0          0           0
    Fetch        1    402.08    1038.31    1842916    6174343          0           1
    total        3    402.08    1038.32    1842916    6174343          0           1
      db file sequential read                     12419        0.21         40.02
      i/o slave wait                             135475        0.51        613.03
      db file scattered read                     135475        0.52        675.15
      log file switch completion                      5        0.06          0.18
      latch: In memory undo latch                     6        0.00          0.00
      latch: object queue header operation            1        0.00          0.00
    ********************************************************************************The high CPU is present here also but here I have huge wait on db file scattered read.
    Looking at the session with the select the AWG_wait for db scattered read was 0.5. on the other machine it is like 0.07.
    I though this is an IO issue. I did some IO tests at SO level and it seems like the read and writes operation are very fast…much faster than the machine that has the awg_wait smaller. Why the difference in waits?
    One difference between these two DBs is that the problem one has the db block size = 16k and the other one has 8k.
    I received some reports done at OS level on CPU and IO usage on the problematic machine (in normal operations). It seems like the CPU is very used and the IO stays very low.
    On the other machine, the smaller and the faster one, it is other way around.
    What is the problem here? How can I test further? Can I link the high CPU to low/slow IO?
    we have 10G on sun os with ASM.
    Thanks in advance.

    Yes, there are many things you can and should do to isolate this. But first check MOS Poor Performance With Oracle9i and 10g Releases When Using Dynamic Intimate Shared Memory (DISM) [ID 1018855.1] isn't messing you up to start.
    Also, be sure and post exact patch levels for both Oracle and OS.
    Be sure and check all your I/O settings and see what MOS has to say about those.
    Are you using ASSM? See Long running update
    Since it got a little better with shrinking the SGA size, that might indicate (wild speculation here, something like) one of the problems is simply too much thrashing within the SGA, as oracle decides "small" objects being full scanned in memory is faster than range scans (or whatever) from disk, overloading the cpu, not allowing the cpu to ask for other full scans from I/O. Possibly made worse by row level locking, or some other app issue that just does too much cpu.
    You probably have more than one thing wrong. High fetch count might mean you need to adjust the array size on the clients.
    Now that that is all out of the way, if you still haven't found the problem, go through http://oracle-randolf.blogspot.com/2009/02/basic-sql-statement-performance.html
    Edit: Oh, see Solaris 10 memory management conflicts with Automatic PGA Memory Management [ID 460424.1] too.
    Edited by: jgarry on Nov 15, 2011 1:45 PM

  • Delay when applying large, hierarchical type definitions

    Hello,
    I searched around using various terms, but couldn't readily find posts on what I'm experiencing.
    Has anyone else noticed huge delays when applying large, hierarchical type definitions?  I've got about a dozen nested type definitions of clusters, each containing anywhere from 10 to 100 controls, and they're used throughout a large application.  When I open any member of that hierarchy, make a small change, and hit apply, I see the hourglass (spinning ring of death in Vista/7) for a good two to five minutes.
    A short term workaround has been to close all dependent VIs and typedefs, and then make an isolated edit.  Then, if I open the whole application again, I see some compiling taking place, but it seems to take a lot less time than when the whole application is open.
    I could have sworn that I read a discussion by some others commiserating about this at some point, but now I can't find it.
    Has this been addressed, and has anyone heard if there's any development effort to improve this?
    Thanks,
    Jim

    Hi Fred,
    Thanks for getting back to me on this.
    > You could use more specific typedefs and not a massive one to pass data through VIs.
    It's funny, I've actually adopted using larger typdefs in the last year or two for architectural simplicity, and that's when I've noticed this becoming a problem. In fact, for what it's worth, right now I'm using a data reference to store the "data dictionary" (large typedef) but that doesn't really help the issue.
    From an architectural sense, it makes things easier for me because I have much fewer wires to pass around most of my data is in one place.
    > Or you could pass a queue reference to the subVIs and have the queue be made of of elements that are the large type definition.
    Actually, I'm using a data reference right now, which is somewhat analogous to what you're suggesting. (Maybe not? I also use queues and notifiers depending on the situation.) I haven't really seen this technique help the issue; I'm still noticing the large delays, but only when editing the typedefs.
    The only way I've really found relief is to separate the large typedef into smaller ones and pass them around separately. This is kind of a pain because it means I have many more references to data structures to keep track of.
    > If this is causing major problems, let me know, and I'll pass along your concerns to R&D.
    Actually, if I'm to be honest, it really is starting to become a hassle. I hit apply and end up working on something else for a few minutes while the compiler chugs away. I'd be really interested in an improvement in this area. If it makes things easier, I can discuss this via email and upload an application I'm working on as an example. (Multiple large apps I'm working on exhibit this behavior)
    Thanks again for your help.
    Regards,
    Jim

  • Safari on ios7 over ipad4 is often lag and delay when opening Thai webpage

    Safari on ios7 over ipad4 ,also other ios7 device , is often lag and delay when open thai webpage with large content
    For example; http://drama-addict.com/2013/09/30/สี่คูณสามไม่เท่ากับสาม/
    This thai-ios7 lag is very annoying, it had never happened on ios6 or ios5 or even ios4.
    Fix this problem immediately

    Safari on ios7 over ipad4 ,also other ios7 device , is often lag and delay when open thai webpage with large content
    For example; http://drama-addict.com/2013/09/30/สี่คูณสามไม่เท่ากับสาม/
    This thai-ios7 lag is very annoying, it had never happened on ios6 or ios5 or even ios4.
    Fix this problem immediately

  • Mozilla constintly is not responding , and delaying when im typing. ever since i downloaded this new version.

    it constantly is not responding , and delaying when im typing. ever since i downloaded this new version.

    The Firefox pop-up blocker is usually very effective for blocking pop-ups generated by websites, but it sounds like you may have picked up some Malware that is generating those pop-ups from you own PC.
    Install, update, and run these programs in this order. They are listed in order of efficacy.<br />'''''(Not all programs detect the same Malware, so you may need to run them all to solve your problem.)''''' <br />These programs are all free for personal use, but some have limited functionality in the "free mode" - but those are features you really don't need to find and remove the problem that you have.<br />
    ''Note: If your Malware infection is bad enough and you are mis-directed to URL's other than what is posted, you may have to use a different PC to download these programs and use a USB stick to transfer them to the afflicted PC.''
    Malwarebytes' Anti-Malware - [http://www.malwarebytes.org/mbam.php] <br />
    SuperAntispyware - [http://www.superantispyware.com/] <br />
    AdAware - [http://www.lavasoftusa.com/software/adaware/] <br />
    Spybot Search & Destroy - [http://www.safer-networking.org/en/index.html] <br />
    Windows Defender: Home Page - [http://www.microsoft.com/windows/products/winfamily/defender/default.mspx]<br />
    Also, if you have a search engine re-direct problem, see this:<br />
    http://deletemalware.blogspot.com/2010/02/remove-google-redirect-virus.html

  • My Defined brush duplicates itself over and over when applied to any image!!!??

    Hi there, I recently loaded in my signature for my photography and each time I click the signature to apply it to an image it appears fine, however when it is applied to the image it is replicated about 6 times in a pattern effect!
    Any suggestions?

    Thanks so much! I figured it out!
    Date: Wed, 24 Nov 2010 20:16:19 -0700
    From: [email protected]
    To: [email protected]
    Subject: My Defined brush duplicates itself over and over when applied to any image!!!??
    Make sure the airbrush is off and check the other settings as indicated below.
    http://forums.adobe.com/servlet/JiveServlet/showImage/49162/pse-brush.png
    MTSTUNER
    >

  • Z10 - High CPU and Battery Usage with BBM

    I recently updated my Z10 (UK and EE Carrier) to 10.2.1.3062 and every day or so I am getting very high CPU and Battery Usage with BBM running in the background.
    I have never used BBM and have no active or past conversations or contacts.
    This morning, it used around 60% battery in under 3 hours, with 95% of that time sat at 'idle' in my pocket.
    Sometimes its after I have connected it to my car stereo (charging and streaming music via USB) on an Alpine CDA-117Ri, but I dont think thats a cause.
    Some screen grabs:
    [URL=http://s46.photobucket.com/user/hoopsontoast/media/IMG_20150126_095930_zpsj3haccgs.png.html][IMG]htt...
    [URL=http://s46.photobucket.com/user/hoopsontoast/media/IMG_20150124_230003_zpshi2dpkfo.png.html][IMG]htt...

    You're not alone.
    Please read this post here:  http://supportforums.blackberry.com/t5/BBM-for-BlackBerry/BBM-is-draining-my-Battery/m-p/3039915#M52...
    and contact BBM support as suggested to send logs. BBM Support is working to determine the cause of this.
    Please post over in that thread so we can keep all related in one place.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Parallels takes high CPU and makes fan go 6000RPM when device connected

    I'm running Mac OS 10.5.5 on an Early 2008 white base Macbook, with Boot Camp and Parallels (which runs my Boot Camp partition) so I can use Windows XP, which I need for some XP applications I need that don't work in Crossover.
    I usually keep Parallels running, with XP paused (since I occasionally need it and don't want to wait for it to boot and drain my battery). If I plug in a USB device, such as my wireless mouse or external hard drive, Parallels asks me if I want to connect the device to the XP system, but since I'm usually using OS X, I keep Parallels hidden. So, I don't see the prompt. Parallels then takes 100% CPU and forces my fan to increase to 6000+RPM from the high temperatures it creates. Even though the system is paused, when I plug in a device, it takes 100% CPU simply for having the prompt dialog box open. Any way to fix this?
    I have a base Macbook (Early 2008) upgraded to 4GB RAM (so I could actually use Parallels without both the systems being really slow).
    On another note, is it more battery-consuming to keep XP paused, or to shut it down altogether and boot it up later?
    Thanks.
    Message was edited by: ltxenodite

    Make sure you've updated to the latest version Parallels, and you should probably consider posting your question in the Parallels forums:
    http://forums.parallels.com

  • Bridge crashes when applying metadata

    I'm seeking guidance, but let me preface this post with some information:
    CS6 via Creative Cloud
    All applications up to date via Adobe Application Manager
    All Windows Updates applied including drivers.
    Currently running Bridge 5.0.2.4
    Computer is:
    Win 7 Pro (64 bit)
    Core i5
    12 Gb RAM
    NVIDIA GeForce 310
    I have used CS6 for months prior to this issue starting without incident.
    I have tried moving the data to different drives.
    I have checked/cleared/reset file permissions.
    I have run drive error checks.
    I have uninstalled/CC cleaner/reisntalled all Adobe products multiple times.
    I have run Bridge in 32-bit and 64-bit modes.
    I have tried to reset preferences and other "Ctrl" startup options.
    I have tried to reset preferences and other "Ctrl" startup options after selecing "Run As Administrator".
    I manually deleted the ".BridgeCache" and ".BridgeCacheT" files from the folder of photos.
    Prior to this crashing problem I had already sorted and begun to apply ratings to files (Reject and Start ratings) in this folder without incident.  I even applied metadata (Keywords) to a portion of the 1,321 photos in a folder without incident.  The problem started when I came back the next day and started up work again.  There had been no updates or restarts to the computer.  The only thing that I think updated was Adobe Acrobat, but I cannot be sure.  When I opened Bridge and began to apply Keywords to files the program simply locked up and immediately crashed.  The Windows dialog box did not have any information or options for a crash report.
    This is a normal workfolw that I utilize on a regular (weekly/monthly) basis and why the crashing is happening is beyond me.  I have attempted to troubleshoot many different ways.  Of particular note I when to a different folder of photos that had never been worked on before with Bridge and was able to apply the same workflow without incident.
    Here is an excerpt from the Windows Event Viewer:
    Faulting application name: Bridge.exe, version: 5.0.2.4, time stamp: 0x50d9a019
    Faulting module name: ntdll.dll, version: 6.1.7601.17725, time stamp: 0x4ec4aa8e
    Exception code: 0xc0000374
    Fault offset: 0x00000000000c40f2
    Faulting process id: 0x12d0
    Faulting application start time: 0x01ce461c31a0ba90
    Faulting application path: C:\Program Files\Adobe\Adobe Bridge CS6 (64 Bit)\Bridge.exe
    Faulting module path: C:\Windows\SYSTEM32\ntdll.dll
    Report Id: 60e3cf2b-b210-11e2-834c-f04da2db0ae0
    At this time I cannot difinitively confirm that the files themselves are causing the issue but I will attempt some additional troubleshooting.  At this point I'm not overly impatient because I've already lost the revenue opportunity for selling these photos to customers because the error first started several days ago (4/28/2013 09:31:35 PM was first crash).  However, at this point I am will not entertain the wasting of time by uninstalling all Adobe products, running CC cleaner, and re-installing the products I use.
    Does anyone have any suggestions for me to try for resolution or troubleshooting? 

    I'm wondering if it could be the SD card?  Mine was a cheap brand and I wonder if the invalid handler could be the issue.
    No experience with all of this, use a Mac, Canon and a CF card that I place in a Card reader and use import via Adobe Photodownloader.
    But here is my question, what do you do you with the SD card when your files are copied to the system?
    My workflow is to import the files (including convert to DNG and back up original Raw to second disk, renaming and copyright template)
    But when I have checked my files are OK on the system and I need the CF card for a new job I always put the card back in the camera and use the camera menu itself to format the card.
    I long ago stopped using the delete all function because this used to build up certain data files and that is not the case when you use format.
    I do so every time and while I have used a lot of CF cards (from 128 MB in 2001 to current 32 GB Sandisk Extreme Pro UDMA 7) The only problems I had was losing them.
    Never managed to break one down (not even in the washing machine…) and from about 2003 I always have used the format method for every time I needed to remove the files from the card.
    I don't know much about the difference between inferior manufactures and the superior brands, I find it hard to believe that this would cause your problem alone (If you did not format I would try that first).
    Having said that I would never choose to use other then top quality cards like Lexar and Sandisk and also the fastest or the nearly fastest.
    If you have a cheap compact camera (but then you probably would not visit this forum…) I can image (but do not approve) you include a cheap SD card also. But spending up to 1000 dollar or much more for a nice dSLR and save money on a cheap card instead of using a trustful medium to write your precious files on is not the best workflow.
    CF cards and SD card are very cheap nowadays.
    To compare, the 128 MB in 2001 was about 600 dollar, the super fast and reliable Sandisk Extreme Pro 32 GB was around 200 dollars.
    You can do the math yourself but on my calculator this means three times as cheap while 256 times more space…

  • File names in Assignments Panel change when applying metadata

    I have just discovered that when you apply metadata through the "User Content Info" window, whatever title you place in the "Document Title" field changes the name that appears in the Assignments panel. The problem with this is that we have asked our users to apply metadata using this window and to put the Product Title in the Document Title field. I had no idea that this would affect the Assignments panel. Yikes!

    Brian
    Yes that would be a pain if you had to do it. The good news is you don't. There a plenty of ways to get to the pics:
    1. *Drag and Drop*: Drag a photo from the iPhoto Window to the desktop, there iPhoto will make a full-sized copy of the pic.
    2. *File -> Export*: Select the files in the iPhoto Window and go File -> Export. The dialogue will give you various options, including altering the format, naming the files and changing the size. Again, producing a copy.
    3. *Show File*: Right- (or Control-) Click on a pic and in the resulting dialogue choose 'Show File'. A Finder window will pop open with the file already selected.
    To upload to MySpace or any site that does not have an iPhoto Export Plug-in the recommended way is to Select the Pic in the iPhoto Window and go File -> Export and export the pic to the desktop, then upload from there. After the upload you can trash the pic on the desktop. It's only a copy and your original is safe in iPhoto.
    This is also true for emailing with Web-based services. If you're using Gmail you can use THIS
    If you use Apple's Mail, Entourage, AOL or Eudora you can email from within iPhoto.
    If you use a Cocoa-based Browser such as Safari, you can drag the pics from the iPhoto Window to the Attach window in the browser.
    Or, if you want to access the files with iPhoto not running, then create a Media Browser using Automator (takes about 10 seconds) or use THIS
    Also, for 10.5 users: If you use the extended Open or Attach dialogue (with Column View) you can scroll to the bottom of the Shortcuts and find the Media browser there. Select any pic you want from there.
    Regards
    TD

  • High CPU in 2960 when not logged

    Hello,
    I've noticed a strange behaviour in my 2960s regarded to CPU.
    CPU level is very high, 70-75% when nobody is logged by vty or console, but it drops drastically to 40% when sombebody logs in. I've been able to discover that this is due to CPU interrupt level, as it shows the output of sh process cpu sort 5sec, just logged in.
    RH0A01-SW1-10G#sh proces cpu sorted 5sec
    CPU utilization for five seconds: 68%/37%; one minute: 67%; five minutes: 50%
    ...Some seconds after logged in...
    RH0A01-SW1-10G#sh proces cpu sorted 5sec
    CPU utilization for five seconds: 35%/11%; one minute: 52%; five minutes: 48%
    Does anybody knows the reason for this?
    Thanks!

    There were critical HIGH CPU bugs with the 12.2(58)SE and SE1 as well as 15.0(1)SE and SE1.  Cisco has managed to  "fix" the issues with the respective SE2 releases BUT now you'll see the cosmetic bug after that.  The cosmetic bug will show that you still have HIGH CPU but that's just it.  It's cosmetic.
    If you ain't running the IOS I've mentioned above, what is the complete IOS you are running?

  • High CPU and Hanging iTunes

    If you're one of the folks who has been experiencing a hang in iTunes and high CPU, I have finally managed to break in with a debugger and get a call stack on the high CPU threads. There are two of them and they are both doing the same thing:
    0:012> kpn
    # ChildEBP RetAddr
    00 06f0fc78 7c90d85c ntdll!KiFastSystemCallRet
    01 06f0fc7c 7c8023ed ntdll!NtDelayExecution+0xc
    02 06f0fcd4 771db8fc kernel32!SleepEx+0x61
    03 06f0fe10 771dbcdc wininet!GlobalDataInitialize+0x79
    * WARNING: Unable to verify checksum for iTunes.exe
    * ERROR: Module load completed but symbols could not be loaded for iTunes.exe
    04 06f0fe24 0047a6bd wininet!InternetOpenA+0x1a
    WARNING: Stack unwind information not available. Following frames may be wrong.
    05 06f0ff8c 0046fae8 iTunes+0x7a6bd
    I obviously don't have symbols for iTunes.exe, but my symbols for wininet are lining up fine. The problem is occuring in GlobalDataInitialize when iTunes calls it.
    I am posting this primarily for Apple's use. I have a dump file if anyone's interested.
    Jim

    Okay, didn't take much time to figure out what's really going on.
    There are three iTunes threads that are waiting on critical sections. All three of those threads are the same. Once again, obviously no symbols for iTunes.
    ChildEBP RetAddr
    06c0d9e0 7c90e9c0 ntdll!KiFastSystemCallRet
    06c0d9e4 7c91901b ntdll!ZwWaitForSingleObject+0xc
    06c0da6c 7c90104b ntdll!RtlpWaitForCriticalSection+0x132
    06c0da74 0043fea2 ntdll!RtlEnterCriticalSection+0x46
    WARNING: Stack unwind information not available. Following frames may be wrong.
    06c0da88 0047abf8 iTunes+0x3fea2
    06c0daa4 004767e1 iTunes+0x7abf8
    06c0dac4 00477e22 iTunes+0x767e1
    06c0db84 0040dcba iTunes+0x77e22
    06c0f72c 0073ede0 iTunes+0xdcba
    06c0ff54 0073f360 iTunes+0x33ede0
    06c0ff70 0062765d iTunes+0x33f360
    06c0ff8c 0046fae8 iTunes+0x22765d
    06c0ffa0 0075c0a0 iTunes+0x6fae8
    06c0ffb4 7c80b50b iTunes+0x35c0a0
    Two of the threads that are holding the critical section are the same stack that I posted in my original post. The third is this:
    0:010> kp
    ChildEBP RetAddr
    06d0f3f0 7c90e7c8 ntdll!KiFastSystemCallRet
    06d0f3f4 77ddd796 ntdll!ZwSetValueKey+0xc
    WARNING: Stack unwind information not available. Following frames may be wrong.
    06d0f438 77ddecdf advapi32!RegEnumKeyW+0x14d
    06d0f49c 771d2f34 advapi32!RegSetValueExA+0xf8
    06d0f4bc 771d2f02 wininet!REGISTRY_OBJ::SetValue+0x19
    06d0f4d8 771b8bc3 wininet!IE3_REGISTRYSET::SetLimit+0x29
    06d0f4e8 771b7f49 wininet!IE3_REGISTRYSET::FixLegacySettings+0x25
    06d0fc78 771b83bb wininet!CConMgr::GetCacheConfigInfo+0x163
    06d0fc94 771b837f wininet!CConMgr::ConfigureCache+0x30
    06d0fc9c 771b836a wininet!CConMgr::Init+0xa
    06d0fca4 771b8db4 wininet!CConMgr::CConMgr+0x2c
    06d0fcc8 771b75c4 wininet!InitGlobals+0x12a
    06d0fcd0 771b9fd8 wininet!GetUrlCacheHeaderData+0xa
    06d0fe10 771dbcdc wininet!GlobalDataInitialize+0x15a
    06d0fe24 0047a6bd wininet!InternetOpenA+0x1a
    06d0ff8c 0046fae8 iTunes+0x7a6bd
    06d0ffa0 0075c0a0 iTunes+0x6fae8
    06d0ffb4 7c80b50b iTunes+0x35c0a0
    If I dig into this memory, I can see that it's setting a CacheLimit key. Unfortunately, I can't stay broken into iTunes long enough to know if this is still processing or not. If I try to continue and then break again, iTunes just quits.
    This repros when I click UPDATE in podcasts. I can repro it every time.
    Jim

  • Very high CPU and fans running fast in idle state on 2008 non-unibody Macbo

    Hi everyone,
    I recently purchased a 2008 MacBook with 2.4 GHz, 2GB RAM, and 160 GB hard drive off of craigslist. Now when I turn it on and leave it idle or even run any activity, the CPU skyrockets to around 66% and the fans are running very hot and fast. I checked activity monitor and nothing is running that indicates this high CPU. This MacBook does have AppleCare on it until August 2011 and I will probably bring it in to have it checked out but would like to know what you think.
    Thanks!

    ok the abttery charges to 100% now so its alright but sometimes the charger turns to a dim green for some reason and doesnt stay bright only until I unplug and plug it back in again.
    in regards to the random CPU spike, here is a screenshot of activity monitor, hopefully you guys can tell me what mds is..
    [IMG]http://i248.photobucket.com/albums/gg175/modernage013/Screenshot2010-06-27at1211 20AM.png[/IMG]

  • SCCM 2012 SecSite - High CPU and many chucks

    H all,
    i've a SCCM 2012 Secondary Site with SQL 2008 R2 Express Version below an Primary Site.
    The sqlservr.exe and the smsexec.exe on the SecSite have high CPU load the whole time.
    Also the statesys.log is increasing very fast (100 KB per second) with the following entries:
    total chucks loaded (0)  $$<SMS_STATE_SYSTEM><10-18-2012 01:45:34.973+240><thread=3328 (0xD00)>
    total chucks loaded (0)  $$<SMS_STATE_SYSTEM><10-18-2012 01:45:34.973+240><thread=3328 (0xD00)>
    total chucks loaded (0)  $$<SMS_STATE_SYSTEM><10-18-2012 01:45:34.973+240><thread=3328 (0xD00)>
    total chucks loaded (0)  $$<SMS_STATE_SYSTEM><10-18-2012 01:45:34.973+240><thread=3328 (0xD00)>
    total chucks loaded (0)  $$<SMS_STATE_SYSTEM><10-18-2012 01:45:34.973+240><thread=3328 (0xD00)>
    total chucks loaded (0)  $$<SMS_STATE_SYSTEM><10-18-2012 01:45:34.973+240><thread=3328 (0xD00)>
    total chucks loaded (0)  $$<SMS_STATE_SYSTEM><10-18-2012 01:45:34.973+240><thread=3328 (0xD00)>
    What could be the problem? Has Chuck Norris something to do with it? :D
    Thanks a lot for your help.

    Yes, I know this is an old post, I’m cleaning up old post, did you get this fixed, if so what was the solution?
    Since no one has answer this post, I recommend opening  a support case with CSS as they can work with you to solve this problem.
    Garth Jones | My blogs: Enhansoft and
    Old Blog site | Twitter:
    @GarthMJ

  • High CPU and memory use on Skype 7.4

    Hello Skype Community,
    Since we have release Skype 7.4 for Windows desktop we have seen a small number of users reporting sometimes high CPU usage and memory consumption by the Skype app.
    We are aware of the issue and are working to identify the root causes and identify all the conditions (internal and external) leading to abnormal memory and processor usage. Thanks for your reports confirming our internal telemetry.
    I am going to update this topic weekly with an update (or earlier should any news arise).

    For further investigation of high CPU issues- Download process manager from https://technet.microsoft.com/en-us/library/bb896645.aspx- Open the filter window <filter><filter>- add the filter <processname> <is> <skype.exe>- close the filter window- clear events <ctrl-x>- start capturing if it is not capturing already with <file><capture events>- wait for about 10 seconds- stop capturing events <file> <capture events> You should have only a few 100 events, if you have more(even 10s of thousands)  you can find out under <tools> <any summary> what has taken a lot of time and post your findings in the thread for further info. I found the root cause for my high CPU problem by doing this:http://community.skype.com/t5/Windows-desktop-client/High-CPU-7-5-Solved/m-p/3992130

Maybe you are looking for

  • Option Arrow no longer advances cursor in text

    I'm using OS X Mavericks 10.9.1, and rely on keyboard shortcuts a lot.  Recently, for some reason, the Option+Left Arrow and Option+Right Arrow have stopped advancing the cursor by word.  This used to work in all text controls, and now works in none.

  • I can't reject call from this number : 00 000000000

    Hi, Can someone help me with this ? I've got an iPhone 4S with a french mobile phone operator. Twice a day, I receive a call from this number : 00 000000000 (only zeros). I can't reject the call, and there is never a message left on my voicemail. My

  • Replacement FM...

    Hai Friends , Good Evening ......... Can Any one give the Alternate FM(Replacement) For These FM, LOG_SYSTEM_GET_RFC_DESTINATION, HELPSCREEN_NA_CREATE CONVERT_DATE_INPUT, DISPLAY_BASIC_LIST TRANSFER_NAMES_TO_FIELDS, HELP_VALUES_GET_NO_DD_NAME ISO_TO_

  • Oracle 7.x driver

    Sir, As it specified in the document I am trying to connect local 0racle server 7.0 using Oralce jdbc 7.x driver. I am getting "The network Adapter could not establish the connection" Please help me raghu null

  • Macbook is stuck loading iCloud after system update

    I updated my computer last night and after it rebooted iCloud asked me for my password. After trying to enter it several times I ended up clicking "forgot password", ever since it has been stuck on the loading screen. I have tried to force close but