Slow down in zfs filesystem creation

Solaris 10 10/09 running as VM on Vmware ESX server with 7 GB RAM 1 CPU 64 bit
I wondered if anyone had seen the following issue, or indeed could see if they could replicate it -
Try creating a script that creates thousands of ZFS filesystems in one pool.
For example -
#!/usr/bin/bash
for i in {1..3000}
do
zfs create tank/users/test$i
echo "$i created"
done
I have found that after about 1000 filesystems the creation time slows down massively and it can take up to 4 seconds for,each new filesystem to create within the pool.
If I do the same for ordinary directories (mkdir) then I have no delays at all.
I was under the impression that ZFS filesystem were as easy to create as directories (folders), but this does not seem to be the case.
This sounds like it could be a bug. I have been able to replicate it several times on my system, but need others to verify this.

Might be worth raising on the open solaris forums where theres a least a chance it will be read by a ZFS developer.

Similar Messages

  • ZFS with de-dupe slowing down...

    Hi all,
    I'm new to Solaris but am evaluating the de-dupe capabilities of Solaris 11.
    I have conifgured a Virtual Machine using VMware vSphere 5 with 8GB RAM and a 1.5TB disk and am slowly copying a few million PDFs into a SMB share in the ZFS pool from a remote server.
    It's been going well, I'm getting a dedup ratio of 3.3 but after copying 3.5TB of files, I've noticed it slowing down. Now it seems to copy really fast for around 5-6 seconds but will then pause for 10-15 seconds before carrying on for another 5-6 seconds etc...
    I'm using the default record size and running "top" doesn't indicate that I'm using any swap, neither do the performance stats in VMware.
    Any help/advice/pointers would be gratefully appreciated!
    Dave

    Thanks for the info. Here's the output of the zdb -DD command
    bucket allocated referenced
    refcnt blocks LSIZE PSIZE DSIZE blocks LSIZE PSIZE DSIZE
    1 12.6M 1.58T 1.08T 1.08T 12.6M 1.58T 1.08T 1.08T
    2 582K 72.8G 64.9G 64.9G 1.32M 169G 151G 151G
    4 295K 36.9G 34.1G 34.1G 1.47M 189G 174G 174G
    8 189K 23.6G 21.9G 21.9G 1.99M 255G 237G 237G
    16 97.2K 12.2G 11.3G 11.3G 2.06M 264G 245G 245G
    32 52.9K 6.62G 6.15G 6.15G 2.29M 293G 272G 272G
    64 27.5K 3.44G 3.21G 3.21G 2.35M 301G 280G 280G
    128 13.3K 1.66G 1.53G 1.53G 2.32M 297G 273G 273G
    256 5.75K 736M 672M 672M 2.05M 262G 240G 240G
    512 2.96K 379M 351M 351M 2.06M 263G 243G 243G
    1K 1.15K 147M 132M 132M 1.68M 215G 193G 193G
    2K 711 88.9M 78.7M 78.7M 1.73M 222G 196G 196G
    4K 103 12.9M 9.72M 9.72M 560K 69.9G 52.4G 52.4G
    8K 33 4.12M 3.76M 3.76M 374K 46.7G 42.5G 42.5G
    16K 7 896K 817K 817K 155K 19.4G 17.7G 17.7G
    32K 28 3.50M 3.10M 3.10M 1.03M 131G 116G 116G
    64K 23 2.88M 2.64M 2.64M 1.69M 217G 200G 200G
    128K 6 768K 750K 750K 1.31M 168G 164G 164G
    Total 13.9M 1.73T 1.22T 1.22T 39.0M 4.88T 4.10T 4.10T
    dedup = 3.36, compress = 1.19, copies = 1.00, dedup * compress / copies = 4.00
    By my calculation, that makes the dedup table 13.9M * 320 = 4448M = Approx 4.5GB
    Does that look right to you experts? That would indicate that my allocated RAM of 8GB should be plenty I think.

  • How to count number of files on zfs filesystem

    Hi all,
    Is there a way to count the number of files on a zfs filesystem similar to how "df -o i /ufs_filesystm" works? I am looking for a way to do this without using find as I suspect there are millions of files on a zfs filesystem that is causing slow performance sometimes on a particular zfs file system
    Thanks.

    So I have finished 90% of my testing and I have accepted _df -t /filesystem | awk ' { if ( NR==1) F=$(NF-1) ; if ( NR==2) print $(NF-1) - F }'_ as acceptable in the absence of a known built in zfs method. My main conern was with the reduction of available files from the df -t output as more files were added. I used a one liner for loop to just create empty files to conserve on space used up so I would have a better chance of seeing what happens if the available files reached 0.
    root@fj-sol11:/zfstest/dir4# df -t /zfstest | awk ' { if ( NR==1) F=$(NF-1) ; if ( NR==2) print $(NF-1) - F }'
    _5133680_
    root@fj-sol11:/zfstest/dir4# df -t /zfstest
    /zfstest (pool1 ): 7237508 blocks *7237508* files
    total: 10257408 blocks 12372310 files
    root@fj-sol11:/zfstest/dir4#
    root@fj-sol11:/zfstest/dir7# df -t /zfstest | awk ' { if ( NR==1) F=$(NF-1) ; if ( NR==2) print $(NF-1) - F }'
    _6742772_
    root@fj-sol11:/zfstest/dir7# df -t /zfstest
    /zfstest (pool1 ): 6619533 blocks *6619533* files
    total: 10257408 blocks 13362305 files
    root@fj-sol11:/zfstest/dir7# df -t /zfstest | awk ' { if ( NR==1) F=$(NF-1) ; if ( NR==2) print $(NF-1) - F }'
    _7271716_
    root@fj-sol11:/zfstest/dir7# df -t /zfstest
    /zfstest (pool1 ): 6445809 blocks *6445809* files
    total: 10257408 blocks 13717010 files
    root@fj-sol11:/zfstest# df -t /zfstest | awk ' { if ( NR==1) F=$(NF-1) ; if ( NR==2) print $(NF-1) - F }'
    _12359601_
    root@fj-sol11:/zfstest# df -t /zfstest
    /zfstest (pool1 ): 4494264 blocks *4494264* files
    total: 10257408 blocks 16853865 files
    I noticed the total files kept increasing and the creation of 4 millions files (4494264) after the above example was taking up more time than I had after already creating 12 million plus ( _12359601_ ) which took 2 days on a slow machine on and off (mostly on). If anyone has any idea of creating them quicker than "touch filename$loop" in a for loop let me know :)
    In the end I decided to use a really small file system 100mb on a virtual machine to test what happens as the free files approached 0. Turns out if never does ... it somehow increased
    bash-3.00# df -t /smalltest/
    /smalltest (smalltest ): 31451 blocks *31451* files
    total: 112640 blocks 278542 files
    bash-3.00# pwd
    /smalltest
    bash-3.00# mkdir dir4
    bash-3.00# cd dir4
    bash-3.00# for arg in {1..47084}; do touch file$arg; done <--- I created 47084 files here, more that the free listed above ( *31451* )
    bash-3.00# zfs list smalltest
    NAME USED AVAIL REFER MOUNTPOINT
    smalltest 47.3M 7.67M 46.9M /smalltest
    bash-3.00# df -t /smalltest/
    /smalltest (smalltest ): 15710 blocks *15710* files
    total: 112640 blocks 309887 files
    bash-3.00#
    The other 10% of my testing will be to see what happens when I try to a find on 12 million plus files and try to pipe it to wc -l :)

  • My iMac (2009) slows down after I go to sites that are memory intensive

    I have noticed my computer slows down to a crawl after I use sites that I believe are memory intensive.  Example of that is iFirstrowSports.eu (streams soccer games live).  The latest one was Wix where my wife was building her web site using their html5 tools. 
    I have also noticed that when the system is running slow, not all websites run as slow as others.  Fro example abola.pt is very slow, while yahoo.com or yahoo mail will be slow but not horrible.  I am wondering if it has to do with how those sites use memory or the technology they leverage.
    I went to EtrCheck and run a report.  Note that this report was done when the system is performing well.
    I would appreciate some help and advice.
    Thanks
    Problem description:
    machine slows down when I go to sites that use video (ifirstrowsports.eu as an example) or memory (wix site creation tools)
    EtreCheck version: 2.1.8 (121)
    Report generated March 1, 2015 2:34:52 PM PST
    Download EtreCheck from http://etresoft.com/etrecheck
    Click the [Click for support] links for help with non-Apple products.
    Click the [Click for details] links for more information about that line.
    Hardware Information: ℹ️
        iMac (27-inch, Mid 2010) (Technical Specifications)
        iMac - model: iMac11,3
        1 2.93 GHz Intel Core i7 CPU: 4-core
        4 GB RAM
            BANK 0/DIMM0
                2 GB DDR3 1333 MHz ok
            BANK 1/DIMM0
                2 GB DDR3 1333 MHz ok
            BANK 0/DIMM1
                Empty  
            BANK 1/DIMM1
                Empty  
        Bluetooth: Old - Handoff/Airdrop2 not supported
        Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
        ATI Radeon HD 5750 - VRAM: 1024 MB
            iMac 2560 x 1440
            spdisplays_display_connector
    System Software: ℹ️
        Mac OS X 10.6.8 (10K549) - Time since boot: 18 days 7:33:22
    Disk Information: ℹ️
        ST31000528AS disk0 : (931.51 GB)
            - (disk0s1) <not mounted> : 210 MB
            Macintosh HD (disk0s2) / : 999.86 GB (581.16 GB free)
        OPTIARC DVD RW AD-5680H 
    USB Information: ℹ️
        LaCie P'9233 Desktop Drive 1.82 TB
            - (disk1s1) <not mounted> : 210 MB
            Time Machine (disk1s2) /Volumes/Time Machine : 2.00 TB (1.54 TB free)
        Apple Internal Memory Card Reader
        Apple Inc. BRCM2046 Hub
            Apple Inc. Bluetooth USB Host Controller
        Dell Dell USB Optical Mouse
        Apple Inc. Built-in iSight
        Apple Computer, Inc. IR Receiver
    Kernel Extensions: ℹ️
            /Library/Parallels/Parallels Service.app
        [loaded]    com.parallels.kext.prl_hid_hook (7.0 15106.786747) [Click for support]
        [loaded]    com.parallels.kext.prl_hypervisor (7.0 15106.786747) [Click for support]
        [loaded]    com.parallels.kext.prl_netbridge (7.0 15106.786747) [Click for support]
        [loaded]    com.parallels.kext.prl_vnic (7.0 15106.786747) [Click for support]
            /System/Library/Extensions
        [not loaded]    com.ni.Fantom.nxtfwdl (1.1.1) [Click for support]
        [loaded]    com.parallels.kext.prl_usb_connect (7.0 15106.786747) [Click for support]
    Startup Items: ℹ️
        Fantom: Path: /Library/StartupItems/Fantom
        Startup items are obsolete in OS X Yosemite
    Problem System Launch Daemons: ℹ️
        [not loaded]    org.samba.winbindd.plist [Click for support]
    Launch Agents: ℹ️
        [running]    com.mcafee.menulet.plist [Click for support]
        [running]    com.mcafee.reporter.plist [Click for support]
        [loaded]    com.parallels.desktop.launch.plist [Click for support]
        [loaded]    com.parallels.DesktopControlAgent.plist [Click for support]
        [running]    com.parallels.vm.prl_pcproxy.plist [Click for support]
    Launch Daemons: ℹ️
        [loaded]    com.adobe.fpsaud.plist [Click for support]
        [running]    com.fitbit.fitbitd.plist [Click for support]
        [running]    com.fitbit.galileod.plist [Click for support]
        [unknown]    com.mcafee.ssm.ScanManager.plist [Click for support]
        [running]    com.mcafee.virusscan.fmpd.plist [Click for support]
        [running]    com.parallels.desktop.launchdaemon.plist [Click for support]
        [loaded]    com.sonos.smbbump.plist [Click for support]
    User Launch Agents: ℹ️
        [loaded]    com.adobe.ARM.[...].plist [Click for support]
        [failed]    com.apple.CSConfigDotMacCert-[...]@me.com-SharedServices.Agent.plist
        [loaded]    com.citrixonline.GoToMeeting.G2MUpdate.plist [Click for support]
        [loaded]    com.google.keystone.agent.plist [Click for support]
        [running]    com.spotify.webhelper.plist [Click for support]
    User Login Items: ℹ️
        iTunesHelper    Application Hidden (/Applications/iTunes.app/Contents/MacOS/iTunesHelper.app)
        Google Drive    Application  (/Applications/Google Drive.app)
        Fitbit Connect Menubar Helper    Application  (/Applications/Fitbit Connect.app/Contents/MacOS/Fitbit Connect Menubar Helper.app)
        Spotify    Application  (/Applications/Spotify.app)
        handyPrintDaemon    Application  (/Users/[redacted]/Library/PreferencePanes/handyPrint.prefPane/Contents/Library /LoginItems/handyPrintDaemon.app)
        Dropbox    UNKNOWN  (missing value)
        Dropbox    Application  (/Users/[redacted]/Desktop/Dropbox.app)
        Canon IJ Network Scanner Selector2    Application Hidden (/Library/Printers/Canon/IJScanner/Utilities/Canon IJ Network Scanner Selector2.app)
        Google Chrome    Application Hidden (/Applications/Google Chrome.app)
    Internet Plug-ins: ℹ️
        JavaAppletPlugin: Version: 13.9.8 - SDK 10.6 Check version
        FlashPlayer-10.6: Version: 16.0.0.305 - SDK 10.6 [Click for support]
        EPPEX Plugin: Version: 3.0.5.0 [Click for support]
        AdobePDFViewerNPAPI: Version: 11.0.10 - SDK 10.6 [Click for support]
        AdobePDFViewer: Version: 11.0.10 - SDK 10.6 [Click for support]
        Flash Player: Version: 16.0.0.305 - SDK 10.6 [Click for support]
        QuickTime Plugin: Version: 7.6.6
        OfficeLiveBrowserPlugin: Version: 12.3.3 [Click for support]
        SiteAdvisor: Version: 2.0 - SDK 10.1 [Click for support]
        Silverlight: Version: 5.1.20125.0 - SDK 10.6 [Click for support]
        iPhotoPhotocast: Version: 7.0 - SDK 10.7
    User internet Plug-ins: ℹ️
        CitrixOnlineWebDeploymentPlugin: Version: 1.0.105 [Click for support]
    Safari Extensions: ℹ️
        SiteAdvisor
    Audio Plug-ins: ℹ️
        iSightAudio: Version: 7.6.6
    3rd Party Preference Panes: ℹ️
        3ivx MPEG-4  [Click for support]
        Flash Player  [Click for support]
        handyPrint  [Click for support]
    Time Machine: ℹ️
        Time Machine information requires OS X 10.7 "Lion" or later.
    Top Processes by CPU: ℹ️
            89%    Google Drive
            42%    storeagent
            30%    syslogd
            29%    mDNSResponder
             1%    VShieldScanManager
    Top Processes by Memory: ℹ️
        198 MB    Google Chrome
        193 MB    App Store
        125 MB    Google Chrome Helper
        103 MB    WindowServer
        82 MB    mds
    Virtual Memory Information: ℹ️
        1.48 GB    Free RAM
        1.57 GB    Active RAM
        667 MB    Inactive RAM
        572 MB    Wired RAM
        44.20 GB    Page-ins
        8.43 GB    Page-outs
    Diagnostics Information: ℹ️
        Feb 28, 2015, 05:30:53 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/SystemUIServer_2015-02-28-1730 53_[redacted].crash

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of the test is to determine whether the problem is caused by third-party software that loads automatically at startup or login, by a peripheral device, by a font conflict, or by corruption of the file system or of certain system caches.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards, if applicable. Start up in safe mode and log in to the account with the problem. You must hold down the shift key twice: once when you turn on the computer, and again when you log in.
    Note: If FileVault is enabled in OS X 10.9 or earlier, or if a firmware password is set, or if the startup volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to start up and run than normal, with limited graphics performance, and some things won’t work at all, including sound output and Wi-Fi on certain models. The next normal startup may also be somewhat slow.
    The login screen appears even if you usually login automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem?
    After testing, restart as usual (not in safe mode) and verify that you still have the problem. Post the results of the test.

  • I am having issues related to storage and I believe this is causing my computer to slow down. "Other" files part is the major occupier(180 GB). I have done Omni disk and multiple other cleaning(iTunes-device, restart, etc), yet have not been able to empty

    I am having issues related to storage and I believe this is causing my computer to slow down. "Other" files part is the major occupier(180 GB). I have done Omni disk and multiple other cleaning(iTunes-device, restart, etc), yet have not been able to empty any more space, nor to speed up my computer? Any suggestions? All your contributions are welcomed. Thanks. Mehmet Mazhar Celikoyar

    Below is the result:
    Hardware Information:
              MacBook Pro (15-inch, Mid 2009)
              MacBook Pro - model: MacBookPro5,3
              1 3.06 GHz Intel Core 2 Duo CPU: 2 cores
              4 GB RAM
    Video Information:
              NVIDIA GeForce 9400M - VRAM: 256 MB
              NVIDIA GeForce 9600M GT - VRAM: 512 MB
    Audio Plug-ins:
              BluetoothAudioPlugIn: Version: 1.0
              AirPlay: Version: 1.9
              AppleAVBAudio: Version: 2.0.0
              iSightAudio: Version: 7.7.3
    Startup Items:
              HP IO - Path: /Library/StartupItems/HP IO
    System Software:
              OS X 10.9 (13A603) - Uptime: 3 days 22:8:6
    Disk Information:
              ST9500420ASG disk0 : (500.11 GB)
                        EFI (disk0s1) <not mounted>: 209.7 MB
                        Macintosh HD (disk0s2) /: 499.25 GB (220.49 GB free)
                        Recovery HD (disk0s3) <not mounted>: 650 MB
              HL-DT-ST DVDRW  GS23N 
    USB Information:
              Apple Inc. Built-in iSight
              Apple Internal Memory Card Reader
              Apple Inc. Apple Internal Keyboard / Trackpad
              Apple Computer, Inc. IR Receiver
              Apple Inc. BRCM2046 Hub
                        Apple Inc. Bluetooth USB Host Controller
    FireWire Information:
    Thunderbolt Information:
    Kernel Extensions:
              com.rim.driver.BlackBerryUSBDriverInt          (0.0.64)
              com.livedrive.filesystems.livedrivefs          (2.1.14)
    Problem System Launch Daemons:
    Problem System Launch Agents:
    Launch Daemons:
              [loaded] com.adobe.fpsaud.plist
              [loaded] com.adobe.versioncueCS4.plist
              [loaded] com.creativebe.MainMenuHelper.plist
              [loaded] com.macpaw.CleanMyMac2.Agent.plist
              [loaded] com.magican.castle.plist
              [loaded] com.microsoft.office.licensing.helper.plist
              [loaded] com.rim.BBDaemon.plist
              [failed] com.zeobit.MacKeeper.plugin.AntiTheft.daemon.plist
    Launch Agents:
              [loaded] com.adobe.CS4ServiceManager.plist
              [loaded] com.hp.messagecenter.launcher.plist
              [loaded] com.hp.productresearch.plist
              [loaded] com.rim.BBLaunchAgent.plist
    User Launch Agents:
              [loaded] com.adobe.ARM.[...].plist
              [failed] com.macpaw.CleanMyMac2Helper.diskSpaceWatcher.plist
              [failed] com.macpaw.CleanMyMac2Helper.scheduledScan.plist
              [failed] com.macpaw.CleanMyMac2Helper.trashWatcher.plist
              [failed] com.UninstallerTool.plist
              [failed] com.VolumeWatcherTool.plist
              [failed] com.zeobit.MacKeeper.Helper.plist
    User Login Items:
              BlackBerry Device Manager
              HP Scheduler
    3rd Party Preference Panes:
              Adobe Version Cue CS4
              DC30 Xact Driver Panel
              Flash Player
              Flip4Mac WMV
              Perian
    Internet Plug-ins:
              AdobePDFViewer.plugin
              AdobePDFViewerNPAPI.plugin
              Default Browser.plugin
              Flash Player.plugin
              FlashPlayer-10.6.plugin
              Flip4Mac WMV Plugin.plugin
              iPhotoPhotocast.plugin
              JavaAppletPlugin.plugin
              OfficeLiveBrowserPlugin.plugin
              QuickTime Plugin.plugin
              SharePointBrowserPlugin.plugin
              Silverlight.plugin
    User Internet Plug-ins:
              OctoshapeWeb.plugin
    Bad Fonts:
              None
    Time Machine:
              Mobile backups: OFF
              Auto backup: NO
              Volumes being backed up:
                        Macintosh HD: Disk size: 499.25 GB Disk used: 278.75 GB
              Destinations:
                        TOSHIBA EXT [Local] (Last used)
                        Total size: 2 TB
                        Total number of backups: 5
                        Oldest backup: 2013-10-24 23:21:31 +0000
                        Last backup: 2013-10-25 02:59:08 +0000
                        Size of backup disk: Excellent
                                  Backup size 2 TB > (Disk size 499.25 GB X 3)
    Top Processes by CPU:
                   3%          WindowServer
                   1%          EtreCheck
                   1%          Microsoft PowerPoint
                   0%          BBLaunchAgent
                   0%          fontd
                   0%          aosnotifyd
    Top Processes by Memory:
              168 MB             Microsoft PowerPoint
              123 MB             Safari
              86 MB              Mail
              74 MB              WindowServer
              45 MB              com.apple.WebKit.Networking
              45 MB              com.apple.WebKit.WebContent
              41 MB              Finder
              41 MB              PluginProcess
              41 MB              mds_stores
              33 MB              Notes
    Virtual Memory Statistics:
              72 MB              Free RAM
              1.27 GB            Active RAM
              1.24 GB            Inactive RAM
              667 MB             Wired RAM
              2.58 GB            Page-ins
              111 MB             Page-outs

  • Mount options for ZFS filesystem on Solaris 10

    Do you know some recomendation
    about mount options for SAP on Oracle
    with data on ZFS filesystem?
    Also recomended block size required.
    We assume that file system with datafiles has 8kb block size
    and offline redologs has default (128kB).
    But what about ONLINE REDOLOGS?
    Best regards
    Andy

    SUN Czech installed new production HW for one Czech customer with ZFS filesystem on data-, redo- and archivelog files.
    Now we have performance problem and currently there is no SAP recomendation
    for ZFS file system.
    The HW which are by benchmark about tvice power has worst responses than
    old hardware.
    a) There is bug in Solaris 10 - ZFS buffers once allocated are not released
        (generally we do not want to use buffering due to prevence of double
         buffering)
    b) ZFS buffers takes about 20GB (32GB total) of memory on DB server
    and we are not able to define huge shared pool and db cache. (it may be possible
    to set special parameter in /etc/system to reduce maximum size of ZFS buffers to e.g. 4GB )
    c) We are looking for proven mount option for ZFS to enable asynchronious/concurent io for database filesystems
    d) There is no proven clear answer for support of ZFS/SOLARIS/Oracle/SAP.
    SAP says It is Oracle problem, Oracle does not certify filesystems from Jan2007
    any more and says ask your OS provider and SUN looks happy, but performance
    goes down and it is not so funny for system with 1TG DB with over 30GB grow
    per month.
    Andy

  • Entire OS has slowed down and likes to stall

    What factors can I look in to to cause the entire operating system to slow down dramatically? I can't recall if there was any single instance that started this behavior but it's been several weeks now.
    Some examples;
    On a fresh reboot, it takes a couple minutes (120-150 seconds) for the menu bar and dock to load up completely.
    When I start Safari, it takes at least 20 seconds to just to allow me to either type in the url bar or to select a bookmark from my book mark bar. Once a website is entered, it can take up to a minute to actually load the web site. Many times this behavior with Safari is not secluded to a fresh reboot or restart of Safari. I've been using the browser for a couple hours now and it took more than 15 seconds to load ANY images on apple.com/support, meaning it was just a white page. Firefox is faster but still stalls at times.
    Spotlight is slower than normal. Typing a-d-d to open Address book just wasn't all that snappy. Once Address Book opened, it took more time than usual just to load contacts. It shouldn't take ANY time as I recall. Typing p-h-o-t-o-s-h-o-p used to be very fast and responsive and the first suggestion was in fact photoshop. Now Spotlight occasionally hangs as I'm in the processes of typing and can't "think" past p-h-o-t-o so it thinks I want PhotoBooth.
    Mail has also been acting slow. Just issuing CMD+N should take a split second but I have to wait for the OS to consider it before decides to create a new mail.
    Generally, programs have just been stalling even more frequently than usual and I spent a portion of the day staring at spinning beach balls. I'm considering 30-60 minutes a portion of the day.
    I've looked at some of the obvious things; I've eliminated all start up items in the accounts pref pane, I've freed up as much of the HDD as I can so I now have 12GB left on my 90GB partition. I'm currently running VMWare but I'm certain that it's actually having little to zero impact on the system performance. In fact, WinXP is running far more responsive at the moment as it's being emulated by Fusion. I had Tinker Tool installed but eliminated that and have restarted the os a number of times. Nothing seems to be standing out in Activity Monitor as a memory hog. Top items right now are VMWare, Safari, WindowServer and kernal-task.
    Some more background...
    This is a 1 gen old 15" MacBook Pro with a 2.2 GHz Core 2 Do and 4GB 667 MHz Ram. It occasionally likes to refuse any keyboard or track pad input but I can plug a mouse in and close programs before I restart. When that happens I need to zap PRam to get back to normal. I've probably done that about a dozen times in the last two weeks. I think that make be related to static discharge as I use the laptop. I had it at the Apple store to get the mother board (are they still "mother boards"?) replaced due to a video output problem and when I got it back the embedded serial number was gone so that causes issues with retaining passwords and such while web browsing. I've been informed on this forum that they can fix that at the shop. I've been having issues with the battery as well but just attribute that to an "old" battery. It's only about a year old but doesn't last more than 45 minutes. More recently, it has just decided to shut off with no warning when the battery indicator on the bottom of the computer shows it still has half a charge.
    Thanks for any input

    Not bad at all. I ran *sudo chmod -RN "/System/Library/User Template"* and it significantly reduced all the messages I received in disk utility. We went from about 40 to 8. The remaining messages are below.
    2009-01-30 20:00:01 -0500: Warning: SUID file "System/Library/Filesystems/AppleShare/afpLoad" has been modified and will not be repaired.
    2009-01-30 20:00:01 -0500: Warning: SUID file "usr/bin/setregion" has been modified and will not be repaired.
    2009-01-30 20:00:09 -0500: Warning: SUID file "System/Library/PrivateFrameworks/Install.framework/Versions/A/Resources/runner " has been modified and will not be repaired.
    2009-01-30 20:00:09 -0500: Warning: SUID file "System/Library/Printers/IOMs/LPRIOM.plugin/Contents/MacOS/LPRIOMHelper" has been modified and will not be repaired.
    2009-01-30 20:00:09 -0500: Group differs on "private/etc/cups", should be 0, group is 26.
    2009-01-30 20:00:09 -0500: Permissions differ on "private/var/spool/cups/cache/rss", should be drwxr-xr-x , they are drwxrwxr-x .
    2009-01-30 20:00:13 -0500: ACL missing on "System/Library/User Template/English.lproj/Documents".
    2009-01-30 20:00:13 -0500: ACL missing on "System/Library/User Template/English.lproj/Downloads".

  • SQL Slowing down

    Please,
    I have just migrated a database from one server to another powerful server, but the issue is that one of the sql statement is very very slowing down.
    we downloaded the dump file to another server, and the same sql is very very fast.
    I shrank/rebuilt , table/indexes but no changes found, I also created new indexes that show up into the excution plan,but nothing changed.
    My Question:
    There is another area where I could look at to tune this sql statment?
    Thanks

    You may need to consider two things here.
    1. Make sure you keep the parameter optimizer_mode consistent between two databases? If not, you may experience performance degradation. Some legacy third-party application may still run upon RBO. That's what we ever experienced.
    2. It's time to gather statistics. See below.
    When to gather statistics:
    Candidates
    – After large amounts of data change (loads, purges, bulk
    updates)
    – New high/low values for keys generated
    – Newly created tables
    – Upgrading CPUs, I/O subsystem (system statistics)
    – RBO to CBO migrations
    – New database creations
    An useful Oracle official doc available at http://www.oraclepoint.com/topic.php?filename=76&extra=page%3D1
    Hope it helps.
    Message was edited by:
    R.Wang

  • Does re-installing system slow down the HD?

    Hi
    My MBP came back from repair with a new HD and OS 10.5 already installed. For various reasons I might want to wipe it and re-install the system software. But does this process of re-installing the system leave any 'debris' on the drive which might slow down performance in the long run? If so I may leave it, but it's a question I've always wondered about - when you re-install does the drive go back to being 'like new' again or is there a gradual accumulation of code which just adds more clutter?
    Thanks for any help
    John

    If the OS or an app or whatever needs 10GB (for example) of free space, what does it matter if it's 10GB out of 100GB or 10GB out of 1TB?
    I don't think it matters.
    I thought that's what MacRS4 is saying
    I did not understand it to be. The assertion was:
    The 85% corruption thing fassumes a relationship of the largest file types to the size of the physical drive.
    It does not. It assumes that the directory expansion varies with the total amount of data that needs to be stored. The 85% refers to the smallest amount of contiguous disk capacity needed to permit the file system to lay down new pieces of the Extents Overflow file. That does not have to do with the size of any individual file but with the total amount of data that needs to be accommodated in the file system/directory.
    this question seems to asd for just the opposite, a rationale as to why a percentage would be needed, not a set amount of space.
    My intention was to suggest there was a relationship (read percentage) between the total amount of data on the drive and the size of the filesystem. On a 100 GB HDD the filesystem will be smaller as the amount of data stored occupies a smaller amount of disk capacity. On a 1 Terabyte HDD 85% of total used capacity requires a corresponding size of directory. As I understand it the size of the directory varies in direct relationship with the amount of data stored on the drive and not to the total capacity of the HDD. The Micromat study (sorry, I have lost the link for that reference) found that the optimal capacity was 85% to avoid directory corruption.
    As I noted in earlier posts, the equation may have changed with the advent of larger capacity drives, but I am not aware of documentation to that effect. I should also add that I am not by any means an expert. However, I am not willing to test to see how crowded my HDD has to be before I encounter an unrecoverable directory.
    My asking for support for statements made is not by way of debate. I earnestly seek to learn more about this and other subjects from those who have information I do not, myself, have.
    cornelius

  • Why do GarageBand, iMovie, Photobooth, and Hulu and Youtube videos slow down my whole computer?

    I have a higher end 13" MacBook Pro running OSX Snow Leopard 10.6.8 that I purchased in August of 2010. About a month ago, I was using iMovie to edit a project when all of a sudden it started responding extremely slowly. Like, near impossible to work on my project slow. The whole computer was lagging, the mouse was unresponsive and I could barely use the gestures on the trackpad to get to different programs. Eventually the pinwheel of death showed up, and I quit iMovie. As soon as it closed, everything returned to normal. I restarted the computer to see if that would help, but as soon as I opened iMovie again, the whole computer started lagging. I then noticed that the same problem occured when I used GarageBand, iPhoto, Skype, and when I watched Hulu or YouTube videos. With all of these programs/sites, everything is running fine beforehand, but when I open them up, chaos sets in. This problem doesn't occur when I use other intensive programs like Photoshop or Illustrator, nor while I'm browsing the web. The only web problems are when I watch a video. Any video. Other than that, web pages are as quick to load as ever, and I can use the computer normally for any other task. This is seriously a problem because I use iMovie and GarageBand for school a lot, and my grades depend on me being able to use these programs effectively. All of these problems have persisted with these apps since that first instance about a month ago, and no significant changes occurred to instigate them. In attempts to solve the situation, I have cleared my cache, freed up space on my drive (I have 56 free gigs out of 320), I have verified and repaired the disk permissions, and I have downloaded the Apple provided Trojan removal tool for Snow Leopard. This seemed to work for about 10 minutes, but the apps and videos quickly started lagging and slowing down my whole computer again. If anyone else has experienced anything like this, I would love to hear exactly what has happened to you and to see what you did to [try to] fix it. Thanks for reading all of this, I need all the help I can get right now. Also, I can't watch The Daily Show or The Colbert Report on Hulu anymore, and it's killing me! Thanks again.

    It's very difficult to say without knowing more about your system. There are a number of possibilities. First, your 13" lacks a discrete GPU, so the CPU is doing the work that a GPU would have done as far as decoding video streams, etc. Each video stream will consume considerable resources from the machine, and if you have multiple things running with video streams being decoded (for example, a browser with video Flash or cumbersome animation and iMovie running at the same time), then that may be a factor.
    Additionally, it could be that you are memory constrained. You didn't post a picture of the process list from activity monitor or the memory usage stats, but you probably want to look and see what the memory and CPU usage is and who's consuming what. Some applications are pretty inefficient. For example, if you have iPhoto open and have thousands of images, the indexed metadata and thumbnails are all stored in RAM. iMovie pulls in clip thumbnail sets - (and worse, it has to do on-the-fly transcoding video assets from some cameras that don't encode the video using the parameters it expects to make indexing frames easier). Again, this would show up as periodic spikes in CPU activity for the app.
    You seem to have plenty of disk space, that's not likely to be a problem.
    Check if Time Machine is running. Time Machine introduces a performance impact, but it's exacerbated by the presence of frequently changed large files (e.g., you don't want Time Machine backing up your video projects while you are working on them).
    Lastly, you may consider checking the console for error messages. This might reveal background processes that might be bogging down the system, or things like filesystem/disk errors. If there are errors in the filesystem, when you access certain portions of the disk, the OS and applications can slow down or lock-up as a result.

  • My Macbook Pro is 18months old and has recently slowed down. specifically it wont load photos on Autotrader any suggestions?

    My MacBook Pro is 18 months old and has just started to slow down. It is also not loadng certain photos from the autotrader website if this is relevant?

    You may be able to improve the speed with some software work but it could also be your disk or SSD is corrupt or failing.
    Try an SMC Reset:
    http://support.apple.com/kb/HT3964
    Is it faster now?  If not, proceed.
    Backup your data immediately:
    Before proceeding you should make sure you have a current backup.  If it has been getting slower over time your disk could be a failing slowly.  SATA drives have two retry modes: short and long.  They can continue operating as read errors are increasing.  The long retry cycle is very long and can cause significant performance degradation.  If it has started long retries then it is likely to get worse and eventually fail.  SSDs also have a failure mode where the fail slowly.
    Time Machine Basics: http://support.apple.com/kb/ht1427
    Most commonly used backup methods: 
    https://discussions.apple.com/docs/DOC-3045
    Methodology to protect your data.  Backups vs. Archives.  Long-term data protection:
    https://discussions.apple.com/docs/DOC-6031
    Try the remedies at http://www.macworld.com/article/2026650/mac-troubleshooting-what-to-do-when-your -computer-is-too-slow.html
    and
    Mac Performance Guide: http://www.thesafemac.com/mpg/
    Safe Mode:
    - Reboot the system in Safe Boot mode.
    - Power on the Mac and when you hear the bong, hold down the shift key until it is booted.
    - Be patient, this will take some time while it checks the filesystem.
      If it runs faster in Safe Boot mode then it is probably third-party software compatibility issues.
    - Restart.
    - Does it run faster after the restart?
    Spotlight:  If Spotlight is continually running, re-index Spotlight:
      http://support.apple.com/kb/ht2409
    Runaway processes:
    Launch Activity Monitor (in the Applications/Utilities folder).
    Click on the CPU heading.
    Are there a process taking up a large percentage of the time?
    If so select it and click on the upper left hand X to force quit the process.
    Run Disk Utility (found in the Applications folder):
    -In Disk Utility look at the S.M.A.R.T. Status. 
    If it says the disk has a hardware problem that can't be repaired then stop.
      Your system could be in danger of failing at any time and you need to replace the disk soon.
      Back your system up twice.
      (You will need a second external disk for the second backup.)
      Consider using Carbon Copy Cloner or Super Duper! for the second backup to clone the disk.
      Jump to the Hardware replacement section and seek expert help.
    Repair Disk Permissions and Verify Disk.  If Disk Permissions reports errors, don’t worry.  That is normal.  If Verify Disk reports errors then they need to be repaired.  Otherwise skip to the reinstall OS X section.
    Repairing your system disk:
    - Boot in recovery mode.
      (Boot and when you hear the bong hold down the
      Command and R keys simultaneously until you see the recovery screen.)
    - Select disk utility.
    - Select your system drive.
    - Repair Disk.
    - Did it complete without errors? 
      If not you may need a new disk or SSD.  Seek expert help.
      If it completed normally then reboot.
    -Did it boot faster and is it more responsive?
    Reinstall OS X:
    If it is still slow you should reinstall OS X.
    - Boot in Recovery Mode again.
    - Follow the instructions to reinstall OS X.
    - Now does it boot and run faster?
    Hardware replacement or upgrade?
    Hopefully by now your Mac is back to its normal speed.  If a hardware repair is indicated take it to an Genius bar at an Apple store for a free diagnosis and estimate of repairs.  If it is under warranty or AppleCare they will repair it for free.  If not, you can compare their estimate with DIY repairs.
    Genius reservation http://www.apple.com/retail/geniusbar/ .
    or find an Apple Authorized Service Provider https://locate.apple.com/country
    You can speed it up further by upgrading some hardware.  For the following memory, disk or SSD replacements and upgrades check out OWC http://eshop.macsales.com/, Crucial: http://www.crucial.com/ and Kingston http://www.kingston.com/us/.  You will need to know your Mac the year and season your Mac was first sold and model number which can be found here:
     > About This Mac > More Info… > System Report > Model Identifier:
    If your Mac has 2 or 4 GB of RAM, consider an upgrade to 8 GB (if the memory is upgradeable).  An 8 GB memory upgrade is only $100.  When I upgraded a MacBook from 2 GB o 8 GB it booted thee times faster.
    If your Mac has a disk and it won’t repair properly, is low on disk space, or you just want a considerably faster disk, check out an upgrade to an SSD-Hybrid disk. Google "Seagate 1TB Solid State Hybrid Drive SATA 6Gbps 64MB Cache 2.5-Inch" or consider an SSD (120 to 480 GB).
    OWC has SSD replacements and upgrades for MacBook Airs and Retina MacBook Pros.
    Good luck.  May the software fixes do the trick.

  • 10.4.10 update slows down SMB traffic?

    Hi all!
    This is my first mac-post. Forgive my mac-related ignorance, I'm trying to learn.. It's kind of an old-dog-new-tricks deal..
    Anyway, I've been researching a clients recent complaints that reading and writing files to and from their Windows Small Business Server 2003 server suddenly (a few days ago) slowed down immensely - to the point where it's almost unusable. They use VectorWorks for CAD and loading/saving a 20MB file will take several minutes on their 100Mbit/s network! Also playing video from the server is choppy.
    I've been researching the problem, and I've tested and checked out the normal networking problems like cabling, switches, server NIC, speed/duplex settings etc.. I've also tried various solutions to slow SMB traffic from other Mac-forums, like disabling TCP/IP v6 and disabling ACK delay on the macs, seeing absolutely NO improvements.
    I believe, however, that I've isolated the problem to the recent 10.4.10 update:
    * Their 1 Macbook with the 10.4.10 update has this problem.
    * Their 4 iMacs with the 10.4.10 update has this problem.
    * Their 1 iMac still on 10.4.9 DOES NOT have this problem.
    * Their 1 Mac Pro with the 10.4.10 update DOES NOT have this problem.
    So, it looks to me like the 10.4.10 breaks "something" on the "little" Macs while the Mac Pro seems unaffected.
    What can I do to rectify this problem? My client complains about lost efficiency and I'm at a loss about what to do next. Can anyone help me out?

    {quote:title=BDAqua wrote:}
    Not exactly clear where we are right now, but did Applejack report any fixins?{quote}
    Ok, I'll try to summarize todays findings...
    * AppleJack was run in interactive mode, ran all five tests, found nothing (as far as I could see)
    * Rebooted twice, still no better.
    * AppleJack was run in the AUTO mode. Same result.
    * I tested the transfer speed with smbget, it starts at 100kbps and rises to about 700kbps as the transfer progresses. On a 100MB Ethernet, I'd expect to see at least 1MB to about 10MB.
    * Then I downloaded Pacifist and installed everything that matched a search for "smbfs" in the install files, which are OS X 10.4.3 (or was it .7?? argh.. I forget, check tomorrow).
    * I was now out of luck, as the previously created aliases failed and a connection to the server through Finder was impossible. Smbget still works though!
    * The kextstat -b com.apple.filesystems.smbfs command now only displays infoheader, but no info.
    * Now, I'm looking at a backup of a few files and a complete reinstall of the Macbook to see if that does the trick.
    My client hasn't seen the bill for these hours of troubleshooting yet, but I have a feeling I'll have to throw in the towel real soon. Ooops, I sent him the link for this thread, maybe he's watching!?

  • IPhoto crashing, slowing down and freezing up.

    iPhoto chashed 4 times with me while doing the same task, creating a Photo Book.
    Apart from that, it would slow down while editing a pic within the book creation interactive app, and would show the little pie, like it was loading or reading something, once doing that it has frozen, and whether it would recognize it crashed, or I would have to force quit.
    FYI: - I only have 60 pics tops in iPhoto
    - iPhoto is the latest version and it is updated
    - along with the computer, it is brand new, nt more than a week old.
    - it did also happen the first time to loose all the contents on the photo book, it crashed and asked to report or restart iPhoto.
    Thanks for whoever can help me....

    Over the weekend I did the following:
    1) Backed up my entire computer
    2) Booted from the Mac OS X install DVD, launched Disk Utility, and erased my entire hard drive
    3) Installed Mac OS X from scratch (version 10.4.7 was on the DVD) along with the base applications
    4) After the install, I logged in and ran software update until iLife '06 was patched up, and 10.4.10 was loaded with all security updates
    5) Inserted iLife '08 disk -- installed iPhoto '08
    6) Launched iPhoto '08, made sure it was working fine (with a library of NO Photos)
    7) Restored a copy of my iPhoto library to my hard drive
    8) Launched iPhoto '08 again (made sure it was STILL version 7.0.1), and saw that my book was there along with all of my photos, etc...
    9) Attempted to purchase my book. And the result was: On page 28 of 32 -- CRASH of the entire computer.
    Here's a picture of it: http://www.kmcode.com/misc/errors/iphoto08crash.jpg
    Sorry, had to take a quick snapshot with the digital camera. It doesn't do well up close and such...
    Anyways. This bug exists regardless of which version of iPhoto '08 you are running. I'm very peeved about it, for I spent an entire weekend backing up my computer, hunting down the original disks, reinstalling Mac OS X from scratch, downloading software updates -- and it still crashes the entire computer when I try to assemble a book or generate a PDF of the book. I am at wits end with this. And as stated before -- I can in fact create a book with autoflow with the exact same photographs, and it will send to PDF just fine. You just can't adjust any of the photo attributes!
    Also, I'll note that my iLife '08 disk comes with version 7.0.1 on it from the factory. I can't seem to get to version 7.0 to see if it will work.

  • [SOLVED]Whole computer slows down while lots of ongoing I/O operations

    Hello
    It's an issue bugging me from quite a long time, so finally I decided to share my anxiety :-D
    Is it normal that both desktop environment actions (clicks, moving windows around, even moving the cursor) and keyboard input slows down when disk is under heavy load? It happens for example when I try to unpack something from a big archive or load a big file in a program. Whole computer runs then like Crysis on 512MB RAM, for me it's unusable. I think my config is the key here, so here it is:
    Linux asus.k50in 2.6.34-zen2-ARCH-20100812-stable-06977-ge2287d6 #8 ZEN SMP PREEMPT Thu Aug 12 20:54:24 CEST 2010 x86_64 Intel(R) Core(TM)2 Duo CPU T6600 @ 2.20GHz GenuineIntel GNU/Linux
    GeForce 102M 512MB
    XFS filesystem on every partition.
    KDE4.5.1 + all available updates.
    Thanks in advance for any hints.
    Last edited by bfo (2010-09-14 17:33:13)

    * Amount of RAM?
    * Do you have a swapfile or -partition?
    * What do you see in the output of 'top' when this happens?
    * Do your logs tell you/us something?
    I have never seen this behaviour. It is normal, f.e. on an older machine that when doing a pacman -Sy, the system is less responsive or that (even on a newer system) when copying large amounts of data from one HD to another that file operations are slowed down. It is not normal that your desktop is affected by this.

  • My iMac 8.1 was slowing down and had permissions problems. I backed everything up, and then re-installed. Now all I get is a black screen. Power+D gives me a hardware error message: HDD-1336. Help!

    My iMac 8.1 (10.6.8 ) was slowing down and had recurrent permissions problems, mostly with Java. I backed everything up, and then re-installed from time machine. Now all I get is a black screen which says I need to reboot. Power+D gives me a hardware error message: 4 MOT/1/40000003: HDD-1336 or HDD-1327. When I reboot from the OSX CD and start disc utilities everything checks out OK. When I reload 10.5.2 from the OSX CD everything seems to work OK and no more permissions problems. But then I loose all my email and safari stuff. Anyone have any ideas short of going back to my old PC?

    DonM. wrote:
    Hi
    Thanks for the help. No point in fooling around with it any more. Will I be able to use it as a monitor if I get a mimi mac?
    Cheers. Don
    No unfortunatley it's too old, you are referring to Target Display Mode which became avialble in 2009, your 2008 needs to have the HD replaced. I'd still do that if everything else is OK or you can simply buy a new MM and display or even a new iMac  or an Apple refurbished iMac to save money.

Maybe you are looking for

  • Microsoft Office Product Key

    Hi I am planning on getting a new hard drive for my macbook pro and I can't find my Microsoft Office 2011 product key (or installation disk) If i want to have office on the new hard drive, do I simply have to copy the Applications (and related files)

  • FaceTime will not launch in Yosemite; "Application Not Responding"

    I'm using a late 2012 iMac.  Following advice I saw in another, similar thread, I deleted all FaceTime items in Keychain Access (including certificates), as well as all of the following from my User/Library/Preferences folder: com.apple.facetime.bag.

  • OS X Mountain Lion

    I'm currently using my older 17" Macbook Pro (for reasons I don't care to explain) and am in the process of upgrading its systems. I understand that my Macbook Pro isn't compatible with Mavericks and for awhile I couldn't even download an OS X becaus

  • SU53 - Tcode for offending transaction missing

    Hello, When an authorization error occurs (rel. 6.20), the data concerning the error are kept in SPA/GPA parameters. Transaction SU53 GETs the info and display it together with info from user-authorizaton. It's very nice, but we miss Tcode for the of

  • Release 4.4 question

    Does 4.4 provide tether support for Canon 6D?