Reg: result_cache in parallel -

Hi Experts,
I have few concern(s) regarding the Result Cache (introduced in 11gR2) and the /*+ RESULT_CACHE */ hint.
Refering to -
Doc 12.1 - Tuning the Result Cache
Murali Vallath - Using Oracle Database 11g Release 2 Result Cache in an Oracle RAC Environment
Adrian Billington -- query result cache in oracle 11g
Concerns -
(1) Suppose I have a master ETL job which has 5 sub-jobs. These sub-jobs are executed in parallel i.e. started all at once from ETL.
Each of these sub-job executes an extraction query and pulls data from database.
In each of these sub-job queries, there's a subquery which is common. I am thinking to provide /*+ RESULT_CACHE */ to this common subquery.
But my actual concern - since all the extraction queries (i.e. sub-jobs) are started in parallel, will the Result Cache thing come into picture?
(2) For how long the data is retained in the cache?
A wild guess - till the point we execute the DBMS_RESULT_CACHE.FLUSH procedure ?
(3) Any caveats?
(Trying to fix few costly time-consuming queries, and suddenly this option came to my mind. Took the opportunity to look at this cool feature, at the same time understanding the caveats, if any)
Please advise me on this.
-- Ranit
(on Oracle 11.2.0.3.0)

Hi.
2.1) 50Mb can store approximately 50Mb of data. The amount of stuff you can sore depends a number of factors, including:
- How many queries or function calls are being cached.
- With respect to the query cache, how wide are the rows. We are talking size of data in the columns.
- How many rows are being returned.
So you might have a few larger result sets, or many small ones.
2.2) Well, it can't. The RESULT_CACHE_MAX_RESULT parameter determines the maximum size of a result set that will be considered for caching. By default it is set to 5, which means 5% of the size. So let's say you have a result cache of 100Mb. By default, a result set in excess of 5Mb will not be considered for caching. This stops you wiping out useful information in the cache by trying to cache one big result set.
The reality is, if you start to use this feature you will have to monitor the cache performance and be selective about what you cache and what you don't. The default sizing parameters are not going to be suitable for everyone. You need to alter them based on your monitoring. Nobody in a forum will be able to tell you figures to set. If it were that easy, Oracle would do it for you.
Regarding your "alternative solution", I don't really want to comment on that specifically because I don't know enough about the system. Typically, it would not be something I would do, but maybe it is the right thing for you to do in your case. Impossible for me to know. Things to consider in preference to your alternative solution.
- Scalar subquery caching: If the subqueries are scalar subqueries (pulling back a single column/object in a single row), it will already be taking advantage of scalar subquery caching, so your alternative solutions may actually give worse performance. There is no sharing between SQL statements or sessions.
ORACLE-BASE - Efficient Function Calls From SQL
- Use a WITH clause to replace the subqueries and use the materialize hint. This way, the subquery is automatically materialized into temp segments, so multiple references to it within a single statement query the result from the temp segments, rather than the full subquery. There is no sharing between SQL statements or sessions.
ORACLE-BASE - WITH Clause : Subquery Factoring
The reality is, there is not going to be a "best" solution that works for all cases. What you need to do is try several approaches and pick the one that works best for your circumstances. The next time you run into a similar issue, you can't assume what you did last time is the right solution this time...
Regardless of which option you pick, you need to read the docs and feel comfortable with the tech before you launch down the path. No matter how good a feature is, if you use it badly you will make that feature look bad. 
Cheers
Tim...

