Is there a way to improve computer performance during TM backup?

I have a MacBook Pro 2.4GHz Intel Core 2 Duo with 2GB of RAM running 10.5.7 and every time Time Machine starts a backup (about once an hour) my computer becomes unresponsive. I can't type, copy, paste, switch applications without a huge hang up. For example, it took me a total of 7 minutes to get to this thread because Time Machine started a backup and I was stuck in the Finder trying to switch to Safari. Once Safari finally showed up, I got a beach ball.
When TM isn't running, my computer is restored to a responsive state.
I love using Time Machine, because it's a great way to backup everything. Short of turning it off, is there anything else I can do to prevent my computer from going in to lockdown once an hour?
I'm backing up wirelessly to a MyBook USB drive btw.

Just an update to those who may stumble across this thread.
This issue has not been solved. In fact, I could say it's gotten much much worse. It seems that I can't type, copy/paste or perform even the most basic of tasks while a backup is in progress.
I've downloaded the Time Machine Backup Widget, and it shows a few oddities that may/may not be significant. On one particular day the log shows a request for 1.3GB and then for the next backup (1 hour later) a request for another 2GB in size. Each of the hourly backups seemed to be of similar size requests for that day. What's unusual is that for that particular day, I wasn't really working on anything of significant size at all. I'm a web developer, so I may modify a 1MB file throughout the day, for several hours, but I'm no where near generating modifications that would equate to 8GB a day. My first thought was that Time Machine might be swapping out a weekly/monthly backup at that time - but then the same requests seem to be coming the following three days. Does it take Time Machine that long to perform a weekly backup?
At Time Machine's current rate, my hard drive is filling up pretty fast. To the tune of 8GB a day. The logs seem to also indicate that Time Machine is only copying 2.1MB a day. Again, that falls in line with what I would expect with my activity, but the hard drive seems to be dedicating the "requested" rather than the (smaller) copied amount indicated in the log files.
Backup frequency also seems to be higher than normal on some days. Today, for example, Time Machine has been backing up about once every 20 minutes or so. Right now, I'm on a backup, at various times my typing has been affected and according to the backup status it has been backing up 2.4MB of 2.5MB for the past 22 minutes. It just barely finishes and then it starts right back up again.
I've kept Activity monitor running for the past couple of weeks and as suspected, my CPU reaches maximum capacity and my disk activity goes through the roof during a backup. My external wireless mouse and anything connected to my computer seems to become unresponsive. The trackpad and keyboard go next. Then - typically - I see the beach ball and I know I'm up for an unscheduled computer break. This is most annoying when I'm trying to type an email and a backup kicks in just before I have a chance to click send. One time it took me 10 minutes for my click to be recognized and an email could be queued to send. It took another 3 full minutes for the email to actually go out.
For me, backups are essential. I have resisted turning this feature off, simply because I spent so much money to get it all to work (upgraded OS, purchased a new router and a new backup HD).
I hope Apple releases more control over the backup features and the backup frequency. I'd love to see an option to have backups happen only when CPU cycles are at idle for a few minutes, which would indicate that the user isn't on the computer. Or perhaps give users the ability to set a less aggressive backup schedule, perhaps every four hours or so, rather than the aggressive hourly backups I'm stuck with now.
Time Machine's current status: "finishing backup." has been it's status for at least 10 minutes, that combined with the outlandish 45 minute time it took to copy 2.5MB of data means I have just 5 minutes before my next backup is scheduled to start. There has to be a better way.

