Very slowly work EJB with big collection of data

Hello all.
I am doing the applicayion, and want to realize there paginal output of data from DB to jsp page. I use mysql and Sun AppServer 8.2. There are more than 100 000 rows in db. request to database executes near 1 minute. Tell me please how i can to optimize my code or suggest to do it another way.
it is Stateless Session Bean method
  public Collection<CallBean> selectAllCalls(Integer page) {
      try {
         ArrayList<CallBean> returnlist = new ArrayList<CallBean>();// it is not safe conversion, but woks =)
      ArrayList<CallLocalObject> list = (ArrayList<CallLocalObject>)
            callHome.findAll();
         int from = 0;
         int to   = 0;
         Integer i = list.size();
         pages = i/5;
         if(i%5 > 0) pages++;
         curPage = page;
         if(page > 0 && page != 1 && page < pages) {
            from = 5 * (page - 1);
            to = from + 5;
         if(page == 1) {
            from = 0;
            to = 5;
         if(page == pages) {
            from = 5 * (page - 1);
            to = i;
         for(CallLocalObject call: list.subList(from, to)) {
            CallBean bean = new CallBean();
            bean.setPk((PrimaryKey) call.getPrimaryKey());
            bean.setRingDate(call.getRingDate());
            bean.setDescription(call.getDescription());
            bean.setDuration(call.getDuration());
            bean.setClient(call.getClientBean());
            bean.setUser(call.getUserBean());
            returnlist.add(bean);
         return returnlist;
      } catch (Exception e) {
         e.printStackTrace();
         throw new EJBException(e);
   }

Tell me please how i can to optimize my code
or suggest to do it another way.
You should not use entity beans to display large data sets.
You can use JDBC and apply this design pattern:
http://www.corej2eepatterns.com/Patterns2ndEd/ValueListHandler.htm
Or you can use Hibernate, it supports pagination and it works very well. Here is my code, you can use it if you wish.
    public List searchDomainObjectsWithPaging(Class domainObjectClass,Map searchParams, int firstResult, int numberOfResults) throws PersistenceServiceException
        Set criterions = new HashSet();
        for (Iterator iter=searchParams.keySet().iterator() ; iter.hasNext() ;)
            String propertyName = (String) iter.next();
            criterions.add(Expression.eq(propertyName, searchParams.get(propertyName)));
        return searchDomainObjectsWithPaging(domainObjectClass,criterions,null, firstResult, numberOfResults);
private List searchDomainObjectsWithPaging(Class domainObjectClass,Set setOfCriterions,String orderBy, int firstResult, int numberOfResults) throws PersistenceServiceException
        List list;
        try
            Session session = HibernateUtil.openSession();
            Criteria criteria = session.createCriteria(domainObjectClass).setFirstResult(firstResult).setMaxResults(numberOfResults);
            if (orderBy!=null && !orderBy.equals(""))
                criteria.addOrder(Order.asc(orderBy));
            for (Iterator iter = setOfCriterions.iterator(); iter.hasNext() ;)
                criteria.add((Criterion) iter.next());
            return criteria.list();
        catch (HibernateException ex)
            log.error("Cannot read "+CommonLib.simpleClassname(domainObjectClass),ex );
            throw new PersistenceServiceException("Cannot read "+CommonLib.simpleClassname(domainObjectClass),ex);
    }The only problem is that Hibernate doesn't have any built-in method to find how many records are in database that match you' r search criteria, but you can write a method that creates SELECT COUNT(*) query dynamicaly and it works quite fast.
    public int countSearchResultRecords(Class domainObjectClass ,Map searchParams, String extraWhereClause,Map extraSearchParams) throws PersistenceServiceException
        int result =0;
        try
            Session session = HibernateUtil.openSession();
            StringBuffer queryBuff = new StringBuffer("SELECT count(*) FROM "+domainObjectClass.getName()+" o ");
            int num=0;
            for (Iterator iter = searchParams.keySet().iterator(); iter.hasNext() ;)
                String name = (String) iter.next();
                queryBuff.append(num++==0 ? " WHERE " : " AND ");
                queryBuff.append("o."+name+"=:"+name);
            if (extraWhereClause!=null && !extraWhereClause.equals(""))
                queryBuff.append(num++==0 ? " WHERE " : " AND ");
                queryBuff.append(extraWhereClause);
            Query queryCount = session.createQuery(queryBuff.toString());
            addQueryParameters(queryCount,searchParams);
            if (extraSearchParams!=null)
                addQueryParameters(queryCount,extraSearchParams);
            result = ((Integer) queryCount.uniqueResult()).intValue();
        catch (HibernateException ex)
            log.error("Cannot read "+CommonLib.simpleClassname(domainObjectClass),ex );
            throw new PersistenceServiceException("Cannot read "+CommonLib.simpleClassname(domainObjectClass),ex);
        return result;
    }And one more thing - if you have a lot of records in database (>1 million) then you should include in search critieria at least one parameter that has an index in database table.

Similar Messages

  • EJB with no primary key?

    I have an EJB with two fields, timestamp (Date) and entry (String). It's possible for two fields to have the same timestamp, so I can't use it as the primary key. Is it possible to just say there isn't a primary key, or do I have to do something tricky?

    I'd be a little easier about it if the page you pointed to didn't show the DAO being accessed from an -entity- bean ..
    I think I'm going to stick with an auto-incrementing key. I think I might use another EJB to keep the count, which maybe I can re-use across all my other applications. My only worry is about performance, because I'm going to be getting the current count every single time I create a new log entry. Though .. I think it'll be pretty efficient, I'm going to assume the EJB I use for the count doesn't update the database every single time I increment it.
    Either that, or I could be tricky and wait a millisecond if the date I get is the same as the last one. ;-)

  • Validate() works very slowly with jse 1.4.2.

    Hi, I have a question about the method validate(). I really appreciate it if somebody could help me out.
    I have some components (buttons, textfields etc) in a panel. Let me refer it as Panel A. When I click one of the buttons in Panel A, I would like to remove some components and add some other components in Panel A. If I click the same button again, I would like to have Panel A return to the original configuration.
    I call method validate() only once after I remove and add components for each click event. This works perfectly with Java 2 runtime environment SE 1.2 and it take very little time. However, this program works very slowly with Java 2 runtime environment SE 1.4. That means with JSE 1.4, after I click the button, the Java applet will still be able to add and remove components, but it take very long time.
    Would somebody please give me a hand on this? Thanks a lot!

    Thanks for mzarra's suggestion. Here is my code:
    // Buttons: virtualModelButton
    // Panesls: pp_right, pp_right_bottom, pp_button1, pp_right_top2
    else if (evt.target == virtualModelButton)                    
    if (virtualModelButton.getLabel() == "Show Virtual Model")
    pp_right.remove(pp_right_top);
    pp_right.add("North", pp_right_top2);
    pp_right_bottom.remove(pp_button1);     
    pp_right.validate();
    virtualModelButton.setLabel("Show Control Panel");
    else if (virtualModelButton.getLabel() == "Show Control Panel")
    pp_right.remove(pp_right_top2);
    pp_right.add("North", pp_right_top);
    pp_right_bottom.add(pp_button1, 0);
    pp_right.validate();
    virtualModelButton.setLabel("Show Virtual Model");
    }

  • HT1689 I updated my phone to the iOS7 and now when i try to use the keyboard, i can't see myself typing and it goes very slowly. I am confused to why this happened. It worked perfectly fine with iOS6. Any suggestions?

    I updated my phone to the iOS7 and now when i try to use the keyboard, i can't see myself typing and it goes very slowly. I am confused to why this happened. It worked perfectly fine with iOS6. Any suggestions?

    Hi imobl,
    Thanks for your response, I forgot to add that the five 3uk sims we have in use, I have tried all of them none of them are recongnised non of them have pin codes, I even purchased four more sims Tmobile (original carrier) Vodaphone, 3 and giffgaff.

  • Got big problem with my iphone , its not charging as it did before i updated (5.0.1) Now its charging very slowly and it doesnt show the charging sign on screen..

    got big problem with my iphone4 , its not charging as it did before i updated (5.0.1) Now its charging very slowly and it doesnt show the charging sign on screen..

    How do you know its charging very very slowly? Is the screen back on?
    Once a month you should charge your phone to 100% then drain it, then charge it back up to 100%.
    Just leave the phone in and do what is said above.
    How long do you think it will take to charge to 100%?

  • HT4060 Can you charge IPad on universal USB charger with USB to iPad charging wire?  Seems to work. Very slowly however

    iPad charges very slowly with universal USB adapter and iPad wire.  Is this normal?
    Is this safe?

    tak9 wrote:
    Ahh thats a shame, I knew it seemed to easy.
    So does that mean you can simply transfer videos from the external hard drive to ipad? Do you need a wifi connection for that or can the ipad sync straight to the hard drive without that?
    No first hand experience with them, but my understanding is that the HDs have a WiFi transmitter built in. You stream the content directly from it, probably using an app.

  • Mail in Mavericks is a disaster for me.  Mail opens VERY slowly and cannot be deleted. I can move copies of messages to On My Mac but the original stays in the In Box. Scrolling works then it doesn't then it does. I tried every advice here; nothing helps.

    I've read and tried all the solutions proffered to others about Mail in Mavericks and scrolling issues as well.  They either are not applicable (hard drive seems fine; is less than half full; permissions have been repaired; Disk Utility finds no hard drive issues) or don't work (rebuilding, removing envelope files and re-importing, removing various preference files).
    I have about 200,000 emails in four In Boxes.  Prior to Mavericks this was not a problem.  I have tried to remove them in case that helps but when I move them to a new folder in "On My Mac" the new folder is (very slowly) created but the original messages stay in the In Box as well.  I went through one box and deleted over 52,000 messages -- or so I thought.  When I closed mail later, I got a message saying the messages could not be moved to trash.  They are in the In Box now.
    Maybe the problem is not Mavericks, but it started when I upgraded, and except for scrolling, which has been problematic elsewhere as well but no where more than in Mail, everything but Mail seems to be working ok.
    Are other people having problems to this extent?  I can wait a little while for a fix but I get over 2,000 emails a day (yes, a lot of spam) and I don't think I can go on in perpetuity without the ability to delete messages.  I've used Apple Mail since its inception and would prefer to keep it but may be forced out.

    Please read this whole message before doing anything.
    This procedure is a test, not a solution. Don’t be disappointed when you find that nothing has changed after you complete it.
    Step 1
    The purpose of this step is to determine whether the problem is localized to your user account.
    Enable guest logins* and log in as Guest. Don't use the Safari-only “Guest User” login created by “Find My Mac.”
    While logged in as Guest, you won’t have access to any of your personal files or settings. Applications will behave as if you were running them for the first time. Don’t be alarmed by this; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin.
    While logged in as Guest, launch Mail and set up one of your IMAP accounts. Same problem?
    After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it.
    *Note: If you’ve activated “Find My Mac” or FileVault, then you can’t enable the Guest account. The “Guest User” login created by “Find My Mac” is not the same. Create a new account in which to test, and delete it, including its home folder, after testing.
    Step 2
    The purpose of this step is to determine whether the problem is caused by third-party system modifications that load automatically at startup or login, by a peripheral device, by a font conflict, or by corruption of the file system or of certain system caches.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards, if applicable. Start up in safe mode and log in to the account with the problem. You must hold down the shift key twice: once when you boot, and again when you log in.
    Note: If FileVault is enabled, or if a firmware password is set, or if the boot volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to boot and run than normal, with limited graphics performance, and some things won’t work at all, including sound output and Wi-Fi on certain models. The next normal boot may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem?
    After testing, reboot as usual (i.e., not in safe mode) and verify that you still have the problem. Post the results of steps 1 and 2.

  • Why does my iPhone 4 not charge correctly?  Problem is definitely with the phone and not charges or chords.  Phone will charge but very slowly and no icon comes on.  Computer and iTunes doesn't recognize it a being connected.

    My iPhone 4 quit charging correctly.  It does charge but very slowly and icon doesn't indicate it as charging.  I've checked cables and charges and the problem is definetily with the phone.  My car stereo no longer recognizes it as a device.  Neither does the computer.  The real strange thing to me is that when I plug it into my old klispch speaker dock it will play songs.  My battery life is good when it is charged so I don't think its the battery. I've tried resetting the phone and cleaning the charging port.  I'm out of warranty.
    Would disconnecting the battery possibly reset it from some glitch or is the charging port got some bad contacts?

    I checked with the Genius Bar.  It was a new dilema to the lady that was helping me.  She took it to a back room and worked on it but it came out the same.  She gave me some options for repair or credit for replacement.
    I just kept the phone and put up with slowly charging it by plugging it in and then turning it off.
    I couldn't transfer anything from itunes.
    I finally got fed up and bought a new charging port for $10. and a toolkit for $3.  I looked up a video on youTube for the replacement and did it.
    That solved all the problems, it was the charging port, must have been some bad pins or something because it patially worked.

  • Adobe Acrobat Standard 9.3.1 loads pages very slowly with Windows XP 64 bit version

    Our company has purchased Dell Precision T3500 workstations with Intel XEON processor and 6 Gb of RAM. The operating system is Windows XP 64-bit version. The systems came with Adobe Acrobat Standard 9.3.1. Each one of these workstations load PDF files into Acrobat very slowly. Does anyone have a answer why?

    Quote
    Originally posted by Some1ne
    Here's a step-by-step description of how to install the RealTek RTL8169/8110 driver, as the process isn't quite as straightforward as it should be:
    1.  Download the Windows AMD64 Drivers available here:
    http://www.realtek.com.tw/downloads/downloads1-3.aspx?series=16&Software=True
    2.  Extract the files in the archive to somewhere like c:\win64drivers\ethernet
    3.  Once inside Win XP 64, do the following:
    a.  Click Start -> Settings -> Control Panel -> System -> Hardware -> Device Manager
    b.  Go down to the "Other Devices" section (they'll have yellow ?'s)
    c.  Right click on the ethernet controller and click "Update Driver"
    d.  Click "Install from a list or specific location (Advanced)"
    e.  Click "Dont search.  I will choose the driver to install."
    f.  Double click the "Network Adapter" entry, and then click "Have Disk..."
    g.  Select the directory which you extracted the driver files to
    i.  You will get messages saying that Windows cannot verify that the driver matches your hardware, and that the driver is not WHQL certified.  Ignore these and click "Continue"/"Install Anyways" and your RealTek RTL8169/8110 ethernet adapter will spring to life
    after i have done this the pc just stops. and if i reboot it stops at the loading screen :/ can you tell me whats wrong i got a k8t neo serie card and windows 64 bit edition
    edit: i did it :D works now

  • MY PC IS WORKING VERY SLOWLY AND HANGING AGAIN AND AGAIN

    HELLO
       MY NAME IS AKSHAY RAHAR & I HAVE A HP LAPTOP (PAVILION G6 WITH 500 GB HARD DISK , 2 GB RAM , 1 GB GRAPHIC CARD ). IT IS WORKING VERY SLOWLY AND HANG UP AGAIN AND AGAIN .. I REBOOTED IT 3 TIMES BUT I'M FACING SAME PROBLEM PLZ HELP ME ....

    There are many reasons why a PC " behaves" this way.
    These annoying " gliches" may be caused by an overloaded hard drive, overworked CPU, Malware, running 2 AV 's, unnecessary data, Browser addons or you may have unnecessary programs running in the background etc....
    What follows is a series of generic troubleshooting steps that you may care to try...
    Make sure all intake/exhausts vents are clean along with all fans.
    Get some temp monitoring software. Download cpu-z and gpu-z (both
    free) and keep an eye on the video temps
    It could be a hard drive that is going bad or corrupted.
    To check a hard drive see Check Disk...
    In an administrators account type cmd in search.
    In cmd type sfc /scannow.
    This will report and fix minor problems.
    Take note of what is said at the end.
    Should your computer freeze, try to do the tests in safe mode.
    Go to search, type device manager and look for any yellow warning markers.
    Type event viewer, in search (by start button) > Windows Logs > Application
    Look for RED critical errors that say app hang, app crash, or anything that relates to the CURRENT problem.
    Note the event ID, and the source codes and Google search them.
    If overclocking, restore to original.
    Try in
    safe mode; report back if it works properly.
    Clean boot.
    You may discover what is causing your problem.
    Advice offered in good faith. It is your decision to implement same. Wanikiya and Dyami - Team ZigZag

  • Mac works very slowly

    My Mac recently works very slowly, it takes forever to text,  to surf the net, even to type this letter.
    I guess the problem is that because I accidently installed OS X Yosemite 10.10.1  several times.
    I can c that I have 2 discs
    Name : Macintosh HD  Capacity : 120.47 GB
    Type : Logical Volume Group  Available : 12.5 MB
      Disk Status : Online  Used : 120.46 GB
    And the other one
      Mount Point : /  Capacity : 120.11 GB (
      Format : Encrypted Logical Partition  Available : 67.83 GB
      Owners Enabled : Yes  Used : 52.27 GB
      Number of Folders : 130,978  Number of Files : 678,559
    I don't understand iS that because I don't have enough space on the Disc1 or because I installed software several times.
    It works so slowly that I don't even feel that it's Apple now, what should I do?

    Hello, Thanks a lot for reply! Is that what u meant?
    27/11/2014 10:43:56.588 storeassetd[343]: AssetServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd5a2c47b80> connection from pid 428 with interface <AssetServiceInterface: 0x7fd5a2c5a670> (PID 428)
    27/11/2014 10:43:56.594 storeassetd[343]: AssetServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd5a2e11ff0> connection from pid 428 with interface <AssetServiceInterface: 0x7fd5a2e06ef0> (PID 428)
    27/11/2014 10:43:57.913 storeaccountd[257]: ADI: {
        "Access-Control-Allow-Origin" = "*";
        "Cache-Control" = "private, max-age=60";
        Connection = "keep-alive";
        "Content-Length" = 2;
        "Content-Type" = "application/json; charset=UTF-8";
        Date = "Thu, 27 Nov 2014 02:43:57 GMT";
        Expires = "Thu, 27 Nov 2014 02:44:57 GMT";
        "Strict-Transport-Security" = "max-age=31536000";
        Vary = "X-Apple-Store-Front,X-Dsid,Cookie";
        "access-control-allow-credentials" = true;
        "apple-timing-app" = "1 ms";
        "x-apple-application-instance" = 549;
        "x-apple-application-site" = NWK;
        "x-apple-jingle-correlation-key" = TG6WV2BCFVUGG;
        "x-webobjects-loadaverage" = 1;
    27/11/2014 10:44:04.691 storeassetd[343]: addOperation <LoadUpdateQueueOperation: 0x7fd5a2c14ad0>{name = '(null)'}
    27/11/2014 10:44:04.693 storeaccountd[257]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7f9ae2f4a3c0> connection from pid 343 with interface <AccountServiceInterface: 0x7f9ae2f27700> (PID 343)
    27/11/2014 10:44:04.699 storeaccountd[257]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7f9ae2f29470> connection from pid 343 with interface <AccountServiceInterface: 0x7f9ae2f5b810> (PID 343)
    27/11/2014 10:44:04.701 storeaccountd[257]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7f9ae2c0c6c0> connection from pid 428 with interface <AccountServiceInterface: 0x7f9ae2cab3b0> (PID 428)
    27/11/2014 10:44:04.703 com.apple.CommerceKit.TransactionService[432]: TransactionServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fd758614a10> connection from pid 343 with interface <TransactionServiceInterface: 0x7fd75870a270> (PID 343)
    27/11/2014 10:44:04.706 storeaccountd[257]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7f9ae2d23cf0> connection from pid 432 with interface <AccountServiceInterface: 0x7f9ae2f02560> (PID 432)
    27/11/2014 10:44:04.715 storeaccountd[257]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7f9ae2caebd0> connection from pid 343 with interface <AccountServiceInterface: 0x7f9ae2caef40> (PID 343)
    27/11/2014 10:44:06.230 storeaccountd[257]: ADI: {
        "Cache-Control" = "private,no-store";
        Connection = "keep-alive";
        "Content-Encoding" = gzip;
        "Content-Length" = 278;
        "Content-Type" = "text/xml; charset=UTF-8; encoding=UTF-8";
        Date = "Thu, 27 Nov 2014 02:44:06 GMT";
        "Powered-By-ChinaCache" = "MISS from CHN-SH-H-3dD.2";
        Pragma = "no-cache";
        Server = "nginx/1.6.0";
        "Strict-Transport-Security" = "max-age=31536000";
        Vary = "Accept-Encoding";
        "apple-timing-app" = "16 ms";
        "x-apple-application-instance" = 36611;
        "x-apple-application-site" = ST11;
        "x-apple-jingle-correlation-key" = FJCJQLT7YMGG2;
        "x-apple-lokamai-no-cache" = true;
        "x-webobjects-loadaverage" = 0;
    27/11/2014 10:44:06.325 storeaccountd[257]: ADI: {
        "Cache-Control" = "private,no-store";
        Connection = "keep-alive";
        "Content-Encoding" = gzip;
        "Content-Length" = 11075;
        "Content-Type" = "text/html; charset=UTF-8";
        Date = "Thu, 27 Nov 2014 02:44:06 GMT";
        "Powered-By-ChinaCache" = "MISS from CHN-SH-H-3dD.1";
        Pragma = "no-cache";
        Server = "nginx/1.6.0";
        "Strict-Transport-Security" = "max-age=31536000";
        Vary = "Accept-Encoding";
        "apple-timing-app" = "60 ms";
        "x-apple-application-instance" = 35410;
        "x-apple-application-site" = ST11;
        "x-apple-jingle-correlation-key" = L32O4U4QHS2Q6;
        "x-apple-lokamai-no-cache" = true;
        "x-webobjects-loadaverage" = 0;
    27/11/2014 10:44:06.344 storeaccountd[257]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7f9ae2d6df60> connection from pid 428 with interface <AccountServiceInterface: 0x7f9ae2d270b0> (PID 428)
    27/11/2014 10:44:06.365 storeaccountd[257]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7f9ae2cae930> connection from pid 428 with interface <AccountServiceInterface: 0x7f9ae2cb1e10> (PID 428)
    27/11/2014 10:44:06.372 storeaccountd[257]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7f9ae2f0f720> connection from pid 428 with interface <AccountServiceInterface: 0x7f9ae2f0be70> (PID 428)
    27/11/2014 10:44:06.380 storeaccountd[257]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7f9ae2db4f40> connection from pid 428 with interface <AccountServiceInterface: 0x7f9ae2db5280> (PID 428)
    27/11/2014 10:44:06.387 storeaccountd[257]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7f9ae2e7c330> connection from pid 428 with interface <AccountServiceInterface: 0x7f9ae2e240d0> (PID 428)
    27/11/2014 10:44:06.500 storeaccountd[257]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7f9ae2f795f0> connection from pid 428 with interface <AccountServiceInterface: 0x7f9ae2f79930> (PID 428)
    27/11/2014 10:44:06.530 storeaccountd[257]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7f9ae2db80e0> connection from pid 428 with interface <AccountServiceInterface: 0x7f9ae2db83e0> (PID 428)
    27/11/2014 10:44:06.538 storeaccountd[257]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7f9ae2cb5340> connection from pid 428 with interface <AccountServiceInterface: 0x7f9ae2cb5750> (PID 428)
    27/11/2014 10:44:06.545 storeaccountd[257]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7f9ae2cb84b0> connection from pid 428 with interface <AccountServiceInterface: 0x7f9ae2cb8770> (PID 428)
    27/11/2014 10:44:06.552 storeaccountd[257]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7f9ae2cbb5e0> connection from pid 428 with interface <AccountServiceInterface: 0x7f9ae2cbb8a0> (PID 428)
    27/11/2014 10:44:06.573 storeaccountd[257]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7f9ae2cb8bf0> connection from pid 428 with interface <AccountServiceInterface: 0x7f9ae2cbe6a0> (PID 428)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:06.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (2 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:07.000 kernel[0]: BUG in process suhelperd[187]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    27/11/2014 10:44:10.153 storeaccountd[257]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7f9ae2dbc6b0> connection from pid 428 with interface <AccountServiceInterface: 0x7f9ae2dbca80> (PID 428)
    27/11/2014 10:44:10.160 storeaccountd[257]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7f9ae2e9f450> connection from pid 428 with interface <AccountServiceInterface: 0x7f9ae2e9fe50> (PID 428)
    27/11/2014 10:44:10.167 storeaccountd[257]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7f9ae2cc13a0> connection from pid 428 with interface <AccountServiceInterface: 0x7f9ae2cc1620> (PID 428)
    27/11/2014 10:44:10.174 storeaccountd[257]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7f9ae2dbfc20> connection from pid 428 with interface <AccountServiceInterface: 0x7f9ae2dc00d0> (PID 428)
    27/11/2014 10:44:14.982 storeaccountd[257]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7f9ae2cc19b0> connection from pid 428 with interface <AccountServiceInterface: 0x7f9ae2cc4430> (PID 428)
    27/11/2014 10:44:15.024 storeaccountd[257]: ADI: {
        Connection = "keep-alive";
        "Content-Length" = 432;
        "Content-Type" = "text/html";
        Date = "Thu, 27 Nov 2014 02:44:15 GMT";
        "Powered-By-ChinaCache" = "MISS from CHN-SH-H-3dD.1";
        Server = "nginx/1.6.0";

  • IPhoto working very slowly

    iPhoto is now working very slowly. Any editing move,keyword, or any other action, starts the ball moving and takes quite a while before the action is done. And often the program stalls and I have to force a close.
    I have rebuilt (command - option) and I had previously used iPhoto Library Manager to make a new library.
    Is it possible that the actual iPhoto program has a corruption in it? If so, how can I fix it?
    Any other suggestions?
    Asuch

    When iPLM is finished go to your User/Library/Caches folder and empty the folder named "com.apple.iPhoto". Then reboot and try iPhoto again.
    How much free space do you have on your boot drive? It's recommended that a minimum of 10 GB is maintained for optimal system and application performance. If you use iDVD regularly 25 GB free space is recommended.
    Also I'd delete the iPhoto preference file, com.apple.iPhoto.plist, that resides in your User/Library/Preferences folder and then reset the various iPhoto preferences when you next relaunch iPhoto.
    OT
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto (iPhoto.Library for iPhoto 5 and earlier versions) database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger or later), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. There are versions that are compatible with iPhoto 5, 6, 7 and 8 libraries and Tiger and Leopard. Just put the application in the Dock and click on it whenever you want to backup the dB file. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.
    NOTE: The new rebuild option in iPhoto 09 (v. 8.0.2), Rebuild the iPhoto Library Database from automatic backup" makes this tip obsolete.

  • Since installation of Mavericks, Time Capsule works very slowly, and the next backup of 236 GM will take nearly 30 days. What can I do to get backup more rapidly ?

    Since the installation of Mavericks, Time capsule works very slowly and will need 30 days or more to produce a complete backup of about 200 GB. What can I do to get a complete backup more rapidly ?

    What setup is the TC now.. ? what model and what firmware? Maverick seems to need 7.6.4 on the older TC.. and latest firmware on the AC version.
    Is it in router or bridge mode? Do not use wireless only.. join a wireless network.
    Is the computer connected by wireless or ethernet? I strongly recommend a test by ethernet.. with wireless in the computer turned off. If it is still very slow something is majorly wrong.. but I need the info I asked for to troubleshoot further.

  • After the update of the operating system to OS X Mavericks my macbook retina became very slowly to work

    After the update of the operating system to OS X Mavericks my macbook retina became very slowly to work, a response at the programs is very long (5 - 10 seconds). I work yet with the connected external monitor of NEC. Problems are very noticeable in transition of cursor from one monitor on other - very often a cursor stops beating on 5-10 seconds. The complete new setting of the system did not help.

    After the update of the operating system to OS X Mavericks my macbook retina became very slowly to work, a response at the programs is very long (5 - 10 seconds). I work yet with the connected external monitor of NEC. Problems are very noticeable in transition of cursor from one monitor on other - very often a cursor stops beating on 5-10 seconds. The complete new setting of the system did not help.

  • Macbook air either not working or working very very slowly on wireless

    At home I have 2 laptops: a macbook air and a compaq presario v6000. The macbook air is either working very slowly with the eircom broadband, or else not working at all. The presario works at a good speed and  is consistent. The air is fine on all other networks. Strangely, download speeds are normal nbut nothin else is normal.
    I'm running OS X if that matters

    Power off the router. Wait awhile. Power it back on. Wait until all the lights are lit up properly.
    It will take a while.
    Restart the computer.
    Start up in Safe Mode
    http://support.apple.com/kb/PH11212

Maybe you are looking for