Similar Messages

  • Reg: Error in Parallel Hint -

    Hi Experts,
    I have a concern regarding the usage of parallel hint with DOP = "AUTO".
    Getting these errors while the ETL job(s) are executed with /*+ PARALLEL(AUTO) */
    JOB - 1
    java.sql.SQLException: ORA-12853: insufficient memory for PX buffers: current 1159024K, max needed 11666304K
    ORA-04031: unable to allocate 65560 bytes of shared memory ("large pool","unknown object","large pool","PX msg pool")
    JOB - 2
    java.sql.SQLException: ORA-12801: error signaled in parallel query server P256
    ORA-12853: insufficient memory for PX buffers: current 1159024K, max needed 11666304K
    ORA-04031: unable to allocate 65560 bytes of shared memory ("large pool","unknown object","large pool","PX msg pool")
    I tried google but couldn't get an appropriate reason for this and also fix.
    1- Do I need to increase some memory buffer related parameter?
    2- Does "AUTO" option causing this? And will using a DOP = 3, 4, etc. guarantee to fix this?
    (I will try this and check but want to know the exact reason, so that it doesn't cause any problem in Prod)
    Any pointers regarding this.
    -- Ranit
    ( on Oracle 11.2.0.3.0 )

    ranit B wrote:
    Getting these errors while the ETL job(s) are executed with /*+ PARALLEL(AUTO) */
    JOB - 1
    java.sql.SQLException: ORA-12853: insufficient memory for PX buffers: current 1159024K, max needed 11666304K
    ORA-04031: unable to allocate 65560 bytes of shared memory ("large pool","unknown object","large pool","PX msg pool")
    JOB - 2
    java.sql.SQLException: ORA-12801: error signaled in parallel query server P256
    ORA-12853: insufficient memory for PX buffers: current 1159024K, max needed 11666304K
    ORA-04031: unable to allocate 65560 bytes of shared memory ("large pool","unknown object","large pool","PX msg pool")
    I tried google but couldn't get an appropriate reason for this and also fix.
    1- Do I need to increase some memory buffer related parameter?
    2- Does "AUTO" option causing this? And will using a DOP = 3, 4, etc. guarantee to fix this?
    (I will try this and check but want to know the exact reason, so that it doesn't cause any problem in Prod)
    Any pointers regarding this.
    -- Ranit
    ( on Oracle 11.2.0.3.0 )
    The error message is pretty self-explanatory: The memory that is required for communication between PX Servers ("PX msg pool") can either be allocated from the Shared Pool or the Large Pool - depending on some other settings. In your case obviously the memory is taken from the Large Pool, and the error message says that it needs approx. 12GB of memory from the Large Pool which isn't available. I'm not sure however if that error message is really showing a reasonable "needed" value because 12GB for the "PX msg pool" is much more than what you should get for reasonable DOP values according to the underlying formula.
    So you either need to change the settings (depends on how the memory is configured / static allocation or *target* parameters and the parallel_automatic_tuning (deprecated) parameter, internally the "_PX_use_large_pool" parameter) to move the allocation to the Shared Pool, or much simpler, increase the size of the Large Pool accordingly.
    Although I doubt the "needed" value of 12GB you should nevertheless review your AUTO DOP parameter settings since the values shown for the "PX msg pool" could indicate that the DOP chosen seems to be pretty high. You can find that information in the "Notes" section when you get the corresponding plan from the Library Cache using "DBMS_XPLAN.DISPLAY_CURSOR", or using EXPLAIN PLAN and DBMS_XPLAN.DISPLAY, or may be even from AWR if you have the license using DBMS_XPLAN.DISPLAY_AWR.
    For example it might make sense to lower your PARALLEL_DEGREE_LIMIT parameter value to some explicit value rather than using the default value of CPU. Also you should review your I/O calibration results in the DBA_RSRC_IO_CALIBRATE view - and there the MAX_PMBPS value. This is the relevant value that is used to determine the DOP - see my blog post Oracle related stuff: Cost Is Time: Next Generation
    Randolf

  • Parallel Background jobs - Reg.

    Hi All,
    Good Morning.
    I have below requirement :
    I have developed one report which gives missing document numbers for particular fiscal year. But my client asked that program  must run in Background for a given year from January until April next year. For example the program must run with fiscal year = 2011 from January 2011 until April 2012. So for the first four months of a year the program must be executed for two years (20XX and 20XX-1). The rest of the year itu2019s on to be run with year equal to 20XX and so onu2026
    i.e, First job should start at 01.09.2010 to 30.04.2011 and second job should run from 01.01.2011 to 30.04.2012. Two parallel jobs must run from January to April of new fiscal year.
    (This requirement is to trace if there is any missing documents in Special posting periods).
    Could you please suggest in this regard.
    Thanks in Advance.
    Regards,
    Madhavi

    Write a Wrapper Function  module  ( REMOTE ENABLED...JUST for convenience...) which will include your submit report statement along with dates....
    Call this function module with addition IN BACKGROUND TASK AS SEPARATE UNIT DESTINATION 'NONE'
    Hope it helps.
    Anup

  • Scheduling of Parallel Sequence in Routing & Production Order

    Hello Friends,
    I have gone through sap library & many other threads related to maintaining & scheduling of parallel sequence in Routing as well as Production Order.
    For the example, I have 3 operations : 0010,0020 & 0030.
    I want to maintain 0020 & 0030 as Parallel Operations ( Parallel Sequence) i.e. for both operations I have maintained same lead times so that both should start & end at same time parallely.
    First of all, I have maintained all operations in standard sequence 0 all 0010,0020 & 0030 operations and also maintained tick in Required splitting check box.
    Same way , I have maintained operations 0020 & 0030 in Parallel sequence with branching operation as 0020 & Return operation as 0030. Ref. sequence i have maintained as 0 (Std. Sequence).
    Now when I am checking in Graphic it is not showing both operation 0020 & 0030 as parallely scheduled and hence same is not reflected in Production ORder as well.
    Kindly share your valuable views reg. what may be other settings for parallel sequence which I may be missing.
    Thanks in advance.
    Regards,
    Tejas

    Hi Abhijt,
    Thanks for your reply. I went through your thread & I followed same steps as mentioned by you in your suggested threads.
    I have removed Parallel sequence fully & maintained Required Overlapping for all my 3 operations : 0010,0020 & 0030
    I have maintained workcenters as below :
    0010 A  Set up 2.0 Hrs   Machine 5.0 Hrs   Labour 1.0 Hr
    0020 B  Set up 2.0 Hrs   Machine 5.0 Hrs   Labour 1.0 Hr
    0030 A  Set up 2.0 Hrs   Machine 5.0 Hrs   Labour 1.0 Hr
    I checked scheduling in routing itself same way you suggested with start date today's date & forward scheduling it gives following results :
    0010 start time 07:00:00
    0020 start time 07:13:42
    0030 start time 09:14:39
    My concern is with mainly start time of operations 0010 & 0020 since for both of these are processed on different workcenters A & B respectively then why not starting exactly on same time on 07:00:00 AM only instead another operation is starting on 07:13:42AM. I am unable to find how this difference of 13mins 42 seconds is coming.
    Kindly provide your feedback. Also let me know if you need any more details.
    Regards,
    Tejas

  • How do u set the parallel message queu

    Hi All,
    i have small doubt regarding Parallel message queus ,
    how do we set this parameter EO_INBOUND_PARALLEL and
    EO_INBOUND_TO_OUTBOUND
    can u help any body,
    reg,
    kumar

    Suresh,
    follow a said below to configure value is the nofoparalle processing
    goto SXMB_ADM, IntergationEgnineConfiguration->specific configuratin->
    Catogory:Tunning Parameter:EO_INBOUND_PARALLEL value:2 
    Catogory:Tunning Parameter:EO_INBOUND_TO_OUTBOUND value:1
    regards
    Sreeram.G.Reddy

  • Parallel ledger for tax purposes

    Dear SAPiens,
    I heard an idea from a client: to use a parallel ledger in newGL for profit tax purposes, i.e. to record taxable revenues and deductible expenses in a ledger dedicated for tax purposes, to make it easy to determine the base of profit tax.
    Does anyone have experience with such a use of parallel ledgers? Could it work and make sense?

    HI,
    Please assing the company code ato Paralle ledger.
    SPRO/FA/****/ledgers/ledger/define and active non-leading ledger.
    Reg
    Madhu M

  • Parallel Ledger Setup

    Here is my understanding of how Parallel Ledgers are setup within ECC 6.0.  Please let me know if there is anything wrong with my initial understanding:
    Define accounting principles and assign them to ledger groups.  Assignment of accounting principle to ledger group is a 1:1 relationship
    Ledger groups when initially created contains the ledger of the same name.  Multiple ledgers can be assigned to a ledger group.  What are the restrictions on how many or what types of ledgers can be assigned to a ledger group?
    Company Codes are assigned to each ledger.  What are the restrictions on how many or what types of company codes can be assigned to a ledger?
    I would appreciate any advice on how to conceptually understand parallel ledger configuration.

    HI,
    simply have concept of Leading Ledger and Non-Leading ledger.
    Leadgers are client wise ,  Not company code wise.
    0L default Leading ledger.
    Non leading ledger  can deactivate company code wise.
    Ledger Group:  Means set of ledgers is called  ledger group.
                           (In group leading ledger is must and it is called Rep.Leadger) .
    Reg
    Madhu M

  • MF70- separated backflushing  issues-COST COLLECTOR BLOCKED -reg

    Hiiiiiiiiiii,
    Short Text .   
    MF70-Separated Back Flush Process Encountering issues -reg    
    Long Text    
    While performing MF 70-Separated Back Flush Process System is
    encountering Major Errors
    1.Cost Collector Blocked
    2.Maximum No.of FI items reached
    Checked for up to date costing, need inputs to resolve the above
    issues       
    Steps for Reconstruction    
    MF70-CHECK " Post goods issue" -check "make to stock "---
    plant "H001"-Material "G51900305R"--Posting date "01.04.2008 to
    13.05.2008"----
    check "parallel processes " in
    Settings
    ( Step wise details are atatched in the atatchment )
    Cost collector blocked is the major issue as max no.of FI items reached needs a decesion to make on  some customization
    Madhu Kiran,,,,,,,,

    Hi,
    Refer the OSS Notes: 562387 & 539452.
    It may be useful.
    Regards,
    Siva

  • Parallels Vista wont connect to internet

    well through Parallels my old XP OS can connect and my reg OSX can connect to the internet but wen i run Vista it wont connect, everything works perfect but no internet, it tells me drivers or something are missing, yet i follow the steps to fix it and they lead me to things not there...is this a bad install or is the OS just screwed up or do i have some settings wrong?

    http://forums.parallels.com

  • Query0;Runtime error time limit exceeded,with parallel processing via RFC

    Dear experts,
    I have created a report on 0cca_c11 cube and while running my report when i give cost center group which contains many cost centers , my report executes for long time and at last gives message
    "Error while reading data;navigation is possible" and
    "Query0;Runtime error time limit exceeded,with parallel processing via RFC"
    please tell me what is the problem and how can i solve this
    Regards
    Shweta

    hI,
    Execute the Query in RSRT with Execute and Debug option.
    Select SQL statements toknow where exactly it's taking time.
    Let us know the details once you done.
    Reg
    Pra

  • Error message ssa_get_reg: ssa=0: reg=0x2C rc=0x80

    Hi,
    My Catalyat 6509 have the following error message :
    21:11:50.878 FW[Mod 01]: ssa_get_reg: ssa=0: reg=0x2C rc=0x80
    21:27:12.443 FW[Mod 01]: ssa_get_reg: ssa=0: reg=0x2C rc=0x80
    22:13:37.275 FW[Mod 01]: ssa_get_reg: ssa=0: reg=0x2C rc=0x80
    22:16:58.100 FW[Mod 01]: ssa_get_reg: ssa=0: reg=0x2C rc=0x80
    Please help to mention me what this message mean?
    Best Regards,
    Jackson

    RegHi Jackson,
    Please find the details of the error which you are seeing :
    21:11:50.878 FW[Mod 01]: ssa_get_reg: ssa=0: reg=0x2C rc=0x80
    21:27:12.443 FW[Mod 01]: ssa_get_reg: ssa=0: reg=0x2C rc=0x80
    Details:-
    SSA (Super Santa Ana) is a name of the ASIC to provide for the transfer of   parallel data in both direction between the line card and fabric.
    Card running at 4 or 8Gbps speed. The above message occurs when firmware initializes the SSA but some of the registers are not accessible or the access times out.
    If you'll see the message continuously, I'd recommend to reseat first to resync fabric connection.
    However, the same message will be displayed after resetting then the module needs to be replaced.
    HTH
    Regards
    Inayath
    *Plz rate the helpfull posts.

  • How to use one dynamic connection managers for multiple parallel data flow tasks

    hi there:
       I have 6 databases residing on the same server. What I want to do is  call a store procedure with identical name on each database dbo schema and transport results to a centralized place. The key is to have those SPs run in parallel instead
    of in sequence as each SP may take around 10 mins to finish. 
    The simplest way is to create 6 OLE DB connection managers and create 6 DFT tasks. However, I do not want to maintain 6 OLE DB connection managers as there is a chance to have more connection  managers.
     What I did so far is to create a OLD DB connection manager and use expression to set up connectionString properties so that it will get populated by variables at run time. It is fine when running all SPs in a Foreach Loop Container. However, it takes
    around 60 mins to finish.
      When I try to run it in parallel ( basically created 6 DFTs but use only one Dynamic Connection Manager), the connection string gets confused therefore all DFT tasks failed.
       Does anyone here have some experience on this topic?
    Thanks
     hui
    --Currently using Reporting Service 2000; Visual Studio .NET 2003; Visual Source Safe SSIS 2008 SSAS 2008, SVN --

    Yes, basically, on the connectionString property of ONE OLEDB, you are using an expression to supply value and this expression is pointing to a variable. 
    In this case , you can update this variable from a table which contains many connection strings. It's good if you want to execute Store procedures in a sequential order. When in parallel mode, this will cause issues as connectionString gets overwritten. 
     I am thinking about using script task to exec sp.
     The whole idea is that I do not want to maintain a large number of Connection Managers. 
    Hope it helps
    --Currently using Reporting Service 2000; Visual Studio .NET 2003; Visual Source Safe SSIS 2008 SSAS 2008, SVN --
    So you are not able to run parallel executions using same conn mgmr, even with dynamic connectionstring, is that correct? Yes, script task will be a way to go if you wish to execute it in parallel, you may connect to SS and query the proper conn string with
    SELECT/WHERE clause in each script > pass it to a script variable > use that script variable and execute the proc. This will require only two things to change in each script, the WHERE condition to get the conn string and the proc name (you may even
    get the proc names the same way you get conn string) and everything else will be same. Let us know how that goes. 
    Hope no two or more procs doing insert/update/delete on the same tables.

  • How can I remove Parallels from my Macbook completely?

    My MBP has been booting up very slowly, and I checked Console to see what might be causing it. I saw that a lot of the registered entries were related to Parallels, so I decided to unninstall it, since I also read that many people felt that their laptop was booting up faster after removing it.
    The problem is that, even after unninstalling it, the boot time is still very long! I checked Console again, and the problem is no longer Parallels components loading, but the failing of them loading. I see stuff like:
    4/24/14 18:46:47.204 Parallels[180]: Failed to load kernel extension prl_hypervisor.kext
    4/24/14 18:46:47.269 Parallels[183]: /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_hypervisor.kext failed to load - (libkern/kext) not found; check the system/kernel logs for errors or try kextutil(8).
    and I believe Parallels is slowing down the boot time even after it's been removed. I've already removed all of its components, I don't know what else to do!
    I've also deleted other apps that were on Login Items.
    Could you guys please give me tips on how I can improve the boot time?
    I'm posting below what I got from Console:
    4/24/14 18:45:42.000 bootlog[0]: BOOT_TIME 1398375942 0
    4/24/14 18:46:14.000 syslogd[21]: Configuration Notice:
    ASL Module "com.apple.appstore" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    4/24/14 18:46:14.000 syslogd[21]: Configuration Notice:
    ASL Module "com.apple.authd" sharing output destination "/var/log/system.log" with ASL Module "com.apple.asl".
    Output parameters from ASL Module "com.apple.asl" override any specified in ASL Module "com.apple.authd".
    4/24/14 18:46:14.000 syslogd[21]: Configuration Notice:
    ASL Module "com.apple.authd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    4/24/14 18:46:14.000 syslogd[21]: Configuration Notice:
    ASL Module "com.apple.bookstore" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    4/24/14 18:46:14.000 syslogd[21]: Configuration Notice:
    ASL Module "com.apple.eventmonitor" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    4/24/14 18:46:14.000 syslogd[21]: Configuration Notice:
    ASL Module "com.apple.install" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    4/24/14 18:46:14.000 syslogd[21]: Configuration Notice:
    ASL Module "com.apple.iokit.power" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    4/24/14 18:46:14.000 syslogd[21]: Configuration Notice:
    ASL Module "com.apple.mail" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    4/24/14 18:46:14.000 syslogd[21]: Configuration Notice:
    ASL Module "com.apple.MessageTracer" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    4/24/14 18:46:14.000 syslogd[21]: Configuration Notice:
    ASL Module "com.apple.performance" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    4/24/14 18:46:14.000 syslogd[21]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    4/24/14 18:46:14.000 syslogd[21]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    4/24/14 18:46:14.000 syslogd[21]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    4/24/14 18:46:14.000 syslogd[21]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    4/24/14 18:46:14.000 syslogd[21]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    4/24/14 18:46:14.000 syslogd[21]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    4/24/14 18:46:14.000 syslogd[21]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    4/24/14 18:46:14.000 kernel[0]: Longterm timer threshold: 1000 ms
    4/24/14 18:46:14.000 kernel[0]: PMAP: PCID enabled
    4/24/14 18:46:14.000 kernel[0]: Darwin Kernel Version 13.1.0: Thu Jan 16 19:40:37 PST 2014; root:xnu-2422.90.20~2/RELEASE_X86_64
    4/24/14 18:46:14.000 kernel[0]: vm_page_bootstrap: 972582 free pages and 67802 wired pages
    4/24/14 18:46:14.000 kernel[0]: kext submap [0xffffff7f807a6000 - 0xffffff8000000000], kernel text [0xffffff8000200000 - 0xffffff80007a6000]
    4/24/14 18:46:14.000 kernel[0]: zone leak detection enabled
    4/24/14 18:46:14.000 kernel[0]: "vm_compressor_mode" is 4
    4/24/14 18:46:14.000 kernel[0]: standard timeslicing quantum is 10000 us
    4/24/14 18:46:14.000 kernel[0]: standard background quantum is 2500 us
    4/24/14 18:46:14.000 kernel[0]: mig_table_max_displ = 74
    4/24/14 18:46:14.000 kernel[0]: TSC Deadline Timer supported and enabled
    4/24/14 18:46:14.000 kernel[0]: "name" not a kext
    4/24/14 18:46:14.000 kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=0 Enabled
    4/24/14 18:46:14.000 kernel[0]: AppleACPICPU: ProcessorId=2 LocalApicId=2 Enabled
    4/24/14 18:46:14.000 kernel[0]: AppleACPICPU: ProcessorId=3 LocalApicId=1 Enabled
    4/24/14 18:46:14.000 kernel[0]: AppleACPICPU: ProcessorId=4 LocalApicId=3 Enabled
    4/24/14 18:46:14.000 kernel[0]: AppleACPICPU: ProcessorId=5 LocalApicId=255 Disabled
    4/24/14 18:46:14.000 kernel[0]: AppleACPICPU: ProcessorId=6 LocalApicId=255 Disabled
    4/24/14 18:46:14.000 kernel[0]: AppleACPICPU: ProcessorId=7 LocalApicId=255 Disabled
    4/24/14 18:46:14.000 kernel[0]: AppleACPICPU: ProcessorId=8 LocalApicId=255 Disabled
    4/24/14 18:46:14.000 kernel[0]: calling mpo_policy_init for Sandbox
    4/24/14 18:46:14.000 kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    4/24/14 18:46:14.000 kernel[0]: calling mpo_policy_init for Quarantine
    4/24/14 18:46:14.000 kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    4/24/14 18:46:14.000 kernel[0]: calling mpo_policy_init for TMSafetyNet
    4/24/14 18:46:14.000 kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    4/24/14 18:46:14.000 kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    4/24/14 18:46:14.000 kernel[0]: The Regents of the University of California. All rights reserved.
    4/24/14 18:46:14.000 kernel[0]: MAC Framework successfully initialized
    4/24/14 18:46:14.000 kernel[0]: using 16384 buffer headers and 10240 cluster IO buffer headers
    4/24/14 18:46:14.000 kernel[0]: AppleKeyStore starting (BUILT: Sep 19 2013 22:20:34)
    4/24/14 18:46:14.000 kernel[0]: IOAPIC: Version 0x20 Vectors 64:87
    4/24/14 18:46:14.000 kernel[0]: ACPI: sleep states S3 S4 S5
    4/24/14 18:46:14.000 kernel[0]: pci (build 20:00:24 Jan 16 2014), flags 0x63008, pfm64 (36 cpu) 0xf80000000, 0x80000000
    4/24/14 18:46:14.000 kernel[0]: [ PCI configuration begin ]
    4/24/14 18:46:14.000 kernel[0]: console relocated to 0xf80000000
    4/24/14 18:46:14.000 kernel[0]: [ PCI configuration end, bridges 12, devices 16 ]
    4/24/14 18:46:14.000 kernel[0]: AppleIntelCPUPowerManagement: Turbo Ratios 0046
    4/24/14 18:46:14.000 kernel[0]: AppleIntelCPUPowerManagement: (built 19:46:50 Jan 16 2014) initialization complete
    4/24/14 18:46:14.000 kernel[0]: mcache: 4 CPU(s), 64 bytes CPU cache line size
    4/24/14 18:46:14.000 kernel[0]: mbinit: done [64 MB total pool size, (42/21) split]
    4/24/14 18:46:14.000 kernel[0]: Pthread support ABORTS when sync kernel primitives misused
    4/24/14 18:46:14.000 kernel[0]: BTCOEXIST off
    4/24/14 18:46:14.000 kernel[0]: BRCM tunables:
    4/24/14 18:46:14.000 kernel[0]: pullmode[1] txringsize[  256] txsendqsize[1024] reapmin[   32] reapcount[  128]
    4/24/14 18:46:14.000 kernel[0]: rooting via boot-uuid from /chosen: F2B1CE87-7935-307F-B2ED-E6DF49C1DE99
    4/24/14 18:46:14.000 kernel[0]: Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    4/24/14 18:46:14.000 kernel[0]: com.apple.AppleFSCompressionTypeDataless kmod start
    4/24/14 18:46:14.000 kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    4/24/14 18:46:14.000 kernel[0]: com.apple.AppleFSCompressionTypeDataless load succeeded
    4/24/14 18:46:14.000 kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    4/24/14 18:46:14.000 kernel[0]: FireWire (OHCI) Lucent ID 5901 built-in now active, GUID a4b197fffeeac312; max speed s800.
    4/24/14 18:46:14.000 kernel[0]: AppleIntelCPUPowerManagementClient: ready
    4/24/14 18:46:14.000 kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@1F,2/AppleIntelPchS eriesAHCI/PRT0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOB lockStorageDriver/ST9500325ASG Media/IOGUIDPartitionScheme/Customer@2
    4/24/14 18:46:14.000 kernel[0]: BSD root: disk0s2, major 1, minor 2
    4/24/14 18:46:14.000 kernel[0]: AppleUSBMultitouchDriver::checkStatus - received Status Packet, Payload 2: device was reinitialized
    4/24/14 18:46:14.000 kernel[0]: Thunderbolt Self-Reset Count = 0xedefbe00
    4/24/14 18:46:14.000 kernel[0]: hfs: mounted Macintosh HD on device root_device
    4/24/14 18:46:14.000 kernel[0]: Waiting for DSMOS...
    4/24/14 18:46:14.000 kernel[0]: VM Swap Subsystem is ON
    4/24/14 18:45:46.118 com.apple.launchd[1]: *** launchd[1] has started up. ***
    4/24/14 18:45:46.118 com.apple.launchd[1]: *** Shutdown logging is enabled. ***
    4/24/14 18:45:59.937 com.apple.launchd[1]: (com.parallels.desktop.launchdaemon) Unknown key for boolean: HopefullyExitsFirst
    4/24/14 18:46:11.165 hidd[45]: void __IOHIDPlugInLoadBundles(): Loaded 0 HID plugins
    4/24/14 18:46:11.167 hidd[45]: Posting 'com.apple.iokit.hid.displayStatus' notifyState=1
    4/24/14 18:46:13.516 kdc[42]: krb5_kdc_set_dbinfo: failed to create root node: /Local/Default
    4/24/14 18:46:13.542 Parallels[80]: Unloading kernel extension prl_netbridge.kext
    4/24/14 18:46:14.210 com.apple.launchd[1]: (com.apple.Kerberos.kdc[42]) Exited with code: 1
    4/24/14 18:46:14.210 com.apple.launchd[1]: (com.apple.Kerberos.kdc) Throttling respawn: Will start in 1 seconds
    4/24/14 18:46:14.423 com.apple.SecurityServer[15]: Session 100000 created
    4/24/14 18:46:14.426 com.apple.usbmuxd[19]: usbmuxd-327.4 on Feb 12 2014 at 14:54:33, running 64 bit
    4/24/14 18:46:14.467 configd[56]: network changed.
    4/24/14 18:46:14.490 configd[56]: setting hostname to "MacBook-Pro-de-Luis-4.local"
    4/24/14 18:46:14.501 Parallels[95]: Unloading kernel extension prl_vnic.kext
    4/24/14 18:46:14.583 Parallels[105]: Unloading kernel extension prl_usb_connect.kext
    4/24/14 18:46:14.722 Parallels[114]: Unloading kernel extension prl_hid_hook.kext
    4/24/14 18:46:14.820 Parallels[123]: Unloading kernel extension prl_hypervisor.kext
    4/24/14 18:46:14.887 Parallels[132]: Loading kernel extension prl_usb_connect.kext
    4/24/14 18:46:15.219 kdc[137]: label: default
    4/24/14 18:46:15.219 kdc[137]:     dbname: od:/Local/Default
    4/24/14 18:46:15.219 kdc[137]:     mkey_file: /var/db/krb5kdc/m-key
    4/24/14 18:46:15.219 kdc[137]:     acl_file: /var/db/krb5kdc/kadmind.acl
    4/24/14 18:46:15.000 kernel[0]: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    4/24/14 18:46:15.000 kernel[0]: IO80211Interface::efiNVRAMPublished(): 
    4/24/14 18:46:17.000 kernel[0]: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    4/24/14 18:46:23.506 stackshot[23]: Timed out waiting for IOKit to finish matching.
    4/24/14 18:46:27.000 kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    4/24/14 18:46:28.630 com.apple.SecurityServer[15]: Entering service
    4/24/14 18:46:28.750 UserEventAgent[11]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    4/24/14 18:46:28.757 digest-service[72]: label: default
    4/24/14 18:46:28.757 digest-service[72]:     dbname: od:/Local/Default
    4/24/14 18:46:28.757 digest-service[72]:     mkey_file: /var/db/krb5kdc/m-key
    4/24/14 18:46:28.757 digest-service[72]:     acl_file: /var/db/krb5kdc/kadmind.acl
    4/24/14 18:46:28.760 digest-service[72]: digest-request: uid=0
    4/24/14 18:46:28.762 UserEventAgent[11]: Captive: CNPluginHandler en1: Inactive
    4/24/14 18:46:28.771 awacsd[59]: Starting awacsd connectivity_executables-97 (Aug 24 2013 23:49:23)
    4/24/14 18:46:28.779 awacsd[59]: InnerStore CopyAllZones: no info in Dynamic Store
    4/24/14 18:46:28.812 digest-service[72]: digest-request: netr probe 0
    4/24/14 18:46:28.813 digest-service[72]: digest-request: init request
    4/24/14 18:46:28.823 mDNSResponder[35]: mDNSResponder mDNSResponder-522.90.2 (Nov  3 2013 18:51:09) starting OSXVers 13
    4/24/14 18:46:28.826 digest-service[72]: digest-request: init return domain: BUILTIN server: MACBOOK-PRO-DE-LUIS-4 indomain was: <NULL>
    4/24/14 18:46:29.017 airportd[63]: airportdProcessDLILEvent: en1 attached (up)
    4/24/14 18:46:29.000 kernel[0]: createVirtIf(): ifRole = 1
    4/24/14 18:46:29.000 kernel[0]: in func createVirtualInterface ifRole = 1
    4/24/14 18:46:29.000 kernel[0]: AirPort_Brcm4331_P2PInterface::init name <p2p0> role 1
    4/24/14 18:46:29.000 kernel[0]: AirPort_Brcm4331_P2PInterface::init() <p2p> role 1
    4/24/14 18:46:29.000 kernel[0]: Created virtif 0xffffff801050d000 p2p0
    4/24/14 18:46:29.104 locationd[40]: NBB-Could not get UDID for stable refill timing, falling back on random
    4/24/14 18:46:29.218 locationd[40]: Location icon should now be in state 'Inactive'
    4/24/14 18:46:29.864 apsd[61]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    4/24/14 18:46:30.011 mdmclient[36]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    4/24/14 18:46:31.012 mdmclient[36]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    4/24/14 18:46:31.344 kdc[137]: WARNING Found KDC certificate (O=System Identity,CN=com.apple.kerberos.kdc)is missing the PK-INIT KDC EKU, this is bad for interoperability.
    4/24/14 18:46:31.348 systemkeychain[142]: done file: /var/run/systemkeychaincheck.done
    4/24/14 18:46:31.354 configd[56]: network changed: DNS*
    4/24/14 18:46:31.360 configd[56]: network changed: DNS*
    4/24/14 18:46:31.361 mDNSResponder[35]: D2D_IPC: Loaded
    4/24/14 18:46:31.361 mDNSResponder[35]: D2DInitialize succeeded
    4/24/14 18:46:31.366 mDNSResponder[35]:   4: Listening for incoming Unix Domain Socket client requests
    4/24/14 18:46:31.367 mDNSResponder[35]: Adding registration domain 291933891.members.btmm.icloud.com.
    4/24/14 18:46:31.416 networkd[165]: networkd.165 built Aug 24 2013 22:08:46
    4/24/14 18:46:31.436 awacsd[59]: Configuring lazy AWACS client: 291933891.p04.members.btmm.icloud.com.
    4/24/14 18:46:31.450 awacsd[59]: KV HTTP 0
    4/24/14 18:46:31.475 kdc[137]: KDC started
    4/24/14 18:46:31.963 com.apple.InternetSharing[43]: *** no interface for service
    4/24/14 18:46:36.482 awacsd[59]: KV HTTP 0
    4/24/14 18:46:39.917 apsd[61]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    4/24/14 18:46:40.000 kernel[0]: SMC::smcHandleInterruptEvent WARNING status=0x0 (0x40 not set) notif=0x0
    4/24/14 18:46:40.000 kernel[0]: SMC::smcReadKeyAction ERROR: smcReadData8 failed for key LsNM (kSMCKeyNotFound)
    4/24/14 18:46:40.000 kernel[0]: SMC::smcReadKeyAction ERROR LsNM kSMCKeyNotFound(0x84) fKeyHashTable=0x0
    4/24/14 18:46:40.000 kernel[0]: SMC::smcGetLightshowVers ERROR: smcReadKey LsNM failed (kSMCKeyNotFound)
    4/24/14 18:46:40.000 kernel[0]: SMC::smcPublishLightshowVersion ERROR: smcGetLightshowVers failed (kSMCKeyNotFound)
    4/24/14 18:46:40.000 kernel[0]: SMC::smcInitHelper ERROR: smcPublishLightshowVersion failed (kSMCKeyNotFound)
    4/24/14 18:46:40.000 kernel[0]: Previous Shutdown Cause: 5
    4/24/14 18:46:40.000 kernel[0]: SMC::smcInitHelper ERROR: MMIO regMap == NULL - fall back to old SMC mode
    4/24/14 18:46:42.933 com.apple.InternetSharing[43]: *** no interface for service
    4/24/14 18:46:44.644 com.apple.InternetSharing[43]: *** no interface for service
    4/24/14 18:46:45.000 kernel[0]: IOBluetoothUSBDFU::probe
    4/24/14 18:46:45.000 kernel[0]: IOBluetoothUSBDFU::probe ProductID - 0x821A FirmwareVersion - 0x0042
    4/24/14 18:46:45.000 kernel[0]: **** [IOBluetoothHostControllerUSBTransport][start] -- completed -- result = TRUE -- 0x4800 ****
    4/24/14 18:46:45.000 kernel[0]: **** [BroadcomBluetoothHostControllerUSBTransport][start] -- Completed -- 0x4800 ****
    4/24/14 18:46:46.549 awacsd[59]: KV HTTP 0
    4/24/14 18:46:46.850 com.apple.kextd[12]: kext com.protech.NoSleep  103019000 is in exception list, allowing to load
    4/24/14 18:46:46.874 com.apple.kextd[12]: kext com.Cycling74.driver.WondershareAudioDevice  105029000 is in exception list, allowing to load
    4/24/14 18:46:46.000 kernel[0]: init
    4/24/14 18:46:46.000 kernel[0]: probe
    4/24/14 18:46:46.000 kernel[0]: start
    4/24/14 18:46:46.000 kernel[0]: DSMOS has arrived
    4/24/14 18:46:46.000 kernel[0]: [IOBluetoothHCIController][staticBluetoothHCIControllerTransportShowsUp] -- Received Bluetooth Controller register service notification -- 0x4800
    4/24/14 18:46:46.000 kernel[0]: [IOBluetoothHCIController][start] -- completed
    4/24/14 18:46:46.000 kernel[0]: com_protech_nosleepextension: setting state: 1, for mode: 0 (ac-mode)
    4/24/14 18:46:46.000 kernel[0]: com_protech_nosleepextension: successfully started
    4/24/14 18:46:46.926 loginwindow[38]: Login Window Application Started
    4/24/14 18:46:46.000 kernel[0]: [IOBluetoothHCIController::setConfigState] calling registerService
    4/24/14 18:46:46.000 kernel[0]: **** [IOBluetoothHCIController][protectedBluetoothHCIControllerTransportShowsUp] -- Connected to the transport successfully -- 0x6c80 -- 0x0000 -- 0x4800 ****
    4/24/14 18:46:47.004 WindowServer[168]: Server is starting up
    4/24/14 18:46:47.015 mds[34]: (Normal) FMW: FMW 0 0
    4/24/14 18:46:47.040 com.apple.kextd[12]: Can't open CFBundle for /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_usb_connect.kext.
    4/24/14 18:46:47.041 com.apple.kextd[12]: Can't open CFBundle for /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_usb_connect.kext.
    4/24/14 18:46:47.041 com.apple.kextd[12]: Error: Kext /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_usb_connect.kext - not found/unable to create.
    4/24/14 18:46:47.046 Parallels[169]: Failed to load kernel extension prl_usb_connect.kext
    4/24/14 18:46:47.074 Parallels[171]: /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_usb_connect.kext failed to load - (libkern/kext) not found; check the system/kernel logs for errors or try kextutil(8).
    4/24/14 18:46:47.000 kernel[0]: mTail has not been written to hardware: mTail = 0x00000000, hardare tail register = 0x00000040
    4/24/14 18:46:47.171 Parallels[176]: Loading kernel extension prl_hypervisor.kext
    4/24/14 18:46:47.000 kernel[0]: en4: promiscuous mode enable succeeded
    4/24/14 18:46:47.194 WindowServer[168]: Session 256 retained (2 references)
    4/24/14 18:46:47.194 WindowServer[168]: Session 256 released (1 references)
    4/24/14 18:46:47.196 com.apple.kextd[12]: Can't open CFBundle for /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_hypervisor.kext.
    4/24/14 18:46:47.197 com.apple.kextd[12]: Can't open CFBundle for /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_hypervisor.kext.
    4/24/14 18:46:47.197 com.apple.InternetSharing[43]: *** no interface for service
    4/24/14 18:46:47.197 com.apple.kextd[12]: Error: Kext /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_hypervisor.kext - not found/unable to create.
    4/24/14 18:46:47.204 Parallels[180]: Failed to load kernel extension prl_hypervisor.kext
    4/24/14 18:46:47.213 WindowServer[168]: Session 256 retained (2 references)
    4/24/14 18:46:47.216 WindowServer[168]: init_page_flip: page flip mode is on
    4/24/14 18:46:47.254 UserEventAgent[11]: assertion failed: 13C64: com.apple.telemetry + 17682 [FDCB4ECA-3C5D-394A-BAEF-F6555BEB4239]: 0xffffffffe0000001
    4/24/14 18:46:47.269 Parallels[183]: /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_hypervisor.kext failed to load - (libkern/kext) not found; check the system/kernel logs for errors or try kextutil(8).
    4/24/14 18:46:47.272 WindowServer[168]: Found 13 modes for display 0x00000000 [8, 5]
    4/24/14 18:46:47.277 WindowServer[168]: Found 1 modes for display 0x00000000 [1, 0]
    4/24/14 18:46:47.280 WindowServer[168]: Found 1 modes for display 0x00000000 [1, 0]
    4/24/14 18:46:47.283 WindowServer[168]: Found 1 modes for display 0x00000000 [1, 0]
    4/24/14 18:46:47.285 WindowServer[168]: mux_initialize: kAGCGetMuxState (kMuxControl, kMuxControl_switchingMode) failed (0xe0000001)
    4/24/14 18:46:47.285 WindowServer[168]: mux_initialize: Mode is safe
    4/24/14 18:46:47.287 WindowServer[168]: Found 13 modes for display 0x00000000 [8, 5]
    4/24/14 18:46:47.288 mDNSResponder[35]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007F9004004D60 MacBook-Pro-de-Luis-4.local. (Addr) that's already in the list
    4/24/14 18:46:47.289 mDNSResponder[35]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007F90040051F0 1.0.0.127.in-addr.arpa. (PTR) that's already in the list
    4/24/14 18:46:47.289 mDNSResponder[35]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007F9004006960 MacBook-Pro-de-Luis-4.local. (AAAA) that's already in the list
    4/24/14 18:46:47.289 mDNSResponder[35]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007F9004006DF0 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.E.F.ip6.arpa. (PTR) that's already in the list
    4/24/14 18:46:47.291 WindowServer[168]: Found 1 modes for display 0x00000000 [1, 0]
    4/24/14 18:46:47.291 WindowServer[168]: Found 1 modes for display 0x00000000 [1, 0]
    4/24/14 18:46:47.292 WindowServer[168]: Found 1 modes for display 0x00000000 [1, 0]
    4/24/14 18:46:47.319 WindowServer[168]: WSMachineUsesNewStyleMirroring: false
    4/24/14 18:46:47.320 WindowServer[168]: Display 0x042731c0: GL mask 0x1; bounds (0, 0)[1280 x 800], 13 modes available
    Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model 9cc7, S/N 0, Unit 0, Rotation 0
    UUID 0xcb5a19e16c20c98ebb2d70fc3bb550b4
    4/24/14 18:46:47.320 WindowServer[168]: Display 0x003f0040: GL mask 0x10; bounds (0, 0)[3840 x 2160], 2 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 4, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    4/24/14 18:46:47.320 WindowServer[168]: Display 0x003f003f: GL mask 0x8; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    4/24/14 18:46:47.320 WindowServer[168]: Display 0x003f003e: GL mask 0x4; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    4/24/14 18:46:47.320 WindowServer[168]: Display 0x003f003d: GL mask 0x2; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    4/24/14 18:46:47.321 WindowServer[168]: WSSetWindowTransform: Singular matrix
    4/24/14 18:46:47.321 WindowServer[168]: WSSetWindowTransform: Singular matrix
    4/24/14 18:46:47.321 WindowServer[168]: WSSetWindowTransform: Singular matrix
    4/24/14 18:46:47.324 WindowServer[168]: Display 0x042731c0: GL mask 0x1; bounds (0, 0)[1280 x 800], 13 modes available
    Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model 9cc7, S/N 0, Unit 0, Rotation 0
    UUID 0xcb5a19e16c20c98ebb2d70fc3bb550b4
    4/24/14 18:46:47.324 WindowServer[168]: Display 0x003f0040: GL mask 0x10; bounds (2304, 0)[1 x 1], 2 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 4, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    4/24/14 18:46:47.324 WindowServer[168]: Display 0x003f003f: GL mask 0x8; bounds (2305, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    4/24/14 18:46:47.324 WindowServer[168]: Display 0x003f003e: GL mask 0x4; bounds (2306, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    4/24/14 18:46:47.324 WindowServer[168]: Display 0x003f003d: GL mask 0x2; bounds (2307, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    4/24/14 18:46:47.325 WindowServer[168]: CGXPerformInitialDisplayConfiguration
    4/24/14 18:46:47.325 WindowServer[168]:   Display 0x042731c0: Unit 0; Vendor 0x610 Model 0x9cc7 S/N 0 Dimensions 11.26 x 7.05; online enabled built-in, Bounds (0,0)[1280 x 800], Rotation 0, Resolution 1
    4/24/14 18:46:47.325 WindowServer[168]:   Display 0x003f0040: Unit 4; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2304,0)[1 x 1], Rotation 0, Resolution 1
    4/24/14 18:46:47.325 WindowServer[168]:   Display 0x003f003f: Unit 3; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2305,0)[1 x 1], Rotation 0, Resolution 1
    4/24/14 18:46:47.325 WindowServer[168]:   Display 0x003f003e: Unit 2; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2306,0)[1 x 1], Rotation 0, Resolution 1
    4/24/14 18:46:47.325 WindowServer[168]:   Display 0x003f003d: Unit 1; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2307,0)[1 x 1], Rotation 0, Resolution 1
    4/24/14 18:46:47.325 WindowServer[168]: CGXMuxBoot: Unexpected boot switch return value (0xe00002c7)
    4/24/14 18:46:47.409 WindowServer[168]: GLCompositor: GL renderer id 0x01024301, GL mask 0x0000001f, accelerator 0x000048b3, unit 0, caps QEX|MIPMAP, vram 451 MB
    4/24/14 18:46:47.409 WindowServer[168]: GLCompositor: GL renderer id 0x01024301, GL mask 0x0000001f, texture max 8192, viewport max {8192, 8192}, extensions FPRG|NPOT|GLSL|FLOAT
    4/24/14 18:46:47.410 WindowServer[168]: GLCompositor enabled for tile size [256 x 256]
    4/24/14 18:46:47.410 WindowServer[168]: CGXGLInitMipMap: mip map mode is on
    4/24/14 18:46:47.430 loginwindow[38]: **DMPROXY** Found `/System/Library/CoreServices/DMProxy'.
    4/24/14 18:46:47.437 sudo[199]:     root : TTY=unknown ; PWD=/ ; USER=root ; COMMAND=/Library/StartupItems/HWNetMgr/HWNetCfg
    4/24/14 18:46:47.441 Parallels[210]: Loading kernel extension prl_hid_hook.kext
    4/24/14 18:46:47.465 com.apple.kextd[12]: Can't open CFBundle for /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_hid_hook.kext.
    4/24/14 18:46:47.466 com.apple.kextd[12]: Can't open CFBundle for /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_hid_hook.kext.
    4/24/14 18:46:47.466 com.apple.kextd[12]: Error: Kext /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_hid_hook.kext - not found/unable to create.
    4/24/14 18:46:47.469 Parallels[216]: Failed to load kernel extension prl_hid_hook.kext
    4/24/14 18:46:47.652 Parallels[218]: /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_hid_hook.kext failed to load - (libkern/kext) not found; check the system/kernel logs for errors or try kextutil(8).
    4/24/14 18:46:47.880 Parallels[222]: Loading kernel extension prl_netbridge.kext
    4/24/14 18:46:47.910 com.apple.kextd[12]: Can't open CFBundle for /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_netbridge.kext.
    4/24/14 18:46:47.910 com.apple.kextd[12]: Can't open CFBundle for /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_netbridge.kext.
    4/24/14 18:46:47.910 com.apple.kextd[12]: Error: Kext /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_netbridge.kext - not found/unable to create.
    4/24/14 18:46:47.913 Parallels[226]: Failed to load kernel extension prl_netbridge.kext
    4/24/14 18:46:48.049 Parallels[228]: /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_netbridge.kext failed to load - (libkern/kext) not found; check the system/kernel logs for errors or try kextutil(8).
    4/24/14 18:46:48.120 Parallels[232]: Loading kernel extension prl_vnic.kext
    4/24/14 18:46:48.282 com.apple.kextd[12]: Can't open CFBundle for /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_vnic.kext.
    4/24/14 18:46:48.283 com.apple.kextd[12]: Can't open CFBundle for /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_vnic.kext.
    4/24/14 18:46:48.283 com.apple.kextd[12]: Error: Kext /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_vnic.kext - not found/unable to create.
    4/24/14 18:46:48.286 Parallels[236]: Failed to load kernel extension prl_vnic.kext
    4/24/14 18:46:48.595 Parallels[238]: /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_vnic.kext failed to load - (libkern/kext) not found; check the system/kernel logs for errors or try kextutil(8).
    4/24/14 18:46:48.782 Parallels[241]: Trying to load kernel extensions, exit status: 5
    4/24/14 18:46:49.017 Parallels[244]: Starting Parallels networking...
    4/24/14 18:46:49.063 WindowServer[168]: Display 0x042731c0: Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 12)
    4/24/14 18:46:49.104 launchctl[246]: com.apple.findmymacmessenger: Already loaded
    4/24/14 18:46:49.145 com.apple.SecurityServer[15]: Session 100004 created
    4/24/14 18:46:49.200 loginwindow[38]: Setting the initial value of the magsave brightness level 1
    4/24/14 18:46:49.244 loginwindow[38]: Login Window Started Security Agent
    4/24/14 18:46:49.262 UserEventAgent[249]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    4/24/14 18:46:49.322 WindowServer[168]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    4/24/14 18:46:49.367 WindowServer[168]: Display 0x042731c0: Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 12)
    4/24/14 18:46:49.370 SecurityAgent[255]: This is the first run
    4/24/14 18:46:49.371 SecurityAgent[255]: MacBuddy was run = 0
    4/24/14 18:46:49.385 WindowServer[168]: Display 0x042731c0: Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 12)
    4/24/14 18:46:49.406 WindowServer[168]: _CGXGLDisplayContextForDisplayDevice: acquired display context (0x7fff4be1aec0) - enabling OpenGL
    4/24/14 18:46:49.411 SecurityAgent[255]: User info context values set for luisfernandolins
    4/24/14 18:46:49.987 loginwindow[38]: Login Window - Returned from Security Agent
    4/24/14 18:46:50.015 loginwindow[38]: USER_PROCESS: 38 console
    4/24/14 18:46:50.000 kernel[0]: AppleKeyStore:Sending lock change 0
    4/24/14 18:46:50.941 com.apple.launchd.peruser.501[261]: Background: Aqua: Registering new GUI session.
    4/24/14 18:46:50.945 launchctl[264]: launchctl: Dubious file. Not of type .plist (skipping): /Users/luisfernandolins/Library/LaunchAgents/com.zeobit.MacKeeper.Helper
    4/24/14 18:46:50.961 com.apple.launchd.peruser.501[261]: (com.spotify.webhelper) Unknown key: SpotifyPath
    4/24/14 18:46:50.962 com.apple.launchd.peruser.501[261]: (com.apple.EscrowSecurityAlert) Unknown key: seatbelt-profiles
    4/24/14 18:46:50.963 com.apple.launchd.peruser.501[261]: (com.apple.ReportCrash) Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    4/24/14 18:46:50.966 launchctl[264]: com.apple.pluginkit.pkd: Already loaded
    4/24/14 18:46:50.966 launchctl[264]: com.apple.sbd: Already loaded
    4/24/14 18:46:50.981 distnoted[266]: # distnote server agent  absolute time: 70.704574643   civil time: Thu Apr 24 18:46:50 2014   pid: 266 uid: 501  root: no
    4/24/14 18:46:51.641 UserEventAgent[265]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    4/24/14 18:46:51.000 kernel[0]: directed SSID scan fail
    4/24/14 18:46:52.153 SystemStarter[190]: StartOuc (198) did not complete successfully
    4/24/14 18:46:52.154 SystemStarter[190]: The following StartupItems failed to start properly:
    4/24/14 18:46:52.154 SystemStarter[190]: /Library/StartupItems/StartOuc
    4/24/14 18:46:52.154 SystemStarter[190]:  - execution of Startup script failed
    4/24/14 18:46:52.155 WindowServer[168]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    4/24/14 18:46:52.294 WindowServer[168]: Display 0x042731c0: Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 12)
    4/24/14 18:46:53.414 prl_net_start[247]: Failed to configure Parallels Adapter 0 for network Shared
    4/24/14 18:46:53.420 prl_net_start[247]: Failed to configure Parallels Adapter 1 for network Host-Only
    4/24/14 18:46:53.580 mds[34]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    4/24/14 18:46:53.602 Parallels[309]: Parallels networking sucessfully started
    4/24/14 18:46:53.607 sharingd[297]: Starting Up...
    4/24/14 18:46:53.624 prl_naptd[307]: Starting Parallels Network Daemon
    4/24/14 18:46:53.628 Parallels[311]: Restarting CiscoVPN
    4/24/14 18:46:53.717 SystemStarter[315]: Unknown service: CiscoVPN
    4/24/14 18:46:53.728 Parallels[318]: Starting Parallels Dispatcher Service
    4/24/14 18:46:54.048 Parallels[325]: Parallels Dispatcher Service sucessfully started
    4/24/14 18:46:54.074 prl_naptd[307]: BUG in libdispatch client: kevent[EVFILT_WRITE] delete: "No such file or directory" - 0x2
    4/24/14 18:46:54.076 prl_naptd[307]: Failed to start: error 718; Parallels Network Daemon will restart in one minute or after receiving of some signal.
    4/24/14 18:46:54.134 xpcproxy[328]: assertion failed: 13C64: xpcproxy + 3438 [D559FC96-E6B1-363A-B850-C7AC9734F210]: 0x2
    4/24/14 18:46:54.145 com.apple.SecurityServer[15]: Session 100005 created
    4/24/14 18:46:54.167 com.apple.audio.DriverHelper[295]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelDevice.
    4/24/14 18:46:54.167 com.apple.audio.DriverHelper[295]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelSharedUserClient.
    4/24/14 18:46:54.168 com.apple.audio.DriverHelper[295]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDSIVideoContext.
    4/24/14 18:46:54.168 com.apple.audio.DriverHelper[295]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class Gen6DVDContext.
    4/24/14 18:46:54.168 com.apple.audio.DriverHelper[295]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelDevice.
    4/24/14 18:46:54.168 com.apple.audio.DriverHelper[295]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelSharedUserClient.
    4/24/14 18:46:54.168 com.apple.audio.DriverHelper[295]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMain.
    4/24/14 18:46:54.168 com.apple.audio.DriverHelper[295]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMedia.
    4/24/14 18:46:54.168 com.apple.audio.DriverHelper[295]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextVEBox.
    4/24/14 18:46:54.169 com.apple.audio.DriverHelper[295]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOBluetoothDeviceUserClient.
    4/24/14 18:46:54.169 com.apple.audio.DriverHelper[295]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOHIDParamUserClient.
    4/24/14 18:46:54.169 com.apple.audio.DriverHelper[295]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOSurfaceRootUserClient.
    4/24/14 18:46:54.169 com.apple.audio.DriverHelper[295]: The plug-in named AirPlay.driver requires extending the sandbox for the mach service named com.apple.AirPlayXPCHelper.
    4/24/14 18:46:54.169 com.apple.audio.DriverHelper[295]: The plug-in named AirPlay.driver requires extending the sandbox for the mach service named com.apple.blued.
    4/24/14 18:46:54.207 com.apple.audio.DriverHelper[295]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the IOKit user-client class IOBluetoothDeviceUserClient.
    4/24/14 18:46:54.208 com.apple.audio.DriverHelper[295]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.blued.
    4/24/14 18:46:54.208 com.apple.audio.DriverHelper[295]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.bluetoothaudiod.
    4/24/14 18:46:54.313 com.apple.IconServicesAgent[333]: IconServicesAgent launched.
    4/24/14 18:46:54.544 WindowServer[168]: disable_update_timeout: UI updates were forcibly disabled by application "SystemUIServer" for over 1.00 seconds. Server has re-enabled them.
    4/24/14 18:46:54.958 xpcproxy[336]: assertion failed: 13C64: xpcproxy + 3438 [D559FC96-E6B1-363A-B850-C7AC9734F210]: 0x2
    4/24/14 18:46:55.025 com.apple.SecurityServer[15]: Session 100008 created
    4/24/14 18:46:55.390 WindowServer[168]: common_reenable_update: UI updates were finally reenabled by application "SystemUIServer" after 1.86 seconds (server forcibly re-enabled them after 1.01 seconds)
    4/24/14 18:46:55.758 SystemUIServer[280]: Cannot find executable for CFBundle 0x7fbbda58bf30 </System/Library/CoreServices/Menu Extras/Clock.menu> (not loaded)
    4/24/14 18:46:55.784 SystemUIServer[280]: Cannot find executable for CFBundle 0x7fbbda585c90 </System/Library/CoreServices/Menu Extras/Battery.menu> (not loaded)
    4/24/14 18:46:55.785 SystemUIServer[280]: Cannot find executable for CFBundle 0x7fbbda58b4f0 </System/Library/CoreServices/Menu Extras/Volume.menu> (not loaded)
    4/24/14 18:46:56.032 coreaudiod[282]: 2014-04-24 06:46:56.031416 PM [AirPlay] AirPlay: Performing audio format change for 4 (AP Out) to PCM/44100/16/2
    4/24/14 18:46:57.095 WindowServer[168]: disable_update_timeout: UI updates were forcibly disabled by application "SystemUIServer" for over 1.00 seconds. Server has re-enabled them.
    4/24/14 18:46:57.895 WindowServer[168]: common_reenable_update: UI updates were finally reenabled by application "SystemUIServer" after 1.80 seconds (server forcibly re-enabled them after 1.00 seconds)
    4/24/14 18:46:57.939 SystemUIServer[280]: *** WARNING: -[NSImage compositeToPoint:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    4/24/14 18:46:57.940 SystemUIServer[280]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    4/24/14 18:46:58.034 accountsd[347]: assertion failed: 13C64: liblaunch.dylib + 25164 [38D1AB2C-A476-385F-8EA8-7AB604CA1F89]: 0x25
    4/24/14 18:46:58.146 com.apple.iCloudHelper[328]: AOSKit ERROR: Config request failed, url=https://setup.icloud.com/configurations/init, requestHeaders=
        "Accept-Language" = "en-us";
        "X-Mme-Client-Info" = "<MacBookPro8,1> <Mac OS X;10.9.2;13C64> <com.apple.AOSKit/176>";
        "X-Mme-Country" = BR;
        "X-Mme-Nac-Version" = 11A457;
        "X-Mme-Timezone" = "GMT-3";
    error=Error Domain=kCFErrorDomainCFNetwork Code=-1009 "The Internet connection appears to be offline." UserInfo=0x7fc252e0e370 {NSErrorFailingURLStringKey=https://setup.icloud.com/configurations/init, NSLocalizedDescription=The Internet connection appears to be offline., NSErrorFailingURLKey=https://setup.icloud.com/configurations/init}, httpStatusCode=-1, responseHeaders=
    (null)
    4/24/14 18:46:58.000 kernel[0]: MacAuthEvent en1   Auth result for: a4:b1:e9:79:78:17  MAC AUTH succeeded
    4/24/14 18:46:58.000 kernel[0]: wlEvent: en1 en1 Link UP virtIf = 0
    4/24/14 18:46:58.000 kernel[0]: AirPort: Link Up on en1
    4/24/14 18:46:58.000 kernel[0]: en1: BSSID changed to a4:b1:e9:79:78:17
    4/24/14 18:46:58.000 kernel[0]: AirPort: RSN handshake complete on en1
    4/24/14 18:46:58.491 com.apple.iCloudHelper[328]: AOSKit ERROR: Config request failed, url=https://setup.icloud.com/configurations/init, requestHeaders=
        "Accept-Language" = "en-us";
        "X-Mme-Client-Info" = "<MacBookPro8,1> <Mac OS X;10.9.2;13C64> <com.apple.AOSKit/176>";
        "X-Mme-Country" = BR;
        "X-Mme-Nac-Version" = 11A457;
        "X-Mme-Timezone" = "GMT-3";
    error=Error Domain=kCFErrorDomainCFNetwork Code=-1009 "The Internet connection appears to be offline." UserInfo=0x7fc252c1da50 {NSErrorFailingURLStringKey=https://setup.icloud.com/configurations/init, NSLocalizedDescription=The Internet connection appears to be offline., NSErrorFailingURLKey=https://setup.icloud.com/configurations/init}, httpStatusCode=-1, responseHeaders=
    (null)
    4/24/14 18:46:58.492 com.apple.iCloudHelper[328]: AOSKit ERROR: Setup request failed, appleID=1047286319, url=(null), requestHeaders=
    (null),
    error=Error Domain=AOSErrorDomain Code=1000 "The operation couldn’t be completed. (AOSErrorDomain error 1000.)" UserInfo=0x7fc252c202a0 {HttpStatusCode=0, DialogInfo={
        DialogType = Unknown;
    }}, httpStatusCode=0, responseHeaders=
    (null),
    responseBody=
    (null)
    4/24/14 18:46:58.000 kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    4/24/14 18:46:58.707 com.apple.SecurityServer[15]: Session 100010 created
    4/24/14 18:46:59.734 com.apple.iCloudHelper[328]: AOSKit ERROR: Config request failed, url=https://setup.icloud.com/configurations/init, requestHeaders=
        "Accept-Language" = "en-us";
        "X-Mme-Client-Info" = "<MacBookPro8,1> <Mac OS X;10.9.2;13C64> <com.apple.AOSKit/176>";
        "X-Mme-Country" = BR;
        "X-Mme-Nac-Version" = 11A457;
        "X-Mme-Timezone" = "GMT-3";
    error=Error Domain=kCFErrorDomainCFNetwork Code=-1009 "The Internet connection appears to be offline." UserInfo=0x7fc252f3d840 {NSErrorFailingURLStringKey=https://setup.icloud.com/configurations/init, NSLocalizedDescription=The Internet connection appears to be offline., NSErrorFailingURLKey=https://setup.icloud.com/configurations/init}, httpStatusCode=-1, responseHeaders=
    (null)
    4/24/14 18:46:59.817 com.apple.iCloudHelper[328]: AOSKit ERROR: Config request failed, url=https://setup.icloud.com/configurations/init, requestHeaders=
        "Accept-Language" = "en-us";
        "X-Mme-Client-Info" = "<MacBookPro8,1> <Mac OS X;10.9.2;13C64> <com.apple.AOSKit/176>";
        "X-Mme-Country" = BR;
        "X-Mme-Nac-Version" = 11A457;
        "X-Mme-Timezone" = "GMT-3";
    error=Error Domain=kCFErrorDomainCFNetwork Code=-1009 "The Internet connection appears to be offline." UserInfo=0x7fc252f3e850 {NSErrorFailingURLStringKey=https://setup.icloud.com/configurations/init, NSLocalizedDescription=The Internet connection appears to be offline., NSErrorFailingURLKey=https://setup.icloud.com/configurations/init}, httpStatusCode=-1, responseHeaders=
    (null)
    4/24/14 18:46:59.818 com.apple.iCloudHelper[328]: AOSKit ERROR: Setup request failed, appleID=1647185353, url=(null), requestHeaders=
    (null),
    error=Error Domain=AOSErrorDomain Code=1000 "The operation couldn’t be completed. (AOSErrorDomain error 1000.)" UserInfo=0x7fc252c1a500 {HttpStatusCode=0, DialogInfo={
        DialogType = Unknown;
    }}, httpStatusCode=0, responseHeaders=
    (null),
    responseBody=
    (null)
    4/24/14 18:46:59.898 com.apple.iCloudHelper[328]: AOSKit ERROR: Config request failed, url=https://setup.icloud.com/configurations/init, requestHeaders=
        "Accept-Language" = "en-us";
        "X-Mme-Client-Info" = "<MacBookPro8,1> <Mac OS X;10.9.2;13C64> <com.apple.AOSKit/176>";
        "X-Mme-Country" = BR;
        "X-Mme-Nac-Version" = 11A457;
        "X-Mme-Timezone" = "GMT-3";
    error=Error Domain=kCFErrorDomainCFNetwork Code=-1009 "The Internet connection appears to be offline." UserInfo=0x7fc252f3e050 {NSErrorFailingURLStringKey=https://setup.icloud.com/configurations/init, NSLocalizedDescription=The Internet connection appears to be offline., NSErrorFailingURLKey=https://setup.icloud.com/configurations/init}, httpStatusCode=-1, responseHeaders=
    (null)
    4/24/14 18:46:59.964 com.apple.iCloudHelper[328]: AOSKit ERROR: Config request failed, url=https://setup.icloud.com/configurations/init, requestHeaders=
        "Accept-Language" = "en-us";
        "X-Mme-Client-Info" = "<MacBookPro8,1> <Mac OS X;10.9.2;13C64> <com.apple.AOSKit/176>";
        "X-Mme-Country" = BR;
        "X-Mme-Nac-Version" = 11A457;
        "X-Mme-Timezone" = "GMT-3";
    error=Error Domain=kCFErrorDomainCFNetwork Code=-1009 "The Internet connection appears to be offline." UserInfo=0x7fc252f08480 {NSErrorFailingURLStringKey=https://setup.icloud.com/configurations/init, NSLocalizedDescription=The Internet connection appears to be offline., NSErrorFailingURLKey=https://setup.icloud.com/configurations/init}, httpStatusCode=-1, responseHeaders=
    (null)
    4/24/14 18:46:59.964 com.apple.iCloudHelper[328]: AOSKit ERROR: Setup request failed, appleID=291933891, url=(null), requestHeaders=
    (null),
    error=Error Domain=AOSErrorDomain Code=1000 "The operation couldn’t be completed. (AOSErrorDomain error 1000.)" UserInfo=0x7fc252f07ad0 {HttpStatusCode=0, DialogInfo={
        DialogType = Unknown;
    }}, httpStatusCode=0, responseHeaders=
    (null),
    responseBody=
    (null)
    4/24/14 18:47:02.528 com.apple.launchd.peruser.501[261]: (com.parallels.desktop.client.launch[371]) Job failed to exec(3). Setting up event to tell us when to try again: 2: No such file or directory
    4/24/14 18:47:02.528 com.apple.launchd.peruser.501[261]: (com.parallels.desktop.client.launch[371]) Job failed to exec(3) for weird reason: 2
    4/24/14 18:47:02.667 prl_naptd[370]: Starting Parallels Network Daemon
    4/24/14 18:47:02.668 com.apple.launchd.peruser.501[261]: (com.apple.iTunesHelper.30304[383]) Spawned and waiting for the debugger to attach before continuing...
    4/24/14 18:47:02.688 SocialPushAgent[359]: ApplePushService: APSConnection being used without a delegate queue
    4/24/14 18:47:02.711 WiFiKeychainProxy[358]: [NO client logger] <Nov 10 2013 18:30:13> WIFICLOUDSYNC WiFiCloudSyncEngineCreate: created...
    4/24/14 18:47:02.711 WiFiKeychainProxy[358]: [NO client logger] <Nov 10 2013 18:30:13> WIFICLOUDSYNC WiFiCloudSyncEngineRegisterCallbacks: WiFiCloudSyncEngineCallbacks version - 0, bundle id - com.apple.wifi.WiFiKeychainProxy
    4/24/14 18:47:04.495 com.apple.InternetSharing[43]: *** no interface for service
    4/24/14 18:47:04.500 configd[56]: network changed: DNS* Proxy
    4/24/14 18:47:04.505 UserEventAgent[11]: Captive: [CNInfoNetworkActive:1655] en1: SSID 'LFLINS' making interface primary (protected network)
    4/24/14 18:47:04.505 UserEventAgent[11]: Captive: CNPluginHandler en1: Evaluating
    4/24/14 18:47:04.511 UserEventAgent[11]: Captive: en1: Probing 'LFLINS'
    4/24/14 18:47:04.515 configd[56]: network changed: v4(en1!:192.168.1.72) DNS+ Proxy+ SMB
    4/24/14 18:47:05.355 com.apple.time[265]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    4/24/14 18:47:05.390 configd[56]: setting hostname to "mbp-de-luis-4.lan"
    4/24/14 18:47:05.414 UserEventAgent[11]: Captive: CNPluginHandler en1: Authenticated
    4/24/14 18:47:08.733 com.apple.time[265]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    4/24/14 18:47:08.747 com.apple.launchd.peruser.501[261]: (com.apple.mrt.uiagent[362]) Exited with code: 255
    4/24/14 18:47:08.780 ntpd[186]: proto: precision = 1.000 usec
    4/24/14 18:47:08.974 secd[342]:  __EnsureFreshParameters_block_invoke_2 SOSCloudKeychainSynchronizeAndWait: The operation couldn’t be completed. (SyncedDefaults error 1020 - Remote error : Network unreachable)
    4/24/14 18:47:08.975 secd[342]:  __talkWithKVS_block_invoke callback error: The operation couldn’t be completed. (SyncedDefaults error 1020 - Remote error : Network unreachable)
    4/24/14 18:47:09.065 airportd[63]: _doAutoJoin: Already associated to “LFLINS”. Bailing on auto-join.
    4/24/14 18:47:10.326 com.apple.internetaccounts[336]: [Warning] ************* com.apple.internetaccounts timed out connecting to imagent, please file a radar, and attach the stackshots generated ***********************
    4/24/14 18:47:10.326 com.apple.internetaccounts[336]: [Warning] ************* com.apple.internetaccounts timed out connecting to imagent, please file a radar, and attach the stackshots generated ***********************
    4/24/14 18:47:10.375 mds[34]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    4/24/14 18:47:10.920 REUpdater[372]: VERSION is 141
    4/24/14 18:47:12.143 AirPlayUIAgent[330]: 2014-04-24 06:47:12.143216 PM [AirPlayUIAgent] Changed PIN pairing: no
    4/24/14 18:47:12.962 mds[34]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    4/24/14 18:47:15.033 secd[342]:  SecErrorGetOSStatus unknown error domain: com.apple.security.sos.error for error: The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)
    4/24/14 18:47:15.033 secd[342]:  securityd_xpc_dictionary_handler WiFiKeychainProx[358] DeviceInCircle The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)
    4/24/14 18:47:15.060 com.apple.time[265]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    4/24/14 18:47:15.275 AirPlayUIAgent[330]: 2014-04-24 06:47:15.275080 PM [AirPlayUIAgent] Changed PIN pairing: no
    4/24/14 18:47:17.030 syncdefaultsd[321]: [AOSAccounts] : IAAppProvider::CopyAccountUIDForUser Timed out waiting
    4/24/14 18:47:17.268 digest-service[72]: digest-request: uid=0
    4/24/14 18:47:17.268 digest-service[72]: digest-request: init request
    4/24/14 18:47:17.275 digest-service[72]: digest-request: init return domain: MBP-DE-LUIS-4 server: MBP-DE-LUIS-4 indomain was: <NULL>
    4/24/14 18:47:17.400 com.apple.NotesMigratorService[398]: Joined Aqua audit session
    4/24/14 18:47:17.418 racoon[401]: accepted connection on vpn control socket.
    4/24/14 18:47:17.835 com.apple.internetaccounts[336]: An instance 0x7fc03bfd4940 of class IMAPMailbox was deallocated while key value observers were still registered with it. Observation info was leaked, and may even become mistakenly attached to some other object. Set a breakpoint on NSKVODeallocateBreak to stop here in the debugger. Here's the current observation info:
    <NSKeyValueObservationInfo 0x7fc03bfd5680> (
    <NSKeyValueObservance 0x7fc03bfd57f0: Observer: 0x7fc03bfc98d0, Key path: uidNext, Options: <New: NO, Old: NO, Prior: NO> Context: 0x7fff8e1bd43b, Property: 0x7fc03bfd5650>
    4/24/14 18:47:17.844 com.apple.internetaccounts[336]: An instance 0x7fc03bd87e60 of class IMAPMailbox was deallocated while key value observers were still registered with it. Observation info was leaked, and may even become mistakenly attached to some other object. Set a breakpoint on NSKVODeallocateBreak to stop here in the debugger. Here's the current observation info:
    <NSKeyValueObservationInfo 0x7fc03bd87f80> (
    <NSKeyValueObservance 0x7fc03bd87f10: Observer: 0x7fc03bd88c30, Key path: uidNext, Options: <New: NO, Old: NO, Prior: NO> Context: 0x7fff8e1bd43b, Property: 0x7fc03bfd5650>
    4/24/14 18:47:18.226 digest-service[72]: digest-request: uid=0
    4/24/14 18:47:18.227 digest-service[72]: digest-request: init request
    4/24/14 18:47:18.229 com.apple.internetaccounts[336]: An instance 0x7fc03e00f500 of class IMAPMailbox was deallocated while key value observers were still registered with it. Observation info was leaked, and may even become mistakenly attached to some other object. Set a breakpoint on NSKVODeallocateBreak to stop here in the debugger. Here's the current observation info:
    <NSKeyValueObservationInfo 0x7fc03e00e210> (
    <NSKeyValueObservance 0x7fc03e000190: Observer: 0x7fc03e003a50, Key path: uidNext, Options: <New: NO, Old: NO, Prior: NO> Context: 0x7fff8e1bd43b, Property: 0x7fc03bfd5650>
    4/24/14 18:47:18.234 digest-service[72]: digest-request: init return domain: MBP-DE-LUIS-4 server: MBP-DE-LUIS-4 indomain was: <NULL>
    4/24/14 18:47:18.245 com.apple.time[265]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    4/24/14 18:47:18.570 REUpdater[372]: REUpdate : Did not download since you have the version equal or later than that on the server
    4/24/14 18:47:20.234 com.apple.dock.extra[396]: iPhotoDockTilePlugin: Unable to get dock badge information: connection timeout: did not receive reply
    4/24/14 18:47:21.886 AllMyMusicAgent[369]: SARAgent newAgent
    4/24/14 18:47:22.544 mds[34]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    4/24/14 18:47:23.589 sandboxd[384]: ([367]) assistantd(367) deny file-read-data /Library/Frameworks/TSLicense.framework/Versions/A/TSLicense
    4/24/14 18:47:26.529 AddressBookManager[382]: Validate metadata timed out, cancelling
    4/24/14 18:47:26.556 com.apple.imfoundation.IMRemoteURLConnectionAgent[391]: ERROR: __CFURLCache:CreateTablesAndIndexes version create - table cfurl_cache_schema_version already exists. ErrCode: 1.
    4/24/14 18:47:26.557 com.apple.imfoundation.IMRemoteURLConnectionAgent[391]: __CFURLCache:RecreateEmptyPersistentStoreOnDiskAndOpen: create tables and index failed.
    4/24/14 18:47:27.757 PhotoStreamAgent[357]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    4/24/14 18:47:28.757 PhotoStreamAgent[357]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    4/24/14 18:47:28.909 WindowServer[168]: disable_update_timeout: UI updates were forcibly disabled by application "Mail" for over 1.00 seconds. Server has re-enabled them.
    4/24/14 18:47:29.758 PhotoStreamAgent[357]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    4/24/14 18:47:30.760 PhotoStreamAgent[357]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    4/24/14 18:47:31.761 PhotoStreamAgent[357]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    4/24/14 18:47:31.887 SafariDAVClient[381]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    4/24/14 18:47:32.762 PhotoStreamAgent[357]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    4/24/14 18:47:32.918 SafariDAVClient[381]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    4/24/14 18:47:33.975 SafariDAVClient[381]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    4/24/14 18:47:34.980 SafariDAVClient[381]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    4/24/14 18:47:36.041 SafariDAVClient[381]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    4/24/14 18:47:37.113 SafariDAVClient[381]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    4/24/14 18:47:38.169 SafariDAVClient[381]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    4/24/14 18:47:39.238 secd[342]:  SecErrorGetOSStatus unknown error domain: com.apple.security.sos.error for error: The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)
    4/24/14 18:47:39.238 secd[342]:  securityd_xpc_dictionary_handler AddressBookSourc[380] DeviceInCircle The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)
    4/24/14 18:47:39.946 AddressBookSourceSync[380]: [CardDAVPlugin-ERROR] -getPrincipalInfo:[_controller supportsRequestCompressionAtURL:https://luisfernandolins%[email protected]/1047286319/principal///luisfernandolins%[email protected]/1047286319/principal/] Error Domain=NSURLErrorDomain Code=-1001 "The request timed out." UserInfo=0x7fa5eb81cb60 {NSUnderlyingError=0x7fa5e9651cb0 "The request timed out.", NSErrorFailingURLStringKey=https://luisfernandolins%[email protected]/1047286319/principal/[email protected]/1047286319/principal/, NSErrorFailingURLKey=https://luisfernandolins%[email protected]/1047286319/principal///luisfernandolins%[email protected]/1047286319/principal/, NSLocalizedDescription=The request timed out.}
    4/24/14 18:47:40.011 AddressBookSourceSync[380]: [AOSAccounts] : [IsAccountKeyChainActive] : had error: The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Remote error : The operation couldn‚Äôt be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call))
    4/24/14 18:47:40.013 secd[342]:  SecErrorGetOSStatus unknown error domain: com.apple.security.sos.error for error: The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)
    4/24/14 18:47:40.013 secd[342]:  securityd_xpc_dictionary_handler AddressBookSourc[380] DeviceInCircle The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)
    4/24/14 18:47:40.017 AddressBookSourceSync[380]: [AOSAccounts] : [IsAccountKeyChainActive] :

    If it's slow on startup it would be extensions loading or LaunchDaemons starting up. 
    You should have a look in:
    /Library/LaunchDaemons
    /Library/Extensions
    You can count out anything in your home folder and it shouldn't put anything in /System as that's reserved for Apple. 

  • Inconsiste​nt Parallel Loop Performanc​e

    My original question was can traditional DAQ devices run in parallel loops? I have some extensive data processing and additional automation that would be a lot easier to do in parallel with an acquisition loop rather than cram it all into the acquisition's while loop. As I was building an example VI, I discovered the answer seems to be "sometimes".
    I am working on a calibration rig for hot wire anemometers. It requires pressure values to be read into a PCI-4351 (traditional DAQ) for the duration of the calibration and record wire voltages to a PCI-6110 (DAQmx device) only when the pressure values have settled (i.e. the stream velocity is constant). Inevitably, both devices will be polling data simultaneously at some point.
    It seems that the 4351 would transfer its data to a parallel loop, but not when 6110 was running and vice versa - and sometimes the buttons to stop the loops wouldn't work. Will traditional DAQ and DAQmx devices not perform parallel tasks simultaneously?
    The attached VI might clear up the parallel structures I'm talking about.
    Andrew
    Andrew
    Attachments:
    ParallelLoopsExample.vi ‏32 KB

    Altenbach,
    You pointed me a good direction - I wasn't familiar with action engines until you mentioned them, but after some reading (namely Ben's AE nugget), you have me convinced (although not entirely sure on how to proceed) so here come the questions!
    1. I tried to use Ben's running average example as a template - what should the cases inside my AE be? Right now they're "initialize", "acquire", and "close". However, I have to pass a value from initialize to acquire to close - so as is, the VI won't run.
    2. Ben had his AE in a loop to add data to the array and in another loop to perform the running average calculation. Since you end up with two of the same thing in your BD, how is this better than creating a local variable?
    3. Best practice? I'm pulling values from several channels - should I isolate each channel an put it into its own SR within the AE or keep the data together and have a single SR for the 2D array?
    I don't expect anybody to have the 4351 drivers installed - so the what you're probably seeing as three "?" VIs in the "Initialize" panel are the VIs needed to initialize the device (sampling rate, number of scans, etc.), the single "?" in "Acquire" reads the data and the two in "Close" end the acquisition.
    Brad,
    Thanks for the tip - I'll keep that in mind when I'm implementing the 6110 acquisition into my code
    Andrew
    Attachments:
    InputAE.vi ‏20 KB

  • Error while executing a Package in Parallel.

    Hi All,
    We are trying to execute a package in parallel. Our execution stopped while when the package is running for the sixth time. The error for that execution is as follows :
    ODI-1241: Oracle Data Integrator tool execution fails.
    Caused By: oracle.odi.runtime.agent.invocation.InvocationException: HTTP/1.1 500 Could not get JDBC Connection; nested exception is java.sql.SQLException: Exception occurred while getting connection: oracle.ucp.UniversalConnectionPoolException: Cannot get Connection from Datasource
    at oracle.odi.runtime.agent.invocation.RemoteRuntimeAgentInvoker.invoke(RemoteRuntimeAgentInvoker.java:271)
    at oracle.odi.runtime.agent.invocation.support.InternalRemoteRuntimeAgentInvoker.invokeStartScenario(InternalRemoteRuntimeAgentInvoker.java:149)
    at com.sunopsis.dwg.tools.StartScen.actionExecute(StartScen.java:266)
    at com.sunopsis.dwg.function.SnpsFunctionBaseRepositoryConnected.execute(SnpsFunctionBaseRepositoryConnected.java:155)
    at com.sunopsis.dwg.dbobj.SnpSessTaskSql.execIntegratedFunction(SnpSessTaskSql.java:3185)
    at com.sunopsis.dwg.dbobj.SnpSessTaskSql.execIntegratedFunction(SnpSessTaskSql.java:1414)
    at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTaskTrt(SnpSessTaskSql.java:2785)
    at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTask(SnpSessTaskSql.java:2515)
    at com.sunopsis.dwg.dbobj.SnpSessStep.treatAttachedTasks(SnpSessStep.java:534)
    at com.sunopsis.dwg.dbobj.SnpSessStep.treatSessStep(SnpSessStep.java:449)
    at com.sunopsis.dwg.dbobj.SnpSession.treatSession(SnpSession.java:1954)
    at com.sunopsis.dwg.dbobj.SnpSession.treatSession(SnpSession.java:1818)
    at oracle.odi.runtime.agent.processor.impl.StartScenRequestProcessor$2.doAction(StartScenRequestProcessor.java:559)
    at oracle.odi.core.persistence.dwgobject.DwgObjectTemplate.execute(DwgObjectTemplate.java:224)
    .....Some more
    Can anyone suggest your pointers on this.?
    Regards.

    It looks like you have exceeded the number of connections available for the datasource. Try checking your connection pool settings.

Maybe you are looking for