Similar Messages

  • Is there a way to improve the performance of a report group?

    Hi gurus,
    Is there a way to improve the performance of a report group? 
    Points will be given later....
    Thanks!

    Hi there,
    Thank you for your response. I thought there's no answer for this issue and planning to change it to ALV.
    I looked at the codes and debugged it. After the select statement from ZZUWT table (customized), there's a loop that takes much time (10-12mins) for 1000 records. and several nested perform routines. It's a standard program so I'm hesitant to edit it.
    I'll be checking on the primary keys. If it's ok, may I ask for your assistance in this part? Though I'm not that familiar and haven't tried creating a report painter before.
    Thanks anyway...:D

  • Is There any way to improve the performance on this code

    Hi all can any one tell me how to improve the performance of this below code.
    Actually i need to calculate opening balance of gl account so instead of using bseg am using bsis
    So is there any way to improve this code performance.
    Any help would be appreciated.
    REPORT  ZTEMP5 NO STANDARD PAGE HEADING LINE-SIZE 190.
    data: begin of collect occurs 0,
           MONAT TYPE MONAT,
           HKONT TYPE HKONT,
           BELNR TYPE BELNR_D,
           BUDAT TYPE BUDAT,
           WRBTR TYPE WRBTR,
           SHKZG TYPE SHKZG,
           SGTXT TYPE SGTXT,
           AUFNR TYPE AUFNR_NEU,
           TOT   LIKE BSIS-WRBTR,
    end of collect.
    TYPES: BEGIN OF TY_BSIS,
           MONAT TYPE MONAT,
           HKONT TYPE HKONT,
           BELNR TYPE BELNR_D,
           BUDAT TYPE BUDAT,
           WRBTR TYPE WRBTR,
           SHKZG TYPE SHKZG,
           SGTXT TYPE SGTXT,
           AUFNR TYPE AUFNR_NEU,
    END OF TY_BSIS.
    DATA: IT_BSIS TYPE TABLE OF TY_BSIS,
          WA_BSIS TYPE TY_BSIS.
    DATA: TOT TYPE WRBTR,
          SUMA TYPE WRBTR,
          VALUE TYPE WRBTR,
          VALUE1 TYPE WRBTR.
    SELECTION-SCREEN: BEGIN OF BLOCK B1.
    PARAMETERS:  S_HKONT LIKE WA_BSIS-HKONT DEFAULT '0001460002' .
    SELECT-OPTIONS: S_BUDAT FOR WA_BSIS-BUDAT,
                    S_AUFNR FOR WA_BSIS-AUFNR DEFAULT '200020',
                    S_BELNR FOR WA_BSIS-BELNR.
    SELECTION-SCREEN: END OF BLOCK B1.
    AT SELECTION-SCREEN OUTPUT.
      LOOP AT SCREEN.
        IF SCREEN-NAME = 'S_HKONT'.
          SCREEN-INPUT = 0.
          MODIFY SCREEN.
        ENDIF.
      ENDLOOP.
    START-OF-SELECTION.
      SELECT MONAT
             HKONT
             BELNR
             BUDAT
             WRBTR
             SHKZG
             SGTXT
             AUFNR
             FROM BSIS
             INTO TABLE IT_BSIS
             WHERE HKONT EQ S_HKONT
             AND   BELNR IN S_BELNR
             AND   BUDAT IN S_BUDAT
             AND   AUFNR IN S_AUFNR.
    *  if sy-subrc <> 0.
    *    message 'No Data' type 'I'.
    *  endif.
      SELECT SUM( WRBTR )
             FROM BSIS
             INTO COLLECT-TOT
             WHERE HKONT EQ S_HKONT
             AND BUDAT < S_BUDAT-LOW
             AND AUFNR IN S_AUFNR.
    END-OF-SELECTION.
      CLEAR: S_BUDAT, S_AUFNR, S_BELNR, S_HKONT.
      LOOP AT IT_BSIS INTO WA_BSIS.
    IF wa_bsis-SHKZG = 'H'.
       wa_bsis-WRBTR = 0 - wa_bsis-WRBTR.
    ENDIF.
        collect-MONAT  = wa_bsis-monat.
        collect-HKONT  = wa_bsis-hkont.
        collect-BELNR  = wa_bsis-belnr.
        collect-BUDAT  = wa_bsis-budat.
        collect-WRBTR  = wa_bsis-wrbtr.
        collect-SHKZG  = wa_bsis-shkzg.
        collect-SGTXT  = wa_bsis-sgtxt.
        collect-AUFNR  = wa_bsis-aufnr.
        collect collect into  collect.
        CLEAR: COLLECT, WA_BSIS.
      ENDLOOP.
      LOOP AT COLLECT.
        AT end of HKONT.
          WRITE:/65 'OpeningBalance',
                 85  collect-tot.
          skip 1.
        ENDAT.
        WRITE:/06 COLLECT-BELNR,
               22 COLLECT-BUDAT,
               32 COLLECT-WRBTR,
               54 COLLECT-SGTXT.
        AT end of MONAT.
          SUM.
          WRITE:/ COLLECT-MONAT COLOR 1.
          WRITE:32 COLLECT-WRBTR COLOR 1.
          VALUE = COLLECT-WRBTR.
          SKIP 1.
        ENDAT.
        VALUE1 = COLLECT-TOT +  VALUE.
        AT end of MONAT.
          WRITE:85 VALUE1.
        ENDAT.
      endloop.
      CLEAR: COLLECT, SUMA, VALUE, VALUE1.
    TOP-OF-PAGE.
      WRITE:/06 'Doc No',
             22 'Post Date',
             39 'Amount',
             54 'Text'.
    Moderator message : See the Sticky threads (related for performance tuning) in this forum. Thread locked.
    Edited by: Vinod Kumar on Oct 13, 2011 11:12 AM

    Hi Ben,
    both BSIS selects would become faster if you can add Company Code BUKRS as 1st field of WHERE clause, because it's the 1st field of primary key and HKONT is the 2nd field of primary key.
    If you have no table index with HKONT as 1st field it's a full database access.
    If possible, try to add BUKRS as 1st field of WHERE clause, otherwise ask for an additional BSIS index at your basis team.
    Regards,
    Klaus

  • HT201822 Is there a way to improve Apple's default "ignore accidental trackpad input" function?

    I find I frequently end up typing in the wrong place and/or deleting text because the size of the trackpad leads me to touch it accidentally, usually with my right hand below the thumb. Is there any way to improve on the built in function in Lion?

    http://www.apple.com/feedback/macosx.html

  • HT201335 Why the transmition to the tv from my iPad is slow cutting off ... Is there a way to improve connectivity ?

    Why the transmition to the tv from my iPad is slow cutting off ... Is there a way to improve connectivity ?

    Intermittent problems are often a result of interference. Interference can be caused by other networks in the neighbourhood or from household electrical items.
    You can download and install iStumbler (NetStumbler for windows users) to help you see which channels are used by neighbouring networks so that you can avoid them, but iStumbler will not see household items.
    Refer to your router manual for instructions on changing your wifi channel or adjusting your multicast rate.
    There are other types of problems that can affect networks, but this is by far the most common, hence worth mentioning first. Networks that have inherent issues can be seen to work differently with different versions of the same software. You might also try moving the Apple TV away from other electrical equipment.

  • Is there any way of improving compatibility between ipad 4 and windows xp                                                     p

    is there any way of improving compatibility beween ipad and windows xp

    Hi Smokey0422,
    Although iTunes works with Windows XP, iCloud is not supported - so that does limit the functionality somewhat.
    See the resources for your iPad at the following site:
    http://www.apple.com/support/ipad/
    See the setup instructions below:
    http://www.apple.com/icloud/setup/pc.html
    Cheers,
    Judy

  • HT5429 Map Problem: I can't see the roads in Standard view. Is there any way to improve this serious problem?

    Map Problem: I can't see the roads in Standard view. Is there any way to improve this serious problem?

    Hi Ben,
    both BSIS selects would become faster if you can add Company Code BUKRS as 1st field of WHERE clause, because it's the 1st field of primary key and HKONT is the 2nd field of primary key.
    If you have no table index with HKONT as 1st field it's a full database access.
    If possible, try to add BUKRS as 1st field of WHERE clause, otherwise ask for an additional BSIS index at your basis team.
    Regards,
    Klaus

  • Can you help I was having problems with my iPod so I restored it but I accidentally set it up as a new iPod is there any way to restore it from an old  backup when I right click iPod in iTunes there isn't one anyway to recover one or find it on computer

    Hi can you help I was having problems with my iPod so I restored it but I
    accidentally set it up as a new iPod is there any way to restore it from an old
    backup when I right click iPod in iTunes there isn't one anyway to recover one
    or find it on computer

    The following says how to restore from backup.
    iOS: How to back up
    If you go to iTunes>Preferences>Devices you can see if you have an iTunes backup. You need one dated before or the exact time you started the restore.

  • HT3728 My Time Capsule is working fine with ethernet connection, but it is no longer working with wifi, probably because of my wrong setting; is there a way to reset wifi setting without losing backuped data? Thanks you all

    y Time Capsule is working fine with ethernet connection, but it is no longer working with wifi, probably because of my wrong setting; is there a way to reset wifi setting without losing backuped data? Thanks you all

    Giancarlo Messalli wrote:
    1) are you sure a reset holding the reset button will not delete my data?
    Absolutely sure.. There is no connection at all.. reset is only the router side of the TC.
    For the hard disk to be erased you need to access the airport utility disk page.. request erase and confirm the operation.
    2) I can access to time capsule by ethernet but I am not able to input the corret setting by myself
    Thank you again
    I am uncertain why if you have access you cannot change settings.. but that is why you reset things so any of those problems should be fixed.
    Here is the Apple info on reset.
    http://support.apple.com/kb/ht3728
    And here is the quote from the horse's mouth so to speak.
    Factory default reset: Perform this reset if you wish to repurpose the AirPort Base Station or Time Capsule and want to remove all personal profiles and settings first. This reset resets the device to its state when you first purchased it. Data stored on internal or external hard drives connected to the device will not be erased. If you choose, you may manually erase the hard drive using AirPort Utility.

  • Is there a way to get back a previous iTunes backup file than the most recent Backup?

    I did a manual backup and wanted to restore the iPhone, but iTunes forced me to update the iPhone before allowing me to restore the iPhone...
    After updating, I realised that iTunes created a backup automatically without confirming with me, and now the latest backup file is not the one I wanted.
    Is there a way to get back the backup file I manually backup?

    Is there a way to get back a previous iTunes backup file than the most recent Backup?
    No, to the best of my knowledge the device backup area is simply updated with new information each time the device is backed up so there are no previous versions preserved. Once a backup has been used to restore a device however it gets locked and dated so that you could return back to that snapshot at a later date.
    Your manual backup should have simply updated the backup with any new data since the last automatic backup. Upgrading should not have overwritten a backup taken just before the upgrade with a, presumably, empty state. Have you actually tried to restore the current backup that is available? It may have what you want after all. You might like to try backing up the current state of the device to iCloud first, or if you have access to another computer back it up to that.
    N.b. I always disable automatic syncing of devices so that I am in better control of when data starts to be written, and in which direction it flows.
    ttt2

  • My iPhone was stolen. I can't replace my phone right now. Is there a way to take my photos from a backup of the iPhone and have them load on my IPad?

    I had my iphone stolen, and I cant replace it right now. Is there a way to extract pictures from my Iphone backup in itunes and restore the pictures to my ipad or Macbook Pro?

    I have this same problem.
    Were you ever able to find a solution to this?

  • I have a DVD project that takes about 14 hours to generate. Is there any way to periodically save it during encoding so power failures or other problems do not require a complete restart?

    I have a DVD project that takes about 14 hours to generate. Is there any way to periodically save it during encoding so power failures or other problems do not require a complete restart?

    No.  Are you saving the project as a disk image rather than burning directly to disk from iDVD?  If not then that's what I suggest you do.  That will separate the encoding process from the burn process to save time and disks if the encoding is bad.  It also lets you burn a second or third disk without having to encode again.
    OT

  • I upgraded to Ios5 and have lost my contacts and other app profiles - is there any way to get them back from the backup taken before the IOS5 process started?

    I upgraded to IOS5 and have lost my contacts and other app profiles - is there any way to get them back from the backup taken before the IOS5 process started?

    Thanks but have tried that - When I try to restore I get a -50 error and into a loop of taking another back up.  I took a copy of the back up before the IOS upgrade and have it stored on my desk top but I cannot get Itunes to restore to that back up
    Any ideas how I can do this?

  • My iPhone 4 running iOS 7.0.4 deleted all of my stored notes, I'm currently restoring to see if I can retrieve them, is there any way I can restore a specific saved backup?

    So, I just went into my iPhone notes (iPhone 4 iOS 7.0.4), and found that all my notes had been deleted. I did recdently change the mail account I was using, could that be the issue? I'm very worried as I had some bank details and other personal information stored in these notes. Is there any way I can select a specific stored backup to restore from?

    Well, in iTunes, if you had not changed to sync notes to Outlook, that would answer that question. I sync my notes to my Outlook and have never had an issue. The only thing you need to watch is your archive setting. If you have notes set to archive after a certain amount of time, you will find that after non-use on the iPhone, they can seem to disappear. They will just not sync back, but are kept in the archive of Outlook. They are never deleted unless you actually delete them.
    I'm glad you were about to find your notes.

  • My iCloud backup from my old phone shows incomplete is there a way to retrieve the data that I backup from my old phone even if it didn't complete . They told me that they would let if finish when I traded in my old phone. I want to restore it to new phon

    My iCloud backup from my old phone shows incomplete is there a way to retrieve the data that I backup from my old phone even if it didn't complete . They told me that they would let if finish when I traded in my old phone. I want to restore it to new phone. Even if it didn't complete how to I restore the 5 g that did backup

    Unfortunately you can't restore an incomplete backup.

Maybe you are looking for

  • ImageIcon can not be drawn and NullPointerException was thrown

    I have a dialog that displays list of items whose cell renderer is customized using ImageIcons. Permissions have been granted properly, I think. The dialog can be shown but it can not draw it's children element correctly. And java.lang.NullPointerExc

  • ITunes keeps crashing when trying to add music! WHY?!

    This is getting annoying!! I uninstalled itunes, reinstalled it. I uninstalled quicktime, reinstalled it. I did the whole path thing where you had to put "C\:program files\apple blah blah" and STILL NOTHING. Every single time I try to add a song onto

  • Is there will be any impact on chaging below property in config file

    Hi, I need one help on RequestValidation property in config file. I have Changed property in config file RequestValidation="true" from RequestValidation="false" .Please let us know is there is any impact on changing this property.If there is an impac

  • Why is the first outgoing ring muffled?

    I have a iPhone 4S. After updating to 5.0.1, outgoing calls have a muffled first ring. What would cause this? It's just annyoing.

  • Testing of the custom adapter

    Can someone help me in testing the custom adapter. I want to test it in eclipse rather then adding the debug statements.