High cpu usage by query

We have a table named "tbl_geodata" which has address and latitude and longitude values. We
also have a "History" table which has only latitude and longitude values including other information. What we need is like following...
We get a set of records based on a query from "History" (lat long values), say 5000 records
Now we are using the following formula to calculate address from the "tbl_geodata" for each row
(5000 rows).
    SELECT top 1 geo_street,geo_town,geo_country,( 3959 acos( cos( radians(History.lat) ) cos( radians(
gps_latitude ) ) cos( radians( gps_longitude ) - radians(History.long) ) + sin( radians(History.lat) ) sin( radians( gps_latitude ) ) ) ) AS distance FROM tbl_geodata ORDER BY distance
Currently we are seeing high cpu utilisation and performance issue. What would be the optimized way to do
this

We are using SQL Server Web Edition. We have a table which has around 120 million records (every second around 100 insertion). It has a AFTER INSERT trigger to update another table. There is following performance issue we are facing. 
High CPU Usage
Insertion failed (Connection Timeout Expired.  The timeout period elapsed during the post-login phase.  The connection could have timed out while waiting for server to complete the login process and respond; Or it could have timed out while attempting
to create multiple active connections.  The duration spent while attempting to connect to this server was - [Pre-Login] initialization=0; handshake=10046; [Login] initialization=0; authentication=0; [Post-Login] complete=3999;)
Insertion Failed (A severe error occurred on the current command.  The results, if any, should be discarded.)
Insertion Failed (Some time we are getting connection pool error.. There is no limit set in the connection string)
I ran sp_who2 command and found a lot of queries are in suspended mode..
here is the "sys.dm_os_sys_info" result...
cpu_count   hyperthread_ratio
physical_memory_in_bytes virtual_memory_in_bytes
8                   8
                            12853739520
             8796092891136
Can anyone please suggest the improvement steps...

