Fragmentation effect

10g R2
Table has about 0.5 billion records at this time
There is a process deleting records (5-6 millions per day)
At the beginning of process there is a select getting min date (indexed column) to start from.
I see this select taking more time - plus about 1 min each day (surprise).
I tried shrink but canceled execution in a couple of hours. Based on previous discussions looks like it never completed on large tables.
What other people really do in such cases besides full table reorganization?
Thanks.

Bolev wrote:
10g R2
Table has about 0.5 billion records at this time
There is a process deleting records (5-6 millions per day)
At the beginning of process there is a select getting min date (indexed column) to start from.
I see this select taking more time - plus about 1 min each day (surprise). This looks as if your query for min(adate) is having to walk through increasing numbers of empty blocks each day. I'm going to guess that you then delete data for a given date range above that date - leaving even more empty blocks at the low end of the index. If this is the case, a "coalesce" might be more appropriate than a shrink. This may take some time on the first run, but it operates as a large number of small transactions so won't have to unwind itself if the process crashes.
Since you are inserting 0.5 M rows per day and deleting 5-6M rows per day for a net loss of 4.5 - 5.5 M rows per day, at some stage it will probably make sense to rebuild most of the indexes, and at some stage it will probably make sense to "move" the table (and rebulid the indexes again).
Regards
Jonathan Lewis