Similar Messages

  • XML select query causing very high CPU usage.

    Hi All,
    In our Oracle 10.2.0.4 Two node RAC we are facing very high CPU usage....and all of the top CPU consuming processes are executing this below sql...also these statements are waiting for some gc wiat events as shown below.
    SELECT B.PACKET_ID FROM CM_PACKET_ALT_KEY B, CM_ALT_KEY_TYPE C, TABLE(XMLSEQUENCE ( EXTRACT (:B1 , '/AlternateKeys/AlternateKey') )) T
    WHERE B.ALT_KEY_TYPE_ID = C.ALT_KEY_TYPE_ID AND C.ALT_KEY_TYPE_NAME = EXTRACTVALUE (VALUE (T), '/AlternateKey/@keyType')
    AND B.ALT_KEY_VALUE = EXTRACTVALUE (VALUE (T), '/AlternateKey')
    AND NVL (B.CHILD_BROKER_CODE, '6209870F57C254D6E04400306E4A78B0') =
    NVL (EXTRACTVALUE (VALUE (T), '/AlternateKey/@broker'), '6209870F57C254D6E04400306E4A78B0')
    SQL> select sid,event,state from gv$session where state='WAITING' and event not like '%SQL*Net%';
           SID EVENT                                                            STATE
            66 jobq slave wait                                                  WAITING
           124 gc buffer busy                                                   WAITING
           143 gc buffer busy                                                   WAITING
           147 db file sequential read                                          WAITING
           222 Streams AQ: qmn slave idle wait                                  WAITING
           266 gc buffer busy                                                   WAITING
           280 gc buffer busy                                                   WAITING
           314 gc cr request                                                    WAITING
           317 gc buffer busy                                                   WAITING
           392 gc buffer busy                                                   WAITING
           428 gc buffer busy                                                   WAITING
           471 gc buffer busy                                                   WAITING
           518 Streams AQ: waiting for time management or cleanup tasks         WAITING
           524 Streams AQ: qmn coordinator idle wait                            WAITING
           527 rdbms ipc message                                                WAITING
           528 rdbms ipc message                                                WAITING
           532 rdbms ipc message                                                WAITING
           537 rdbms ipc message                                                WAITING
           538 rdbms ipc message                                                WAITING
           539 rdbms ipc message                                                WAITING
           540 rdbms ipc message                                                WAITING
           541 smon timer                                                       WAITING
           542 rdbms ipc message                                                WAITING
           543 rdbms ipc message                                                WAITING
           544 rdbms ipc message                                                WAITING
           545 rdbms ipc message                                                WAITING
           546 rdbms ipc message                                                WAITING
           547 gcs remote message                                               WAITING
           548 gcs remote message                                               WAITING
           549 gcs remote message                                               WAITING
           550 gcs remote message                                               WAITING
           551 ges remote message                                               WAITING
           552 rdbms ipc message                                                WAITING
           553 rdbms ipc message                                                WAITING
           554 DIAG idle wait                                                   WAITING
           555 pmon timer                                                       WAITING
            79 jobq slave wait                                                  WAITING
           117 gc buffer busy                                                   WAITING
           163 PX Deq: Execute Reply                                            WAITING
           205 db file parallel read                                            WAITING
           247 gc current request                                               WAITING
           279 jobq slave wait                                                  WAITING
           319 LNS ASYNC end of log                                             WAITING
           343 jobq slave wait                                                  WAITING
           348 direct path read                                                 WAITING
           372 db file scattered read                                           WAITING
           475 jobq slave wait                                                  WAITING
           494 gc cr request                                                    WAITING
           516 Streams AQ: qmn slave idle wait                                  WAITING
           518 Streams AQ: waiting for time management or cleanup tasks         WAITING
           523 Streams AQ: qmn coordinator idle wait                            WAITING
           528 rdbms ipc message                                                WAITING
           529 rdbms ipc message                                                WAITING
           530 Streams AQ: waiting for messages in the queue                    WAITING
           532 rdbms ipc message                                                WAITING
           537 rdbms ipc message                                                WAITING
           538 rdbms ipc message                                                WAITING
           539 rdbms ipc message                                                WAITING
           540 rdbms ipc message                                                WAITING
           541 smon timer                                                       WAITING
           542 rdbms ipc message                                                WAITING
           543 rdbms ipc message                                                WAITING
           544 rdbms ipc message                                                WAITING
           545 rdbms ipc message                                                WAITING
           546 rdbms ipc message                                                WAITING
           547 gcs remote message                                               WAITING
           548 gcs remote message                                               WAITING
           549 gcs remote message                                               WAITING
           550 gcs remote message                                               WAITING
           551 ges remote message                                               WAITING
           552 rdbms ipc message                                                WAITING
           553 rdbms ipc message                                                WAITING
           554 DIAG idle wait                                                   WAITING
           555 pmon timer                                                       WAITINGI am not at all able to understand what this SQL is...i think its related to some XML datatype.
    Also not able to generate execution plan for this sql using explain plan- getting error(ORA-00932: inconsistent datatypes: expected - got -)
    Please help me in this issue...
    How can i generate execution plan?
    Does this type of XML based query will cause high GC wiat events and buffer busy wait events?
    How can i tune this query?
    How can i find that this is the only query causing High CPU usage?
    Our servers are having 64 GB RAM and 16 CPU's..
    OS is Solaris 5.10 with UDP as protocol for interconnect..
    -Yasser

    I found some more xml queries as shown below.
    SELECT XMLELEMENT("Resource", XMLATTRIBUTES(RAWTOHEX(RMR.RESOURCE_ID) AS "resourceID", RMO.OWNER_CODE AS "ownerCode", RMR.MIME_TYPE AS "mimeType",RMR.FILE_SIZE AS "fileSize", RMR.RESOURCE_STATUS AS "status"), (SELECT XMLAGG(XMLELEMENT("ResourceLocation", XMLATTRIBUTES(RAWTOHEX(RMRP.REPOSITORY_ID) AS "repositoryID", RAWTOHEX(DIRECTORY_ID) AS "directoryID", RESOURCE_STATE AS "state", RMRO.RETRIEVAL_SEQ AS "sequence"), XMLFOREST(FULL_PATH AS "RemotePath"))ORDER BY RMRO.RETRIEVAL_SEQ) FROM RM_RESOURCE_PATH RMRP, RM_RETRIEVAL_ORDER RMRO, RM_LOCATION RML WHERE RMRP.RESOURCE_ID = RMR.RESOURCE_ID AND RMRP.REPOSITORY_ID = RMRO.REPOSITORY_ID AND RMRO.LOCATION_ID = RML.LOCATION_ID AND RML.LOCATION_CODE = :B2 ) AS "Locations") FROM RM_RESOURCE RMR, RM_OWNER RMO WHERE RMR.OWNER_ID = RMO.OWNER_ID AND RMR.RESOURCE_ID = HEXTORAW(:B1 )
    SELECT XMLELEMENT ( "Resources", XMLAGG(XMLELEMENT ( "Resource", XMLATTRIBUTES (B.RESOURCE_ID AS "id"), XMLELEMENT ("ContentType", C.CONTENT_TYPE_CODE), XMLELEMENT ("TextExtractStatus", B.TEXT_EXTRACTED_STATUS), XMLELEMENT ("MimeType", B.MIME_TYPE), XMLELEMENT ("NumberPages", TO_CHAR (B.NUM_PAGES)), XMLELEMENT ("FileSize", TO_CHAR (B.FILE_SIZE)), XMLELEMENT ("Status", B.STATUS), XMLELEMENT ("ContentFormat", D.CONTENT_FORMAT_CODE), G.ALTKEY )) ) FROM CM_PACKET A, CM_RESOURCE B, CM_REF_CONTENT_TYPE C, CM_REF_CONTENT_FORMAT D, ( SELECT XMLELEMENT ( "AlternateKeys", XMLAGG(XMLELEMENT ( "AlternateKey", XMLATTRIBUTES ( H.ALT_KEY_TYPE_NAME AS "keyType", E.CHILD_BROKER_CODE AS "broker", E.VERSION AS "version" ), E.ALT_KEY_VALUE )) ) ALTKEY, E.RESOURCE_ID RES_ID FROM CM_RESOURCE_ALT_KEY E, CM_RESOURCE F, CM_ALT_KEY_TYPE H WHERE E.RESOURCE_ID = F.RESOURCE_ID(+) AND F.PACKET_ID = HEXTORAW (:B1 ) AN
    D E.ALT_KEY_TYPE_ID = H.ALT_KEY_TYPE_ID GROUP BY E.RESOURCE_ID) G WHERE A.PACKET_ID = HEXTORAW (:B1
    SELECT XMLELEMENT ("Tagging", XMLAGG (GROUPEDCAT)) FROM ( SELECT XMLELEMENT ( "TaggingCategory", XMLATTRIBUTES (CATEGORY1 AS "categoryType"), XMLAGG (LISTVALUES) ) GROUPEDCAT FROM (SELECT EXTRACTVALUE ( VALUE (T), '/TaggingCategory/@categoryType' ) CATEGORY1, XMLCONCAT(EXTRACT ( VALUE (T), '/TaggingCategory/TaggingValue' )) LISTVALUES FROM TABLE(XMLSEQUENCE(EXTRACT ( :B1 , '/Tagging/TaggingCategory' ))) T) GROUP BY CATEGORY1)
    SELECT XMLCONCAT ( :B2 , DI_CONTENT_PKG.GET_ENUM_TAGGING_FN (:B1 ) ) FROM DUAL
    SELECT XMLCONCAT (:B2 , :B1 ) FROM DUAL
    SELECT * FROM EQ_RAW_TAG_ERROR A WHERE TAG_LIST_ID = :B2 AND EXTRACTVALUE (A.RAW_TAG_XML, '/TaggingValues/TaggingValue/Value' ) = :B1 AND A.STATUS = '
    NR'
    SELECT RAWTOHEX (S.PACKET_ID) AS PACKET_ID, PS.PACKET_STATUS_DESC, S.LAST_UPDATE AS LAST_UPDATE, S.USER_ID, S.USER_COMMENT, MAX (T.ALT_KEY_VALUE) AS ALTKEY, 'Y' AS IS_PACKET FROM EQ_PACKET S, CM_PACKET_ALT_KEY T, CM_REF_PACKET_STATUS PS WHERE S.STATUS_ID = PS.PACKET_STATUS_ID AND S.PACKET_ID = T.PACKET_ID AND NOT EXISTS (SELECT 1 FROM CM_RESOURCE RES WHERE RES.PACKET_ID = S.PACKET_ID AND EXISTS (SELECT 1 FROM CM_REF_CONTENT_FORMAT CF WHERE CF.CONTENT_FORMAT_ID = RES.CONTENT_FORMAT AND CF.CONTENT_FORMAT_CODE = 'I_FILE')) GROUP BY RAWTOHEX (S.PACKET_ID), PS.PACKET_STATUS_DESC, S.LAST_UPDATE, S.USER_ID, S.USER_COMMENT UNION SELECT RAWTOHEX (A.FATAL_ERROR_ID) AS PACKET_ID, C.PACKET_STATUS_DESC, A.OCCURRENCE_DATE AS LAST_UPDATE, '' AS USER_ID, '' AS USER_COMMENT, RAWTOHEX (A.FATAL_ERROR_ID) AS ALTKEY, 'N' AS IS_PACKET FROM EQ_FATAL_ERROR A, EQ_ERROR_MSG B, CM_REF_PACKET_STATUS C, EQ_SEVERITYD WHERE A.PACKET_ID IS NULL AND A.STATUS = 'NR' AND A.ERROR_MSG_ID = B.ERROR_MSG_ID AND B.SEVERITY_I
    SELECT /*+ INDEX(e) INDEX(a) INDEX(c)*/ XMLAGG(XMLELEMENT ( "TaggingCategory", XMLATTRIBUTES ( G.TAG_CATEGORY_CODE AS "categoryType" ), XMLELEMENT ("TaggingValue", XMLATTRIBUTES (C.IS_PRIMARY AS "primary", H.ORIGIN_CODE AS "origin"), XMLAGG(XMLELEMENT ( "Value", XMLATTRIBUTES ( F.TAG_LIST_CODE AS "listType" ), E.TAG_VALUE )) ) )) FROM TABLE (CAST (:B1 AS T_TAG_MAP_HIERARCHY_TAB)) A, TABLE (CAST (:B2 AS T_ENUM_TAG_TAB)) C, REM_TAG_VALUE E, REM_TAG_LIST F, REM_TAG_CATEGORY G, CM_ORIGIN H WHERE E.TAG_VALUE_ID = C.TAG_VALUE_ID AND F.TAG_LIST_ID = E.TAG_LIST_ID AND G.TAGGING_CATEGORY_ID = F.TAGGING_CATEGORY_ID AND H.ORIGIN_ID = C.ORIGIN_ID AND C.ENUM_TAG_ID = A.MAPPED_ENUM_TAG_ID GROUP BY C.IS_PRIMARY, H.ORIGIN_CODE, G.TAG_CATEGORY_CODE START WITH A.MAPPED_ENUM_TAG_ID = HEXTORAW (:B3 ) CONNECT BY PRIOR A.MAPPED_ENUM_TAG_ID = A.ENUM_TAG_ID
    SELECT /*+  INDEX(e) */ XMLAGG(XMLELEMENT ( "TaggingCategory", XMLATTRIBUTES ( G.TAG_CATEGORY_CODE AS "categoryType" ), XMLELEMENT ( "TaggingValue", XMLATTRIBUTES (C.IS_PRIMARY AS "primary", H.ORIGIN_CODE AS "origin"), XMLAGG(XMLCONCAT ( XMLELEMENT ( "Value", XMLATTRIBUTES ( F.TAG_LIST_CODE AS "listType" ), E.TAG_VALUE ), CASE WHEN LEVEL = 1 THEN :B4 ELSE NULL END )) ) )) FROM TABLE (CAST (:B1 AS T_TAG_MAP_HIERARCHY_TAB)) A, TABLE (CAST (:B2 AS T_ENUM_TAG_TAB)) C, REM_TAG_VALUE E, REM_TAG_LIST F, REM_TAG_CATEGORY G, CM_ORIGIN H WHERE E.TAG_VALUE_ID = C.TAG_VALUE_ID AND F.TAG_LIST_ID = E.TAG_LIST_ID AND G.TAGGING_CATEGORY_ID = F.TAGGING_CATEGORY_ID AND H.ORIGIN_ID = C.ORIGIN_ID AND C.ENUM_TAG_ID = A.MAPPED_ENUM_TAG_ID GROUP BY G.TAG_CATEGORY_CODE, C.IS_PRIMARY, H.ORIGIN_CODE START WITH A.MAPPED_ENUM_TAG_ID = HEXTORAW (:B3 ) CONNECT BY PRIOR A.MAPPED_ENUM_TAG_ID = A.ENUM_TAG_IDBy observing above sql queries i found some hints forcing for index usage..
    I think xml schema is created already...and its progressing as you stated above. Please correct if i am wrong.
    I found all these sql from AWR report and all of these are very high resource consuming queries.
    And i am really sorry if i am irritating you by asking all stupid questions related to xml.
    -Yasser
    Edited by: YasserRACDBA on Nov 17, 2009 3:39 PM
    Did syntax allignment.

  • Config Manager Agent - after Hardware Inventory High CPU Usage with WMIPRSVE and very fast empty Battery

    Hi there,
    since a few days there is on some machines (40-60) a high cpu usage on one core (quad core cpu machines) with the WMIPRSVE.EXE if the HARDWARE INVENTORY CYCLE started.
    i try out some tests, read some forum articles and troubleshooting the WMI management but a real problem i doesn´t see.
    in some articles i read that hardware inventory runs about minutes up to more hours but some machines runs longer, someone more as 1 day.
    here an example of mine PC:
    at 8:07 i started Hardware Inventory Cycle, in the InventoryAgent.log i can see that some Collection Namespace are captured.
    after a few minutes there stopped and does nothing round about 5.9 hours or better, after 21436.097 Seconds.
    For any hints i am grateful. :)
    Inventory: *********************** Start of message processing. ***********************
    InventoryAgent 18.03.2015 08:09:56
    11088 (0x2B50)
    Inventory: Message type is InventoryAction InventoryAgent
    18.03.2015 08:09:56 11088 (0x2B50)
    Inventory: Temp directory = C:\WINDOWS\CCM\Inventory\Temp\
    InventoryAgent 18.03.2015 08:09:56
    11088 (0x2B50)
    Inventory: Clearing old collected files. InventoryAgent
    18.03.2015 08:09:56 11088 (0x2B50)
    Inventory: Opening store for action {00000000-0000-0000-0000-000000000001} ...
    InventoryAgent 18.03.2015 08:09:56
    11088 (0x2B50)
    CInvState::VerifyInventoryVersionNumber: Mismatch found for '{00000000-0000-0000-0000-000000000001}': 4.2 vs. 0.0
    InventoryAgent 18.03.2015 08:09:56
    11088 (0x2B50)
    Inventory: Version number mismatch; will do a Full report.
    InventoryAgent 18.03.2015 08:09:56
    11088 (0x2B50)
    Inventory: Action=Hardware, ReportType=ReSync, MajorVersion=5, MinorVersion=0
    InventoryAgent 18.03.2015 08:09:56
    11088 (0x2B50)
    Inventory: Initialization completed in 0.141 seconds
    InventoryAgent 18.03.2015 08:09:56
    11088 (0x2B50)
    Collection: Namespace = \\localhost\root\Microsoft\appvirt\client; Query = SELECT __CLASS, __PATH, __RELPATH, CachedLaunchSize, CachedPercentage, CachedSize, LaunchSize, Name, PackageGUID, TotalSize, Version, VersionGUID FROM Package; Timeout = 600 secs.
    InventoryAgent 18.03.2015 08:09:56
    7836 (0x1E9C)
    Failed to get IWbemService Ptr for \\localhost\root\vm\VirtualServer Namespace: 8004100E
    InventoryAgent 18.03.2015 08:10:02
    7836 (0x1E9C)
    Failed to enumerate instances of VirtualMachine: 8004100E
    InventoryAgent 18.03.2015 08:10:02
    7836 (0x1E9C)
    Collection: Namespace = \\.\root\cimv2\sms; Query = SELECT __CLASS, __PATH, __RELPATH, AddressWidth, BrandID, CPUHash, CPUKey, DataWidth, DeviceID, Family, Is64Bit, IsHyperthreadCapable, IsMobile, IsTrustedExecutionCapable, IsVitualizationCapable, Manufacturer,
    MaxClockSpeed, Name, NormSpeed, NumberOfCores, NumberOfLogicalProcessors, PCache, ProcessorId, ProcessorType, Revision, SocketDesignation, Status, SystemName, Version FROM SMS_Processor; Timeout = 600 secs.
    InventoryAgent 18.03.2015 08:10:02
    7836 (0x1E9C)
    Collection: Namespace = \\.\root\CCM\powermanagementagent; Query = SELECT __CLASS, __PATH, __RELPATH, Requester, RequesterInfo, RequesterType, RequestType, Time, UnknownRequester FROM CCM_PwrMgmtLastSuspendError; Timeout = 600 secs.
    InventoryAgent 18.03.2015 08:10:03
    7836 (0x1E9C)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, Availability, Description, DeviceID, Manufacturer, Name, Status FROM Win32_IDEController; Timeout = 600 secs.
    InventoryAgent 18.03.2015 08:10:03
    7836 (0x1E9C)
    Collection: Namespace = \\.\root\cimv2\sms; Query = SELECT __CLASS, __PATH, __RELPATH, BinFileVersion, BinProductVersion, Description, ExecutableName, FilePropertiesHash, FilePropertiesHashEx, FileSize, FileVersion, HasPatchAdded, InstalledFilePath, IsSystemFile,
    IsVitalFile, Language, Product, ProductCode, ProductVersion, Publisher FROM SMS_InstalledExecutable; Timeout = 600 secs.
    InventoryAgent 18.03.2015 08:10:03
    7836 (0x1E9C)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, DefaultIPGateway, DHCPEnabled, DHCPServer, DNSDomain, DNSHostName, Index, IPAddress, IPEnabled, IPSubnet, MACAddress, ServiceName FROM Win32_NetworkAdapterConfiguration; Timeout
    = 600 secs. InventoryAgent
    18.03.2015 14:06:43 7836 (0x1E9C)
    Collection: Namespace = \\.\root\Nap; Query = SELECT __CLASS, __PATH, __RELPATH, description, fixupState, friendlyName, id, infoClsid, isBound, percentage, registrationDate, vendorName, version FROM NAP_SystemHealthAgent; Timeout = 600 secs.
    InventoryAgent 18.03.2015 14:06:43
    7836 (0x1E9C)
    Collection: Namespace = \\.\root\cimv2\sms; Query = SELECT __CLASS, __PATH, __RELPATH, AdditionalProductCodes, CompanyName, ExplorerFileName, FileDescription, FilePropertiesHash, FileSize, FileVersion, FolderPath, LastUsedTime, LastUserName, msiDisplayName,
    msiPublisher, msiVersion, OriginalFileName, ProductCode, ProductLanguage, ProductName, ProductVersion, SoftwarePropertiesHash FROM CCM_RecentlyUsedApps; Timeout = 600 secs.
    InventoryAgent 18.03.2015 14:06:43
    7836 (0x1E9C)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, BankLabel, Capacity, Caption, CreationClassName, DataWidth, Description, DeviceLocator, FormFactor, HotSwappable, InstallDate, InterleaveDataDepth, InterleavePosition, Manufacturer,
    MemoryType, Model, Name, OtherIdentifyingInfo, PartNumber, PositionInRow, PoweredOn, Removable, Replaceable, SerialNumber, SKU, Speed, Status, Tag, TotalWidth, TypeDetail, Version FROM Win32_PhysicalMemory; Timeout = 600 secs.
    InventoryAgent 18.03.2015 14:07:02
    7836 (0x1E9C)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, Availability, Description, DeviceID, InstallDate, Manufacturer, Name, PNPDeviceID, ProductName, Status FROM Win32_SoundDevice; Timeout = 600 secs.
    InventoryAgent 18.03.2015 14:07:02
    7836 (0x1E9C)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, Caption, ClassGuid, ConfigManagerErrorCode, ConfigManagerUserConfig, CreationClassName, Description, DeviceID, Manufacturer, Name, PNPDeviceID, Service, Status, SystemCreationClassName,
    SystemName FROM Win32_USBDevice; Timeout = 600 secs.
    InventoryAgent 18.03.2015 14:07:12
    7836 (0x1E9C)
    Collection: 62/74 inventory data items successfully inventoried.
    InventoryAgent 18.03.2015 14:07:12
    7836 (0x1E9C)
    Inventory: Collection Task completed in 21436.097 seconds
    InventoryAgent 18.03.2015 14:07:12
    7836 (0x1E9C)
    Inventory: 12 Collection Task(s) failed. InventoryAgent
    18.03.2015 14:07:12 7836 (0x1E9C)
    Inventory: Temp report = C:\WINDOWS\CCM\Inventory\Temp\25bf01b2-12fc-4eea-8e97-a51b3c75ba50.xml
    InventoryAgent 18.03.2015 14:07:12
    7836 (0x1E9C)
    Inventory: Starting reporting task. InventoryAgent
    18.03.2015 14:07:12 7552 (0x1D80)
    Reporting: 4381 report entries created. InventoryAgent
    18.03.2015 14:07:13 7552 (0x1D80)
    Inventory: Reporting Task completed in 1.030 seconds
    InventoryAgent 18.03.2015 14:07:13
    7552 (0x1D80)
    Inventory: Successfully sent report. Destination:mp:MP_HinvEndpoint, ID: {5541A94A-BED9-4132-AE54-110CB6896F02}, Timeout: 80640 minutes MsgMode: Signed, Not Encrypted
    InventoryAgent 18.03.2015 14:07:13
    7552 (0x1D80)
    Inventory: Cycle completed in 21453.570 seconds
    InventoryAgent 18.03.2015 14:07:30
    7552 (0x1D80)
    Inventory: Action completed. InventoryAgent
    18.03.2015 14:07:30 7552 (0x1D80)
    Inventory: ************************ End of message processing. ************************
    InventoryAgent 18.03.2015 14:07:30
    7552 (0x1D80)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, Caption, ClassGuid, ConfigManagerErrorCode, ConfigManagerUserConfig, CreationClassName, Description, DeviceID, Manufacturer, Name, PNPDeviceID, Service, Status, SystemCreationClassName,
    SystemName FROM Win32_USBDevice; Timeout = 600 secs.
    InventoryAgent 18.03.2015 14:07:12
    7836 (0x1E9C)
    Collection: 62/74 inventory data items successfully inventoried.
    InventoryAgent 18.03.2015 14:07:12
    7836 (0x1E9C)
    Inventory: Collection Task completed in 21436.097 seconds
    InventoryAgent 18.03.2015 14:07:12
    7836 (0x1E9C)
    Inventory: 12 Collection Task(s) failed. InventoryAgent
    18.03.2015 14:07:12 7836 (0x1E9C)
    Inventory: Temp report = C:\WINDOWS\CCM\Inventory\Temp\25bf01b2-12fc-4eea-8e97-a51b3c75ba50.xml
    InventoryAgent 18.03.2015 14:07:12
    7836 (0x1E9C)
    Inventory: Starting reporting task. InventoryAgent
    18.03.2015 14:07:12 7552 (0x1D80)
    Reporting: 4381 report entries created. InventoryAgent
    18.03.2015 14:07:13 7552 (0x1D80)
    Inventory: Reporting Task completed in 1.030 seconds
    InventoryAgent 18.03.2015 14:07:13
    7552 (0x1D80)
    Inventory: Successfully sent report. Destination:mp:MP_HinvEndpoint, ID: {5541A94A-BED9-4132-AE54-110CB6896F02}, Timeout: 80640 minutes MsgMode: Signed, Not Encrypted
    InventoryAgent 18.03.2015 14:07:13
    7552 (0x1D80)
    Inventory: Cycle completed in 21453.570 seconds
    InventoryAgent 18.03.2015 14:07:30
    7552 (0x1D80)
    Inventory: Action completed. InventoryAgent
    18.03.2015 14:07:30 7552 (0x1D80)
    Inventory: ************************ End of message processing. ************************
    InventoryAgent 18.03.2015 14:07:30
    7552 (0x1D80)

    InventoryAgent 18.03.2015 08:10:03
    7836 (0x1E9C)
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, DefaultIPGateway, DHCPEnabled, DHCPServer, DNSDomain, DNSHostName, Index, IPAddress, IPEnabled, IPSubnet, MACAddress, ServiceName FROM Win32_NetworkAdapterConfiguration; Timeout
    = 600 secs. InventoryAgent
    18.03.2015 14:06:43 7836 (0x1E9C)
    Collection: Namespace = \\.\root\Nap; Query = SELECT __CLASS, __PATH, __RELPATH, description, fixupState, friendlyName, id, infoClsid, isBound, percentage, registrationDate, vendorName, version FROM NAP_SystemHealthAgent; Timeout = 600 secs.
    InventoryAgent 18.03.2015 14:06:43
    7836 (0x1E9C)
    Looks like something in one or both of those wmi queries.  it goes from 8:10:03 to 14:06:43 right around there.  6 hours to do that... 
    try running those queries from wbemtest manually; and see which one just never finishes.
    Standardize. Simplify. Automate.

  • High CPU Usage On client application when upgrade remote SQL database

    Hi,
    Is anyone here encountered very high CPU usage after upgraded the database from SQL 2005 to SQL 2012? Following describes my issue.
    I have my client application running on Windows 7 that access to central database (SQL 2005) on Windows server 2003 using ODBC connection, this client application basically query data and perform data insert and update. There are a number of this similar
    clients connected to the database.
    Due to slowness of the database server, company decided to upgrade the database server to SQL 2012 and also new hardware runing Windows Server 2012. There is no change on the client application and client hardware and the client application still using the
    same ODBC connection to query, insert or update the new database server.
    The problem I am now experiencing now is that my client PC where my client application running the CPU usage is very high almost hitting 100% when accessing to the central database. I am also noticed this program lsass.exe that utilized almost 40-50% of
    the CPU time when client application accessing the central database.
    Is anyone here know, why client PC CPU usage 100% when access to upgraded SQL 2012 database? What is lsass.exe program doing, it only appear when accessing to database server. How to reduce the CPU usage on client?
    Thanks.
    Chee Wee.

    Hello,
    After upgrading, please rebuild indexes and update statistics on the databases.
    http://www.mssqltips.com/sqlservertip/1367/sql-server-script-to-rebuild-all-indexes-for-all-tables-and-all-databases/
    http://www.mssqltips.com/sqlservertip/1606/execute-update-statistics-for-all-sql-server-databases/
    Configure maxdop on the instance.
    http://blogs.msdn.com/b/sqlsakthi/archive/2012/05/24/wow-we-have-maxdop-calculator-for-sql-server-it-makes-my-job-easier.aspx
    If the above does not solve the issue, let us know.
    Hope this helps.
    Regards,
    Alberto Morillo
    SQLCoffee.com

  • High CPU usage on select

    This is a spin off from another thread which started off as slow inserts. But what actaully happens is every insert is preceded by select it turned out that the select was slow.
    We have a multi-tier web application conencting to the DB using connection pool and inserting about a 100000 records in a table. To isolate the issue I wrote a PL/SQL which does the same thing.
    This problem happens every time the schema is recreated or the table dropped and created again and we start inserting. When the table is empty, the selects choose a full table scan but as the records are inserted it continues to use the same even though after a few thousands of rows I run stats. But as its running if gather stats and flush the shared pool, it picks up the new plan using the indexes and immediately gets faster.
    But in either case, full tablescan being slow after a few thousands of rows or using the index and getting much faster. Or me just doing the same select and no inserts on a table with 100000 rows, the CPU seems to be pegged to the core.
    The code snipped repeated again
    DECLARE
       uname    NVARCHAR2 (60);
       primid   NVARCHAR2 (60);
       num      NUMBER;
    BEGIN
       FOR i IN 1 .. 100000
       LOOP
          uname := DBMS_RANDOM.STRING ('x', 20);
          primid := DBMS_RANDOM.STRING ('x', 30);
          DBMS_OUTPUT.put_line (uname || ' ==> ' || primid);
          SELECT   COUNT (*)
              INTO num
              FROM TEST
             WHERE ID = 0
               AND (primid = primid OR UPPER (username) = uname OR uiname = uname
               AND (deldate IS NULL)   
          ORDER BY TIME DESC;
          INSERT INTO TEST
               VALUES (0, uname, uname, 1, uname, primid);
          IF MOD (i, 200) = 0
          THEN
             COMMIT;
             DBMS_OUTPUT.put_line ('Commited');
          END IF;
       END LOOP;
    END;This is the original thread
    Re: Slow inserts

    Maybe if you post the actual code, or a code as similar to the actual code, the users of this forum may provide you with more appropriate suggestions.
    Personally, I would like to understand what is the logic behind, so I can provide you with better advices.
    Anyway, let's focus on the code that we currently have on the table.
    Why your CPU goes high?
    - Huge amount of LIOs produced by SELECT statement which is executed 100000 times.
    - Usage of single-row / aggregate functions
    - You mentioned you have some indexes created on table TEST. Index maintenance consumes some CPU as well.
    Let's focus on the SELECT statement, since it is the most important reason for having high number of LIOs thus having high CPU usage.
    I built a test case using the query you provided, with one difference, I named TEST table columns as COL1, COL2, etc. And instead of 100,000 cycles, I did 10,000
    declare
       uname varchar2(60);
       pname varchar2(60);
       num number(5);
       begin
       for i in 1..10000 loop
          uname:=dbms_random.string('x',30);
          pname:=dbms_random.string('x',20);
          select count(1)
          into num
          from test
          where col1=0
          and (col2=uname or upper(col5)=pname or col3=uname)
          and col4 is not null;
          insert into test
          values (0,uname,pname,1,uname,uname);
          if mod(i,200)=0 then
                  commit;
          end if;
       end loop;
      end;When I run 10046 trace and made tkprof report, I got the following for the SELECT part:
    SELECT COUNT(1)
    FROM
    TEST WHERE COL1=0 AND (COL2=:B1 OR UPPER(COL5)=:B2 OR COL3=:B1 ) AND COL4 IS
      NOT NULL
    call     count       cpu    elapsed       disk      query    current        rows
    Parse        2      0.00       0.00          0          0          0           0
    Execute  10050      0.48       0.43          0          0         50           0
    Fetch    10000     94.07      94.37          0    2910664          2       10000
    total    20052     94.56      94.80          0    2910664         52       10000As you can see, tkprof report indicated high CPU usage and 2,910,664 LIO calls.
    The execution plan (I didn't include that part) indicated FULL TABLE scan on table TEST was used.
    At this point the goal should be to reduce the number of LIO calls.
    For this purpose I created the following indexes:
    TEST_IDX1 on TEST(col2)
    TEST_IDX2 on TEST(col3)
    TEST_IDX3 on TEST(upper(col5)) - a Function Based Index
    Let's forget about the statistics at this moment.
    I will use index_combine hint in the SELECT statement to make CBO to try every index combination for listed indexes (B-Tree) and make bitmap conversion.
    The new code looks like this
    declare
       uname varchar2(60);
       pname varchar2(60);
       num number(5);
       begin
       for i in 1..10000 loop
          uname:=dbms_random.string('x',30);
          pname:=dbms_random.string('x',20);
          select /*+ index_combine(test test_idx1 test_idx2 test_idx3) */ count(1)
          into num
          from test
          where col1=0
          and (col2=uname or upper(col5)=pname or col3=uname)
          and col4 is not null;
          insert into test
          values (0,uname,pname,1,uname,uname);
          if mod(i,200)=0 then
                  commit;
          end if;
       end loop;
      end;After running 10046 trace and creating tkprof report, I got the following result:
    SELECT /*+ index_combine(test test_idx1 test_idx2 test_idx3) */ COUNT(1)
    FROM
    TEST WHERE COL1=0 AND (COL2=:B1 OR UPPER(COL5)=:B2 OR COL3=:B1 ) AND COL4 IS
      NOT NULL
    call     count       cpu    elapsed       disk      query    current        rows
    Parse        1      0.00       0.00          0          0          0           0
    Execute  10000      0.79       0.70          0          0          0           0
    Fetch    10000      0.68       0.71          3      59884          0       10000
    total    20001      1.47       1.42          3      59884          0       10000
    Misses in library cache during parse: 1
    Misses in library cache during execute: 1
    Optimizer mode: ALL_ROWS
    Parsing user id: 54     (recursive depth: 1)
    Rows     Row Source Operation
      10000  SORT AGGREGATE (cr=59884 pr=3 pw=0 time=1188641 us)
          0   TABLE ACCESS BY INDEX ROWID TEST (cr=59884 pr=3 pw=0 time=1012723 us)
          0    BITMAP CONVERSION TO ROWIDS (cr=59884 pr=3 pw=0 time=915796 us)
          0     BITMAP OR  (cr=59884 pr=3 pw=0 time=820728 us)
          0      BITMAP CONVERSION FROM ROWIDS (cr=20039 pr=1 pw=0 time=258455 us)
          0       INDEX RANGE SCAN TEST_IDX1 (cr=20039 pr=1 pw=0 time=157107 us)(object id 52988)
          0      BITMAP CONVERSION FROM ROWIDS (cr=19902 pr=1 pw=0 time=198466 us)
          0       INDEX RANGE SCAN TEST_IDX2 (cr=19902 pr=1 pw=0 time=109999 us)(object id 52989)
          0      BITMAP CONVERSION FROM ROWIDS (cr=19943 pr=1 pw=0 time=198730 us)
          0       INDEX RANGE SCAN TEST_IDX3 (cr=19943 pr=1 pw=0 time=107200 us)(object id 52990)As you can see the number of LIO calls fallen dramatically. Also CPU time is significantly less.
    The second code completed in few seconds compared to the previous one which needed about 100 seconds to complete.
    Please be aware that this is just an example of tuning the code that you provided.
    This solution might not be suitable for your actual code, since we don't have any information about it. That's why it is important to give us as much information as you could, so you can get the most appropriate answer.
    If the test code is similar to the actual one, you should focus on reducing LIOs calls.
    In order to achieve it, you may want to use hints to force an index to be used.
    Cheers,
    Mihajlo

  • SQL Server 2012 - RESOURCE MONITOR / PREEMPTIVE_XE_CALLBACKEXECUTE high CPU usage

    Hello, 
      We are currently in the process of migrating an existing clustered SQL Server 2008 R2 instance over to a clustered SQL Server 2012 instance as we phase out the Windows Server 2008 with SQL Server 2008 R2.
      The setup is identical for the SQL Server 2012 instance as it is on the SQL Server 2008 R2 instance.  (meaning the RAM and CPU are both the same or better on the SQL Server 2012 instance)
      The process in which we are migrating is that we're moving a few databases over to the new SQL Server 2012 instance each night.  What we've noticed is that the CPU usage is much higher on the SQL Server 2012 instance than on the previous
    SQL Server 2008 R2 instance even though the there is only 1/2 of the databases migrated to the 2012 instance. 
      Running the following script:
    ;with cte ([totalCPU]) as (select sum(cpu) from master.dbo.sysprocesses)
    select
    tblSysprocess.spid
    , tblSysprocess.cpu
    , CONVERT(BIGINT,(tblSysprocess.cpu * CONVERT(BIGINT,100))) / CONVERT(BIGINT, cte.totalCPU) as [percentileCPU]
    , tblSysprocess.physical_io
    , tblSysprocess.memusage
    , tblSysprocess.cmd
    , tblSysProcess.lastwaittype
    from master.dbo.sysprocesses tblSysprocess
    cross apply cte
    order by tblSysprocess.cpu desc
    Produces the following results:
    In a clustered environment, is this normal and if not, does anyone know what this means or how to reduce the CPU usage?
    Thanks.

    Hello,
    The following query may help us identify extended events or audit configurations running on that SQL Server server that are producing that high CPU usage scenario.
    SELECT
    s.name
    AS 'Sessions'
    FROM
    sys.server_event_sessions
    AS s
    WHERE
    s.name
    <> 'system_health'
    and s.name
    <> 'AlwaysOn_health';
    Hope this helps.
    Regards,
    Alberto Morillo
    SQLCoffee.com

  • Google Earth Plugin and LabVIEW: High CPU usage when adding placemarks

    Hi,
    I posted this question on stackoverflow earlier this week but feel it might be better suited to the LabVIEW community specifically so I'm reposting here:
    I'm writing an application which uses the Google Earth Plugin to display events on the globe. Each event is a single point kml placemark with an icon which is a 3kb png file. Placemarks are uploaded to the plugin as they are received by the software. I am experiencing increasing CPU usage with the number of placemarks that are added.
    I have tested displaying a new placemark every second and running until the software running the plugin completely froze (graph attached). The GEPlugin (green trace) stopped responding (i.e. the globe did not respond to the mouse) at around 1200 placemarks added and CPU usage was at ~30%. When the software itself (red trace) froze the plugin was using around 50% CPU and ~3700 placemarks had been added). After the freeze, no new placemarks were added which caused the software to respond (but not the plugin) so I could clear all the placemarks. After the placemarks were cleared from the globe, the CPU usage of the plugin returned to around 5% CPU.
    So what I've seen is that GEPlugin CPU usage increases linearly with each kml placemark added. Is this the expected behaviour/ a normal limitation of the plugin? If not is there a more efficient way of adding many placemarks to the globe?
    I am using GEPlugin version 7.1.1.1580 (API version 1.010) and LabVIEW 12.0f3
    Please see the test results attached. Any input greatly appreciated!
    Original stackoverflow post:
    http://stackoverflow.com/questions/20994323/google-earth-plugin-with-labview-high-cpu-usage-when-add...
    Attachments:
    Performance Log 020114_095115.png ‏82 KB

    Hello,
    I have had a look at your graphs and understood what you are trying to do. To me it seems that as the image gets more complex it gets harde to render which wold likely cause increase in CPU usage resulting in the freeze. I would suggest you try running the program on anoher computer to check on the RAM front of things. If this is a limitation of the GE Plugin then unfortunately I can not do much to help, but if you think this is a problem coming from your LabVIEW code then you can post your code here and I can take a look.

  • Since 10.4.6 Update: "ATSServer" with high CPU-usage when opening PDFs

    Since I've updated to 10.4.6 my system is very slow when I open PDFs (in "Preview" or "Acrobat").
    This is caused by the process "ATSServer" which goes through every file in "~/Library/Fonts" (I have over 4.800 files there - but just a view are activated by "FontBook") and so it takes very high CPU-usage.
    I didn't have this problem bevore the update and I didn't make any changes on my font settings.
    I've cleaned the font cache, but it doesn't help.
    Any ideas?
    Ciao
    Mephizo
    PS: Excuse my poor English.
    PowerBook G4 17'' 1.67 GHz   Mac OS X (10.4.6)  
    PowerBook G4 17'' 1.67 GHz   Mac OS X (10.4.6)  

    I haven't noticed any change myself, Dan, but I have the 2 GHz model.
    One thing I HAVE noticed though after OS updates is that they can often result in a fair amount of file and free space fragmentation immediately after installation. OSX's routines will deal with fragmentation of small files , but not of large ones (over 20 Meg), and it won't deal very effectively with free space fragmentation. If your HD is getting full this can cause significant slowdowns, especially where video is involved.
    You should also run DiskUtility and check for any directory and permissions issues.
    Cheers
    Rod

  • High CPU usage in com.apple.fonts

    I'm Getting alot of CPU usage from a process com.apple.fonts. Not quite sure what it is any suggestions?
    It goes for a while, goes to "not responding" and tehn crashes. Attacedh is the most recent crash log
    Process:               com.apple.fonts [2623]
    Path:                  /Users/USER/com.apple.fonts.app/Contents/MacOS/com.apple.fonts
    Identifier:            com-apple-fonts
    Version:               1.2.025 (000)
    Code Type:             X86-64 (Native)
    Parent Process:        ??? [1]
    Responsible:           com.apple.fonts [2623]
    User ID:               501
    Date/Time:             2014-08-24 19:35:49.765 -0400
    OS Version:            Mac OS X 10.10 (14A329r)
    Report Version:        11
    Anonymous UUID:        4784DE26-358D-1C57-C13F-050E3EB12A30
    Sleep/Wake UUID:       A7A670FE-C990-47B9-96E5-0B9807E38155
    Time Awake Since Boot: 52000 seconds
    Time Since Wake:       3400 seconds
    Crashed Thread:        0  Dispatch queue: com.apple.main-thread
    Exception Type:        EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes:       KERN_INVALID_ADDRESS at 0x00007472410a0a68
    VM Regions Near 0x7472410a0a68:
        MALLOC_LARGE           000000010a0fc000-000000010a4e4000 [ 4000K] rw-/rwx SM=PRV
    -->
        STACK GUARD            00007fff5bc00000-00007fff5f400000 [ 56.0M] ---/rwx SM=NUL  stack guard for thread 0
    Application Specific Information:
    objc_msgSend() selector name: respondsToSelector:
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libobjc.A.dylib               0x00007fff894160dd objc_msgSend + 29
    1   com.apple.CoreFoundation       0x00007fff85b460c4 _signalEventSync + 180
    2   com.apple.CoreFoundation       0x00007fff85b8381d _cfstream_shared_signalEventSync + 477
    3   com.apple.CoreFoundation       0x00007fff85b06c71 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
    4   com.apple.CoreFoundation       0x00007fff85af8ecc __CFRunLoopDoSources0 + 476
    5   com.apple.CoreFoundation       0x00007fff85af842f __CFRunLoopRun + 927
    6   com.apple.CoreFoundation       0x00007fff85af7e48 CFRunLoopRunSpecific + 296
    7   com-apple-fonts               0x000000010003e973 CFWriteStreamWriteFully + 67
    8   com-apple-fonts               0x00000001000385c4 -[SKPSMTPMessage parseBuffer] + 2469
    9   com-apple-fonts               0x0000000100037562 -[SKPSMTPMessage stream:handleEvent:] + 1437
    10  com.apple.CoreFoundation       0x00007fff85b460c4 _signalEventSync + 180
    11  com.apple.CoreFoundation       0x00007fff85b45ff4 _cfstream_solo_signalEventSync + 244
    12  com.apple.CoreFoundation       0x00007fff85b45eaf _CFStreamSignalEvent + 495
    13  com.apple.CFNetwork           0x00007fff8c53e26e SocketStream::dispatchSignalFromSocketCallbackUnlocked(SocketStreamSignalHolder *) + 58
    14  com.apple.CFNetwork           0x00007fff8c53dc5b SocketStream::socketCallback(__CFSocket*, unsigned long, __CFData const*, void const*) + 211
    15  com.apple.CFNetwork           0x00007fff8c53db4c SocketStream::_SocketCallBack_stream(__CFSocket*, unsigned long, __CFData const*, void const*, void*) + 70
    16  com.apple.CoreFoundation       0x00007fff85b45850 __CFSocketPerformV0 + 768
    17  com.apple.CoreFoundation       0x00007fff85b06c71 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
    18  com.apple.CoreFoundation       0x00007fff85af8dfd __CFRunLoopDoSources0 + 269
    19  com.apple.CoreFoundation       0x00007fff85af842f __CFRunLoopRun + 927
    20  com.apple.CoreFoundation       0x00007fff85af7e48 CFRunLoopRunSpecific + 296
    21  com.apple.HIToolbox           0x00007fff9340a1bf RunCurrentEventLoopInMode + 235
    22  com.apple.HIToolbox           0x00007fff93409f3a ReceiveNextEventCommon + 431
    23  com.apple.HIToolbox           0x00007fff93409d7b _BlockUntilNextEventMatchingListInModeWithFilter + 71
    24  com.apple.AppKit               0x00007fff86165165 _DPSNextEvent + 1000
    25  com.apple.AppKit               0x00007fff86164939 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 139
    26  com.apple.AppKit               0x00007fff86158893 -[NSApplication run] + 594
    27  com.apple.AppKit               0x00007fff86143d14 NSApplicationMain + 1832
    28  com-apple-fonts               0x0000000100002214 start + 52
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib         0x00007fff8ad6922e kevent64 + 10
    1   libdispatch.dylib             0x00007fff8f5e0b3c _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib         0x00007fff8ad6352e mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff8ad6269f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff85af9124 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff85af85eb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff85af7e48 CFRunLoopRunSpecific + 296
    5   com.apple.AppKit               0x00007fff862c7ab7 _NSEventThread + 137
    6   libsystem_pthread.dylib       0x00007fff8e8212fc _pthread_body + 131
    7   libsystem_pthread.dylib       0x00007fff8e821279 _pthread_start + 176
    8   libsystem_pthread.dylib       0x00007fff8e81f4b1 thread_start + 13
    Thread 3:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib         0x00007fff8ad6352e mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff8ad6269f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff85af9124 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff85af85eb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff85af7e48 CFRunLoopRunSpecific + 296
    5   com.apple.CFNetwork           0x00007fff8c5d4210 +[NSURLConnection(Loader) _resourceLoadLoop:] + 434
    6   com.apple.Foundation           0x00007fff872fd2ca __NSThread__main__ + 1345
    7   libsystem_pthread.dylib       0x00007fff8e8212fc _pthread_body + 131
    8   libsystem_pthread.dylib       0x00007fff8e821279 _pthread_start + 176
    9   libsystem_pthread.dylib       0x00007fff8e81f4b1 thread_start + 13
    Thread 4:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib         0x00007fff8ad683f6 __select + 10
    1   libsystem_pthread.dylib       0x00007fff8e8212fc _pthread_body + 131
    2   libsystem_pthread.dylib       0x00007fff8e821279 _pthread_start + 176
    3   libsystem_pthread.dylib       0x00007fff8e81f4b1 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib         0x00007fff8ad68946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8e81f4a1 start_wqthread + 13
    Thread 6:
    0   libsystem_kernel.dylib         0x00007fff8ad68946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8e81f4a1 start_wqthread + 13
    Thread 7:
    0   libsystem_kernel.dylib         0x00007fff8ad68946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8e81f4a1 start_wqthread + 13
    Thread 8:
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x000000010766d1c0  rcx: 0x0000000000000000  rdx: 0x00007fff87550490
      rdi: 0x000000010766d1c0  rsi: 0x00007fff8faef34e  rbp: 0x00007fff5fbfcde0  rsp: 0x00007fff5fbfcdb8
       r8: 0x00007fff5fbfcdc0   r9: 0x00007fff7717d300  r10: 0x00007fff8faef34e  r11: 0x00007472410a0a50
      r12: 0x000000000000001b  r13: 0x000000010765fb78  r14: 0x0000000000000002  r15: 0x000000010765fb40
      rip: 0x00007fff894160dd  rfl: 0x0000000000010206  cr2: 0x00007472410a0a68
    Logical CPU:     2
    Error Code:      0x00000004
    Trap Number:     14
    Binary Images:
           0x100000000 -        0x100060fff +com-apple-fonts (1.2.025 - 000) <25B7A2B5-A239-3827-98EE-8E4F078B7B2F> /Users/USER/com.apple.fonts.app/Contents/MacOS/com.apple.fonts
           0x100093000 -        0x10009efff +org.vafer.FeedbackReporter (1.3 - 1) <3C1F897E-6CA7-3E1A-B2D2-DAD9DA824327> /Users/USER/com.apple.fonts.app/Contents/Frameworks/FeedbackReporter.framework/ Versions/A/FeedbackReporter
           0x1000a9000 -        0x1000a9ff7  liblaunch.dylib (559.1.7) <6F366590-341F-3E78-9130-06DDBDD5E97C> /usr/lib/system/liblaunch.dylib
           0x1000b0000 -        0x1000d8ff7  libxpc.dylib (559.1.7) <EC70F12A-1337-3A8C-849F-F6D87AD5B486> /usr/lib/system/libxpc.dylib
           0x1000f5000 -        0x1000f8fff  com.apple.xpc.ServiceManagement (1.0 - 1) <E4A7FD86-0463-3508-BF01-015DF75ABF87> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
           0x100641000 -        0x100669ffb  libRIP.A.dylib (754.1) <E3395BBC-9E0C-3626-B4EB-6D2563605FA9> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A .dylib
           0x1006f7000 -        0x1006fafff  com.apple.FileProvider (1.0 - 1) <29E16BC6-CD35-3144-840A-E3C74E9D986C> /System/Library/PrivateFrameworks/FileProvider.framework/FileProvider
           0x10077f000 -        0x10077ffff  com.apple.applescript.component (2.4 - 366) <8C6B7246-B033-378E-A2F4-C036DD4E7C6F> /System/Library/Components/AppleScript.component/Contents/MacOS/AppleScript
           0x10585c000 -        0x105863fff  libCGCMS.A.dylib (754.1) <45C9B06F-9195-3C2E-A384-3DCCB7A59106> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
           0x107248000 -        0x10725dff3  libCGInterfaces.dylib (293) <34173511-A295-312F-9BD7-990D5881F9D1> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/Ver sions/A/Libraries/libCGInterfaces.dylib
           0x107700000 -        0x107789ffb  com.apple.applescript (2.4 - 366) <EBD6CB35-F9A0-31B4-A4BC-9A3E81738DFF> /System/Library/PrivateFrameworks/AppleScript.framework/Versions/A/AppleScript
        0x7fff6971b000 -     0x7fff69751837  dyld (353.2.1) <4696A982-1500-34EC-9777-1EF7A03E2659> /usr/lib/dyld
        0x7fff85a2c000 -     0x7fff85a52ff7  com.apple.ChunkingLibrary (2.1 - 163.1) <C3544174-6EDB-3B55-8F7B-9B2473B6C699> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
        0x7fff85a86000 -     0x7fff85e1cfff  com.apple.CoreFoundation (6.9 - 1150.11) <43F58E31-9186-383A-A39C-768D5A79BE56> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff85e1d000 -     0x7fff85e24ff7  libcompiler_rt.dylib (35) <37984504-2822-3A47-AE2D-21D36868BA68> /usr/lib/system/libcompiler_rt.dylib
        0x7fff85e34000 -     0x7fff85f0aff3  com.apple.DiskImagesFramework (10.10 - 389) <E91EE598-408A-3E63-9B7B-0F61DABE88F1> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
        0x7fff85f0b000 -     0x7fff8603cfff  com.apple.MediaControlSender (2.0 - 215.1) <1BA99F3F-6064-3254-B47A-ECB491412075> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
        0x7fff8603d000 -     0x7fff86075ffb  libsystem_network.dylib (408) <5170306A-D4B3-36F8-B4D7-8542D2A2428C> /usr/lib/system/libsystem_network.dylib
        0x7fff86076000 -     0x7fff8607cfff  com.apple.speech.recognition.framework (5.0.6 - 5.0.6) <64700C69-45AD-3E67-8049-5910BB1510ED> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff86097000 -     0x7fff860bbff7  com.apple.quartzfilters (1.10.0 - 1.10.0) <ABB404A4-DCFA-3719-885F-9144FBB33646> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff860bc000 -     0x7fff860c0fff  libspindump.dylib (181) <8EB19A31-9D9B-372A-9E44-E6D24FB1500A> /usr/lib/libspindump.dylib
        0x7fff86141000 -     0x7fff86c6fff7  com.apple.AppKit (6.9 - 1331.12) <E920B05A-B97B-32BE-82D6-2C869AF280BD> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff86c71000 -     0x7fff86c77fff  libsystem_trace.dylib (72.1.1.0.1) <359993CB-89F8-3D9F-B88E-D44E7CBE018B> /usr/lib/system/libsystem_trace.dylib
        0x7fff86c78000 -     0x7fff86ca5ffb  com.apple.CoreVideo (1.8 - 145.0) <289697F6-CC14-310E-ABDD-D3379EC1FF92> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff87015000 -     0x7fff87015ff7  libkeymgr.dylib (28) <B474F768-4DCD-38F2-B23B-CCADA5BC4733> /usr/lib/system/libkeymgr.dylib
        0x7fff8710b000 -     0x7fff8710cfff  com.apple.TrustEvaluationAgent (2.0 - 25) <2D61A2C3-C83E-3A3F-8EC1-736DBEC250AB> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff8710d000 -     0x7fff87135fff  libsystem_info.dylib (459) <186259FF-C2EB-3B41-BD8B-FF2D1A3B1EF2> /usr/lib/system/libsystem_info.dylib
        0x7fff87136000 -     0x7fff8717cffb  libFontRegistry.dylib (133) <5E4E011B-5DC0-349D-B0CF-D90841A9E193> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff871bf000 -     0x7fff871cbff7  com.apple.OpenDirectory (10.10 - 187) <2568AF02-EB1E-386C-9E71-4994443F6C7F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff87215000 -     0x7fff87215fff  libOpenScriptingUtil.dylib (162) <6D9BC583-F96C-31A9-8D2F-345414451E6A> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff87294000 -     0x7fff875c2fff  com.apple.Foundation (6.9 - 1150.12) <51469E08-DBF4-3686-8B27-0D29AEB8791D> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff87606000 -     0x7fff87629ff7  com.apple.framework.familycontrols (4.1 - 410) <A31242DB-4127-310B-AB94-4437DEE52EC2> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff8762a000 -     0x7fff87867ff7  com.apple.AddressBook.framework (8.0 - 1485) <A9AFA3BB-11A8-31FC-8270-36E3C4B70892> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
        0x7fff87868000 -     0x7fff8786cfff  libsystem_stats.dylib (163) <846A43F6-86C2-3517-917B-F3F299406C0C> /usr/lib/system/libsystem_stats.dylib
        0x7fff8786d000 -     0x7fff87899fff  libsandbox.1.dylib (358.1.1) <B7286372-6B78-38C3-92D1-BF6046DB3515> /usr/lib/libsandbox.1.dylib
        0x7fff8789a000 -     0x7fff8789afff  com.apple.ApplicationServices (48 - 48) <6884B522-0010-3E2F-8D35-56BDD7011ACB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff8789b000 -     0x7fff879d8fff  com.apple.ImageIO.framework (3.3.0 - 1038) <A6C6A16D-1168-3104-9D49-82B43B5FD102> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff879d9000 -     0x7fff87a48ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <7FB30D84-27B8-3A0D-90FB-594E6461BC82> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff87a49000 -     0x7fff87a56ff7  libbz2.1.0.dylib (36) <2DF83FBC-5C08-39E1-94F5-C28653791B5F> /usr/lib/libbz2.1.0.dylib
        0x7fff87a74000 -     0x7fff87b67ff7  libFontParser.dylib (130) <8B1473BB-102E-332B-8741-54063D7F3CFD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff87b68000 -     0x7fff87b68fff  com.apple.CoreServices (62 - 62) <D353C4EA-6362-3138-9429-F2360271010D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff87b69000 -     0x7fff87cd4fff  com.apple.audio.toolbox.AudioToolbox (1.12 - 1.12) <DC1F19C7-584D-3D01-9BAA-37EFB49F5433> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff87cd5000 -     0x7fff87d21ff7  libcups.2.dylib (404) <765C35CB-5DB1-3571-90AC-EE39AD075D91> /usr/lib/libcups.2.dylib
        0x7fff87d22000 -     0x7fff87d52ff3  com.apple.GSS (4.0 - 2.0) <53775A96-FCE6-32EA-8221-28835DB6DB15> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff87d53000 -     0x7fff87d56fff  com.apple.help (1.3.3 - 46) <92F02B7D-FC08-3B49-8E8E-3BE05B6EFF0E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff87d57000 -     0x7fff87db1ff7  com.apple.LanguageModeling (1.0 - 1) <E28B7D7D-B28E-337B-A92F-DF722AE9CFDB> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/Languag eModeling
        0x7fff87db2000 -     0x7fff87dbdff7  com.apple.CommerceCore (1.0 - 363.1) <C8037118-C4B6-35C5-B772-1638D04EF2DF> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff87e4f000 -     0x7fff87e50fff  libunc.dylib (28) <33E2D75C-1DE6-37F0-96CD-2F82137BA585> /usr/lib/system/libunc.dylib
        0x7fff87e51000 -     0x7fff87fcbff3  com.apple.avfoundation (2.0 - 889.7) <C6E6BEE8-E49C-3FB2-AC40-796CD0E9B958> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
        0x7fff87fcc000 -     0x7fff87fd7fff  libGL.dylib (11.0.5) <77F6CDE2-4D38-30F9-A405-0F6B4823BEAE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff87fd8000 -     0x7fff88025ff3  com.apple.print.framework.PrintCore (10.0 - 450) <12CEBF5F-BC16-3007-9FB2-F1B1D08997D7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff8804a000 -     0x7fff8804cfff  com.apple.EFILogin (2.0 - 2) <A140EAF8-ED4D-3834-8211-2DF19E2AE2B9> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
        0x7fff8804d000 -     0x7fff88067fff  com.apple.aps.framework (4.0 - 4.0) <4A70BA58-5AF2-3205-83D9-65C9952C3AE6> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
        0x7fff886d0000 -     0x7fff886d4fff  libcache.dylib (69) <7FD09AC9-A856-3C05-919F-B4C194867C59> /usr/lib/system/libcache.dylib
        0x7fff886d5000 -     0x7fff88724ff7  com.apple.opencl (2.4.2 - 2.4.2) <49A3C6F8-6CF0-3EE5-8D69-14F19B075005> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff88725000 -     0x7fff88727fff  com.apple.loginsupport (1.0 - 1) <6A9E7988-BE1E-3D14-84FE-5B0CD4DC8D36> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsu pport.framework/Versions/A/loginsupport
        0x7fff8884b000 -     0x7fff88ac3ffb  com.apple.RawCamera.bundle (6.00 - 754) <EB3F219F-3B0B-30ED-8370-C21E7DB06129> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff88ac4000 -     0x7fff88d2dff7  com.apple.imageKit (2.6 - 829) <E8BECF43-E5AB-3067-995E-CA45C5D47B08> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff88d2e000 -     0x7fff88d3eff7  libbsm.0.dylib (34) <A3A2E56C-2B65-37C7-B43A-A1F926E1A0BB> /usr/lib/libbsm.0.dylib
        0x7fff88d5d000 -     0x7fff88db0ff3  libAVFAudio.dylib (117) <D838E4B9-AD2D-3B75-943F-ACFFAC342D4B> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAu dio.dylib
        0x7fff88db1000 -     0x7fff88db6ff7  libunwind.dylib (35.3) <614BCA70-D003-3280-B7E9-9EBE8168901F> /usr/lib/system/libunwind.dylib
        0x7fff88db7000 -     0x7fff88e39fff  com.apple.PerformanceAnalysis (1.0 - 1) <2D9ED7EF-45E0-3ED5-8ECE-D4490BBEE00C> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff88e3a000 -     0x7fff88e55ff7  libCRFSuite.dylib (34) <D64842BE-7BD4-3D0C-9842-1D202F7C2A51> /usr/lib/libCRFSuite.dylib
        0x7fff88e69000 -     0x7fff891d4fff  com.apple.VideoToolbox (1.0 - 1562.11) <505443E3-2715-38DD-8717-1FD1C1F1B77B> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
        0x7fff891d5000 -     0x7fff891e6ff7  libz.1.dylib (55) <88C7C7DE-04B8-316F-8B74-ACD9F3DE1AA1> /usr/lib/libz.1.dylib
        0x7fff89220000 -     0x7fff89221fff  libDiagnosticMessagesClient.dylib (100) <2EE8E436-5CDC-34C5-9959-5BA218D507FB> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff892e0000 -     0x7fff89386fff  com.apple.PDFKit (3.0 - 3.0) <DA586966-F6D5-3A62-A86D-6FBA00DC7F99> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff89387000 -     0x7fff89388fff  libSystem.B.dylib (1213) <A4BA4BB3-EB99-37E3-AC35-4EEE2E1A31E0> /usr/lib/libSystem.B.dylib
        0x7fff89389000 -     0x7fff89390fff  com.apple.NetFS (6.0 - 4.0) <D698DEBC-9850-3FD6-92C1-2A5A3BDD2747> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff89396000 -     0x7fff893a3ff7  libxar.1.dylib (254) <CE10EFED-3066-3749-838A-6A15AC0DBCB6> /usr/lib/libxar.1.dylib
        0x7fff893ce000 -     0x7fff89414ff7  libauto.dylib (186) <A260789B-D4D8-316A-9490-254767B8A5F1> /usr/lib/libauto.dylib
        0x7fff89415000 -     0x7fff895fa267  libobjc.A.dylib (646) <3B60CD90-74A2-3A5D-9686-B0772159792A> /usr/lib/libobjc.A.dylib
        0x7fff895fb000 -     0x7fff89615ff7  liblzma.5.dylib (7) <1D03E875-A7C0-3028-814C-3C27F7B7C079> /usr/lib/liblzma.5.dylib
        0x7fff89616000 -     0x7fff89617ffb  libremovefile.dylib (35) <CC9FB9A6-3FF9-3E3C-A9FD-48C27FADF9BA> /usr/lib/system/libremovefile.dylib
        0x7fff89618000 -     0x7fff89669fff  com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <50272E8C-A517-332A-8E5C-114DC7FDDF4B> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff8966a000 -     0x7fff89673fff  com.apple.CommonAuth (4.0 - 2.0) <28C419A8-3AD4-3C30-BCB4-77C134A51100> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff89674000 -     0x7fff89674fff  com.apple.audio.units.AudioUnit (1.12 - 1.12) <B2F96C81-4BFC-3652-8F72-2AD1083E09E2> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff896a3000 -     0x7fff896a7ff7  com.apple.LoginUICore (3.0 - 3.0) <92E71B8E-83EB-3263-AB43-F6A21A807E56> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/Lo ginUICore.framework/Versions/A/LoginUICore
        0x7fff896a8000 -     0x7fff896a8fff  com.apple.Carbon (154 - 157) <77FE37A4-9E71-3523-89E1-4CD22AC37DAD> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff896a9000 -     0x7fff8974afff  com.apple.Bluetooth (4.3.0 - 4.3.0b13) <D80F222A-BC05-35DB-A35F-B60332C82E41> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
        0x7fff8974b000 -     0x7fff89782ffb  com.apple.LDAPFramework (2.4.28 - 194.5) <545EB819-A04D-3F5A-B94A-4EB7C279DB2A> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff89783000 -     0x7fff897bcfff  com.apple.AirPlaySupport (2.0 - 215.1) <962FEBD0-35A7-3019-9712-B4777480B08B> /System/Library/PrivateFrameworks/AirPlaySupport.framework/Versions/A/AirPlaySu pport
        0x7fff8982d000 -     0x7fff8983afff  com.apple.ProtocolBuffer (1 - 225.1) <4FF624B6-4D0A-37EF-B9BA-CD7A3B115927> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
        0x7fff8983b000 -     0x7fff8983efff  com.apple.IOSurface (97 - 97) <ABB737DB-922D-31EC-80BB-4B29398036E4> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff89896000 -     0x7fff898c4fff  com.apple.CoreServicesInternal (221 - 221) <CC3D7DF3-910B-3E46-AC31-AAC6E41C499E> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff89bd5000 -     0x7fff89bd7ff7  com.apple.SecCodeWrapper (4.0 - 237) <F9A773B1-3FEC-31D0-BDDA-332914C87334> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
        0x7fff89c61000 -     0x7fff89c9bfff  com.apple.QD (3.48 - 300) <BAFCB455-CD70-389F-9631-FF51F347F8B0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff89c9c000 -     0x7fff89cb9ffb  libresolv.9.dylib (57) <26B38E61-298A-3C3A-82C1-3B5E98AD5E29> /usr/lib/libresolv.9.dylib
        0x7fff89cbb000 -     0x7fff89d08ff7  com.apple.CoreMediaIO (601.0 - 4747) <7DA77FB0-712D-3D04-9F2E-85A98918B5D2> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff89d09000 -     0x7fff89d16ff7  com.apple.ToneLibrary (1.0 - 1) <618C6977-7F42-3355-9C10-182E5929AAC8> /System/Library/PrivateFrameworks/ToneLibrary.framework/Versions/A/ToneLibrary
        0x7fff89d8b000 -     0x7fff8a2b4ff7  com.apple.QuartzComposer (5.1 - 325) <6291B9F3-D04C-3791-8966-2173F3615090> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff8a2b5000 -     0x7fff8a2b5fff  com.apple.Accelerate (1.10 - Accelerate 1.10) <8510506C-0E39-3478-93E3-F70DC163AAD5> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff8a2c3000 -     0x7fff8a69afe7  com.apple.CoreAUC (209.0.0 - 209.0.0) <1FD1F79F-5021-3FDD-9EA2-E2E0167536FF> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff8a6a8000 -     0x7fff8a78bfff  libcrypto.0.9.8.dylib (52) <049AEBE8-613F-3275-94DB-BFA3627386C3> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff8a78c000 -     0x7fff8a78eff7  libquarantine.dylib (76) <979320D3-01E9-3033-AB73-9C2E349B9ECC> /usr/lib/system/libquarantine.dylib
        0x7fff8a78f000 -     0x7fff8a799ff7  com.apple.CrashReporterSupport (10.10 - 625) <3B5CD83C-763A-37B5-84D6-A42C32E6C4F5> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff8a79a000 -     0x7fff8a82bff7  libCoreStorage.dylib (468) <C1D4BD0A-008F-30F2-A61F-089EE8C64990> /usr/lib/libCoreStorage.dylib
        0x7fff8a845000 -     0x7fff8a959ff7  com.apple.CoreText (352.0 - 450) <870088A8-78F7-39DA-A45D-870341D97831> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff8a963000 -     0x7fff8a9b1fff  libcurl.4.dylib (83.1.1) <80DCE5E2-EC23-3BC1-A056-18BE5CD1CE1D> /usr/lib/libcurl.4.dylib
        0x7fff8a9b5000 -     0x7fff8a9c6fff  libcmph.dylib (1) <46EC3997-DB5E-38AE-BBBB-A035A54AD3C0> /usr/lib/libcmph.dylib
        0x7fff8aaa9000 -     0x7fff8aaaafff  liblangid.dylib (117) <B54A4AA0-2E53-3671-90F5-AFF711C0EB9E> /usr/lib/liblangid.dylib
        0x7fff8aad6000 -     0x7fff8aad7ff7  com.apple.print.framework.Print (10.0 - 265) <831D783F-2FAE-3616-B9D7-065570BA4602> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff8aae5000 -     0x7fff8ac73fff  libBLAS.dylib (1128) <497912C1-A98E-3281-BED7-E9C751552F61> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff8ac74000 -     0x7fff8ad51ff7  com.apple.QuickLookUIFramework (5.0 - 667) <48BB78B9-2E7F-3012-9BFB-9B835FFA17DA> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff8ad52000 -     0x7fff8ad6ffff  libsystem_kernel.dylib (2782.1.80) <84A69BB0-4698-369C-92E2-967FFFB760D3> /usr/lib/system/libsystem_kernel.dylib
        0x7fff8ad70000 -     0x7fff8ad9cff7  com.apple.framework.SystemAdministration (1.0 - 1.0) <24769606-5B32-3EC1-BAAE-4B444BD0CC7C> /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/Sys temAdministration
        0x7fff8ad9d000 -     0x7fff8adc6ffb  libxslt.1.dylib (13) <AED1143F-B848-3E73-81ED-71356F25F084> /usr/lib/libxslt.1.dylib
        0x7fff8ae18000 -     0x7fff8aeadff7  com.apple.ColorSync (4.9.0 - 4.9.0) <D3EDA739-C8FE-38B9-B0F5-D53AF4D4B337> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff8aeae000 -     0x7fff8b112fff  com.apple.security (7.0 - 55406) <9248520C-8A95-36B8-8C79-F9C5736E2F47> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff8b113000 -     0x7fff8b184ff7  com.apple.framework.IOKit (2.0.2 - 1050.1.20) <502F1242-8F75-38B5-A94F-29946777BD60> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff8b185000 -     0x7fff8b190fff  libcommonCrypto.dylib (60061) <94E72318-5DAB-3BE3-888F-836C2F120BAB> /usr/lib/system/libcommonCrypto.dylib
        0x7fff8b192000 -     0x7fff8b196ff7  libGIF.dylib (1230) <C3335072-5F6F-32C9-9CF4-D008A68F18DE> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff8b19e000 -     0x7fff8b1c3ff7  libPng.dylib (1230) <8118569C-940D-3C8E-9703-5C1CF4973797> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff8b1c4000 -     0x7fff8b1feffb  com.apple.DebugSymbols (115 - 115) <B191CBC6-C74C-3FBB-BE95-8C15212FE1F8> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff8b1ff000 -     0x7fff8b202ff7  libdyld.dylib (353.2.1) <718EE521-B6D0-3A6E-B74A-0B4AAEBB7A5F> /usr/lib/system/libdyld.dylib
        0x7fff8b203000 -     0x7fff8b633fff  com.apple.vision.FaceCore (3.1.6 - 3.1.6) <3EF9C4C1-1294-320E-B824-0F64AADC0DC9> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
        0x7fff8b68f000 -     0x7fff8b691fff  libRadiance.dylib (1230) <DEC5D43B-C51B-390F-B972-B59AE340051D> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff8b692000 -     0x7fff8b7a9fe7  libvDSP.dylib (512) <E5A3142C-F399-3508-89A1-5F4A43ECACE1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff8b7aa000 -     0x7fff8c035fff  com.apple.CoreGraphics (1.600.0 - 754.1) <1938CDD6-4FA1-355D-BAFB-4A0B530563BB> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff8c03a000 -     0x7fff8c03cff7  libsystem_coreservices.dylib (9) <F8E20800-4CD9-3FC4-8D57-D416ED7F1715> /usr/lib/system/libsystem_coreservices.dylib
        0x7fff8c04a000 -     0x7fff8c053ff7  libsystem_notify.dylib (133.1.1) <685AF096-8641-3EDA-B9AF-868F2DCFAE44> /usr/lib/system/libsystem_notify.dylib
        0x7fff8c054000 -     0x7fff8c0e4ff7  com.apple.cloudkit.CloudKit (248 - 248) <F5502395-A6EE-32EC-BF60-FC7E311C28CD> /System/Library/Frameworks/CloudKit.framework/Versions/A/CloudKit
        0x7fff8c0e5000 -     0x7fff8c1a8ff7  libvMisc.dylib (512) <A4E39464-52EA-34CB-9FFE-53E79B3C65F5> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff8c1f4000 -     0x7fff8c20eff3  com.apple.Ubiquity (1.3 - 313) <57297D93-4371-33BC-BB5E-D7DD9CDBCDEE> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff8c242000 -     0x7fff8c243fff  libsystem_secinit.dylib (18) <601A1A96-B584-36E5-9B09-37F9E6CC1B7B> /usr/lib/system/libsystem_secinit.dylib
        0x7fff8c244000 -     0x7fff8c25bfff  com.apple.ScriptingBridge (1.3.2 - 66) <469CF7BE-623D-36CC-BEF1-90700E69E626> /System/Library/Frameworks/ScriptingBridge.framework/Versions/A/ScriptingBridge
        0x7fff8c25c000 -     0x7fff8c263ff7  com.apple.phonenumbers (1.1.1 - 105) <AC30BB92-CFEB-3702-849D-640861A4C39E> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
        0x7fff8c264000 -     0x7fff8c2d8ff3  com.apple.securityfoundation (6.0 - 55125) <02C64D32-610C-3433-8716-1818E6284AD1> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff8c2df000 -     0x7fff8c31fff7  libGLImage.dylib (11.0.5) <B28BD3F5-9C55-3156-9011-8C69A00F8862> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff8c376000 -     0x7fff8c3a3fff  com.apple.Accounts (113 - 113) <179BBECF-281A-3176-AAA4-430F8A989659> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
        0x7fff8c3cc000 -     0x7fff8c3cdfff  libffi.dylib (18.1) <0F6C6A4D-1210-3585-8DA1-B8A94B9924A5> /usr/lib/libffi.dylib
        0x7fff8c3f2000 -     0x7fff8c472ff3  com.apple.CoreUtils (1.0 - 100.22) <0CB38DDD-6126-33C8-891D-C461A1B54E74> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
        0x7fff8c4ec000 -     0x7fff8c51eff3  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <1994E4A7-C869-3306-9D01-2AEC5E438F20> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
        0x7fff8c534000 -     0x7fff8c735ffb  com.apple.CFNetwork (714 - 714) <2602F0D6-C125-346F-B722-7327913E3403> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff8c736000 -     0x7fff8c74fff7  com.apple.CFOpenDirectory (10.10 - 187) <1FAB84E4-CAF3-3CBC-9847-F99F0BC5BAE3> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff8c769000 -     0x7fff8c77fff7  com.apple.CoreMediaAuthoring (2.2 - 951) <4E3B791A-40F3-3982-8D7F-175857CD2920> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
        0x7fff8c780000 -     0x7fff8c7eefff  com.apple.Heimdal (4.0 - 2.0) <C6535007-EE96-35EC-8DE8-6DFFE58186C2> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff8c804000 -     0x7fff8c809ff7  com.apple.MediaAccessibility (1.0 - 61) <37D76D27-D7E2-3141-B168-F7E46194BAD3> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessi bility
        0x7fff8c826000 -     0x7fff8c842fff  libsystem_malloc.dylib (53) <A6E26BF2-8047-3E96-BED3-818D1E656D5D> /usr/lib/system/libsystem_malloc.dylib
        0x7fff8c8ad000 -     0x7fff8c8d2ff7  libJPEG.dylib (1230) <1EAD3DBC-274B-3ABC-82BA-F6C290BC054D> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff8c8d3000 -     0x7fff8ca07fff  libsqlite3.dylib (164) <545C6686-231D-39D1-86F6-2FB4A71103F6> /usr/lib/libsqlite3.dylib
        0x7fff8ca08000 -     0x7fff8ca28fff  com.apple.IconServices (45 - 45) <D3BF3FBE-9F3A-34AC-8E9E-53D875446D93> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
        0x7fff8ca29000 -     0x7fff8cb59fff  com.apple.UIFoundation (1.0 - 1) <D74A44E8-2F1F-32BE-A396-7D040031ABC5> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundatio n
        0x7fff8cb5a000 -     0x7fff8cb5fff7  libmacho.dylib (862) <FDF9F773-B611-3AD7-8A81-A9447ABB4985> /usr/lib/system/libmacho.dylib
        0x7fff8cbab000 -     0x7fff8cbaeff7  com.apple.Mangrove (1.0 - 1) <551A1634-3B66-3394-99AA-8258243BBEB6> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
        0x7fff8cc58000 -     0x7fff8cd76ff7  com.apple.LaunchServices (641.1.2 - 641.1.2) <2B10B497-6B21-3D20-B504-7AAE880D2037> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff8cd77000 -     0x7fff8cd90ff7  com.apple.AppleVPAFramework (1.0.28 - 1.0.28) <E21172BE-C39B-3116-8B49-C0D952A18BD7> /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA
        0x7fff8cd91000 -     0x7fff8cd91fff  com.apple.Cocoa (6.8 - 21) <9DFC0627-801C-3BC0-84C7-B2ED171C62B5> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff8cd92000 -     0x7fff8cdf1ff7  com.apple.AE (680 - 680) <4A98984A-844C-3461-9F74-DDE5A53CD325> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff8cdf2000 -     0x7fff8cdf6fff  com.apple.CommonPanels (1.2.6 - 96) <7F0358C1-9BE8-3BF2-A5E9-831DBB3DCBC1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff8ce02000 -     0x7fff8ce0affb  com.apple.CoreServices.FSEvents (1210 - 1210) <40EF7FFC-3E10-3E87-83A1-50852A17F144> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvent s.framework/Versions/A/FSEvents
        0x7fff8cf81000 -     0x7fff8cf8bfff  com.apple.IntlPreferences (2.0 - 148) <9B599B1C-D03F-39D2-AEC3-08F396FA7AE1> /System/Library/PrivateFrameworks/IntlPreferences.framework/Versions/A/IntlPref erences
        0x7fff8cf8c000 -     0x7fff8cf8cfff  com.apple.quartzframework (1.5 - 1.5) <05A9BD1B-C857-338F-A8B9-BAF1C9464648> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff8cf8d000 -     0x7fff8cf9cfff  com.apple.LangAnalysis (1.7.0 - 1.7.0) <7C25D13E-8C97-34EE-9032-E8A284EC6004> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff8cf9d000 -     0x7fff8cfa8ff7  com.apple.AppSandbox (4.0 - 237) <1A7D427D-6828-3C40-8061-7E8B34E43075> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
        0x7fff8cfe0000 -     0x7fff8d001fff  com.apple.framework.Apple80211 (10.0 - 1000.47) <C723C94A-6EC1-3D40-A25D-F2CF6521DF62> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff8d186000 -     0x7fff8d18afff  com.apple.TCC (1.0 - 1) <E5226ACB-51C5-3976-A0AD-0326E2E9D815> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff8d1a0000 -     0x7fff8d218ff7  com.apple.SystemConfiguration (1.14 - 1.14) <E039D10A-0119-3B7D-8448-6AECDE083821> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff8d219000 -     0x7fff8d22fff7  libsystem_asl.dylib (267) <CC54C8C6-2768-307F-8AB5-FC42CBD95DFA> /usr/lib/system/libsystem_asl.dylib
        0x7fff8d230000 -     0x7fff8d323ff7  libJP2.dylib (1230) <B02A39C9-D484-303B-B9DF-1A387233DB44> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff8d324000 -     0x7fff8d731ff7  libLAPACK.dylib (1128) <F9201AE7-B031-36DB-BCF8-971E994EF7C1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff8d732000 -     0x7fff8d74efff  com.apple.GenerationalStorage (2.0 - 209.8) <05130500-6C22-36AE-900E-DA427662C796> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff8d74f000 -     0x7fff8d769ff7  com.apple.Kerberos (3.0 - 1) <1196E978-3070-3DD6-8DE3-E0A38DB9A2F1> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff8d7f4000 -     0x7fff8d802fff  com.apple.SpeechRecognitionCore (2.0.28 - 2.0.28) <C9BBA31F-304B-3DF7-98FD-85A04D12DF3F> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/Sp eechRecognitionCore
        0x7fff8d803000 -     0x7fff8d850fff  com.apple.ImageCaptureCore (6.0 - 6.0) <891860A6-BD22-30F3-AA8A-8DBDCF15540E> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff8d901000 -     0x7fff8da45ff7  com.apple.QTKit (7.7.3 - 2890) <A8AAD37E-3DAE-3D0F-B667-2FCA81881402> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff8da46000 -     0x7fff8da76ff3  com.apple.CoreAVCHD (5.7.5 - 5750.4.1) <1DA0D2BD-E6EA-3766-A3B4-0C248F65A6AD> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
        0x7fff8da77000 -     0x7fff8db9cfff  com.apple.coreui (2.1 - 300) <7885C0D6-C58D-3F3F-9D65-3D001A39F550> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff8db9d000 -     0x7fff8de69ff7  com.apple.CoreImage (10.0.30) <865838F3-9745-3BFE-93FD-2018882E69A9> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff8de6a000 -     0x7fff8de6cfff  com.apple.CoreDuetDebugLogging (1.0 - 1) <049B5360-FA7D-3ABA-B4A8-13B2F24665C0> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/Versions/A/Cor eDuetDebugLogging
        0x7fff8de92000 -     0x7fff8dea0ff7  com.apple.opengl (11.0.5 - 11.0.5) <69F2B47A-3657-3E3D-B024-8B8373B3A1A5> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff8dea1000 -     0x7fff8e3b4ff3  com.apple.JavaScriptCore (10600 - 10600.1.8) <DB057C07-7022-3AA7-87C1-5C1ED63DD97E> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff8e3b5000 -     0x7fff8e3bbfff  libsystem_networkextension.dylib (167.1.9) <68C6C826-63D2-3715-AE5F-F30C47A40454> /usr/lib/system/libsystem_networkextension.dylib
        0x7fff8e3bc000 -     0x7fff8e3bdff7  libsystem_blocks.dylib (65) <9A882651-F45E-39F4-8087-DD383B972A4D> /usr/lib/system/libsystem_blocks.dylib
        0x7fff8e3be000 -     0x7fff8e6e7fff  libmecabra.dylib (661) <802C7893-C0FE-3925-99AC-9025DAD0FC3A> /usr/lib/libmecabra.dylib
        0x7fff8e6eb000 -     0x7fff8e7bffff  com.apple.backup.framework (1.6 - 1.6) <E43A8F1E-7CBB-38E4-B0A6-3D6D4EF6681B> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff8e7cc000 -     0x7fff8e7e1ff7  com.apple.AppContainer (4.0 - 237) <ED3CDBF3-6A3E-3772-9709-36978383BD2E> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContaine r
        0x7fff8e7e2000 -     0x7fff8e7e9fff  com.apple.network.statistics.framework (1.2 - 1) <BFC8EF56-67E1-3005-BE55-5E3D0CBA96D5> /System/Library/PrivateFrameworks/NetworkStatistics.framework/Versions/A/Networ kStatistics
        0x7fff8e80b000 -     0x7fff8e81dff7  com.apple.ImageCapture (9.0 - 9.0) <87A851E4-1811-34E0-A00E-89CF7B8400E1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff8e81e000 -     0x7fff8e827fff  libsystem_pthread.dylib (105.1.4) <AB3598CA-51F5-34E6-97FB-A3C38518EAAD> /usr/lib/system/libsystem_pthread.dylib
        0x7fff8e92f000 -     0x7fff8e98aff7  com.apple.QuickLookFramework (5.0 - 667) <C686BF4C-DC0A-33ED-BFD1-2669EB48B9B1> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff8f2d1000 -     0x7fff8f32cfff  libTIFF.dylib (1230) <1A6A3E81-6531-3EFB-BBC4-CFA46147A9BE> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff8f54e000 -     0x7fff8f562fff  com.apple.ProtectedCloudStorage (1.0 - 1) <E82C9303-9BD2-37ED-BBA3-A0ECDB79E2AC> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/Pr otectedCloudStorage
        0x7fff8f563000 -     0x7fff8f564ff7  com.apple.AddressBook.ContactsData (8.0 - 1485) <1B211840-BDD1-31EF-AF61-814CF94871DF> /System/Library/PrivateFrameworks/ContactsData.framework/Versions/A/ContactsDat a
        0x7fff8f565000 -     0x7fff8f5dbfe7  libcorecrypto.dylib (233.1.2) <1922938D-9078-374D-9E31-2BBA67C60CE8> /usr/lib/system/libcorecrypto.dylib
        0x7fff8f5dc000 -     0x7fff8f606fff  libdispatch.dylib (442.1.3) <4387776F-80E8-3CC9-BA25-6F21C78E77C3> /usr/lib/system/libdispatch.dylib
        0x7fff8f609000 -     0x7fff8faf5ff7  com.apple.MediaToolbox (1.0 - 1562.11) <C6228D27-2C48-3D75-AA25-5CC755F94A07> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff8faf6000 -     0x7fff8fb07ffb  libsystem_coretls.dylib (35) <AD41764E-ADA5-3CFB-8443-41439243BDB8> /usr/lib/system/libsystem_coretls.dylib
        0x7fff8fb13000 -     0x7fff8fb1dff7  com.apple.NetAuth (5.0 - 5.0) <B1929F4F-C2AD-3CAB-BA58-690BB837E7CC> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff8fb1e000 -     0x7fff8fb1fff7  libodfde.dylib (22) <38537A94-6C81-37EE-88D6-DFC7630E4154> /usr/lib/libodfde.dylib
        0x7fff8fb20000 -     0x7fff8fb24fff  libCoreVMClient.dylib (79) <FC4E08E3-749E-32FF-B5E9-211F29864831> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff8fb25000 -     0x7fff8fb58ff7  com.apple.MediaKit (16 - 756) <8BE236C4-B6F7-3B64-9DF0-A7047357DE18> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
        0x7fff8fb59000 -     0x7fff8fbc0ff7  com.apple.framework.CoreWiFi (3.0 - 300.3) <2842CC90-C163-321F-8797-68D15F6E496C> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
        0x7fff8fbf1000 -     0x7fff8fc20ff7  com.apple.securityinterface (10.0 - 55053) <79ECC751-8FF5-304A-BBCF-512141A3DBD3> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff8fc21000 -     0x7fff8fe06ff3  libicucore.A.dylib (531.26) <4FF96237-B1DE-3E62-A6DE-9943828A48E6> /usr/lib/libicucore.A.dylib
        0x7fff8fe07000 -     0x7fff8fef9fff  libxml2.2.dylib (26) <B834E7C8-EC3E-3382-BC5A-DA38DC4D720C> /usr/lib/libxml2.2.dylib
        0x7fff8fefa000 -     0x7fff8ff03fff  libGFXShared.dylib (11.0.5) <55EBF7CF-D5A2-3580-A3C7-34C8F205052F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff8ff04000 -     0x7fff8ff4fff7  com.apple.corelocation (1486.17 - 1615.15) <33C5FF01-330D-3E9C-93AC-EB4976678DBD> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
        0x7fff8ff50000 -     0x7fff8ff58fff  libsystem_platform.dylib (63) <730506E4-86FF-3DA5-9561-3C8281095C6B> /usr/lib/system/libsystem_platform.dylib
        0x7fff8ff63000 -     0x7fff8ff6bffb  libcopyfile.dylib (118.1.1) <07CF8131-1263-3385-B341-011B52E3E3B5> /usr/lib/system/libcopyfile.dylib
        0x7fff8ff6c000 -     0x7fff8ff70fff  libpam.2.dylib (20) <E805398D-9A92-31F8-8005-8DC188BD8B6E> /usr/lib/libpam.2.dylib
        0x7fff90837000 -     0x7fff90837fff  com.apple.Accelerate.vecLib (3.10 - vecLib 3.10) <A48738CA-5B6F-3D14-97E9-2BFDFC3DCC06> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff90838000 -     0x7fff908c5fff  libsystem_c.dylib (1044.1.1) <D6FDAEAF-8EA9-3EF2-9B3B-518285837A10> /usr/lib/system/libsystem_c.dylib
        0x7fff908c6000 -     0x7fff908fefff  com.apple.RemoteViewServices (2.0 - 99) <C86DC0F7-D0AD-3C59-A4DB-D4A1ABB4FEC3> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff908ff000 -     0x7fff9093efff  com.apple.CloudDocs (1.0 - 262) <1A342B6B-9C01-3950-A9D0-147DC316D9B7> /System/Library/PrivateFrameworks/CloudDocs.framework/Versions/A/CloudDocs
        0x7fff909b0000 -     0x7fff90c97fff  com.apple.CoreServices.CarbonCore (1105 - 1105) <01678E4E-DEE9-3F9B-93F9-930E644E8507> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff90c98000 -     0x7fff90ca3ff7  com.apple.DirectoryService.Framework (10.10 - 187) <72FF5041-815A-32E5-9E12-7847F0323B6C> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff90caa000 -     0x7fff90cf2fff  com.apple.HIServices (1.22 - 516) <9A7A0BB3-207A-37C6-A91F-99187EC3E421> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff90fe2000 -     0x7fff90ff1fff  com.apple.AppleScriptObjC (1.3.1 - 28) <63C2DFF5-8400-3660-BD04-5281D265671B> /System/Library/Frameworks/AppleScriptObjC.framework/Versions/A/AppleScriptObjC
        0x7fff90ff2000 -     0x7fff90ffbfff  com.apple.DisplayServicesFW (2.9 - 372.1) <1DD44765-0084-39A1-8396-8139034FFB80> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff90ffc000 -     0x7fff91010ff7  com.apple.MultitouchSupport.framework (260.29 - 260.29) <8CCC4CC6-5170-3DE0-8E9C-A98A2609ABAE> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff91030000 -     0x7fff91042ff7  com.apple.CoreDuetDaemonProtocol (1.0 - 1) <B73BCDD5-25BA-39A5-A88D-C314C72A568A> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/Versions/A/C oreDuetDaemonProtocol
        0x7fff91335000 -     0x7fff913c3ff7  com.apple.CorePDF (4.0 - 4) <8EA51EA6-FDFE-3F32-897F-3C2BFB59CC47> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff913cd000 -     0x7fff913f8fff  libc++abi.dylib (125) <88A22A0F-87C6-3002-BFBA-AC0F2808B8B9> /usr/lib/libc++abi.dylib
        0x7fff91404000 -     0x7fff914a3df7  com.apple.AppleJPEG (1.0 - 1) <56924496-B2B6-3FB1-9A9D-87443BC45969> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
        0x7fff914a4000 -     0x7fff914a9fff  com.apple.DiskArbitration (2.6 - 2.6) <EFDCF7B1-2A47-3D67-86BB-8BF0D3207659> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff914aa000 -     0x7fff91540ffb  com.apple.CoreMedia (1.0 - 1562.11) <F5E4027A-07F7-3BC2-8F90-410A66D753A0> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff91e98000 -     0x7fff91f2cfff  com.apple.ink.framework (10.9 - 213) <761A662D-11F8-3F65-AB48-CDCD6848276E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff91f2d000 -     0x7fff91f2fff7  libutil.dylib (38) <471AD65E-B86E-3C4A-8ABD-B8665A2BCE3F> /usr/lib/libutil.dylib
        0x7fff91f30000 -     0x7fff91f97ff7  com.apple.datadetectorscore (5.0 - 396) <543C6808-277B-3726-8A11-C9FF7A1D1588> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff91f98000 -     0x7fff91fa0ff7  com.apple.icloud.FindMyDevice (1.0 - 1) <9F0A0AF5-5ADE-3516-A3E3-A3CDB5F9FE10> /System/Library/PrivateFrameworks/FindMyDevice.framework/Versions/A/FindMyDevic e
        0x7fff91fa1000 -     0x7fff9200dff7  com.apple.framework.CoreWLAN (5.0 - 500.29) <AF648F8F-D520-3985-B826-8EBA883F5644> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff9200e000 -     0x7fff92019fff  com.apple.speech.synthesis.framework (5.2.1 - 5.2.1) <09CA1FBE-4C8A-3D56-931D-E15E24FDD3A8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff920b0000 -     0x7fff920ceff7  com.apple.addressbook.vCard (1.0 - 1485) <58CBFDDD-0D16-3042-83CB-FC3AAD1C703E> /System/Library/PrivateFrameworks/vCard.framework/Versions/A/vCard
        0x7fff930d7000 -     0x7fff930ddff7  com.apple.XPCService (2.0 - 1) <D8BCF4F7-04FF-34C1-97F3-D1CAEB9E5229> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
        0x7fff930de000 -     0x7fff930f1ff7  com.apple.CoreBluetooth (1.0 - 1) <6CCF59D5-5087-3747-AE52-DB1450B8C762> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
        0x7fff930f7000 -     0x7fff93370ff7  com.apple.CoreData (110 - 522) <02529A4A-1533-3709-88B2-A7D0F8F339D7> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff93380000 -     0x7fff93388ff7  com.apple.AppleSRP (5.0 - 1) <01EC5144-D09A-3D6A-AE35-F6D48585F154> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
        0x7fff93389000 -     0x7fff933daff7  com.apple.AppleVAFramework (5.0.31 - 5.0.31) <9A36C7E8-FABA-30A1-B370-1303C09937C1> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff933db000 -     0x7fff936dcff7  com.apple.HIToolbox (2.1.1 - 747) <5719E404-73FD-3AA7-8BBC-E1A6AABBD892> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff936dd000 -     0x7fff9377bfff  com.apple.Metadata (10.7.0 - 899) <17A492CA-8F1E-35BE-BA1C-29A774306923> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff9377e000 -     0x7fff93786fff  libMatch.1.dylib (24) <C917279D-33C2-38A8-9BDD-18F3B24E6FBD> /usr/lib/libMatch.1.dylib
        0x7fff93820000 -     0x7fff93822ff7  com.apple.securityhi (9.0 - 55005) <5B5710B0-4AAC-3781-9B3A-8B8EAFFCEE2B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff93d40000 -     0x7fff93d43ff7  com.apple.AppleSystemInfo (3.0 - 3.0) <D135A8D8-1A9E-37CF-A62F-6EE81CCF05A4> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff93d44000 -     0x7fff93dffff7  com.apple.DiscRecording (9.0 - 9000.4.1) <B672A0B3-961F-378B-8099-61068FAFF1C3> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff93e00000 -     0x7fff93e15fff  com.apple.ToneKit (1.0 - 1) <C2D117A1-0CB5-3B20-9253-AF4BB5A84424> /System/Library/PrivateFrameworks/ToneKit.framework/Versions/A/ToneKit
        0x7fff93e16000 -     0x7fff93e30ff7  libextension.dylib (50) <3527822C-3911-32F3-A8A5-50A1B252CC88> /usr/lib/libextension.dylib
        0x7fff93fa4000 -     0x7fff93fa6fff  libCVMSPluginSupport.dylib (11.0.5) <8DF04CFF-9E67-3B6F-9CA2-50447E0C1CE9> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff93fa7000 -     0x7fff93fc0fff  com.apple.openscripting (1.4 - 162) <5EC67670-8D5B-3B96-8F7D-956538944659> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff93fc1000 -     0x7fff940b3ff7  libiconv.2.dylib (42) <2A06D02F-8B76-3864-8D96-64EF5B40BC6C> /usr/lib/libiconv.2.dylib
        0x7fff94122000 -     0x7fff94130fff  com.apple.AddressBook.ContactsFoundation (8.0 - 1485) <9502C146-95FA-3F78-BF11-39E03E26B7F3> /System/Library/PrivateFrameworks/ContactsFoundation.framework/Versions/A/Conta ctsFoundation
        0x7fff94138000 -     0x7fff9415aff7  com.apple.Sharing (316 - 316) <93B67A08-A6EE-3CFB-B81A-7AD727ED2169> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
        0x7fff9417e000 -     0x7fff94183ff3  libheimdal-asn1.dylib (398) <A134B76B-0006-3E2A-A732-232A32E693B3> /usr/lib/libheimdal-asn1.dylib
        0x7fff94184000 -     0x7fff945d7fc3  com.apple.vImage (8.0 - 8.0) <0C5977B8-FAFF-3E2E-8DD3-E7B011D31F5C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff945d8000 -     0x7fff945efff7  libLinearAlgebra.dylib (1128) <E78CCBAA-A999-3B65-8EC9-06DB15E67C37> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLinearAlgebra.dylib
        0x7fff946db000 -     0x7fff94985ffb  com.apple.GeoServices (1.0 - 982.4.7) <B1CC3AB6-72BF-3A37-9D1D-F98603A46F0F> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
        0x7fff94986000 -     0x7fff94991ff7  libcsfde.dylib (468) <96F11773-3ED2-36DB-B10D-B15D3A87115F> /usr/lib/libcsfde.dylib
        0x7fff94992000 -     0x7fff94994fff  com.apple.OAuth (25 - 25) <9FEA0BE6-C061-3CBD-900E-2E5125AC6389> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
        0x7fff94995000 -     0x7fff949c0ff7  com.apple.DictionaryServices (1.2 - 227) <95A67673-C529-383C-831C-E4778F5EC676> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff94b1b000 -     0x7fff94b1dfff  libsystem_configuration.dylib (699.1.4) <F494732C-3BFB-32E5-AC7C-95F426AB69C0> /usr/lib/system/libsystem_configuration.dylib
        0x7fff94c66000 -     0x7fff94c78fff  libsasl2.2.dylib (191) <BEC7FFBE-9A08-343A-B9F9-451B0CA9F508> /usr/lib/libsasl2.2.dylib
        0x7fff94c79000 -     0x7fff94cf6fff  com.apple.CoreServices.OSServices (639 - 639) <082DC29B-1913-34B2-9B61-69528033F9BD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff94cf7000 -     0x7fff94ea5fff  com.apple.QuartzCore (1.10 - 361.3) <5E316464-C006-3CCE-B85E-6C04701408A9> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff94ea6000 -     0x7fff94efafff  libc++.1.dylib (120) <1B9530FD-989B-3174-BB1C-BDC159501710> /usr/lib/libc++.1.dylib
        0x7fff94efb000 -     0x7fff94f03fff  libsystem_dnssd.dylib (561) <BECD47C1-C29A-32F4-989E-A21EA25ACA46> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff94f04000 -     0x7fff94f45fff  libGLU.dylib (11.0.5) <15F310F5-6CD1-3D53-853E-A5A48D6C0F45> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff94f70000 -     0x7fff95080ffb  com.apple.desktopservices (1.9 - 1.9) <7A3176A4-26BB-3FED-8692-06470E3EA388> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff95081000 -     0x7fff950a0fff  com.apple.CoreDuet (1.0 - 1) <1131E4C7-837D-35AE-8C73-6D3A562C0C71> /System/Library/PrivateFrameworks/CoreDuet.framework/Versions/A/CoreDuet
        0x7fff950a4000 -     0x7fff950afff7  libkxld.dylib (2782.1.80) <23557A93-8609-3526-981A-F67BCF0E6EE6> /usr/lib/system/libkxld.dylib
        0x7fff950e6000 -     0x7fff95121fff  com.apple.Symbolication (1.4 - 56045) <DF2D7006-0871-3037-A333-B52FB150D924> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff95203000 -     0x7fff9522eff3  libarchive.2.dylib (30) <79BCA8D3-8324-30FC-AFE3-6A061A8E997C> /usr/lib/libarchive.2.dylib
        0x7fff9522f000 -     0x7fff952a3fff  com.apple.ApplicationServices.ATS (360 - 373) <8C5CFA3C-BE82-3DF4-9882-3F30BD42C8F9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff952a4000 -     0x7fff952a6ff7  libsystem_sandbo

    Which version are you running?
    What is the actual load on the sensor?
    The load option is only supported on newer code using the following command:
    "show statistics virtual-sensor | inc Load"
    Regards
    Farrukh
    [email protected],Im facing high cpu usage in my 4200 device. The output of "top" is attached.i have not enabled iplog in ips.Pls provice an immediate solution if possible.....~pr

  • SBS 2011 - High CPU usage - Help me Microsoft forums! You're my only hope!

    My company supports a client that has a SBS 2011 server.  For about the past year, we've been fighting a recurring issue with performance on this server.  There are about ten local users and four remote users.  The server's CPU idles at
    about 60%-80% but is usally running when under *any* load from 80%-100%.  If you do anything on the console, it will stay pretty much at 100%.  These are not power users by any means.  The server is utilized for file/printer sharing, Exchange
    2010, and one flat file database application (non-SQL).  SharePoint is not utilized.
    Needless to say, our client is frustrated.  When opening files, using their database application, or doing anything Exchange-related, there is a large amount of lag on the client side.  First, here are the server's specs:
    Make:Dell PowerEdge T420
    OS: SBS 2011 Standard SP1
    CPU: 2 - Intel Xeon E5-2407
    Memory: 32GB
    RAID: RAID 1 - Operating System (C:)/Data Volume (E:) | RAID 5 - Data Volume (D:)
    Here is what we have tried to resolve this to finality:
    * Doubled resources - Initially the server had a single physical processor and 16GB of memory.  While these specs alone should have been fine, and were fine when the server was installed, we had periods of time where the server would just sit all day at
    100% usage.  We doubled the resources and while this seemed like it would fix the issue, we are still seeing abnormally high processor usage.
    * Removed all monitoring tools, antivirus, and backup software - As part of our testing, we removed our monitoring agent (LabTech) and antivirus (GFI Vipre).  Mozy is utilized for an off-site backup so that was disabled.  No dice.
    * Verified updates - We made absolutely sure the server was 100% patched.
    * Malware/Virus/Rootkit checks - We have ran scans checking for any potential issues with security.
    * Ran MBSA and MBCA to fix any issues with the server's configuration.
    There is no single process which is using all of the CPU, or we would simply be able to narrow it down.  Our calls to Microsoft support have yielded no answers.  The last call ended with Microsoft stating that a SBS server should always be running
    at high CPU usage.  Meanwhile, we have many other clients with less-beefy servers, with more users, who have no issues like these.
    So, I'm turning to you all.  I will gladly provide logs, configuration settings, even remote assistance sessions if you all can help shed some light on what might be causing my issues.
    Thank you!

    Some comments/ideas:
    How long was the server running after this screenshot?  I ask because store.exe is only got a 1GB of RAM which is really low - it should grab most of the RAM within a few hours.
    The server was up for about 12 hours.  I believe an adjustment was made before to limit the Exchange memory usage.
    Strange that SearchIndexer (wsearch service) is so high although that may be a startup condition.
    The LT* processes seem to be a 3rd party monitoring tool - no idea why it would ever need that much CPU though (I thought you disabled this?).
    We had, but we cannot go forever without monitoring our client's server.  It has been pulled off in the past and results on performance are pretty much the same.
    The taskmgr process run by amnet_admin has used a lot of total CPU Time.  What is it? (can't see the command line).
    That's the user I was logged in as when I took the screenshot.  Even the task manager seems to eat up the CPU.
    The sqlserver process right above it is also busy - may want to look at the command line and figure out which SQL database that is (SBS has 3 - WSUS, Sharepoint, and SBS monitoring)
    I believe that's the SharePoint database.  They don't currently use their site.  Would you recommend a removal and reinstallation?  I would not completely remove as I know SBS doesn't like you removing parts of the complete package.
    Strange that vds.exe is 10% - that is the interface to the disk management interface IIRC.  Perhaps your monitoring service has gone awry here - definitely lose it.
    I'll see about pulling it off and I'll see if there are any improvements.
    -- Al

  • High CPU Usage in Word 2013

    Hi everyone,
    I'm having an issue with Word 2013 and I'm hoping someone can help. Seen as I got fleeced for my TechNet subscription this year (the price given on the invoice doubled when I called up to pay!) I’d very much like to see a speedy fix from the Microsofties
    please! :D
    Recently, I've found that Word will consistently exhibit high CPU utilisation, ~50% on a dual core second generation Core i5.
    This continues, even when I’m not providing any input to or interacting with the Word window and even when the Word window is covered by other windows. Minimising Word causes its CPU usage to drop back down to zero.
    The strange thing is that, so far, I’ve only observed this with a single document. I started writing this document at the start of this week and it’s been authored exclusively on Word 2013. In fact I’m the only one who’s editing it and I’ve only used a single
    computer (and this one single install of Word 2013) to do so…
    There’s nothing particularly unusual about this document, and a different but similar document which uses the same themes and features (in fact the theme for the second document was created from the first one) doesn’t appear to cause the same issues. Both
    these documents are stored on SkyDrive, and are being edited directly from there.
    Initially I tried the much recommended tweaks of disabling hardware graphics acceleration and sub-pixel positioning, however neither of these has had any effect.
    I investigated a bit further using Sysinternals Process Monitor, and found that while Word is using a lot of CPU it’s actually looping very, very quickly polling for the existence of the registry key “HKCU\Software\Microsoft\Avalon.Graphics”.
    This key doesn’t exist on my system, and a quick test I conducted where I created it just lead to Word looping polling for more non-existent registry keys.
    My system is a HP Folio 13 running Windows 8 Pro x64 with Office 2013 (RTM, not Beta) 32 bit. Both Windows and Office are fully patched, as is everything else on the system.
    Thanks in advance for any help anyone can offer.
    Chris

    Hello again,
    After working on my problematic document some more, I believe I’ve found the cause of the issue.
    @Microsofties – I think this one is either a bug or a dodgy OOTB template…
    I noticed that the high CPU usage only seemed to occur when the document’s footer was displayed. Experimenting with some careful scrolling and zooming to hide footer (without actually using the “hide white-space” option) seemed to confirm this so I investigated
    the footer a bit more.
    My document was using the standard Word “Facet (Odd Page)” footer template with a couple of fields added to suit my needs, namely “Publish Date” and a page number.
    The template seems to be structured such that the content of the footer is inside two nested text boxes (one inside the other). I also noticed previously that this footer template also appears to “jump” up each page and back down again as I scrolled.
    So I deleted the footer and its text boxes, and recreated the same content, in the same position (using the standard paragraph alignment tools) by hand without the nested text boxes. This has, so far, fixed the issue!
    I also noticed that the CPU usage dropped right down to idle the moment I deleted the nested text boxes.
    Altogether, this leads me to conclude that the “Facet (Odd Page)” footer template in Word 2013 is the source of my issue. Specifically, I believe that the use of nested text boxes in this template causes Word’s interactions with the .Net 4.5 WPF to go a
    bit nuts, as evidenced by the infinite loop of request for the non-existent “Avalon.Graphics” WPF registry key I mentioned previously.
    It would be nice to see some feedback on this one, Microsoft people, if only to know if this is actually a general issue or is specific to my document!
    Thanks, Chris

  • High CPU usage when graphics card is put at work

    I have a 13inch Air with 2GB RAM and 256GB  with Windows 7 Ultimate 64bit. All possible updates have been installed.
    I noticed some tearing when trying to move program windows across the screen so I started checking the CPU usage. I saw that it is spiking to 25-35% when moving a window across the screen.When you drag down a window you can see the different copies of the top bar across the screen. Not smooth at all like on a standard PC windows system. Same issue when scrolling through webpages which spikes the cpu
    I also noticed a high cpu usage when playing mkv files 25-30% while on an Atom HTPC i get a lower load playing the same file. The Air should be faster than an atom with a nvidia 9400m when playing video files.
    I already tried updating the nvidia files to the latest version on their site by hacking the driver inf but this did not resolve the issue.
    Has anyone experienced the same or know what could be causing the beavior?
    Many thanks

    Maybe my initial post was not clear so let me add some clarifications.
    I have the problem with Aero disabled
    I have the problem on the Apple site which does not have any flash content.
    I have already hacked the lastest nvidia drivers to get them on my system which did not change anything. Can you provide a link to some other 'supported' beta drivers?
    I am using the new 13 inch air so it has the newer graphics card so I would expect it to be faster than an old HTPC with a 9400m in it. I wasn't stating that my Air had a 9400m.
    It would be great if someone you also do the test to check the cpu load:
    - when playing a 720 mkv
    - when dragging a window across the screen
    Just open task manager and see if the CPU spikes.
    Many thanks!

  • High CPU Usage on Terminalserver (Win2k3)

    Hi,
    at the moment we are running an Exchange 2010 SP3 in combination with Outlook 2010 (Ver. 14.0.6123.5001 32bit).
    Outlook is installed on Windows 7 fat clients, but most users access their mailbox with Outlook running on a Win2k3 Terminalserver (extended support till 2016).
    While the users on the fat clients don't have any problems, the thin client users experience problems with high cpu usage.
    Following example:
    Terminalserver, 12 users, 6 running Outlook, 2 users splitting almost the whole cpu between them (usage around 90-100%).
    This makes working on that terminalserver nearly impossible.
    I tried safe mode, I tried disabling their add-ins, I tried deleting their terminalserver profile to no avail.
    How can I figure out what's causing this?

    Hi,
    Anti Virus email scanners are known to cause similar behavior, please first check if you have any Anti Virus scanner integrated with Outlook. Try to disable it, and check result.
    A corrupted data file might also cause this kind of issue, try to repair your data file with Scanpst.exe tool.
    Please refer to this article on how to use scanpst.exe:
    http://office.microsoft.com/en-us/outlook-help/repair-outlook-data-files-pst-and-ost-HA102749454.aspx
    Please also have a look at this thread, try the workarounds in it and see if issue persists:
    http://answers.microsoft.com/en-us/office/forum/officeversion_other-outlook/constant-high-cpu-usage-when-outlook-open/b9a66791-ab73-4ecd-a73d-edf27102aa4e
    Hope this helps.
    Thanks,
    Ethan Hua CHN
    TechNet Community Support

  • High cpu usage during JSF lifecycle phase execution

    In our performance test we encountered a high cpu usage (100%) and the thread dumps indicated that most of the times the threads are either executing restore view or render response phase of the JSF lifecycle or they are blocked while accessing the jar files which containing the xhtml pages.
    One of the thread dump of a runnable thread is
    java.lang.Thread.State: RUNNABLE
    at java.util.HashMap.get(HashMap.java:317)
    at javax.faces.component.ComponentStateHelper.get(ComponentStateHelper.java:174)
    at javax.faces.component.ComponentStateHelper.add(ComponentStateHelper.java:216)
    at javax.faces.component.UIComponent.setValueExpression(UIComponent.java:436)
    at com.sun.faces.facelets.tag.jsf.CompositeComponentTagHandler$CompositeComponentRule$CompositeExpressionMetadata.applyMetadata(CompositeComponentTagHandler.java:631)
    at com.sun.faces.facelets.tag.MetadataImpl.applyMetadata(MetadataImpl.java:81)
    at javax.faces.view.facelets.MetaTagHandler.setAttributes(MetaTagHandler.java:129)
    at javax.faces.view.facelets.DelegatingMetaTagHandler.setAttributes(DelegatingMetaTagHandler.java:102)
    at com.sun.faces.facelets.tag.jsf.CompositeComponentTagHandler.setAttributes(CompositeComponentTagHandler.java:246)
    at com.sun.faces.facelets.tag.jsf.CompositeComponentTagHandler.applyNextHandler(CompositeComponentTagHandler.java:184)
    at com.sun.faces.facelets.tag.jsf.ComponentTagHandlerDelegateImpl.apply(ComponentTagHandlerDelegateImpl.java:184)
    at javax.faces.view.facelets.DelegatingMetaTagHandler.apply(DelegatingMetaTagHandler.java:120)
    at javax.faces.view.facelets.CompositeFaceletHandler.apply(CompositeFaceletHandler.java:98)
    at com.sun.faces.facelets.compiler.NamespaceHandler.apply(NamespaceHandler.java:93)
    at javax.faces.view.facelets.CompositeFaceletHandler.apply(CompositeFaceletHandler.java:98)
    at com.sun.faces.facelets.compiler.EncodingHandler.apply(EncodingHandler.java:86)
    at com.sun.faces.facelets.impl.DefaultFacelet.include(DefaultFacelet.java:308)
    at com.sun.faces.facelets.impl.DefaultFacelet.include(DefaultFacelet.java:367)
    at com.sun.faces.facelets.impl.DefaultFacelet.include(DefaultFacelet.java:346)
    at com.sun.faces.facelets.impl.DefaultFaceletContext.includeFacelet(DefaultFaceletContext.java:199)
    at com.sun.faces.facelets.tag.ui.IncludeHandler.apply(IncludeHandler.java:120)
    at javax.faces.view.facelets.DelegatingMetaTagHandler.applyNextHandler(DelegatingMetaTagHandler.java:137)
    at com.sun.faces.facelets.tag.jsf.ComponentTagHandlerDelegateImpl.apply(ComponentTagHandlerDelegateImpl.java:184)
    at javax.faces.view.facelets.DelegatingMetaTagHandler.apply(DelegatingMetaTagHandler.java:120)
    at com.sun.faces.facelets.tag.ui.DefineHandler.applyDefinition(DefineHandler.java:107)
    at com.sun.faces.facelets.tag.ui.CompositionHandler.apply(CompositionHandler.java:178)
    at com.sun.faces.facelets.impl.DefaultFaceletContext$TemplateManager.apply(DefaultFaceletContext.java:395)
    at com.sun.faces.facelets.impl.DefaultFaceletContext.includeDefinition(DefaultFaceletContext.java:366)
    at com.sun.faces.facelets.tag.ui.InsertHandler.apply(InsertHandler.java:112)
    at javax.faces.view.facelets.CompositeFaceletHandler.apply(CompositeFaceletHandler.java:98)
    at javax.faces.view.facelets.DelegatingMetaTagHandler.applyNextHandler(DelegatingMetaTagHandler.java:137)
    at com.sun.faces.facelets.tag.jsf.ComponentTagHandlerDelegateImpl.apply(ComponentTagHandlerDelegateImpl.java:184)
    at javax.faces.view.facelets.DelegatingMetaTagHandler.apply(DelegatingMetaTagHandler.java:120)
    at javax.faces.view.facelets.CompositeFaceletHandler.apply(CompositeFaceletHandler.java:98)
    at com.sun.faces.facelets.compiler.NamespaceHandler.apply(NamespaceHandler.java:93)
    at com.sun.faces.facelets.compiler.EncodingHandler.apply(EncodingHandler.java:86)
    at com.sun.faces.facelets.impl.DefaultFacelet.include(DefaultFacelet.java:308)
    at com.sun.faces.facelets.impl.DefaultFacelet.include(DefaultFacelet.java:367)
    at com.sun.faces.facelets.impl.DefaultFacelet.include(DefaultFacelet.java:346)
    at com.sun.faces.facelets.impl.DefaultFaceletContext.includeFacelet(DefaultFaceletContext.java:199)
    at com.sun.faces.facelets.tag.ui.CompositionHandler.apply(CompositionHandler.java:155)
    at com.sun.faces.facelets.compiler.NamespaceHandler.apply(NamespaceHandler.java:93)
    at com.sun.faces.facelets.compiler.EncodingHandler.apply(EncodingHandler.java:86)
    at com.sun.faces.facelets.impl.DefaultFacelet.include(DefaultFacelet.java:308)
    at com.sun.faces.facelets.impl.DefaultFacelet.include(DefaultFacelet.java:367)
    at com.sun.faces.facelets.impl.DefaultFacelet.include(DefaultFacelet.java:346)
    at com.sun.faces.facelets.impl.DefaultFaceletContext.includeFacelet(DefaultFaceletContext.java:199)
    at com.sun.faces.facelets.tag.ui.IncludeHandler.apply(IncludeHandler.java:120)
    at javax.faces.view.facelets.CompositeFaceletHandler.apply(CompositeFaceletHandler.java:98)
    at com.sun.faces.facelets.compiler.NamespaceHandler.apply(NamespaceHandler.java:93)
    at javax.faces.view.facelets.CompositeFaceletHandler.apply(CompositeFaceletHandler.java:98)
    at com.sun.faces.facelets.compiler.EncodingHandler.apply(EncodingHandler.java:86)
    at com.sun.faces.facelets.impl.DefaultFacelet.apply(DefaultFacelet.java:152)
    at com.sun.faces.application.view.FaceletViewHandlingStrategy.buildView(FaceletViewHandlingStrategy.java:774)
    at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:100)
    at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101)
    at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139)
    at javax.faces.webapp.FacesServlet.service(FacesServlet.java:594)
    at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1550)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:343)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:217)while a thread trace for a blocked thread is
    java.lang.Thread.State: BLOCKED (on object monitor)
    at java.util.zip.ZipFile.getEntry(ZipFile.java:302)
    - waiting to lock <0x00000000c0f678f8> (a java.util.jar.JarFile)
    at java.util.jar.JarFile.getEntry(JarFile.java:225)
    at java.util.jar.JarFile.getJarEntry(JarFile.java:208)
    at sun.misc.URLClassPath$JarLoader.getResource(URLClassPath.java:817)
    at sun.misc.URLClassPath$JarLoader.findResource(URLClassPath.java:795)
    at sun.misc.URLClassPath.findResource(URLClassPath.java:172)
    at java.net.URLClassLoader$2.run(URLClassLoader.java:551)
    at java.net.URLClassLoader$2.run(URLClassLoader.java:549)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findResource(URLClassLoader.java:548)
    at java.lang.ClassLoader.getResource(ClassLoader.java:1138)
    at java.lang.ClassLoader.getResource(ClassLoader.java:1133)
    at org.glassfish.web.loader.WebappClassLoader.getResource(WebappClassLoader.java:1156)
    at org.glassfish.web.loader.WebappClassLoader.getResourceFromJars(WebappClassLoader.java:1111)
    at org.apache.catalina.core.StandardContext.getMetaInfResource(StandardContext.java:7586)
    at org.apache.catalina.core.StandardContext.getResource(StandardContext.java:6979)
    at org.apache.catalina.core.ApplicationContext.getResource(ApplicationContext.java:382)
    at org.apache.catalina.core.ApplicationContextFacade.getResource(ApplicationContextFacade.java:260)
    at com.sun.faces.context.ExternalContextImpl.getResource(ExternalContextImpl.java:502)
    at com.sun.faces.application.resource.WebappResourceHelper.getURL(WebappResourceHelper.java:119)
    at com.sun.faces.application.resource.ResourceImpl.getURL(ResourceImpl.java:190)
    at com.sun.faces.facelets.tag.jsf.CompositeComponentTagHandler.applyCompositeComponent(CompositeComponentTagHandler.java:366)
    at com.sun.faces.facelets.tag.jsf.CompositeComponentTagHandler.applyNextHandler(CompositeComponentTagHandler.java:191)
    at com.sun.faces.facelets.tag.jsf.ComponentTagHandlerDelegateImpl.apply(ComponentTagHandlerDelegateImpl.java:184)
    at javax.faces.view.facelets.DelegatingMetaTagHandler.apply(DelegatingMetaTagHandler.java:120)
    at javax.faces.view.facelets.CompositeFaceletHandler.apply(CompositeFaceletHandler.java:98)
    at com.sun.faces.facelets.compiler.NamespaceHandler.apply(NamespaceHandler.java:93)
    at javax.faces.view.facelets.CompositeFaceletHandler.apply(CompositeFaceletHandler.java:98)
    at com.sun.faces.facelets.compiler.EncodingHandler.apply(EncodingHandler.java:86)
    at com.sun.faces.facelets.impl.DefaultFacelet.include(DefaultFacelet.java:308)
    at com.sun.faces.facelets.impl.DefaultFacelet.include(DefaultFacelet.java:367)
    at com.sun.faces.facelets.impl.DefaultFacelet.include(DefaultFacelet.java:346)
    at com.sun.faces.facelets.impl.DefaultFaceletContext.includeFacelet(DefaultFaceletContext.java:199)
    at com.sun.faces.facelets.tag.ui.IncludeHandler.apply(IncludeHandler.java:120)
    at javax.faces.view.facelets.DelegatingMetaTagHandler.applyNextHandler(DelegatingMetaTagHandler.java:137)
    at com.sun.faces.facelets.tag.jsf.ComponentTagHandlerDelegateImpl.apply(ComponentTagHandlerDelegateImpl.java:184)
    at javax.faces.view.facelets.DelegatingMetaTagHandler.apply(DelegatingMetaTagHandler.java:120)
    at com.sun.faces.facelets.tag.ui.DefineHandler.applyDefinition(DefineHandler.java:107)
    at com.sun.faces.facelets.tag.ui.CompositionHandler.apply(CompositionHandler.java:178)
    at com.sun.faces.facelets.impl.DefaultFaceletContext$TemplateManager.apply(DefaultFaceletContext.java:395)
    at com.sun.faces.facelets.impl.DefaultFaceletContext.includeDefinition(DefaultFaceletContext.java:366)
    at com.sun.faces.facelets.tag.ui.InsertHandler.apply(InsertHandler.java:112)
    at javax.faces.view.facelets.CompositeFaceletHandler.apply(CompositeFaceletHandler.java:98)
    at javax.faces.view.facelets.DelegatingMetaTagHandler.applyNextHandler(DelegatingMetaTagHandler.java:137)
    at com.sun.faces.facelets.tag.jsf.ComponentTagHandlerDelegateImpl.apply(ComponentTagHandlerDelegateImpl.java:184)
    at javax.faces.view.facelets.DelegatingMetaTagHandler.apply(DelegatingMetaTagHandler.java:120)
    at javax.faces.view.facelets.CompositeFaceletHandler.apply(CompositeFaceletHandler.java:98)
    at com.sun.faces.facelets.compiler.NamespaceHandler.apply(NamespaceHandler.java:93)
    at com.sun.faces.facelets.compiler.EncodingHandler.apply(EncodingHandler.java:86)
    at com.sun.faces.facelets.impl.DefaultFacelet.include(DefaultFacelet.java:308)
    at com.sun.faces.facelets.impl.DefaultFacelet.include(DefaultFacelet.java:367)
    at com.sun.faces.facelets.impl.DefaultFacelet.include(DefaultFacelet.java:346)
    at com.sun.faces.facelets.impl.DefaultFaceletContext.includeFacelet(DefaultFaceletContext.java:199)
    at com.sun.faces.facelets.tag.ui.CompositionHandler.apply(CompositionHandler.java:155)
    at com.sun.faces.facelets.compiler.NamespaceHandler.apply(NamespaceHandler.java:93)
    at com.sun.faces.facelets.compiler.EncodingHandler.apply(EncodingHandler.java:86)
    at com.sun.faces.facelets.impl.DefaultFacelet.apply(DefaultFacelet.java:152)
    at com.sun.faces.application.view.FaceletViewHandlingStrategy.buildView(FaceletViewHandlingStrategy.java:774)
    at com.sun.faces.application.view.StateManagementStrategyImpl.restoreView(StateManagementStrategyImpl.java:223)
    at com.sun.faces.application.StateManagerImpl.restoreView(StateManagerImpl.java:188)
    at com.sun.faces.application.view.ViewHandlingStrategy.restoreView(ViewHandlingStrategy.java:123)
    at com.sun.faces.application.view.FaceletViewHandlingStrategy.restoreView(FaceletViewHandlingStrategy.java:453)
    at com.sun.faces.application.view.MultiViewHandler.restoreView(MultiViewHandler.java:148)
    at com.sun.faces.lifecycle.RestoreViewPhase.execute(RestoreViewPhase.java:192)
    at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101)
    at com.sun.faces.lifecycle.RestoreViewPhase.doPhase(RestoreViewPhase.java:116)
    at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:118)
    at javax.faces.webapp.FacesServlet.service(FacesServlet.java:593)
    at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1550)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:343)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:217)We use glassfish 3.1.1 as our application and the project_stage property is set to System_test. I would like to get suggestions on how should I investigate this further. Is this a normal behavior? Does glassfish provide an alternative for resolving blocked threads like some caching mechanism for resources etc?
    Thanks in advance

    Nik wrote:
    Even if it is legal, have you tried moving them out of there (just to pinpoint a possible bug since the stacktrace indicates a wait on a jar file)?Indeed. If that clears up the issue it is good information to put in a JSF bug report (which may even cascade to the Glassfish level).
    Putting resources in a jar file is only really useful when you want to share those resources among different web applications, which should be a rare case. Even when it happens I would probably still choose to simply copy the resources so they are individually managed and you don't get unnecessary dependencies between applications. Just because something is technically possible doesn't make it a good idea.

  • High cpu usage for garbage collection (uptime vs total gc time)

    Hi Team,
    We have a very high cpu usage issue in the production.
    When we restart the server, the cpu idle time would be around 95% and it comes down as days goes by. Today idle cpu is 30% and it is just 6th day after the server restart.
    Environemnt details:
    Jrockit version:
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_05-b04)
    BEA WebLogic JRockit(TM) 1.4.2_05 JVM R24.4.0-1 (build ari-38120-20041118-1131-linux-ia32, Native Threads, GC strategy: parallel)
    Gc Algorithm: JRockit Garbage Collection System currently running strategy: Single generational, parallel mark, parallel sweep
    Number Of Processors: 4
    Max Heap Size: 1073741824
    Total Garbage Collection Time: 21:43:56.5
    Uptime: 114:33:4.1
    Total Garbage Collection Count: 420872
    Total Number Of Threads: 198
    Number Of Daemon Threads: 191
    Can you guys please tell me what would be problem in the server which causing the high cpu usage?
    One more thing I would like to know is that why the total number of threads is 198 when we specified the Executor pool size as 25? I agree that weblogic would create some threads for its maintenance but around 160 threads!!! something is wrong I guess.
    Santhosh.
    [email protected]

    Hi,
    I'm having a similar problem, but haven't been able to resolve it yet. Troubleshooting is made even harder by the fact that this is only happening on our production server, and I've been unable to reproduce it in the lab.
    I'll post whatever findings I have and hopefully we'll be able to find a solution with the help of BEA engineers.
    In my case, I have a stand-alone Tomcat server that runs fine for about 1-2 days, and then the JVM suddenly starts using more CPU, and as a result, the server load shoots up (normal CPU utilization is ~5% but eventually goes up to ~95%; load goes from 0.1 to 4+).
    What I have found so far is that this corresponds to increased GC activity.
    Let me list my environment specs before I proceed, though:
    CPU: Dual Xeon 3.06GHz
    RAM: 2GB
    OS: RHEL4.4 (2.6.9-42.0.2.ELsmp)
    JVM build 1.5.0_03-b07 (BEA JRockit(R) (build dra-45238-20050523-2008-linux-ia32, R25.2.0-28))
    Tomcat version 5.5.12
    JAVA_OPTS="-Xms768m -Xmx768m -XXtlasize16k -XXlargeobjectlimit16k -Xverbose:memory,cpuinfo -Xverboselog:/var/log/tomcat5/jvm.log -Xverbosetimestamp"
    Here are excerpts from my verbose log (I'm getting some HT warning, not sure if that's a problem):
    [Fri Oct 20 15:54:18 2006][22855][cpuinfo] Detected SMP with 2 CPUs that support HT.
    [Fri Oct 20 15:54:18 2006][22855][cpuinfo] Trying to determine if HT is enabled.
    [Fri Oct 20 15:54:18 2006][22855][cpuinfo] Trying to read from /dev/cpu/0/cpuid
    [Fri Oct 20 15:54:18 2006][22855][cpuinfo] Warning: Failed to read from /dev/cpu/0/cpuid
    [Fri Oct 20 15:54:18 2006][22855][cpuinfo] Trying to read from /dev/cpu/1/cpuid
    [Fri Oct 20 15:54:18 2006][22855][cpuinfo] Warning: Failed to read from /dev/cpu/1/cpuid
    [Fri Oct 20 15:54:18 2006][22855][cpuinfo] HT is: supported by the CPU, not enabled by the OS, enabled in JRockit.
    [Fri Oct 20 15:54:18 2006][22855][cpuinfo] Warning: HT enabled even though OS does not seem to support it.
    [Fri Oct 20 15:54:55 2006][22855][memory ] GC strategy: System optimized over throughput (initial strategy singleparpar)
    [Fri Oct 20 15:54:55 2006][22855][memory ] heap size: 786432K, maximal heap size: 786432K
    [Fri Oct 20 16:07:30 2006][22855][memory ] Changing GC strategy to generational, parallel mark and parallel sweep
    [Fri Oct 20 16:07:30 2006][22855][memory ] 791.642-791.874: GC 786432K->266892K (786432K), 232.000 ms
    [Fri Oct 20 16:08:02 2006][22855][memory ] 824.122: nursery GC 291998K->274164K (786432K), 175.873 ms
    [Fri Oct 20 16:09:51 2006][22855][memory ] 932.526: nursery GC 299321K->281775K (786432K), 110.879 ms
    [Fri Oct 20 16:10:24 2006][22855][memory ] 965.844: nursery GC 308151K->292222K (786432K), 174.609 ms
    [Fri Oct 20 16:11:54 2006][22855][memory ] 1056.368: nursery GC 314718K->300068K (786432K), 66.032 ms
    [Sat Oct 21 23:21:09 2006][22855][memory ] 113210.427: nursery GC 734274K->676137K (786432K), 188.985 ms
    [Sat Oct 21 23:30:41 2006][22855][memory ] 113783.140: nursery GC 766601K->708592K (786432K), 96.007 ms
    [Sat Oct 21 23:36:15 2006][22855][memory ] 114116.332-114116.576: GC 756832K->86835K (786432K), 243.333 ms
    [Sat Oct 21 23:48:20 2006][22855][memory ] 114841.653: nursery GC 182299K->122396K (786432K), 175.252 ms
    [Sat Oct 21 23:48:52 2006][22855][memory ] 114873.851: nursery GC 195060K->130483K (786432K), 142.122 ms
    [Sun Oct 22 00:01:31 2006][22855][memory ] 115632.706: nursery GC 224096K->166618K (786432K), 327.264 ms
    [Sun Oct 22 00:16:37 2006][22855][memory ] 116539.368: nursery GC 246564K->186328K (786432K), 173.888 ms
    [Sun Oct 22 00:26:21 2006][22855][memory ] 117122.577: nursery GC 279056K->221543K (786432K), 170.367 ms
    [Sun Oct 22 00:26:21 2006][22855][memory ] 117123.041: nursery GC 290439K->225833K (786432K), 69.170 ms
    [Sun Oct 22 00:29:10 2006][22855][memory ] 117291.795: nursery GC 298947K->238083K (786432K), 207.200 ms
    [Sun Oct 22 00:39:05 2006][22855][memory ] 117886.478: nursery GC 326956K->263441K (786432K), 87.009 ms
    [Sun Oct 22 00:55:22 2006][22855][memory ] 118863.947: nursery GC 357229K->298971K (786432K), 246.643 ms
    [Sun Oct 22 01:08:17 2006][22855][memory ] 119638.750: nursery GC 381744K->322332K (786432K), 147.996 ms
    [Sun Oct 22 01:11:22 2006][22855][memory ] 119824.249: nursery GC 398678K->336478K (786432K), 93.046 ms
    [Sun Oct 22 01:21:35 2006][22855][memory ] 120436.740: nursery GC 409150K->345186K (786432K), 81.304 ms
    [Sun Oct 22 01:21:38 2006][22855][memory ] 120439.582: nursery GC 409986K->345832K (786432K), 153.534 ms
    [Sun Oct 22 01:21:42 2006][22855][memory ] 120443.544: nursery GC 410632K->346473K (786432K), 121.371 ms
    [Sun Oct 22 01:21:44 2006][22855][memory ] 120445.508: nursery GC 411273K->347591K (786432K), 60.688 ms
    [Sun Oct 22 01:21:44 2006][22855][memory ] 120445.623: nursery GC 412391K->347785K (786432K), 68.935 ms
    [Sun Oct 22 01:21:45 2006][22855][memory ] 120446.576: nursery GC 412585K->348897K (786432K), 152.333 ms
    [Sun Oct 22 01:21:45 2006][22855][memory ] 120446.783: nursery GC 413697K->349080K (786432K), 70.456 ms
    [Sun Oct 22 01:34:16 2006][22855][memory ] 121197.612: nursery GC 437378K->383392K (786432K), 165.771 ms
    [Sun Oct 22 01:37:37 2006][22855][memory ] 121398.496: nursery GC 469709K->409076K (786432K), 78.257 ms
    [Sun Oct 22 01:37:37 2006][22855][memory ] 121398.730: nursery GC 502490K->437713K (786432K), 65.747 ms
    [Sun Oct 22 01:44:03 2006][22855][memory ] 121785.259: nursery GC 536605K->478156K (786432K), 132.293 ms
    [Sun Oct 22 01:44:04 2006][22855][memory ] 121785.603: nursery GC 568408K->503635K (786432K), 71.751 ms
    [Sun Oct 22 01:50:39 2006][22855][memory ] 122180.985: nursery GC 591332K->530811K (786432K), 131.831 ms
    [Sun Oct 22 02:13:52 2006][22855][memory ] 123573.719: nursery GC 655566K->595257K (786432K), 117.311 ms
    [Sun Oct 22 02:36:04 2006][22855][memory ] 124905.507: nursery GC 688896K->632129K (786432K), 346.990 ms
    [Sun Oct 22 02:50:24 2006][22855][memory ] 125765.715-125765.904: GC 786032K->143954K (786432K), 189.000 ms
    [Sun Oct 22 02:50:26 2006][22855][memory ] 125767.535-125767.761: GC 723232K->70948K (786432K), 225.000 ms
    vvvvv
    [Sun Oct 22 02:50:27 2006][22855][memory ] 125768.751-125768.817: GC 712032K->71390K (786432K), 64.919 ms
    [Sun Oct 22 02:50:28 2006][22855][memory ] 125769.516-125769.698: GC 711632K->61175K (786432K), 182.000 ms
    [Sun Oct 22 02:50:29 2006][22855][memory ] 125770.753-125770.880: GC 709632K->81558K (786432K), 126.000 ms
    [Sun Oct 22 02:50:30 2006][22855][memory ] 125771.699-125771.878: GC 708432K->61368K (786432K), 179.000 ms
    So, I'm running with the default GC strategy which lets the GC pick the most suitable approach (single space or generational). It seems to switch to generational almost immediately and runs well - most GC runs are in the nursery, and only once in a while it goes through the older space.
    Now, if you look at [Sun Oct 22 02:50:27 2006], that's when everything changes. GC starts running every second (later on it's running 3 times a second) doing huge sweeps. It never goes through the nursery again, although the strategy is still generational.
    It's all downhill from this point on, and it's a matter of hours (maybe a day) before we restart the server.
    I guess my only question is: What would cause such GC behavior?
    I would appreciate your ideas/comments!
    Thanks,
    Tenyo

Maybe you are looking for

  • Question on the status record of Idocs.

    Hi all, Where does the status of the idoc update:: 1) In the idoc in the sap system/Idoc Archive OR 2)The one we transfer to the OS as a flat file (for the translators(EDI subsystem) to work on)? OR both of the above? Thanks, Charles.

  • It says I have $15.00 dollars in my account, but it's not letting me purchased any songs?

    It says I have $15.00 dollars in my Itunes account, but it won't let me purchase any songs.

  • W530 sometimes do not boot / boot loop

    Hey, Since some days my W530 sometimes have some troubles at start up. It is not every time the same procedure. Often it  gets in a boot loop till, after some loops, the windows repair set up trys to repair the system (but it came to a "fail" message

  • Slide show swf ?

    I'm new to Flash and an amateur at making pages so keep it simple for stupid me. I have a html page that has a space on it that I would like to show a rotating image ( like a slide show a image would fade in and then be replaced by another, maybe in

  • DVD quality to TV? quick answer

    Hi, I have an ipod 5.5 gen. will the stuff(movies/tv shows) I buy on ITunes or other stuff i put on, will it be displayed on a TV at DVD quality, I mean, no difference between an Ipod and if I had a DVD player? I know with 5.5 gen you can buy any ol'