Similar Messages

  • Intensive GC times when collecting the old generation with parallelOldGC

    h1. We are experiencing some very strange GC times
    h2. The hardware/OS
    OS: Microsoft Windows XP Service Pack 2 (build 3790) (64bit)
    CPU: Intel(R) Xeon(R) CPU 8X E5530 @ 2.40GHz (Hyper Threading Enabled)
    RAM: 4078 Mb total
    h2. The application
    JBoss 4.x with (approx 2000 threads) with ORACLE 10g(/RAC). The load varying during the day,
    but typically there is a high load for several hours (8h-12h), after that the system
    is basically idle. The entire application is just plain java (no additional native dll's).
    h2. JVM (java –version)
    java version "1.6.0_24"
    Java(TM) SE Runtime Environment (build 1.6.0_24-b07)
    Java HotSpot(TM) Client VM (build 19.1-b02, mixed mode)
    h2. GC Settings
    -Dsun.rmi.dgc.client.gcInterval=3600000 -Dsun.rmi.dgc.server.gcInterval=3600000
    -server -Xmx1580m -Xms1580m -Xmn800m
    -Xss128k-XX:ThreadStackSize=128
    -XX:+UseParallelGC
    -XX:ParallelGCThreads=7
    -XX:+UseParallelOldGC
    -XX:-UseAdaptiveSizePolicy -XX:+ExplicitGCInvokesConcurrent
    -XX:MaxGCPauseMillis=50 -XX:SurvivorRatio=6 -XX:MaxTenuringThreshold=30
    -XX:PermSize=96m -XX:MaxPermSize=96m
    -XX:+PrintParallelOldGCPhaseTimes -XX:+PrintHeapAtGC -XX:+PrintGCDetails -XX:+PrintGCDateStamps -XX:+PrintGCApplicationStoppedTim
    h2. The problem
    The application server is rebooted once every week. Typically the application runs without any a bigger (> 2 sec) delay
    when the old generation is collected. However, sometimes (after days) we experience extensive GC times when collecting
    the old generation:
    Typically the major portion of the delay is found in the
    *[summary phase, 8.9943085 secs]*
    *[post compact, 29.4723376 secs]*
    h4. 1. Can someone shed some light on the summary and post compact phase? Which steps are taken by the JVM here?
    What might take so long here?
    h4. 2. I observed, that the JVM memory footprint (private bytes of process) is temporally increasing and the total memory increaase
    goes from 2.2 up to 3.0 GB. This additional mAemory is allocated on the C++ heap! For what? Why does a JVM temporally allocate
    so much memory on the from the C++ heap (the application is just plain java).
    h4. 3. Can the root cause for the intensive “post compacting” times be fragmentation of the java heap.
    To my understanding the GC settings (parallel Old GC) prevents fragmentation of the java-heap
    it is this correct?
    h4. 4. A bug in java version "1.6.0_24".
    ---- GC snippet
    Total time for which application threads were stopped: 0.0813657 seconds
    {Heap before GC invocations=28725 (full 187):
    PSYoungGen      total 716800K, used 716787K [0xb6bf0000, 0xe8bf0000, 0xe8bf0000)
      eden space 614400K, 100% used [0xb6bf0000,0xdc3f0000,0xdc3f0000)
      from space 102400K, 99% used [0xe27f0000,0xe8becff0,0xe8bf0000)
      to   space 102400K, 0% used [0xdc3f0000,0xdc3f0000,0xe27f0000)
    ParOldGen       total 798720K, used 753030K [0x85ff0000, 0xb6bf0000, 0xb6bf0000)
      object space 798720K, 94% used [0x85ff0000,0xb3f51840,0xb6bf0000)
    PSPermGen       total 98304K, used 77426K [0x7fff0000, 0x85ff0000, 0x85ff0000)
      object space 98304K, 78% used [0x7fff0000,0x84b8cbc8,0x85ff0000)
    2012-01-31T07:39:25.928-0500: 329846.622: [GC [PSYoungGen: 716787K->102398K(716800K)] 1469818K->860717K(1515520K), 0.0563113 secs] [Times: user=0.44 sys=0.02, real=0.06 secs]
    Heap after GC invocations=28725 (full 187):
    PSYoungGen total 716800K, used 102398K [0xb6bf0000, 0xe8bf0000, 0xe8bf0000)
    eden space 614400K, 0% used [0xb6bf0000,0xb6bf0000,0xdc3f0000)
    from space 102400K, 99% used [0xdc3f0000,0xe27efad0,0xe27f0000)
    to space 102400K, 0% used [0xe27f0000,0xe27f0000,0xe8bf0000)
    ParOldGen total 798720K, used 758318K [0x85ff0000, 0xb6bf0000, 0xb6bf0000)
    object space 798720K, 94% used [0x85ff0000,0xb447b968,0xb6bf0000)
    PSPermGen total 98304K, used 77426K [0x7fff0000, 0x85ff0000, 0x85ff0000)
    object space 98304K, 78% used [0x7fff0000,0x84b8cbc8,0x85ff0000)
    Total time for which application threads were stopped: 0.0613045 seconds
    {Heap before GC invocations=28726 (full 187):
    PSYoungGen      total 716800K, used 716798K [0xb6bf0000, 0xe8bf0000, 0xe8bf0000)
      eden space 614400K, 100% used [0xb6bf0000,0xdc3f0000,0xdc3f0000)
      from space 102400K, 99% used [0xdc3f0000,0xe27efad0,0xe27f0000)
      to   space 102400K, 0% used [0xe27f0000,0xe27f0000,0xe8bf0000)
    ParOldGen       total 798720K, used 758318K [0x85ff0000, 0xb6bf0000, 0xb6bf0000)
      object space 798720K, 94% used [0x85ff0000,0xb447b968,0xb6bf0000)
    PSPermGen       total 98304K, used 77426K [0x7fff0000, 0x85ff0000, 0x85ff0000)
      object space 98304K, 78% used [0x7fff0000,0x84b8cbc8,0x85ff0000)
    2012-01-31T07:39:32.350-0500: 329853.039: [GC [PSYoungGen: 716798K->102393K(716800K)] 1475117K->879812K(1515520K), 0.0614928 secs] [Times: user=0.44 sys=0.00, real=0.06 secs]
    Heap after GC invocations=28726 (full 187):
    PSYoungGen total 716800K, used 102393K [0xb6bf0000, 0xe8bf0000, 0xe8bf0000)
    eden space 614400K, 0% used [0xb6bf0000,0xb6bf0000,0xdc3f0000)
    from space 102400K, 99% used [0xe27f0000,0xe8bee458,0xe8bf0000)
    to space 102400K, 0% used [0xdc3f0000,0xdc3f0000,0xe27f0000)
    ParOldGen total 798720K, used 777419K [0x85ff0000, 0xb6bf0000, 0xb6bf0000)
    object space 798720K, 97% used [0x85ff0000,0xb5722cc8,0xb6bf0000)
    PSPermGen total 98304K, used 77426K [0x7fff0000, 0x85ff0000, 0x85ff0000)
    object space 98304K, 78% used [0x7fff0000,0x84b8cbc8,0x85ff0000)
    Total time for which application threads were stopped: 0.0668004 seconds
    {Heap before GC invocations=28727 (full 187):
    PSYoungGen      total 716800K, used 716793K [0xb6bf0000, 0xe8bf0000, 0xe8bf0000)
      eden space 614400K, 100% used [0xb6bf0000,0xdc3f0000,0xdc3f0000)
      from space 102400K, 99% used [0xe27f0000,0xe8bee458,0xe8bf0000)
      to   space 102400K, 0% used [0xdc3f0000,0xdc3f0000,0xe27f0000)
    ParOldGen       total 798720K, used 777419K [0x85ff0000, 0xb6bf0000, 0xb6bf0000)
      object space 798720K, 97% used [0x85ff0000,0xb5722cc8,0xb6bf0000)
    PSPermGen       total 98304K, used 77426K [0x7fff0000, 0x85ff0000, 0x85ff0000)
      object space 98304K, 78% used [0x7fff0000,0x84b8cbc8,0x85ff0000)
    2012-01-31T07:39:37.740-0500: 329858.432: [GC-- [PSYoungGen: 716793K->716793K(716800K)] 1494212K->1515510K(1515520K), 3.9532929 secs] [Times: user=0.72 sys=0.03, real=3.95 secs]
    Heap after GC invocations=28727 (full 187):
    PSYoungGen total 716800K, used 716793K [0xb6bf0000, 0xe8bf0000, 0xe8bf0000)
    eden space 614400K, 100% used [0xb6bf0000,0xdc3f0000,0xdc3f0000)
    from space 102400K, 99% used [0xe27f0000,0xe8bee458,0xe8bf0000)
    to space 102400K, 99% used [0xdc3f0000,0xe27efee0,0xe27f0000)
    ParOldGen total 798720K, used 798717K [0x85ff0000, 0xb6bf0000, 0xb6bf0000)
    object space 798720K, 99% used [0x85ff0000,0xb6bef670,0xb6bf0000)
    PSPermGen total 98304K, used 77426K [0x7fff0000, 0x85ff0000, 0x85ff0000)
    object space 98304K, 78% used [0x7fff0000,0x84b8cbc8,0x85ff0000)
    329862.386: [pre compact{Heap before GC invocations=28728 (full 188):
    PSYoungGen      total 716800K, used 716793K [0xb6bf0000, 0xe8bf0000, 0xe8bf0000)
      eden space 614400K, 100% used [0xb6bf0000,0xdc3f0000,0xdc3f0000)
      from space 102400K, 99% used [0xe27f0000,0xe8bee458,0xe8bf0000)
      to   space 102400K, 99% used [0xdc3f0000,0xe27efee0,0xe27f0000)
    ParOldGen       total 798720K, used 798717K [0x85ff0000, 0xb6bf0000, 0xb6bf0000)
      object space 798720K, 99% used [0x85ff0000,0xb6bef670,0xb6bf0000)
    PSPermGen       total 98304K, used 77426K [0x7fff0000, 0x85ff0000, 0x85ff0000)
      object space 98304K, 78% used [0x7fff0000,0x84b8cbc8,0x85ff0000)
    , 0.0003397 secs]
    2012-01-31T07:39:41.694-0500: 329862.386: [Full GC329862.388: [marking phase329862.388: [par mark, 0.5320380 secs]
    329862.921: [reference processing, 0.0051108 secs]
    329862.926: [class unloading, 0.0369949 secs]
    , 0.5742662 secs]
    *329862.963: [summary phase, 8.9943085 secs]*
    329871.957: [adjust roots, 0.0357495 secs]
    329871.993: [compact perm gen, 0.0782944 secs]
    329872.071: [compaction phase329872.071: [drain task setup, 0.0006238 secs]
    329872.072: [dense prefix task setup, 0.0000046 secs]
    329872.072: [steal task setup, 0.0000005 secs]
    329872.072: [par compact, 0.2223263 secs]
    329872.295: [deferred updates, 0.0189229 secs]
    , 0.2421987 secs]
    *329872.313: [post compact, 29.4723376 secs]*
    [PSYoungGen: 716793K->0K(716800K)] [ParOldGen: 798717K->335346K(798720K)] 1515510K->335346K(1515520K) [PSPermGen: 77426K->77422K(98304K)], 39.3998183 secs] [Times: user=3.53 sys=0.16, real=39.39 secs]
    Heap after GC invocations=28728 (full 188):
    PSYoungGen total 716800K, used 0K [0xb6bf0000, 0xe8bf0000, 0xe8bf0000)
    eden space 614400K, 0% used [0xb6bf0000,0xb6bf0000,0xdc3f0000)
    from space 102400K, 0% used [0xe27f0000,0xe27f0000,0xe8bf0000)
    to space 102400K, 0% used [0xdc3f0000,0xdc3f0000,0xe27f0000)
    ParOldGen total 798720K, used 335346K [0x85ff0000, 0xb6bf0000, 0xb6bf0000)
    object space 798720K, 41% used [0x85ff0000,0x9a76c838,0xb6bf0000)
    PSPermGen total 98304K, used 77422K [0x7fff0000, 0x85ff0000, 0x85ff0000)
    object space 98304K, 78% used [0x7fff0000,0x84b8ba08,0x85ff0000)
    Total time for which application threads were stopped: *43.3590538 seconds*
    Total time for which application threads were stopped: 0.0180008 seconds

    Thanks for the reply. The tuning guide does not detail the different phases
    when collecting the old generation, but it has some information regarding fragmentation:
    "Turning on the throughput collector should just make the minor collection
    pauses shorter. Because there are multiple garbage collector threads
    participating in the minor collection there is a *small possibility of fragmentation*
    due to promotions from the young generation to the tenured generation
    during the collection. Each garbage collection thread reserves
    *a part of the tenured generation for promotions* and the division of the
    available space into these "promotion buffers" can cause a fragmentation effect."
    Are increased "post compacting" times are a clear indication for fragmentation
    of the tenured generation?

  • User interface lags severely on my 2.2GHz mbook pro 3,1

    I usually run my laptop just plugged in without battery ever since i had my first battery totally fry on me within 6 months of usage. And i needed to use my computer intensively the last few days so i plugged the battery in reset the computer reset power management controller and started working. Directly after bootup the computer runs fine and fast but shortly after the interface lags greatly. Scrolling in safari becomes painfull, mouse movements not as smooth, and response time to lots of things are ridiculous. Wanted to figure out what was going on. So i downloaded xbench and ran some tests, everything seems normal except for user interface tests.
    Directly after boot i would get a score of 130
    after some time when i notice it's not working well it drops to 11-15
    what could this be? I heard from some other posts it could be skype, i never launched skype still same thing. Activity monitor reports nothing unusual.
    Please help. This is ridiculous. I couldn't even use aperture when touching up a photo i took for a billboard ad.

    As Allan says, Rani, running without the battery will indeed slow down your processor, which puts it at something of a handicap right from the start.
    It sounds as if something else may be adding to this lag, though. You say that Activity Monitor reports nothing unusual. Does this apply to both CPU and RAM usage? When the problem is occurring what sort of CPU percentage is being reported for the most "CPU hungry" processes? What about the "Page ins / page outs" when you look at "System memory"?
    How full is your HD? If it is , say, less than about 20% free then it is quite possible that you are suffering from a lot of free space fragmentation. Aperture is one application which can add to fragmentation effects , too.
    As far as Aperture goes, have you tried rebuilding the Aperture database files?
    How about corrupt or duplicated fonts? It may be that the slowdown is occuring after an attempt to access such an item in one program or another. Check for corrupt or duplicated fonts with Font Book , and get rid of any that it reports.
    Have you booted up from your OS DVD and run Disk Utility to "repair disk" recently? If not give it a try. It is not uncommon for some directory corruption to build up over time. Alternatively you could try a "Safe Boot", though it won't directly provide you with as much information as using Disk Utility. (see http://support.apple.com/kb/TS1417 for a description of various options for directory repair).
    You might also want to check your HD with Smart Utility.
    Cheers
    Rod

  • GC freeze when collecting old generation

    h1. GC is freezing from time to time
    h2. The application
    JBoss 4.x with (approx 2000 threads) with ORACLE 10g(/RAC). The load is varying during the day,
    but typically there is a high load for several hours (8h-12h), after that the system
    is basically idle. The entire application is just plain java (no additional native dll's).
    h2. The Problem -> GC Freeze
    The application server is rebooted once every week. Collecting the old generation takes typically less than 2 secs. However,
    sometimes (after days) we experience extensive GC times when collecting the old generation:
    Typically the major portion of the delay is found in the following phases:
    *[summary phase, 8.9943085 secs]*
    *[post compact, 29.4723376 secs]*
    Total time for which application threads were stopped:  43.3590538 seconds
    h2. JVM (java –version)
    java version "1.6.0_24"
    Java(TM) SE Runtime Environment (build 1.6.0_24-b07)
    Java HotSpot(TM) Client VM (build 19.1-b02, mixed mode)
    h2. The hardware/OS
    OS: Microsoft Windows XP Service Pack 2 (build 3790) (64bit)
    CPU: Intel(R) Xeon(R) CPU 8X E5530 @ 2.40GHz (Hyper Threading Enabled), RAM: 4078 Mb total
    h2. GC Settings
    -Dsun.rmi.dgc.client.gcInterval=3600000 -Dsun.rmi.dgc.server.gcInterval=3600000
    -server -Xmx1580m -Xms1580m -Xmn800m
    -Xss128k-XX:ThreadStackSize=128
    -XX:+UseParallelGC
    -XX:ParallelGCThreads=7
    -XX:+UseParallelOldGC
    -XX:-UseAdaptiveSizePolicy -XX:+ExplicitGCInvokesConcurrent
    -XX:MaxGCPauseMillis=50 -XX:SurvivorRatio=6 -XX:MaxTenuringThreshold=30
    -XX:PermSize=96m -XX:MaxPermSize=96m
    -XX:+PrintParallelOldGCPhaseTimes -XX:+PrintHeapAtGC -XX:+PrintGCDetails -XX:+PrintGCDateStamps -XX:+PrintGCApplicationStoppedTim
    h4. 1. Can someone shed some light on the summary and post compact phase? Which steps are taken by the JVM here?
    What might take so long?
    h4. 2. I observed, that the JVM memory footprint (perfmon/private bytes of the JVM) is temporally increasing and the total memory usage
    goes from 2.2 up to 3.0 GB. This additional memory is allocated on the C++ heap! For what? Why does a JVM temporally allocate
    so much memory on the C++ heap (the application is just plain java).
    h4. 3. Can the root cause for the intensive “post compacting” times be fragmentation of the java heap.
    The documenation indicates that fragmentation of the old generation is possible:
    "Each garbage collection thread reserves a part of the tenured generation for promotions and
    the division of the available space into these "promotion buffers" can cause a
    fragmentation effect."
    Is there a simple way monitor/log the fragementation of the java heap?
    h4. 4. Is there a known Bug bug in java version "1.6.0_24" that can cause this freeze?
    Thanks for any help!*
    ---- GC snippet
    2012-01-31T07:39:32.350-0500: 329853.039: [GC [PSYoungGen: 716798K->102393K(716800K)] 1475117K->879812K(1515520K), 0.0614928 secs] [Times: user=0.44 sys=0.00, real=0.06 secs]
    Heap after GC invocations=28726 (full 187):
    PSYoungGen total 716800K, used 102393K [0xb6bf0000, 0xe8bf0000, 0xe8bf0000)
    eden space 614400K, 0% used [0xb6bf0000,0xb6bf0000,0xdc3f0000)
    from space 102400K, 99% used [0xe27f0000,0xe8bee458,0xe8bf0000)
    to space 102400K, 0% used [0xdc3f0000,0xdc3f0000,0xe27f0000)
    ParOldGen total 798720K, used 777419K [0x85ff0000, 0xb6bf0000, 0xb6bf0000)
    object space 798720K, 97% used [0x85ff0000,0xb5722cc8,0xb6bf0000)
    PSPermGen total 98304K, used 77426K [0x7fff0000, 0x85ff0000, 0x85ff0000)
    object space 98304K, 78% used [0x7fff0000,0x84b8cbc8,0x85ff0000)
    Total time for which application threads were stopped: 0.0668004 seconds
    {Heap before GC invocations=28727 (full 187):
    PSYoungGen      total 716800K, used 716793K [0xb6bf0000, 0xe8bf0000, 0xe8bf0000)
      eden space 614400K, 100% used [0xb6bf0000,0xdc3f0000,0xdc3f0000)
      from space 102400K, 99% used [0xe27f0000,0xe8bee458,0xe8bf0000)
      to   space 102400K, 0% used [0xdc3f0000,0xdc3f0000,0xe27f0000)
    ParOldGen       total 798720K, used 777419K [0x85ff0000, 0xb6bf0000, 0xb6bf0000)
      object space 798720K, 97% used [0x85ff0000,0xb5722cc8,0xb6bf0000)
    PSPermGen       total 98304K, used 77426K [0x7fff0000, 0x85ff0000, 0x85ff0000)
      object space 98304K, 78% used [0x7fff0000,0x84b8cbc8,0x85ff0000)
    h2. *2012-01-31T07:39:37.740-0500: 329858.432: [GC-- [PSYoungGen: 716793K->716793K(716800K)] 1494212K->1515510K(1515520K), 3.9532929 secs] [Times: user=0.72 sys=0.03, real=3.95 secs]*
    Heap after GC invocations=28727 (full 187):
    PSYoungGen total 716800K, used 716793K [0xb6bf0000, 0xe8bf0000, 0xe8bf0000)
    eden space 614400K, 100% used [0xb6bf0000,0xdc3f0000,0xdc3f0000)
    from space 102400K, 99% used [0xe27f0000,0xe8bee458,0xe8bf0000)
    to space 102400K, 99% used [0xdc3f0000,0xe27efee0,0xe27f0000)
    ParOldGen total 798720K, used 798717K [0x85ff0000, 0xb6bf0000, 0xb6bf0000)
    object space 798720K, 99% used [0x85ff0000,0xb6bef670,0xb6bf0000)
    PSPermGen total 98304K, used 77426K [0x7fff0000, 0x85ff0000, 0x85ff0000)
    object space 98304K, 78% used [0x7fff0000,0x84b8cbc8,0x85ff0000)
    329862.386: [pre compact{Heap before GC invocations=28728 (full 188):
    PSYoungGen      total 716800K, used 716793K [0xb6bf0000, 0xe8bf0000, 0xe8bf0000)
      eden space 614400K, 100% used [0xb6bf0000,0xdc3f0000,0xdc3f0000)
      from space 102400K, 99% used [0xe27f0000,0xe8bee458,0xe8bf0000)
      to   space 102400K, 99% used [0xdc3f0000,0xe27efee0,0xe27f0000)
    ParOldGen       total 798720K, used 798717K [0x85ff0000, 0xb6bf0000, 0xb6bf0000)
      object space 798720K, 99% used [0x85ff0000,0xb6bef670,0xb6bf0000)
    PSPermGen       total 98304K, used 77426K [0x7fff0000, 0x85ff0000, 0x85ff0000)
      object space 98304K, 78% used [0x7fff0000,0x84b8cbc8,0x85ff0000)
    , 0.0003397 secs]
    h2. *2012-01-31T07:39:41.694-0500: 329862.386: [Full GC329862.388: [marking phase329862.388: [par mark, 0.5320380 secs]*
    329862.921: [reference processing, 0.0051108 secs]
    329862.926: [class unloading, 0.0369949 secs]
    , 0.5742662 secs]
    *329862.963: [summary phase, 8.9943085 secs]*
    329871.957: [adjust roots, 0.0357495 secs]
    329871.993: [compact perm gen, 0.0782944 secs]
    329872.071: [compaction phase329872.071: [drain task setup, 0.0006238 secs]
    329872.072: [dense prefix task setup, 0.0000046 secs]
    329872.072: [steal task setup, 0.0000005 secs]
    329872.072: [par compact, 0.2223263 secs]
    329872.295: [deferred updates, 0.0189229 secs]
    , 0.2421987 secs]
    *329872.313: [post compact, 29.4723376 secs]*
    h2. [PSYoungGen: 716793K->0K(716800K)] [ParOldGen: 798717K->335346K(798720K)] 1515510K->335346K(1515520K) [PSPermGen: 77426K->77422K(98304K)], 39.3998183 secs] [Times: user=3.53 sys=0.16, real=39.39 secs]
    Heap after GC invocations=28728 (full 188):
    PSYoungGen total 716800K, used 0K [0xb6bf0000, 0xe8bf0000, 0xe8bf0000)
    eden space 614400K, 0% used [0xb6bf0000,0xb6bf0000,0xdc3f0000)
    from space 102400K, 0% used [0xe27f0000,0xe27f0000,0xe8bf0000)
    to space 102400K, 0% used [0xdc3f0000,0xdc3f0000,0xe27f0000)
    ParOldGen total 798720K, used 335346K [0x85ff0000, 0xb6bf0000, 0xb6bf0000)
    object space 798720K, 41% used [0x85ff0000,0x9a76c838,0xb6bf0000)
    PSPermGen total 98304K, used 77422K [0x7fff0000, 0x85ff0000, 0x85ff0000)
    object space 98304K, 78% used [0x7fff0000,0x84b8ba08,0x85ff0000)
    h2. Total time for which application threads were stopped: 43.3590538 seconds
    Total time for which application threads were stopped: 0.0180008 seconds

    Intensive GC times when collecting the old generation with parallelOldGC. Locking.

  • Question on fragmentation and ALTER INDEX REBUILD/REORGANIZE not effecting it

    The problem I ran into was troubleshooting a sporadically slow singleton lookup on a Clustered Index in a table with about 8 million rows, which is a separate issue I may need to submit for help. That aside, during that troubleshooting I noticed fragmentation
    on the Unique Clustered Index (it's a VARCHAR(20)), and then noticed the fragmentation in other indexes on this table. See sys.dm_db_index_physical_stats and DBCC SHOWCONTIG results below.
    SELECT
     substring(OBJECT_NAME(i.object_id),1,30) AS TableName,
     substring(i.name,1,40) AS TableIndexName,
     i.index_id, phystat.index_level,
     phystat.avg_fragmentation_in_percent 
    FROM
     sys.dm_db_index_physical_stats(DB_ID(), NULL, NULL, NULL, 'DETAILED') phystat inner JOIN sys.indexes i 
    ON i.object_id = phystat.object_id 
    AND i.index_id = phystat.index_id WHERE
    OBJECT_NAME(i.object_id) = 'CONSUMERS'
    TableName                      TableIndexName                           index_id    index_level avg_fragmentation_in_percent
    CONSUMERS                      UNI2K_CONSUMERS                          1           0      
        0.154827346202469
    CONSUMERS                      UNI2K_CONSUMERS                          1           1      
        35.2941176470588
    CONSUMERS                      UNI2K_CONSUMERS                          1           2      
        0
    CONSUMERS                      PK__CONSUMER__7F6B0B8B286302EC           2           0           0.336078590685822
    CONSUMERS                      PK__CONSUMER__7F6B0B8B286302EC           2           1           100
    CONSUMERS                      PK__CONSUMER__7F6B0B8B286302EC           2           2           0
    CONSUMERS                      UNI1K_CONSUMERS                          3           0      
        0.156451316031658
    CONSUMERS                      UNI1K_CONSUMERS                          3           1      
        61.1510791366906
    CONSUMERS                      UNI1K_CONSUMERS                          3           2      
        0
    CONSUMERS                      IDX1_CONSUMERS                           4           0      
        0.215271389144434
    CONSUMERS                      IDX1_CONSUMERS                           4           1      
        40
    CONSUMERS                      IDX1_CONSUMERS                           4           2      
        100
    CONSUMERS                      IDX1_CONSUMERS                           4           3      
        0
    CONSUMERS                      IDX2_CONSUMERS                           5           0      
        0.222614710968834
    CONSUMERS                      IDX2_CONSUMERS                           5           1      
        38.6281588447653
    CONSUMERS                      IDX2_CONSUMERS                           5           2      
        75
    CONSUMERS                      IDX2_CONSUMERS                           5           3      
        0
    (17 row(s) affected)
    DBCC SHOWCONTIG('CONSUMERS') WITH ALL_INDEXES
    DBCC SHOWCONTIG scanning 'CONSUMERS' table...
    Table: 'CONSUMERS' (645577338); index ID: 1, database ID: 5
    TABLE level scan performed.
    - Pages Scanned................................: 70401
    - Extents Scanned..............................: 8827
    - Extent Switches..............................: 8843
    - Avg. Pages per Extent........................: 8.0
    - Scan Density [Best Count:Actual Count].......: 99.51% [8801:8844]
    - Logical Scan Fragmentation ..................: 0.15%
    - Extent Scan Fragmentation ...................: 23.76%
    - Avg. Bytes Free per Page.....................: 47.2
    - Avg. Page Density (full).....................: 99.42%
    DBCC SHOWCONTIG scanning 'CONSUMERS' table...
    Table: 'CONSUMERS' (645577338); index ID: 2, database ID: 5
    LEAF level scan performed.
    - Pages Scanned................................: 27077
    - Extents Scanned..............................: 3402
    - Extent Switches..............................: 3402
    - Avg. Pages per Extent........................: 8.0
    - Scan Density [Best Count:Actual Count].......: 99.47% [3385:3403]
    - Logical Scan Fragmentation ..................: 0.34%
    - Extent Scan Fragmentation ...................: 11.88%
    - Avg. Bytes Free per Page.....................: 24.1
    - Avg. Page Density (full).....................: 99.70%
    DBCC SHOWCONTIG scanning 'CONSUMERS' table...
    Table: 'CONSUMERS' (645577338); index ID: 3, database ID: 5
    LEAF level scan performed.
    - Pages Scanned................................: 54330
    - Extents Scanned..............................: 6803
    - Extent Switches..............................: 6805
    - Avg. Pages per Extent........................: 8.0
    - Scan Density [Best Count:Actual Count].......: 99.79% [6792:6806]
    - Logical Scan Fragmentation ..................: 0.16%
    - Extent Scan Fragmentation ...................: 7.03%
    - Avg. Bytes Free per Page.....................: 50.3
    - Avg. Page Density (full).....................: 99.38%
    DBCC SHOWCONTIG scanning 'CONSUMERS' table...
    Table: 'CONSUMERS' (645577338); index ID: 4, database ID: 5
    LEAF level scan performed.
    - Pages Scanned................................: 54350
    - Extents Scanned..............................: 6808
    - Extent Switches..............................: 6837
    - Avg. Pages per Extent........................: 8.0
    - Scan Density [Best Count:Actual Count].......: 99.36% [6794:6838]
    - Logical Scan Fragmentation ..................: 0.22%
    - Extent Scan Fragmentation ...................: 7.17%
    - Avg. Bytes Free per Page.....................: 53.2
    - Avg. Page Density (full).....................: 99.34%
    DBCC SHOWCONTIG scanning 'CONSUMERS' table...
    Table: 'CONSUMERS' (645577338); index ID: 5, database ID: 5
    LEAF level scan performed.
    - Pages Scanned................................: 54354
    - Extents Scanned..............................: 6804
    - Extent Switches..............................: 6846
    - Avg. Pages per Extent........................: 8.0
    - Scan Density [Best Count:Actual Count].......: 99.24% [6795:6847]
    - Logical Scan Fragmentation ..................: 0.22%
    - Extent Scan Fragmentation ...................: 7.13%
    - Avg. Bytes Free per Page.....................: 53.8
    - Avg. Page Density (full).....................: 99.33%
    DBCC execution completed. If DBCC printed error messages, contact your system administrator.
    This fragmentation I found shocking because I reorg nightly and have a weekly rebuild task running that I set up through the Maintenance Plan wizard (which I've verified has been running). So I attempted to reorg these manually (especially index ID: 1)
    and to my shock the fragmentation % did not change at all. I then took the SQL provided by the Maintenance Plan for rebuilding the indexes and found that after running that it didn't change the fragementation % at all either (commands run shown below).
    ALTER INDEX [IDX1_CONSUMERS] ON [dbo].[CONSUMERS] REBUILD PARTITION = ALL WITH ( PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON, ONLINE = ON, SORT_IN_TEMPDB = ON )
    GO
    ALTER INDEX [IDX2_CONSUMERS] ON [dbo].[CONSUMERS] REBUILD PARTITION = ALL WITH ( PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON, ONLINE = ON, SORT_IN_TEMPDB = ON )
    GO
    ALTER INDEX [UNI1K_CONSUMERS] ON [dbo].[CONSUMERS] REBUILD PARTITION = ALL WITH ( PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON, IGNORE_DUP_KEY  = OFF, ONLINE = ON, SORT_IN_TEMPDB
    = ON )
    GO
    ALTER INDEX [UNI2K_CONSUMERS] ON [dbo].[CONSUMERS] REBUILD PARTITION = ALL WITH ( PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON, IGNORE_DUP_KEY  = OFF, ONLINE = ON, SORT_IN_TEMPDB
    = ON )
    GO
    Fragmentation did not change until I performed a "CREATE ... DROP_EXISTING = ON" on the 4 non PK indexes and a manual rebuild of Primary Key offline not specifying any other parameters, which all seemed completely overkill to ensure the defragmentation
    actually got done. Final sys.dm_db_index_physical_stats and DBCC SHOWCONTIG results below.
    SELECT
     substring(OBJECT_NAME(i.object_id),1,30) AS TableName,
     substring(i.name,1,40) AS TableIndexName,
     i.index_id, phystat.index_level,
     phystat.avg_fragmentation_in_percent 
    FROM
     sys.dm_db_index_physical_stats(DB_ID(), NULL, NULL, NULL, 'DETAILED') phystat inner JOIN sys.indexes i 
    ON i.object_id = phystat.object_id 
    AND i.index_id = phystat.index_id WHERE
    OBJECT_NAME(i.object_id) = 'CONSUMERS'
    TableName                      TableIndexName                           index_id    index_level avg_fragmentation_in_percent
    CONSUMERS                      UNI2K_CONSUMERS                          1           0      
        0.0213458562356583
    CONSUMERS                      UNI2K_CONSUMERS                          1           1      
        11.2426035502959
    CONSUMERS                      UNI2K_CONSUMERS                          1           2      
        0
    CONSUMERS                      PK__CONSUMER__7F6B0B8B286302EC           2           0           0.0460971112476951
    CONSUMERS                      PK__CONSUMER__7F6B0B8B286302EC           2           1           14.2857142857143
    CONSUMERS                      PK__CONSUMER__7F6B0B8B286302EC           2           2           0
    CONSUMERS                      UNI1K_CONSUMERS                          3           0      
        0.0225314031431307
    CONSUMERS                      UNI1K_CONSUMERS                          3           1      
        10.6194690265487
    CONSUMERS                      UNI1K_CONSUMERS                          3           2      
        0
    CONSUMERS                      IDX1_CONSUMERS                           4           0      
        0.0225318262045139
    CONSUMERS                      IDX1_CONSUMERS                           4           1      
        10.7296137339056
    CONSUMERS                      IDX1_CONSUMERS                           4           2      
        0
    CONSUMERS                      IDX1_CONSUMERS                           4           3      
        0
    CONSUMERS                      IDX2_CONSUMERS                           5           0      
        0.0225314031431307
    CONSUMERS                      IDX2_CONSUMERS                           5           1      
        12.0171673819742
    CONSUMERS                      IDX2_CONSUMERS                           5           2      
        0
    CONSUMERS                      IDX2_CONSUMERS                           5           3      
        0
    (17 row(s) affected)
    DBCC SHOWCONTIG('CONSUMERS') WITH ALL_INDEXES
    DBCC SHOWCONTIG scanning 'CONSUMERS' table...
    Table: 'CONSUMERS' (645577338); index ID: 1, database ID: 5
    TABLE level scan performed.
    - Pages Scanned................................: 56217
    - Extents Scanned..............................: 7029
    - Extent Switches..............................: 7028
    - Avg. Pages per Extent........................: 8.0
    - Scan Density [Best Count:Actual Count].......: 99.99% [7028:7029]
    - Logical Scan Fragmentation ..................: 0.02%
    - Extent Scan Fragmentation ...................: 0.44%
    - Avg. Bytes Free per Page.....................: 32.4
    - Avg. Page Density (full).....................: 99.60%
    DBCC SHOWCONTIG scanning 'CONSUMERS' table...
    Table: 'CONSUMERS' (645577338); index ID: 2, database ID: 5
    LEAF level scan performed.
    - Pages Scanned................................: 26032
    - Extents Scanned..............................: 3256
    - Extent Switches..............................: 3255
    - Avg. Pages per Extent........................: 8.0
    - Scan Density [Best Count:Actual Count].......: 99.94% [3254:3256]
    - Logical Scan Fragmentation ..................: 0.05%
    - Extent Scan Fragmentation ...................: 0.31%
    - Avg. Bytes Free per Page.....................: 11.1
    - Avg. Page Density (full).....................: 99.86%
    DBCC SHOWCONTIG scanning 'CONSUMERS' table...
    Table: 'CONSUMERS' (645577338); index ID: 3, database ID: 5
    LEAF level scan performed.
    - Pages Scanned................................: 53259
    - Extents Scanned..............................: 6659
    - Extent Switches..............................: 6658
    - Avg. Pages per Extent........................: 8.0
    - Scan Density [Best Count:Actual Count].......: 99.98% [6658:6659]
    - Logical Scan Fragmentation ..................: 0.02%
    - Extent Scan Fragmentation ...................: 0.35%
    - Avg. Bytes Free per Page.....................: 40.5
    - Avg. Page Density (full).....................: 99.50%
    DBCC SHOWCONTIG scanning 'CONSUMERS' table...
    Table: 'CONSUMERS' (645577338); index ID: 4, database ID: 5
    LEAF level scan performed.
    - Pages Scanned................................: 53258
    - Extents Scanned..............................: 6659
    - Extent Switches..............................: 6658
    - Avg. Pages per Extent........................: 8.0
    - Scan Density [Best Count:Actual Count].......: 99.98% [6658:6659]
    - Logical Scan Fragmentation ..................: 0.02%
    - Extent Scan Fragmentation ...................: 0.53%
    - Avg. Bytes Free per Page.....................: 40.3
    - Avg. Page Density (full).....................: 99.50%
    DBCC SHOWCONTIG scanning 'CONSUMERS' table...
    Table: 'CONSUMERS' (645577338); index ID: 5, database ID: 5
    LEAF level scan performed.
    - Pages Scanned................................: 53259
    - Extents Scanned..............................: 6659
    - Extent Switches..............................: 6658
    - Avg. Pages per Extent........................: 8.0
    - Scan Density [Best Count:Actual Count].......: 99.98% [6658:6659]
    - Logical Scan Fragmentation ..................: 0.02%
    - Extent Scan Fragmentation ...................: 0.59%
    - Avg. Bytes Free per Page.....................: 40.5
    - Avg. Page Density (full).....................: 99.50%
    DBCC execution completed. If DBCC printed error messages, contact your system administrator.
    For the record, here's the version I'm running:
    select @@VERSION
    Microsoft SQL Server 2008 R2 (SP1) - 10.50.2500.0 (X64) 
     Jun 17 2011 00:54:03 
     Copyright (c) Microsoft Corporation
     Enterprise Edition (64-bit) on Windows NT 6.1 <X64> (Build 7601: Service Pack 1)
    In summary my question is - why didn't ALTER INDEX ... REBUILD/REORGANIZE modify the index_level 1 fragmentation as reported by sys.dm_db_index_physical_stats, nor would it correct the Extent Scan Fragmentation as reported by DBCC SHOWCONTIG?

    Hi Brian.cs ,
    SQL Server will not rebuild indexes that are not large enough. Could you please have a look a the
    fragment_count which is  one of the fields in the
    sys.dm_db_index_physical_stats view to check whether it is low or not ?
    Best Regards,
    Peja
    Please remember to click "Mark as Answer" on the post that helps you, and to click "Unmark as Answer" if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.
    Peja, here's the information you requested, and of course this was after I dropped/recreated because rebuild didn't seem to actually address the fragmentation - the index I was most concerned about at index_level = 0 showed a fragment_count = 8922. FYI this
    table has over 8 million rows. And apologies for the delayed response, was on vacation over the near year.
    SELECT
     substring(OBJECT_NAME(i.object_id),1,30) AS TableName,
     substring(i.name,1,40) AS TableIndexName,
     i.index_id, phystat.index_level,
     phystat.avg_fragmentation_in_percent, fragment_count 
    FROM
     sys.dm_db_index_physical_stats(DB_ID(), NULL, NULL, NULL, 'DETAILED') phystat inner JOIN sys.indexes i 
    ON i.object_id = phystat.object_id 
    AND i.index_id = phystat.index_id WHERE
    OBJECT_NAME(i.object_id) = 'CONSUMERS'
    TableName                      TableIndexName                           index_id    index_level avg_fragmentation_in_percent
    fragment_count
    CONSUMERS                      UNI2K_CONSUMERS                          1           0        
      0.259780818806428            8922
    CONSUMERS                      UNI2K_CONSUMERS                          1           1        
      39.4190871369295             86
    CONSUMERS                      UNI2K_CONSUMERS                          1           2        
      0                            1
    CONSUMERS                      PK__CONSUMER__7F6B0B8B286302EC           2           0           0.240887634434766    
           5182
    CONSUMERS                      PK__CONSUMER__7F6B0B8B286302EC           2           1           80.3738317757009    
            84
    CONSUMERS                      PK__CONSUMER__7F6B0B8B286302EC           2           2           0          
                     1
    CONSUMERS                      UNI1K_CONSUMERS                          3           0        
      0.0661472879611936           8532
    CONSUMERS                      UNI1K_CONSUMERS                          3           1        
      53.4883720930233             86
    CONSUMERS                      UNI1K_CONSUMERS                          3           2        
      0                            1
    CONSUMERS                      IDX1_CONSUMERS                           4           0        
      0.192426334498663            8598
    CONSUMERS                      IDX1_CONSUMERS                           4           1        
      31.5315315315315             95
    CONSUMERS                      IDX1_CONSUMERS                           4           2        
      85.7142857142857             7
    CONSUMERS                      IDX1_CONSUMERS                           4           3        
      0                            1
    CONSUMERS                      IDX2_CONSUMERS                           5           0        
      0.189494094835184            8613
    CONSUMERS                      IDX2_CONSUMERS                           5           1        
      31.8840579710145             97
    CONSUMERS                      IDX2_CONSUMERS                           5           2        
      85.7142857142857             7
    CONSUMERS                      IDX2_CONSUMERS                           5           3        
      0                            1

  • Effect of fragmentation in QOS

    If the packets are fragmented in ingress and QOS is used, Does the QOS will be maintained after fragmentation. Like in GRE we have QOS pre classify to preserve the bits.
    regards
    shivlu jain

    Hi Shivlu,
    During every fragmentation, the IP header is preserved. So if a packet is fragmented, first the header is preserved, the payload is fragmented and the original IP header is applied to all fragmented packets. This way you will still keep the IP Precedence or DSCP values in the IP header.
    This is true for GRE too.
    However, packet fragmentation can spike up your router processor.
    Link efficiency can be improved using Link Fragmentation Interleaving (LFI) by reducing serialization delay.
    HTH.
    Amit.

  • After Effects CS5.5 Error Rendering known clean project even after Reinstall and after System Restore

    I've been getting frequent, but not consistent, errors during rendering AE CS5.5 projects with lots of 3D layers and lights. I have gone back to a known clean project to confirm the issue isn't with a particular project. The error is usually an error invoking the advanced 3D render engine. This is sometimes followed by a bad tracked memory id popup. But sometimes the program just hangs up.
    My System:
    i7 [email protected]
    24GB RAM
    Windows 7 professional 64 bit SP1
    NVidia Geforce GTX 570
    I have trashed the preferences, cleaned the cache, turned off rendering multiple frames, deleted Open GL, updated the graphics card drivers and even tried reverting to old graphics card drivers. Window's Memory Diagnostic Tool didn't find any problems. System File Checker Tool didn't find any corrupt files. My system drive is not fragmented.  I have reinstalled AE, reinstalled all of CS5.5, and did a system restore to a known working point (both with and without doing the Windows updates that have occurred since the restore point). None of this fixed the problem.
    I have tried the script BG Renderer to render in the background. I have consistently gotten the following error running the script, which I'm hoping will be a clue:
    "aerender ERROR An existing connection was forcible closed by the remote host.
    :Unable to receive at line 314
    aerender ERROR: After Effects can not render for aerender. Another instance of aerender, or another script, may be running; or, AE may be waiting for a response from a modal dialog, or for a render to complete. Try running aerender without the - reuse flag to invoke a separate instance of After Effects."
    The first two times I tried to render with BG Renderer, the error came right after closing AE. But I still got the same error if I left AE open and just sat and watched.
    Any help is appreciated.

    Update: I believe I have discovered the problem! It was a bad RAM stick. Windows Memory Diagnostic tool found nothing wrong, and nothing in my system seemed to be effected other than the ability to render complex AE projects with 3D layers. After a complete system restore to a known working point failed to help, I opened up the machine. Finding nothing loose, I methodically tested all the memory sticks to find the culprit. Everything is running smoothly now, albeit on less RAM.

  • Can too large a folder cause issues and effect performace of my Mac Pro

    Hi, I have a 180 gb folder filled with important data within my Home folder. This folder has a many subfolders as well. The folder is on my startup drive and where I have Snow Leopard installed. Can too large a folder cause issues with my mac and effect performance? Thanks

    another way to ask, would you make better use of, and improve I/O and performance, if you used your other drive bays? yes.
    Boot drives with even less than 50% free is probably not a good idea. All depends on whether 200GB is on 1TB or on 500GB drive. And how fragmented free space even.
    Lifting, loading and writing or copying 4GB files of course does have an impact, so if you work with 2GB files in CS5....
    Having a dedicated type boot drive, media drive (and isolate media and library files) as well as scratch drive is normally done with Mac Pro.
    The biggest bang in performance: lean mean SSD boot drive.

  • KWin most effects dont load

    I can't enable the most KWin effects it says, that the api version of most effects are API incompatible.
    My device is a thinkpad edge E530 (Intel Core 3rd gen), im using Linux-pf Kernel (3.10.1), KMS is enabled and SNA is on.
    I can't say anything special except that this hapens with kwin and kwin_gles
    KWin output:
    QCoreApplication::sendPostedEvents: Cannot send posted events for objects in another thread
    QCoreApplication::sendPostedEvents: Cannot send posted events for objects in another thread
    libEGL warning: failed to create a pipe screen for i965
    OpenGL vendor string: Intel Open Source Technology Center
    OpenGL renderer string: Mesa DRI Intel(R) Ivybridge Mobile
    OpenGL version string: 3.1 (Core Profile) Mesa 9.2.0
    OpenGL shading language version string: 1.40
    Driver: Intel
    GPU class: IvyBridge
    OpenGL version: 3.1
    GLSL version: 1.40
    Mesa version: 9.2
    X server version: 1.14.2
    Linux kernel version: 3.10.1
    Direct rendering: yes
    Requires strict binding: no
    GLSL shaders: yes
    Texture NPOT support: yes
    Virtual Machine: no
    kwin(5282) KWin::EffectsHandlerImpl::loadEffect: Effect "kwin4_effect_resize" does not provide required API version, ignoring.
    kwin(5282) KWin::EffectsHandlerImpl::loadEffect: Effect "kwin4_effect_kscreen" does not provide required API version, ignoring.
    kwin(5282) KWin::EffectsHandlerImpl::loadEffect: Effect "kwin4_effect_flipswitch" does not provide required API version, ignoring.
    kwin(5282) KWin::EffectsHandlerImpl::loadEffect: Effect "kwin4_effect_wobblywindows" does not provide required API version, ignoring.
    kwin(5282) KWin::EffectsHandlerImpl::loadEffect: Effect "kwin4_effect_thumbnailaside" does not provide required API version, ignoring.
    kwin(5282) KWin::EffectsHandlerImpl::loadEffect: Effect "kwin4_effect_slidingpopups" does not provide required API version, ignoring.
    kwin(5282) KWin::EffectsHandlerImpl::loadEffect: Effect "kwin4_effect_cubeslide" does not provide required API version, ignoring.
    kwin(5282) KWin::EffectsHandlerImpl::loadEffect: Effect "kwin4_effect_logout" does not provide required API version, ignoring.
    kwin(5282) KWin::EffectsHandlerImpl::loadEffect: Effect "kwin4_effect_presentwindows" does not provide required API version, ignoring.
    kwin(5282) KWin::EffectsHandlerImpl::loadEffect: Effect "kwin4_effect_desktopgrid" does not provide required API version, ignoring.
    kwin(5282) KWin::EffectsHandlerImpl::loadEffect: Effect "kwin4_effect_highlightwindow" does not provide required API version, ignoring.
    kwin(5282) KWin::EffectsHandlerImpl::loadEffect: Effect "kwin4_effect_minimizeanimation" does not provide required API version, ignoring.
    kwin(5282) KWin::EffectsHandlerImpl::loadEffect: Effect "kwin4_effect_screenedge" does not provide required API version, ignoring.
    kwin(5282) KWin::EffectsHandlerImpl::loadEffect: Effect "kwin4_effect_screenshot" does not provide required API version, ignoring.
    kwin(5282) KWin::EffectsHandlerImpl::loadEffect: Effect "kwin4_effect_dashboard" does not provide required API version, ignoring.
    kwin(5282) KWin::EffectsHandlerImpl::loadEffect: Effect "kwin4_effect_blur" does not provide required API version, ignoring.
    kwin(5282) KWin::EffectsHandlerImpl::loadEffect: Effect "kwin4_effect_taskbarthumbnail" does not provide required API version, ignoring.
    kwin(5282) KWin::EffectsHandlerImpl::loadEffect: Effect "kwin4_effect_cube" does not provide required API version, ignoring.
    kwin(5282) KWin::EffectsHandlerImpl::loadEffect: Effect "kwin4_effect_startupfeedback" does not provide required API version, ignoring.
    kwin(5282) KWin::ColorServerInterface::callFinishedSlot: QDBusError("org.freedesktop.DBus.Error.UnknownObject", "No such object path '/modules/kolorserver'")
    kwin(5282): Update of color profiles failed
    kwin(5282) KWin::ColorServerInterface::callFinishedSlot: QDBusError("org.freedesktop.DBus.Error.UnknownObject", "No such object path '/modules/kolorserver'")
    kwin(5282) KWin::ColorServerInterface::callFinishedSlot: QDBusError("org.freedesktop.DBus.Error.UnknownObject", "No such object path '/modules/kolorserver'")
    Xorg.log:
    [ 13.866]
    X.Org X Server 1.14.2
    Release Date: 2013-06-25
    [ 13.866] X Protocol Version 11, Revision 0
    [ 13.866] Build Operating System: Linux 3.9.7-1-ARCH x86_64
    [ 13.866] Current Operating System: Linux loki 3.10.1-pf #2 SMP PREEMPT Thu Jul 18 17:26:13 CEST 2013 x86_64
    [ 13.866] Kernel command line: BOOT_IMAGE=/vmlinuz-linux-pf root=UUID=3f60dfb1-5c1e-4e05-99e2-c4a4df8b3895 ro init=/usr/lib/systemd/systemd pcie_aspm=force i915.i915_enable_rc6=1 i915.modeset=1 resume=file:/dev/sda3:0x44000 quiet
    [ 13.866] Build Date: 01 July 2013 10:48:42AM
    [ 13.866]
    [ 13.866] Current version of pixman: 0.30.2
    [ 13.866] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 13.866] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 13.866] (==) Log file: "/var/log/Xorg.0.log", Time: Sun Sep 1 00:55:52 2013
    [ 13.920] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 13.952] (==) No Layout section. Using the first Screen section.
    [ 13.952] (==) No screen section available. Using defaults.
    [ 13.952] (**) |-->Screen "Default Screen Section" (0)
    [ 13.952] (**) | |-->Monitor "<default monitor>"
    [ 13.952] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 13.952] (==) Automatically adding devices
    [ 13.952] (==) Automatically enabling devices
    [ 13.952] (==) Automatically adding GPU devices
    [ 13.982] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 13.982] Entry deleted from font path.
    [ 14.020] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/,
    /usr/share/fonts/100dpi/,
    /usr/share/fonts/75dpi/
    [ 14.020] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 14.020] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 14.028] (II) Loader magic: 0x7fdc20
    [ 14.028] (II) Module ABI versions:
    [ 14.028] X.Org ANSI C Emulation: 0.4
    [ 14.028] X.Org Video Driver: 14.1
    [ 14.028] X.Org XInput driver : 19.1
    [ 14.028] X.Org Server Extension : 7.0
    [ 14.028] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 14.029] (--) PCI:*(0:0:2:0) 8086:0166:17aa:5001 rev 9, Mem @ 0xe1400000/4194304, 0xd0000000/268435456, I/O @ 0x00006000/64
    [ 14.029] (--) PCI: (0:1:0:0) 10de:0de9:17aa:5001 rev 161, Mem @ 0xe0000000/16777216, 0xa0000000/536870912, 0xc0000000/33554432, I/O @ 0x00005000/128, BIOS @ 0x????????/524288
    [ 14.029] Initializing built-in extension Generic Event Extension
    [ 14.029] Initializing built-in extension SHAPE
    [ 14.029] Initializing built-in extension MIT-SHM
    [ 14.029] Initializing built-in extension XInputExtension
    [ 14.029] Initializing built-in extension XTEST
    [ 14.029] Initializing built-in extension BIG-REQUESTS
    [ 14.029] Initializing built-in extension SYNC
    [ 14.029] Initializing built-in extension XKEYBOARD
    [ 14.029] Initializing built-in extension XC-MISC
    [ 14.029] Initializing built-in extension SECURITY
    [ 14.029] Initializing built-in extension XINERAMA
    [ 14.029] Initializing built-in extension XFIXES
    [ 14.029] Initializing built-in extension RENDER
    [ 14.029] Initializing built-in extension RANDR
    [ 14.029] Initializing built-in extension COMPOSITE
    [ 14.029] Initializing built-in extension DAMAGE
    [ 14.029] Initializing built-in extension MIT-SCREEN-SAVER
    [ 14.029] Initializing built-in extension DOUBLE-BUFFER
    [ 14.029] Initializing built-in extension RECORD
    [ 14.029] Initializing built-in extension DPMS
    [ 14.029] Initializing built-in extension X-Resource
    [ 14.029] Initializing built-in extension XVideo
    [ 14.029] Initializing built-in extension XVideo-MotionCompensation
    [ 14.029] Initializing built-in extension XFree86-VidModeExtension
    [ 14.030] Initializing built-in extension XFree86-DGA
    [ 14.030] Initializing built-in extension XFree86-DRI
    [ 14.030] Initializing built-in extension DRI2
    [ 14.030] (II) LoadModule: "glx"
    [ 14.132] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 14.146] (II) Module glx: vendor="X.Org Foundation"
    [ 14.146] compiled for 1.14.2, module version = 1.0.0
    [ 14.146] ABI class: X.Org Server Extension, version 7.0
    [ 14.146] (==) AIGLX enabled
    [ 14.147] Loading extension GLX
    [ 14.147] (==) Matched intel as autoconfigured driver 0
    [ 14.147] (==) Matched intel as autoconfigured driver 1
    [ 14.147] (==) Matched vesa as autoconfigured driver 2
    [ 14.147] (==) Matched modesetting as autoconfigured driver 3
    [ 14.147] (==) Matched fbdev as autoconfigured driver 4
    [ 14.147] (==) Assigned the driver to the xf86ConfigLayout
    [ 14.147] (II) LoadModule: "intel"
    [ 14.147] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
    [ 14.188] (II) Module intel: vendor="X.Org Foundation"
    [ 14.188] compiled for 1.14.2, module version = 2.21.15
    [ 14.188] Module class: X.Org Video Driver
    [ 14.188] ABI class: X.Org Video Driver, version 14.1
    [ 14.188] (II) LoadModule: "vesa"
    [ 14.188] (WW) Warning, couldn't open module vesa
    [ 14.188] (II) UnloadModule: "vesa"
    [ 14.188] (II) Unloading vesa
    [ 14.188] (EE) Failed to load module "vesa" (module does not exist, 0)
    [ 14.188] (II) LoadModule: "modesetting"
    [ 14.188] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
    [ 14.205] (II) Module modesetting: vendor="X.Org Foundation"
    [ 14.205] compiled for 1.14.1, module version = 0.8.0
    [ 14.205] Module class: X.Org Video Driver
    [ 14.205] ABI class: X.Org Video Driver, version 14.1
    [ 14.205] (II) LoadModule: "fbdev"
    [ 14.205] (WW) Warning, couldn't open module fbdev
    [ 14.205] (II) UnloadModule: "fbdev"
    [ 14.205] (II) Unloading fbdev
    [ 14.205] (EE) Failed to load module "fbdev" (module does not exist, 0)
    [ 14.205] (II) intel: Driver for Intel(R) Integrated Graphics Chipsets:
    i810, i810-dc100, i810e, i815, i830M, 845G, 854, 852GM/855GM, 865G,
    915G, E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM,
    Pineview G, 965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33,
    GM45, 4 Series, G45/G43, Q45/Q43, G41, B43, HD Graphics,
    HD Graphics 2000, HD Graphics 3000, HD Graphics 2500,
    HD Graphics 4000, HD Graphics P4000, HD Graphics 4600,
    HD Graphics 5000, HD Graphics P4600/P4700, Iris(TM) Graphics 5100,
    HD Graphics 4400, HD Graphics 4200, Iris(TM) Pro Graphics 5200
    [ 14.205] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
    [ 14.205] (++) using VT number 7
    [ 14.217] (WW) Falling back to old probe method for modesetting
    [ 14.218] (II) intel(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 14.218] (==) intel(0): Depth 24, (--) framebuffer bpp 32
    [ 14.218] (==) intel(0): RGB weight 888
    [ 14.218] (==) intel(0): Default visual is TrueColor
    [ 14.218] (--) intel(0): Integrated Graphics Chipset: Intel(R) HD Graphics 4000
    [ 14.218] (--) intel(0): CPU: x86-64, sse2, sse3, ssse3, sse4.1, sse4.2, avx
    [ 14.218] (**) intel(0): Framebuffer tiled
    [ 14.218] (**) intel(0): Pixmaps tiled
    [ 14.218] (**) intel(0): "Tear free" disabled
    [ 14.218] (**) intel(0): Forcing per-crtc-pixmaps? no
    [ 14.218] (II) intel(0): Output LVDS1 has no monitor section
    [ 14.219] (--) intel(0): found backlight control interface acpi_video0 (type 'firmware')
    [ 14.219] (II) intel(0): Output VGA1 has no monitor section
    [ 14.219] (II) intel(0): Output HDMI1 has no monitor section
    [ 14.219] (II) intel(0): Output DP1 has no monitor section
    [ 14.219] (--) intel(0): Output LVDS1 using initial mode 1600x900 on pipe 0
    [ 14.219] (==) intel(0): DPI set to (96, 96)
    [ 14.219] (II) Loading sub module "dri2"
    [ 14.219] (II) LoadModule: "dri2"
    [ 14.219] (II) Module "dri2" already built-in
    [ 14.219] (II) UnloadModule: "modesetting"
    [ 14.219] (II) Unloading modesetting
    [ 14.219] (==) Depth 24 pixmap format is 32 bpp
    [ 14.245] (II) intel(0): SNA initialized with Ivybridge (gen7, gt2) backend
    [ 14.245] (==) intel(0): Backing store disabled
    [ 14.245] (==) intel(0): Silken mouse enabled
    [ 14.245] (II) intel(0): HW Cursor enabled
    [ 14.245] (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 14.246] (==) intel(0): DPMS enabled
    [ 14.246] (II) intel(0): [DRI2] Setup complete
    [ 14.246] (II) intel(0): [DRI2] DRI driver: i965
    [ 14.246] (II) intel(0): direct rendering: DRI2 Enabled
    [ 14.246] (==) intel(0): hotplug detection: "enabled"
    [ 14.246] (--) RandR disabled
    [ 14.474] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    [ 14.474] (II) AIGLX: enabled GLX_INTEL_swap_event
    [ 14.474] (II) AIGLX: enabled GLX_ARB_create_context
    [ 14.474] (II) AIGLX: enabled GLX_ARB_create_context_profile
    [ 14.474] (II) AIGLX: enabled GLX_EXT_create_context_es2_profile
    [ 14.474] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    [ 14.474] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    [ 14.474] (II) AIGLX: Loaded and initialized i965
    [ 14.474] (II) GLX: Initialized DRI2 GL provider for screen 0
    [ 14.477] (II) intel(0): switch to mode [email protected] on pipe 0 using LVDS1, position (0, 0), rotation normal
    [ 14.487] (II) intel(0): Setting screen physical size to 423 x 238
    [ 15.540] (II) config/udev: Adding input device Power Button (/dev/input/event4)
    [ 15.540] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 15.540] (II) LoadModule: "evdev"
    [ 15.540] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 15.561] (II) Module evdev: vendor="X.Org Foundation"
    [ 15.561] compiled for 1.14.2, module version = 2.8.1
    [ 15.561] Module class: X.Org XInput Driver
    [ 15.561] ABI class: X.Org XInput driver, version 19.1
    [ 15.561] (II) Using input driver 'evdev' for 'Power Button'
    [ 15.561] (**) Power Button: always reports core events
    [ 15.561] (**) evdev: Power Button: Device: "/dev/input/event4"
    [ 15.561] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 15.561] (--) evdev: Power Button: Found keys
    [ 15.561] (II) evdev: Power Button: Configuring as keyboard
    [ 15.561] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input4/event4"
    [ 15.561] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 15.561] (**) Option "xkb_rules" "evdev"
    [ 15.561] (**) Option "xkb_model" "pc104"
    [ 15.561] (**) Option "xkb_layout" "us"
    [ 15.577] (II) config/udev: Adding input device Video Bus (/dev/input/event11)
    [ 15.577] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 15.577] (II) Using input driver 'evdev' for 'Video Bus'
    [ 15.577] (**) Video Bus: always reports core events
    [ 15.577] (**) evdev: Video Bus: Device: "/dev/input/event11"
    [ 15.577] (--) evdev: Video Bus: Vendor 0 Product 0x6
    [ 15.577] (--) evdev: Video Bus: Found keys
    [ 15.577] (II) evdev: Video Bus: Configuring as keyboard
    [ 15.577] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input11/event11"
    [ 15.577] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
    [ 15.577] (**) Option "xkb_rules" "evdev"
    [ 15.577] (**) Option "xkb_model" "pc104"
    [ 15.577] (**) Option "xkb_layout" "us"
    [ 15.578] (II) config/udev: Adding input device Video Bus (/dev/input/event12)
    [ 15.578] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 15.578] (II) Using input driver 'evdev' for 'Video Bus'
    [ 15.578] (**) Video Bus: always reports core events
    [ 15.578] (**) evdev: Video Bus: Device: "/dev/input/event12"
    [ 15.578] (--) evdev: Video Bus: Vendor 0 Product 0x6
    [ 15.578] (--) evdev: Video Bus: Found keys
    [ 15.578] (II) evdev: Video Bus: Configuring as keyboard
    [ 15.578] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0A08:00/device:43/LNXVIDEO:01/input/input12/event12"
    [ 15.578] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 8)
    [ 15.578] (**) Option "xkb_rules" "evdev"
    [ 15.578] (**) Option "xkb_model" "pc104"
    [ 15.578] (**) Option "xkb_layout" "us"
    [ 15.578] (II) config/udev: Adding input device Power Button (/dev/input/event2)
    [ 15.578] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 15.578] (II) Using input driver 'evdev' for 'Power Button'
    [ 15.578] (**) Power Button: always reports core events
    [ 15.578] (**) evdev: Power Button: Device: "/dev/input/event2"
    [ 15.578] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 15.578] (--) evdev: Power Button: Found keys
    [ 15.578] (II) evdev: Power Button: Configuring as keyboard
    [ 15.578] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input2/event2"
    [ 15.578] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 9)
    [ 15.578] (**) Option "xkb_rules" "evdev"
    [ 15.578] (**) Option "xkb_model" "pc104"
    [ 15.578] (**) Option "xkb_layout" "us"
    [ 15.578] (II) config/udev: Adding input device Lid Switch (/dev/input/event3)
    [ 15.578] (II) No input driver specified, ignoring this device.
    [ 15.578] (II) This device may have been added with another device file.
    [ 15.579] (II) config/udev: Adding drm device (/dev/dri/card0)
    [ 15.579] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event6)
    [ 15.579] (II) No input driver specified, ignoring this device.
    [ 15.579] (II) This device may have been added with another device file.
    [ 15.579] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=3 (/dev/input/event7)
    [ 15.579] (II) No input driver specified, ignoring this device.
    [ 15.579] (II) This device may have been added with another device file.
    [ 15.579] (II) config/udev: Adding input device HDA Intel PCH Headphone (/dev/input/event8)
    [ 15.579] (II) No input driver specified, ignoring this device.
    [ 15.579] (II) This device may have been added with another device file.
    [ 15.579] (II) config/udev: Adding input device HDA Intel PCH Mic (/dev/input/event9)
    [ 15.579] (II) No input driver specified, ignoring this device.
    [ 15.579] (II) This device may have been added with another device file.
    [ 15.579] (II) config/udev: Adding input device Integrated Camera (/dev/input/event14)
    [ 15.579] (**) Integrated Camera: Applying InputClass "evdev keyboard catchall"
    [ 15.579] (II) Using input driver 'evdev' for 'Integrated Camera'
    [ 15.579] (**) Integrated Camera: always reports core events
    [ 15.579] (**) evdev: Integrated Camera: Device: "/dev/input/event14"
    [ 15.579] (--) evdev: Integrated Camera: Vendor 0x5986 Product 0x2d2
    [ 15.579] (--) evdev: Integrated Camera: Found keys
    [ 15.579] (II) evdev: Integrated Camera: Configuring as keyboard
    [ 15.579] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb4/4-1/4-1.6/4-1.6:1.0/input/input14/event14"
    [ 15.579] (II) XINPUT: Adding extended input device "Integrated Camera" (type: KEYBOARD, id 10)
    [ 15.579] (**) Option "xkb_rules" "evdev"
    [ 15.579] (**) Option "xkb_model" "pc104"
    [ 15.579] (**) Option "xkb_layout" "us"
    [ 15.580] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
    [ 15.580] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [ 15.580] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
    [ 15.580] (**) AT Translated Set 2 keyboard: always reports core events
    [ 15.580] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event0"
    [ 15.580] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
    [ 15.580] (--) evdev: AT Translated Set 2 keyboard: Found keys
    [ 15.580] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
    [ 15.580] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
    [ 15.580] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 11)
    [ 15.580] (**) Option "xkb_rules" "evdev"
    [ 15.580] (**) Option "xkb_model" "pc104"
    [ 15.580] (**) Option "xkb_layout" "us"
    [ 15.580] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event10)
    [ 15.580] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev touchpad catchall"
    [ 15.580] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
    [ 15.580] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "Default clickpad buttons"
    [ 15.580] (II) LoadModule: "synaptics"
    [ 15.580] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
    [ 15.609] (II) Module synaptics: vendor="X.Org Foundation"
    [ 15.609] compiled for 1.14.1, module version = 1.7.1
    [ 15.609] Module class: X.Org XInput Driver
    [ 15.609] ABI class: X.Org XInput driver, version 19.1
    [ 15.609] (II) Using input driver 'synaptics' for 'SynPS/2 Synaptics TouchPad'
    [ 15.609] (**) SynPS/2 Synaptics TouchPad: always reports core events
    [ 15.609] (**) Option "Device" "/dev/input/event10"
    [ 15.646] (II) synaptics: SynPS/2 Synaptics TouchPad: found clickpad property
    [ 15.646] (--) synaptics: SynPS/2 Synaptics TouchPad: x-axis range 1472 - 5702 (res 51)
    [ 15.646] (--) synaptics: SynPS/2 Synaptics TouchPad: y-axis range 1408 - 4750 (res 67)
    [ 15.646] (--) synaptics: SynPS/2 Synaptics TouchPad: pressure range 0 - 255
    [ 15.646] (--) synaptics: SynPS/2 Synaptics TouchPad: finger width range 0 - 15
    [ 15.646] (--) synaptics: SynPS/2 Synaptics TouchPad: buttons: left double triple
    [ 15.646] (--) synaptics: SynPS/2 Synaptics TouchPad: Vendor 0x2 Product 0x7
    [ 15.646] (**) Option "TapButton1" "1"
    [ 15.646] (**) Option "TapButton2" "2"
    [ 15.646] (**) Option "TapButton3" "3"
    [ 15.646] (**) Option "SoftButtonAreas" "50% 0 82% 0 0 0 0 0"
    [ 15.646] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    [ 15.646] (**) SynPS/2 Synaptics TouchPad: always reports core events
    [ 15.662] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input10/event10"
    [ 15.662] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 12)
    [ 15.662] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MinSpeed is now constant deceleration 2.5
    [ 15.662] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MaxSpeed is now 1.75
    [ 15.662] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) AccelFactor is now 0.037
    [ 15.662] (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
    [ 15.662] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 1
    [ 15.662] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
    [ 15.662] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
    [ 15.662] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    [ 15.663] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse0)
    [ 15.663] (**) SynPS/2 Synaptics TouchPad: Ignoring device from InputClass "touchpad ignore duplicates"
    [ 15.664] (II) config/udev: Adding input device TPPS/2 IBM TrackPoint (/dev/input/event13)
    [ 15.664] (**) TPPS/2 IBM TrackPoint: Applying InputClass "evdev pointer catchall"
    [ 15.664] (II) Using input driver 'evdev' for 'TPPS/2 IBM TrackPoint'
    [ 15.664] (**) TPPS/2 IBM TrackPoint: always reports core events
    [ 15.664] (**) evdev: TPPS/2 IBM TrackPoint: Device: "/dev/input/event13"
    [ 15.664] (--) evdev: TPPS/2 IBM TrackPoint: Vendor 0x2 Product 0xa
    [ 15.664] (--) evdev: TPPS/2 IBM TrackPoint: Found 3 mouse buttons
    [ 15.664] (--) evdev: TPPS/2 IBM TrackPoint: Found relative axes
    [ 15.664] (--) evdev: TPPS/2 IBM TrackPoint: Found x and y relative axes
    [ 15.664] (II) evdev: TPPS/2 IBM TrackPoint: Configuring as mouse
    [ 15.664] (**) evdev: TPPS/2 IBM TrackPoint: YAxisMapping: buttons 4 and 5
    [ 15.664] (**) evdev: TPPS/2 IBM TrackPoint: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 15.664] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/serio2/input/input13/event13"
    [ 15.664] (II) XINPUT: Adding extended input device "TPPS/2 IBM TrackPoint" (type: MOUSE, id 13)
    [ 15.664] (II) evdev: TPPS/2 IBM TrackPoint: initialized for relative axes.
    [ 15.665] (**) TPPS/2 IBM TrackPoint: (accel) keeping acceleration scheme 1
    [ 15.665] (**) TPPS/2 IBM TrackPoint: (accel) acceleration profile 0
    [ 15.665] (**) TPPS/2 IBM TrackPoint: (accel) acceleration factor: 2.000
    [ 15.665] (**) TPPS/2 IBM TrackPoint: (accel) acceleration threshold: 4
    [ 15.665] (II) config/udev: Adding input device TPPS/2 IBM TrackPoint (/dev/input/mouse1)
    [ 15.665] (II) No input driver specified, ignoring this device.
    [ 15.665] (II) This device may have been added with another device file.
    [ 15.665] (II) config/udev: Adding input device PC Speaker (/dev/input/event5)
    [ 15.665] (II) No input driver specified, ignoring this device.
    [ 15.665] (II) This device may have been added with another device file.
    [ 15.666] (II) config/udev: Adding input device ThinkPad Extra Buttons (/dev/input/event1)
    [ 15.666] (**) ThinkPad Extra Buttons: Applying InputClass "evdev keyboard catchall"
    [ 15.666] (II) Using input driver 'evdev' for 'ThinkPad Extra Buttons'
    [ 15.666] (**) ThinkPad Extra Buttons: always reports core events
    [ 15.666] (**) evdev: ThinkPad Extra Buttons: Device: "/dev/input/event1"
    [ 15.666] (--) evdev: ThinkPad Extra Buttons: Vendor 0x17aa Product 0x5054
    [ 15.666] (--) evdev: ThinkPad Extra Buttons: Found keys
    [ 15.666] (II) evdev: ThinkPad Extra Buttons: Configuring as keyboard
    [ 15.666] (**) Option "config_info" "udev:/sys/devices/platform/thinkpad_acpi/input/input1/event1"
    [ 15.666] (II) XINPUT: Adding extended input device "ThinkPad Extra Buttons" (type: KEYBOARD, id 14)
    [ 15.666] (**) Option "xkb_rules" "evdev"
    [ 15.666] (**) Option "xkb_model" "pc104"
    [ 15.666] (**) Option "xkb_layout" "us"
    [ 15.670] (II) config/udev: Adding input device TPPS/2 IBM TrackPoint (/dev/input/mouse1)
    [ 15.670] (II) No input driver specified, ignoring this device.
    [ 15.670] (II) This device may have been added with another device file.
    [ 15.670] (II) config/udev: removing device TPPS/2 IBM TrackPoint
    [ 15.686] (II) evdev: TPPS/2 IBM TrackPoint: Close
    [ 15.686] (II) UnloadModule: "evdev"
    [ 15.686] (II) config/udev: Adding input device TPPS/2 IBM TrackPoint (/dev/input/event13)
    [ 15.686] (**) TPPS/2 IBM TrackPoint: Applying InputClass "evdev pointer catchall"
    [ 15.686] (II) Using input driver 'evdev' for 'TPPS/2 IBM TrackPoint'
    [ 15.686] (**) TPPS/2 IBM TrackPoint: always reports core events
    [ 15.686] (**) evdev: TPPS/2 IBM TrackPoint: Device: "/dev/input/event13"
    [ 15.686] (--) evdev: TPPS/2 IBM TrackPoint: Vendor 0x2 Product 0xa
    [ 15.686] (--) evdev: TPPS/2 IBM TrackPoint: Found 3 mouse buttons
    [ 15.686] (--) evdev: TPPS/2 IBM TrackPoint: Found relative axes
    [ 15.686] (--) evdev: TPPS/2 IBM TrackPoint: Found x and y relative axes
    [ 15.686] (II) evdev: TPPS/2 IBM TrackPoint: Configuring as mouse
    [ 15.686] (**) evdev: TPPS/2 IBM TrackPoint: YAxisMapping: buttons 4 and 5
    [ 15.686] (**) evdev: TPPS/2 IBM TrackPoint: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 15.686] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/serio2/input/input13/event13"
    [ 15.686] (II) XINPUT: Adding extended input device "TPPS/2 IBM TrackPoint" (type: MOUSE, id 13)
    [ 15.686] (II) evdev: TPPS/2 IBM TrackPoint: initialized for relative axes.
    [ 15.686] (**) TPPS/2 IBM TrackPoint: (accel) keeping acceleration scheme 1
    [ 15.686] (**) TPPS/2 IBM TrackPoint: (accel) acceleration profile 0
    [ 15.687] (**) TPPS/2 IBM TrackPoint: (accel) acceleration factor: 2.000
    [ 15.687] (**) TPPS/2 IBM TrackPoint: (accel) acceleration threshold: 4
    [ 15.687] (II) config/udev: removing device Integrated Camera
    [ 15.699] (II) evdev: Integrated Camera: Close
    [ 15.699] (II) UnloadModule: "evdev"
    [ 15.699] (II) config/udev: Adding input device Integrated Camera (/dev/input/event14)
    [ 15.699] (**) Integrated Camera: Applying InputClass "evdev keyboard catchall"
    [ 15.699] (II) Using input driver 'evdev' for 'Integrated Camera'
    [ 15.699] (**) Integrated Camera: always reports core events
    [ 15.699] (**) evdev: Integrated Camera: Device: "/dev/input/event14"
    [ 15.699] (--) evdev: Integrated Camera: Vendor 0x5986 Product 0x2d2
    [ 15.699] (--) evdev: Integrated Camera: Found keys
    [ 15.699] (II) evdev: Integrated Camera: Configuring as keyboard
    [ 15.699] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb4/4-1/4-1.6/4-1.6:1.0/input/input14/event14"
    [ 15.699] (II) XINPUT: Adding extended input device "Integrated Camera" (type: KEYBOARD, id 10)
    [ 15.699] (**) Option "xkb_rules" "evdev"
    [ 15.699] (**) Option "xkb_model" "pc104"
    [ 15.699] (**) Option "xkb_layout" "us"
    [ 81.657] (II) intel(0): EDID vendor "SEC", prod id 12882
    [ 81.657] (II) intel(0): Printing DDC gathered Modelines:
    [ 81.657] (II) intel(0): Modeline "1600x900"x0.0 130.72 1600 1648 1680 2136 900 902 907 1020 -hsync -vsync (61.2 kHz eP)
    [ 3696.418] (II) intel(0): switch to mode [email protected] on pipe 0 using LVDS1, position (0, 0), rotation normal
    [ 3696.717] (II) AIGLX: Suspending AIGLX clients for VT switch
    [ 3702.360] (II) AIGLX: Resuming AIGLX clients after VT switch
    [ 3702.360] (II) intel(0): switch to mode [email protected] on pipe 0 using LVDS1, position (0, 0), rotation normal
    [ 3702.377] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    [ 3702.377] setversion 1.4 failed
    Last edited by Thaodan (2013-09-02 08:51:02)

    I rebuilded KWin eg. kdebaseworkspace and it works now.
    It was an issue of the different Linux versions (the linux (3.10.10) version on the build server was much newer than my Linux-pf (3.10.1)).
    The only errors I get  when using kwin_gles  are now :
    kwin(19532): Failed to compile fragment shader:
    "0:2(14): error: no precision specified this scope for type `vec4'
    0:4(13): error: no precision specified this scope for type `float'
    0:5(13): error: no precision specified this scope for type `float'
    0:6(13): error: no precision specified this scope for type `float'
    0:7(13): error: no precision specified this scope for type `float'
    0:8(13): error: no precision specified this scope for type `float'
    0:9(13): error: no precision specified this scope for type `float'
    0:10(13): error: no precision specified this scope for type `float'
    0:14(7): error: no precision specified this scope for type `vec4'
    kwin(19532): Failed to link shader:
    "error: program lacks a fragment shader

  • Phantom hairline showing up in shape, transfers to After Effects, doesn't move on art board

    Hi,
    First time posting here so hope I'm following protocol. We're having an issue at my office with Illustrator (5.1) and After Effects. This just started happening this week.
    For some reason, when a file is created in Illustrator and you zoom in extremely clost on a shape, a thinner-than-hairline line appears on it. This has showed up as both a vertical and horizontal. When you zoom in or out, the line disappears, but it also appears in After Effects. It doesn't seem to be part of the shape or a fragmented shape because if you move the shape, the line stay stationary.
    Anyone seen anything like this? The video editor and I have NO idea and we've been trying to figure it out for a few days now. Also, the issue isn't in just one file; it has happened in two separate project files now.
    Thanks!
    Christi

    This is an issue with current PDF libraries used by Adobe apps. For some reason content gets tiled, even if it doesn't actually require flattening. Same issue occurs when rasterizing the files in PS. Anyway, with regards to AE the sane advise would be to safe back to CS3 no matter what, because there are bugs in its handling of newer AI formats... This potentially also avoids your issue...
    Mylenium

  • Spry.Utils.updateContent() not applying CSS styles to included fragments on mobile viewing

    NOTE THAT THIS ONLY PERTAINS TO MOBILE VIEWING (tested on iPhone)
    Hi, I have a SpryTabbedPanels widget within my index.html page, where clicking each tab calls Spry.Utils.updateContent() to load an html fragment into the body of the panel content. My index.html looks something like...
    <html>
    <head>
         <!-- All the Spry includes are done here but left out for brevity -->
         <link href="stylesheet.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
         <p>This is text that is effected by stylesheet.css</p>
        <!-- The Spry tabbed panel widget is invoked here, but only the following line is pertinent -->
              <li class="TabbedPanelsTab" tabindex="0" onclick="Spry.Utils.updateContent('frag','frag.html');">Code Fragment</li>
         <!-- The rest of the code to close up the tabbed panels widget goes here -->
    </body>
    </html>
    Then the frag.html code can be anything, and here I'll just say it's...
    <p>This is a code fragment not affected by stylesheet.css</p>
    Suppose then that I have the following style sheet called stylesheet.css...
    p {
         color:#FF0000;
    If index.html is accessed in a web browser like Chrome, Safari, etc., this code will have the obvious effect of displaying:
    This is text that is effected by stylesheet.css
    This is a code fragment not affected by stylesheet.css
    However, when mobile browsing, the style sheet is not carried over to the code fragment, so the default settings for the <p> tag are used, producing black text for the second sentence above, displaying:
    This is text that is effected by stylesheet.css
    This is a code fragment not affected by stylesheet.css
    I've tried putting <html> and <head> tags with a link to stylesheet.css in frag.html, but nothing seems to work. Any help would be greatly appreciated!
    Thanks

    I think that worked.  I've been messing around for a long time trying to
    figure it out myself watching tons of drop down tutorials.  Should have
    asked a long time ago... It was hard because I wasn't completing from
    scratch and rather updating my current site.  How could I give you the
    location on the server easily?
    Lamppa Manufacturing Inc.
    Kuuma (Green) Furnaces & (Fantastic) Sauna Stoves
    P.O.Box 422
    Tower, MN 55790
    www.lamppakuuma.com
    facebook<http://www.facebook.com/pages/Lamppa-Manufacturing-Incorporated-Kuuma-Furnaces-Sauna-Stove s/215958785138157>
    [email protected]
    1-800-358-2049
    218-753-2330

  • Cursor_sharing Side-effects

    I have a situation where several off-the-shelf applications (same vendor) are running on the same instance. One of the is performing poorly and I was able to get a good performance boost with cursor_sharing=force. After much testing in QA, we are ready to move it to production.
    Now two of the other applications are having trouble. Apparently, the applications do some very basic selects from sqlplus and then parse the results. Setting cursor_sharing to force has had a side-effect (bug) that changes the column widths of these selects. The end result is that the other application fails because it can't parse it correctly.
    This is a documented problem and Oracle recommends to always explicitly set your column widths in sqlplus. This is what we want to do, but the effort is not small.
    A kludge work-around is to alter cursor_sharing before and after the batch processes. This can be done at either the system or session level.
    My question is this: Is there a simple way to set it up so an that when this black-box application create a session, it will set the cursor_sharing to force?
    Thanks,
    Scott
    http://www.erpfuture.com

    I have a situation where several off-the-shelf
    applications (same vendor) are running on the same
    instance. One of the is performing poorly and I was
    able to get a good performance boost with
    cursor_sharing=force. After much testing in QA, we
    are ready to move it to production.
    Now two of the other applications are having trouble.
    Apparently, the applications do some very basic
    c selects from sqlplus and then parse the results.
    Setting cursor_sharing to force has had a
    a side-effect (bug) that changes the column widths of
    these selects. Actually it is the off the shelf applications that have the bug, they are not using bind variables which means you are overparsing and fragmenting your shared pool. Poor performance is about the best you will get from such applications. You are also likely open to security issues that arise from [url=http://www.google.com/search?q=sql+injection
    ]sql injection.
    Cursor sharing force is a workaround for a badly written application. It auto binds all literals. This means plans will change and all literal values are variables which could contain anything which leads to the problem you describe.
    select 'test' from dual;becomes
    select :b_sys_0 from dual;where :b_sys_0 could be 4000 characters long.
    I would second kamathg's advice that if you need to use the cursor sharing workaround to only set it at the session level for the application that needs it using the logon trigger.
    You should do this as an interim measure while you file a bug report with the software vendor to have them fix their application.
    The security issues do not go away.

  • Photo Booth effects previews don't seem right....

    Tried using Photo Booth and when previewing effects they seem jumpy and sticky, for e.g.. the mirror effects are not smooth, they are jumpy, video backgrounds do not preview well at all and are fragmented with my silhouette in a mixed background...
    Is this normal, its difficult to explain in writing what I am seeing, so forgive my vagueness.

    I have the same problem with MBP 13" late2013. Would be nice to use pop art filter, but it is impossible 'cause of this.

  • After Effects error: Unable to allocate space for image buffer

    I am having some glitchy issues with After Effects, very inconsistent, but I am getting the error message "After Effects error: unable to Allocate Space for a 7500 x 4500 image buffer. You may be experiencing fragmentation. In the Memory and Multiprocessing Preference dialog box, trying increasing the RAM to leave for other applications, and selecting the Enable Disk Cache option in the Media & Disk Cache Panel".
    Pretty straightforward, but I have a brand new 8 core dual 2.25 Mac Pro with 16GB Ram. I have it set to allow other applications to use 7GB, have jockeyed that setting between 1GB and 5GB and still gotten the same error message. Disk Cache is set to 3GB, have pushed it all the up to 7GB and still gotten the same message. I am working in 1080p, but I got the error message with Open GL on, quarter resolution, and wasn't even trying to RAM preview. I also noticed that with a straight 1080p clip .mov animation codec clip, after effects will only RAM preview about 7 seconds. That is without any other layers or effects.  I do not have all of my source footage in one folder, I am going to try that next. I am running of a fast internal hard drive that is not they system drive.  It also seems like it happens after I have been using the comptuer for awhile. If I restart the problem will usually go away for a little while.
    I think that I may have a bigger system error, the computer locked up bad once after I had it for a few weeks and since that happened CS4 has been unstable in general, especially Photoshop and Bridge. My guess is bad RAM, but I wanted to make sure I wasn't missing something with my AE settings.  If any one has any input please let me know. Thanks.

    > I lowered the minimum RAM per core to 1GB, because the Adobe site recommends that as a base setting for andHD project
    When you say "the Adobe site recommends", what exactly are you referring to? If you're quoting recommendations written for After Effects on the Adobe website, you're very likely quoting me. And this is what I wrote in the Help document:
    "Memory & Multiprocessing preferences":
    "The amount of RAM required for each background process varies depending on your system configuration; at least 1 GB per process is recommended. Optimum performance is achieved with computer systems with at least 2 GB of installed RAM per processor core."
    This blog post gives essentially the same advice, but with more explicit suggestions.
    But, as I say at the bottom of that blog post, if you find that some other settings are working better for you, that's great. Every project and computer system are different. Do what works for you.
    > Also, if it is an
    dual quad core system, there should be 8 cores, but in the
    multi-processer preferences panel it lists CPU's as 16.
    The number of "virtual" processors can be double in a system that uses hyperthreading. After Effects doesn't actually treat these as separate processors in this context, though.

  • Blind Effect - Updating height to fit content

    Hi everyone!
    I have an html panel which loads up html fragments when a link is clicked - works fine!
    I also added a blind effect so that the panel slides up, loads the new content, and slides back down.
    This also works, with a queer side effect:
    The panel height stays the same as the original content!
    This means that if I load a smaller amount of html into the html panel, there is a large gap at the bottom, and if I load a larger page, the bottom is cut off and you cant see it.
    So the question is:
    how do i tell the blind effect to resize to the new height after the new data is loaded?

    Thanks Alejandro. I also found that to make the textareas available to the script when the page loads, i had to set the table's contentDelivery property to "immediate".
    In case anyone else needs this, here is how i adapted the javascript Alejandro had shared:
    <af:resource type="javascript">
        function resizeHeight(e) {
        var textAreas = document.getElementsByTagName("textarea");
        for (var i=0, max=textAreas.length; i &lt; max; i++) {
         var textArea = textAreas;
    while (textArea.rows > 1 &amp;&amp; textArea.scrollHeight &lt; textArea.offsetHeight)
    textArea.rows--;
    while (textArea.scrollHeight > textArea.offsetHeight)
    textArea.rows++;
    textArea.rows++;
    </af:resource>

Maybe you are looking for

  • Creation of Collaboration Room from the backend.

    Hi,      I need to create the collaboration room from the backend. When I tried to do so, its showing the error "Error in RFC Connection". I checked the RFC connection, its working fine. Do i need to set any configuration properties either in portal

  • Can't find ANY files in iTunes!

    I hadn't used iTunes in a while, until my roommate tried to listen to my library. EVERY song (downloaded from a CD or bought at itunes store) has the exclamation mark next to it! I can't play, burn, etc. (I even updated iTunes, thinking it could be t

  • What are the contents of "JAGENT.PRM" file

    Hi All, Can someone post the content of "jagent.prm". After the setup of monitor server and making changes in the config files; the "CREATE DATASTORE" is not creating "jagent.prm" and when i start jagent, it fails with the error "jagent.prm" does not

  • Divx / Xvid for Quicktime?

    Any updates on Divx or xvid for Quicktime? Universal of course (for MacBook/intel mac). Seperate from Quicktime, I see Divx6 was released, but that costs $ and I am not clear if it is Universal. Of course I will do my own research, but I just thought

  • Content Management in Sub-Domain vs Primary Domain

    I have created a sub-domain (abc.ourURL.com) for one of our sites (www.ourURL.com). If I make any changes to the primary site, it is carried through to the sub-domain, and visa versa. Is there a way to stop this from happening and put a "wall" betwee