Computers in cluster spending all their CPU time with system; many questio

I'd be interested to know if anyone on the list has been successful in getting QMaster to work on a home network of G4 computers, 800 - 867 MHz, NO server, 100 mbps hubs, existing CAT5 wiring violates the radius recommendations for 100 mbps.
At one point, I had been successful in having all three macs busy processing (CPU activity monitor mostly in the green) only to find gaps in my encoded video.
Most recently, I tried having my main computer as client rather than controller. The client computer compressing happily, but the other two were in the red, i.e. devoting much but not all of their CPU time to the system, with little user CPU activity. The estimated completion time was more than double what the job should have taken on my local machine, so I canceled the job after about an hour.
Host names are unknown according to QAdministrator.
I am still unclear about shared cluster storage. Does it matter how it is set other than for the machine that is controller?
Should I try to mount volumes in the finder for the other two computers on each machine? The documentation doesn't say anything about this.
What folders need to have read and write privileges for all other computers on the network. What is the most reliable way to set this? What user group do I choose? What folders do I apply this to? Might I need to set up for a common group for all my machines, similar to Windows Workgroups? If so, how do I do this?
Thanks,
Cris

hi Cris, yes it can be frustrating.. please see a link to a post I did when I had loads of trouble and I provided a detailed resolution at http://discussions.apple.com/thread.jspa?messageID=4171772&#417.
THere are some options to STOP QMASTER from copying objects for COMPRESSOR by simply mounting (NFS) the volumes with ALL your file systems where source and target files will be.
Also for the CLUSTER CONTROLLER use the Qmaster system prefs to SET the cluster file to one of the NETWORK or SSAFS (xsa) shared volumes .. I guess you may not have XSAN.. so just have ALL the volumes mounted so each HOST can access them.
G5 QUAD 8GB ram w/3.5TB + 2 x 15in MBPCore   Mac OS X (10.4.9)  

Similar Messages

  • My Time Capsule has quit backing up - now spends all it's time "preparing".  I've tried the Apple suggestion of a reset which does not help.  All indicators seems to be OK.  Running OS 10.5.8 on G4 Powerbook, Time capule is 1st gen I believe.  Any ideas?

    My Time Capsule has quit backing up - now spends all it's time "preparing".  I've tried the Apple suggestion of a reset which does not help.  All indicators seems to be OK.  Running OS 10.5.8 on G4 Powerbook, Time capule is 1st gen I believe.  Any ideas?

    Hello,
    Thanks for your message, I have attempted to repait the permissions as tou suggested.  The first time this produced a long list of exceptions and took quite a while, however although it said "Permissions repair Complete" when I ran it again there were still about 20 exceptions, I have repeated the procedure and this is unchanged.  The Time Capsule now does not spend hours "Preparing", but the backup attempt fails after a few minutes with the error message "The backup volume could not be mounted."  Any further ideas would be appreciated.   When I use Disk Utility I can't see the Time Capsule volume, if I could I'd be tempted to re-format it and start from scratch. 

  • Free up CPU time with IMAQ

    I try to free up the CPU time while using IMAQ low level functions to display the images. From the "Help on line", there is an example where we must do something like below after we open the session.
    // Define attribute for sleep time
    #define IMG_ATTR_SLEEPTIME (_IMG_BASE + 0x03F6)
    // The below lines are in my codes
    // Open the interface and session
    imgInterfaceOpen (intName, &Iid);
    imgSessionOpen (Iid, &Sid);
    // Set the sleep time to free up the CPU in ms
    imgSetAttribute (Sid, IMG_ATTR_SLEEPTIME, 50);
    Notes : I got all the above code from the on-line help.
    Everything work fine, excepting the CPU time was not free up.
    Please let me know what's wrong ? Why does imgSetAttribute function does not work ? What's the solution?
    Thanks !!!

    Hi Kyle V,
    Yes, I tried to read the attribute (using the imgGetAttribute function). The value is being set correctly.
    I can not use the CVI_HL Ring with Sleep example, because I'm not using the trigger. I am using the low level grab example right now. The only modification is that I edit the sleep time to this example. You can look at the code below and search for "Leon" to see all my modification. (I only made 2 changes). I think the main point is that I set the sleep time after I open the session in "int OnGrab (void)". Remember I get this code from the example code as well.
    Thanks for your help.
    /* This sample demonstrates how to continuously acquire pictures */
    /* using a low level grab operation */
    #include
    #include
    #include
    #include "llgrab.h"
    #define _NIWIN
    #include "niimaq.h"
    // error checking macro
    #define errChk(fCall) if (error = (fCall), error < 0) {goto Error;} else
    // Window proc
    BOOL CALLBACK ImaqSmplProc(HWND hWnd, UINT iMessage, UINT wParam, LONG lParam);
    // Error display function
    void DisplayIMAQError(Int32 error);
    // Snap Callback
    int OnGrab (void);
    int OnStop (void);
    DWORD ImaqThread(LPDWORD lpdwParam);
    // windows GUI globals
    static HINSTANCE hInst;
    static HWND ImaqSmplHwnd;
    static HWND HStop, HGrab, HQuit, HIntfName, HFrameRate;
    static HANDLE HThread;
    // Imaq globals
    static SESSION_ID Sid = 0;
    static BUFLIST_ID Bid = 0;
    static INTERFACE_ID Iid = 0;
    static Int8 *ImaqBuffer=NULL; // acquisiton buffer
    static Int8 *CopyBuffer=NULL; // copied acquisition buffer
    static Int32 CanvasWidth = 512; // width of the display area
    static Int32 CanvasHeight = 384; // height of the display area
    static Int32 CanvasTop = 10; // top of the display area
    static Int32 CanvasLeft = 10; // left of the display area
    static Int32 AcqWinWidth;
    static Int32 AcqWinHeight;
    static BOOL StopGrab = FALSE;
    // Leon - modification for free up CPU time
    // Define attribute for sleep time
    #define IMG_ATTR_SLEEPTIME (_IMG_BASE + 0x03F6)
    // end of Leon's modification
    int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance,
    LPSTR lpszCmdLine, int nCmdShow)
    CHAR ImaqSmplClassName[] = "Imaq Sample";
    WNDCLASS ImaqSmplClass;
    MSG msg;
    HWND hTemp;
    // register the main window
    hInst = hInstance;
    if (!hPrevInstance)
    ImaqSmplClass.style = CS_HREDRAW | CS_VREDRAW;
    ImaqSmplClass.lpfnWndProc = (WNDPROC) ImaqSmplProc;
    ImaqSmplClass.cbClsExtra = 0;
    ImaqSmplClass.cbWndExtra = 0;
    ImaqSmplClass.hInstance = hInstance;
    ImaqSmplClass.hIcon = LoadIcon(NULL, IDI_APPLICATION);
    ImaqSmplClass.hCursor = LoadCursor (NULL, IDC_ARROW);
    ImaqSmplClass.hbrBackground = GetStockObject(LTGRAY_BRUSH);
    ImaqSmplClass.lpszMenuName = 0;
    ImaqSmplClass.lpszClassName = ImaqSmplClassName;
    if (!RegisterClass (&ImaqSmplClass))
    return (0);
    // creates the main window
    ImaqSmplHwnd = CreateWindow(ImaqSmplClassName, "LLGrab", WS_OVERLAPPEDWINDOW | WS_VISIBLE,
    CW_USEDEFAULT, CW_USEDEFAULT, 680, 440, NULL, NULL, hInstance, NULL);
    // creates the interface name label
    if (!(hTemp = CreateWindow("Static","Interface name",ES_LEFT | WS_CHILD | WS_VISIBLE,
    540,14,100,20,ImaqSmplHwnd,(HMENU)-1,hInstance,NULL)))
    return(FALSE);
    // creates the frame rate label
    if (!(hTemp = CreateWindow("Static","Frame per second",ES_LEFT | WS_CHILD | WS_VISIBLE,
    540,232,140,20,ImaqSmplHwnd,(HMENU)-1,hInstance,NULL)))
    return(FALSE);
    // creates the interface name edit box
    if (!(HIntfName = CreateWindow("Edit","img0",ES_LEFT | WS_CHILD | WS_VISIBLE | WS_BORDER,
    540,34,100,20,ImaqSmplHwnd,(HMENU)-1,hInstance,NULL)))
    return(FALSE);
    // creates the frame rate edit box
    if (!(HFrameRate = CreateWindow("Edit","0",ES_LEFT | WS_CHILD | WS_VISIBLE | WS_BORDER,
    540,252,100,20,ImaqSmplHwnd,(HMENU)-1,hInstance,NULL)))
    return(FALSE);
    // creates the Grab button
    if (!(HGrab = CreateWindow("Button","Grab",BS_PUSHBUTTON | WS_CHILD | WS_VISIBLE | WS_BORDER,
    550,72,80,40,ImaqSmplHwnd,(HMENU)PB_GRAB,hInstance,NULL)))
    return(FALSE);
    // creates the stop button
    if (!(HStop = CreateWindow("Button","Stop",BS_PUSHBUTTON | WS_CHILD | WS_VISIBLE | WS_BORDER,
    550,112,80,40,ImaqSmplHwnd,(HMENU)PB_STOP,hInstance,NULL)))
    return(FALSE);
    EnableWindow(HStop, FALSE);
    EnableWindow(HFrameRate, FALSE);
    // creates the quit application button
    if (!(HQuit = CreateWindow("Button","Quit",BS_DEFPUSHBUTTON | WS_CHILD | WS_VISIBLE,
    550,152,80,40,ImaqSmplHwnd,(HMENU)PB_QUIT,hInstance,NULL)))
    return(FALSE);
    // Display the main window
    ShowWindow(ImaqSmplHwnd, SW_SHOW);
    UpdateWindow(ImaqSmplHwnd);
    while (GetMessage (&msg, NULL, 0, 0))
    TranslateMessage (&msg) ;
    DispatchMessage (&msg) ;
    return (msg.wParam);
    // Message proc
    BOOL CALLBACK ImaqSmplProc(HWND hWnd, UINT iMessage, UINT wParam, LONG lParam)
    WORD wmId;
    switch (iMessage)
    case WM_COMMAND:
    wmId = LOWORD(wParam);
    switch (wmId)
    case PB_QUIT:
    PostQuitMessage(0);
    break;
    case PB_GRAB:
    // Grab button has been hitten
    OnGrab();
    break;
    case PB_STOP:
    // Grab button has been hitten
    OnStop();
    break;
    break;
    case WM_DESTROY:
    PostQuitMessage(0);
    default:
    return DefWindowProc(hWnd, iMessage, wParam, lParam);
    break;
    return 0;
    // Function executed when the snap button is clicked
    int OnGrab (void)
    int error, bufSize, bytesPerPixel;
    char intfName[64];
    DWORD dwThreadId;
    // Get the interface name
    GetWindowText(HIntfName, intfName, 64);
    // Open an interface and a session
    errChk(imgInterfaceOpen (intfName, &Iid));
    errChk(imgSessionOpen (Iid, &Sid));
    // Leon - modification for free up CPU time
    // Set the sleep time to free up the CPU in ms
    imgSetAttribute (Sid, IMG_ATTR_SLEEPTIME, 50);
    // end of Leon
    // Let's check that the Acquisition window is not smaller than the Canvas
    errChk(imgGetAttribute (Sid, IMG_ATTR_ROI_WIDTH, &AcqWinWidth));
    errChk(imgGetAttribute (Sid, IMG_ATTR_ROI_HEIGHT, &AcqWinHeight));
    if(CanvasWidth < AcqWinWidth)
    AcqWinWidth = CanvasWidth;
    if(CanvasHeight < AcqWinHeight)
    AcqWinHeight = CanvasHeight;
    // Set the ROI to the size of the Canvas so that it will fit nicely
    errChk(imgSetAttribute (Sid, IMG_ATTR_ROI_WIDTH, AcqWinWidth));
    errChk(imgSetAttribute (Sid, IMG_ATTR_ROI_HEIGHT, AcqWinHeight));
    errChk(imgSetAttribute (Sid, IMG_ATTR_ROWPIXELS, AcqWinWidth));
    // create a buffer list with one element
    errChk(imgCreateBufList(1, &Bid));
    // compute the size of the required buffer
    errChk(imgGetAttribute (Sid, IMG_ATTR_BYTESPERPIXEL, &bytesPerPixel));
    bufSize = AcqWinWidth * AcqWinHeight * bytesPerPixel;
    // alloc our own buffer for storing copy
    CopyBuffer = (Int8 *) malloc(bufSize * sizeof (Int8));
    // create a buffer and configure the buffer list
    errChk(imgCreateBuffer(Sid, FALSE, bufSize, &ImaqBuffer));
    /* the following configuration assigns the following to buffer list
    element 0:
    1) buffer pointer that will contain image
    2) size of the buffer for buffer element 0
    3) command to loop when this element is reached
    errChk(imgSetBufferElement(Bid, 0, IMG_BUFF_ADDRESS, (uInt32)ImaqBuffer));
    errChk(imgSetBufferElement(Bid, 0, IMG_BUFF_SIZE, bufSize));
    errChk(imgSetBufferElement(Bid, 0, IMG_BUFF_COMMAND, IMG_CMD_LOOP));
    // lock down the buffers contained in the buffer list
    errChk(imgMemLock(Bid));
    // configure the session to use this buffer list
    errChk(imgSessionConfigure(Sid, Bid));
    // start the acquisition, asynchronous
    errChk(imgSessionAcquire(Sid, TRUE, NULL));
    StopGrab = FALSE;
    // Start the acquisition thread
    HThread = CreateThread(NULL, 0, (LPTHREAD_START_ROUTINE) ImaqThread, (LPDWORD*)&StopGrab, 0, &dwThreadId);
    if (HThread == NULL)
    return 0;
    EnableWindow(HStop, TRUE);
    EnableWindow(HGrab, FALSE);
    EnableWindow(HQuit, FALSE);
    Error :
    if(error<0)
    DisplayIMAQError(error);
    return 0;
    DWORD ImaqThread(LPDWORD lpdwParam)
    static int nbFrame = 0, error;
    static int t1, t2, currBufNum;
    char buffer[32];
    // the thread stop when StopGrab goes to TRUE
    while(*((BOOL*)lpdwParam) == FALSE)
    t2 = GetTickCount();
    // Wait at least for the first valid frame
    errChk(imgGetAttribute (Sid, IMG_ATTR_LAST_VALID_BUFFER, &currBufNum));
    // if no buffer available, wait
    if(currBufNum == 0xFFFFFFFF)
    errChk(imgSessionWaitSignal (Sid, IMG_FRAME_DONE, IMG_TRIG_POLAR_ACTIVEH, 5000));
    // Get the frame after tne next Vertical Blank
    errChk(imgSessionCopyBuffer(Sid, 0, CopyBuffer, TRUE));
    // Display it using imgPlot
    // Note that if you are using a 1424 and a camera with a bitdepth greater
    // that 8 bits, you need to set the flag parameter of imgPlot to match
    // the bit depth of the camera. See the "snap imgPlot" sample.
    errChk(imgPlot ((GUIHNDL)ImaqSmplHwnd, CopyBuffer, 0, 0, AcqWinWidth, AcqWinHeight,
    CanvasLeft, CanvasTop, FALSE));
    // Calculate the number of frame per seconds every 10 frames
    nbFrame++;
    if (nbFrame>10)
    sprintf(buffer, "%.2f", 1000.0 * (double)nbFrame / (double)(t2-t1));
    SetWindowText (HFrameRate, buffer);
    t1 = t2;
    nbFrame=0;
    Error:
    if(error<0)
    OnStop();
    DisplayIMAQError(error);
    return 0;
    int OnStop(void)
    int error, bufNum;
    DWORD dwResult;
    // Stop the thread
    StopGrab = TRUE;
    // Wait for the thread to end and kill it otherwise
    dwResult = WaitForSingleObject(HThread, 2000);
    if (dwResult == WAIT_TIMEOUT)
    TerminateThread(HThread, 0);
    // stop the acquisition
    errChk(imgSessionAbort(Sid, &bufNum));
    Error:
    if(error<0)
    DisplayIMAQError(error);
    // unlock the buffers in the buffer list
    if (Bid != 0)
    imgMemUnlock(Bid);
    // dispose of the buffer
    if (ImaqBuffer != NULL)
    imgDisposeBuffer(ImaqBuffer);
    // close this buffer list
    if (Bid != 0)
    imgDisposeBufList(Bid, FALSE);
    // free our copy buffer
    if (CopyBuffer != NULL)
    free(CopyBuffer);
    // Close the interface and the session
    if(Sid != 0)
    imgClose (Sid, TRUE);
    if(Iid != 0)
    imgClose (Iid, TRUE);
    EnableWindow(HStop, FALSE);
    EnableWindow(HGrab, TRUE);
    EnableWindow(HQuit, TRUE);
    CloseHandle (HThread);
    return 0;
    // in case of error this function will display a dialog box
    // with the error message
    void DisplayIMAQError(Int32 error)
    static Int8 ErrorMessage[256];
    memset(ErrorMessage, 0x00, sizeof(ErrorMessage));
    // converts error code to a message
    imgShowError(error, ErrorMessage);
    MessageBox(ImaqSmplHwnd, ErrorMessage, "Imaq Sample", MB_OK);

  • Hi, I want to know how many computers I can work at the same time with a single license?

    I need a total of 4 seats  photoshop+ lightroom , and 2 workstations Adobe Premiere Pro , and have to work all at once. What is the best solution for me? sorry for my english

    6 users = 6 licenses .4 photoshop+lightroom and 2 PPRO .When Adobe speaks about to install 2 times with the same license ,they mean for the same user ( for example on his desktop and laptop ).

  • How do I rename many photos all at one time with one click?

    I have got many photos of a sery and want to rename it all with one click only (instead of clicking through it all in single actions and wasting time).
    How can I rename many pictures/photos all together with one click only? -
    1) I have OS X Yosemite
    2) Aperture
    3) Automator App
    to use for this purpose, but I do not see through with any of it.
    Detailed Support for 1) and 2) and 3)  please!
    jona li

    Here is an article on how to batch rename files in Yosemite using just the Finder. This is a new feature in Yosemite. See if this article helps you get your files renamed.

  • SystemUIServer hogs CPU time-with details

    Like so many others, I am finding that SystemUIServer is often consuming between 90% and 100% of a CPU. I have tried various of the solutions offered in other threads, to no avail. And I believe I have more details than I have seen posted yet. First, the elementaries:
    Mid-2007 iMac, 24", 4 GB, clean install of 10.8 followed by restoration of user files from a Time Machine backup, then followed by deletion of a great many $HOME/Library/Preferences files (and a reboot) to try to eliminate system slowness.
    I have no Login Items. The right-hand menu bar initially contained the icons for
    Time Machine
    Bluetooth
    Volume control
    Date & Time
    Fast User Switching
    Spotlight
    Notifications
    I turned off Date & Time and restarted SystemUIServer. The problem was not solved.
    I turned Date & Time back on, and turned off the Time Machine icon display, and restarted SystemUIServer. The problem was not solved.
    When CPU consumption is high, ps shows
    $ ps axguw | egrep CPU\|UIS | grep -v grep
    USER             PID  %CPU %MEM      VSZ    RSS   TT  STAT STARTED      TIME COMMAND
    matt             288  95.5  2.0  2640848  83564   ??  R    Wed06PM 1291:43.28 /System/Library/CoreServices/SystemUIServer.app/Contents/MacOS/SystemUIServer
    And after killing the process and letting it restart, it looks like this
    $ ps axguw | egrep CPU\|UIS | grep -v grep
    USER             PID  %CPU %MEM      VSZ    RSS   TT  STAT STARTED      TIME COMMAND
    matt            9025   0.0  0.5  2580992  20772   ??  S    11:27AM   0:01.86 /System/Library/CoreServices/SystemUIServer.app/Contents/MacOS/SystemUIServer
    While it was in a state of high CPU consumption I looked at it with dtruss. The output was very repetetive and included a lot of open, close. open, fstat64, read, close cycles on two files:
    /Library/Preferences/SystemConfiguration/preferences.plist
    /System/Library/Frameworks/SystemConfiguration.framework/Resources/English.lproj /NetworkInterface.strings
    There were also a lot of geteuid() and a couple of interesting ioctl() calls. It looks like they were on an fd which is an unbound UDP socket, and they were request 0xC02869C9, which works out to _IOWR('i', 201, struct whoozis), where a struct whoozis is 40 bytes long. I'm not sure what this IOCTL is but maybe part of the 802.11 API?
    When I do dtruss on SystemUIServer when it is not consuming a lot of CPU, I see a lot more kevent() and
    workq_kernreturn(). There were just a few of those when the process was running hard, but they dominate the dtruss output during normal times.
    Here is a chunk of the abnormal-state dtruss output.
    geteuid(0x7FE15A218E30, 0xA0, 0x7) = 502 0
    open("/Library/Preferences/SystemConfiguration/preferences.plist\0", 0x0, 0x1A4) = 11 0
    close(0xB) = 0 0
    open("/Library/Preferences/SystemConfiguration/preferences.plist\0", 0x0, 0x1A4) = 11 0
    fstat64(0xB, 0x7FFF58A26200, 0x0) = 0 0
    read(0xB, "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<key>CurrentSet</key>\n\t<string>/Sets/EEDDA303-485 D-4C2C-8C7D-78C0345A827A</string>\n\t", 0x2458) = 9304 0
    close(0xB) = 0 0
    open("/System/Library/Frameworks/SystemConfiguration.framework/Resources/English .lproj/NetworkInterface.strings\0", 0x0, 0x1B6) = 11 0
    fstat64(0xB, 0x7FFF58A25838, 0x0) = 0 0
    read(0xB, "bplist00\337\020;\001\002\003\004\005\006\a\b\t\n\v\f\r\016\017\020\021\022\02 3\024\025\026\027\030\031\032\033\034\035\036\037 !\"#$%&'()*+,-./0123456789:;<=>?@4ABCDE\fFGHIJKLMNOPQRSTUVWXYZ[\\$]^'_`abcd.ef1 ghijk7lmnoTiPad\\printer-port_\020\026thunderbolt-multiether]generic-etherTvlanX X-iPhoneTpptpUmodemZmultiether_\020\020irda-ircomm-portVbridgeT6to4Tbo", 0x7DF) = 2015 0
    close(0xB) = 0 0
    open("/System/Library/Frameworks/SystemConfiguration.framework/Resources/English .lproj/NetworkInterface.strings\0", 0x0, 0x1B6) = 11 0
    fstat64(0xB, 0x7FFF58A25838, 0x0) = 0 0
    read(0xB, "bplist00\337\020;\001\002\003\004\005\006\a\b\t\n\v\f\r\016\017\020\021\022\02 3\024\025\026\027\030\031\032\033\034\035\036\037 !\"#$%&'()*+,-./0123456789:;<=>?@4ABCDE\fFGHIJKLMNOPQRSTUVWXYZ[\\$]^'_`abcd.ef1 ghijk7lmnoTiPad\\printer-port_\020\026thunderbolt-multiether]generic-etherTvlanX X-iPhoneTpptpUmodemZmultiether_\020\020irda-ircomm-portVbridgeT6to4Tbo", 0x7DF) = 2015 0
    close(0xB) = 0 0
    geteuid(0x7FFF74E0E848, 0x7FFF89C2AA82, 0xFFFFFFFF) = 502 0
    ioctl(0x5, 0xC02869C9, 0x7FFF58A265E0) = 0 0
    ioctl(0x5, 0xC02869C9, 0x7FFF58A265E0) = 0 0
    geteuid(0x7FFF74E0E848, 0x7FFF89C2AA82, 0xFFFFFFFF) = 502 0
    geteuid(0x7FFF74E0E848, 0x7FFF89C2AA82, 0xFFFFFFFF) = 502 0
    geteuid(0x7FFF74E0E848, 0x7FFF89C2AA82, 0xFFFFFFFF) = 502 0
    geteuid(0x7FE15A218E30, 0xA0, 0x7) = 502 0
    open("/Library/Preferences/SystemConfiguration/preferences.plist\0", 0x0, 0x1A4) = 11 0
    close(0xB) = 0 0
    open("/Library/Preferences/SystemConfiguration/preferences.plist\0", 0x0, 0x1A4) = 11 0
    fstat64(0xB, 0x7FFF58A264A0, 0x0) = 0 0
    read(0xB, "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<key>CurrentSet</key>\n\t<string>/Sets/EEDDA303-485 D-4C2C-8C7D-78C0345A827A</string>\n\t", 0x2458) = 9304 0
    close(0xB) = 0 0
    geteuid(0x7FE15A28CE30, 0xA0, 0x7) = 502 0
    open("/Library/Preferences/SystemConfiguration/preferences.plist\0", 0x0, 0x1A4) = 11 0
    close(0xB) = 0 0
    open("/Library/Preferences/SystemConfiguration/preferences.plist\0", 0x0, 0x1A4) = 11 0
    fstat64(0xB, 0x7FFF58A26200, 0x0) = 0 0
    read(0xB, "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<key>CurrentSet</key>\n\t<string>/Sets/EEDDA303-485 D-4C2C-8C7D-78C0345A827A</string>\n\t", 0x2458) = 9304 0
    close(0xB) = 0 0
    open("/System/Library/Frameworks/SystemConfiguration.framework/Resources/English .lproj/NetworkInterface.strings\0", 0x0, 0x1B6) = 11 0
    fstat64(0xB, 0x7FFF58A25838, 0x0) = 0 0
    read(0xB, "bplist00\337\020;\001\002\003\004\005\006\a\b\t\n\v\f\r\016\017\020\021\022\02 3\024\025\026\027\030\031\032\033\034\035\036\037 !\"#$%&'()*+,-./0123456789:;<=>?@4ABCDE\fFGHIJKLMNOPQRSTUVWXYZ[\\$]^'_`abcd.ef1 ghijk7lmnoTiPad\\printer-port_\020\026thunderbolt-multiether]generic-etherTvlanX X-iPhoneTpptpUmodemZmultiether_\020\020irda-ircomm-portVbridgeT6to4Tbo", 0x7DF) = 2015 0
    close(0xB) = 0 0
    open("/System/Library/Frameworks/SystemConfiguration.framework/Resources/English .lproj/NetworkInterface.strings\0", 0x0, 0x1B6) = 11 0
    fstat64(0xB, 0x7FFF58A25838, 0x0) = 0 0
    read(0xB, "bplist00\337\020;\001\002\003\004\005\006\a\b\t\n\v\f\r\016\017\020\021\022\02 3\024\025\026\027\030\031\032\033\034\035\036\037 !\"#$%&'()*+,-./0123456789:;<=>?@4ABCDE\fFGHIJKLMNOPQRSTUVWXYZ[\\$]^'_`abcd.ef1 ghijk7lmnoTiPad\\printer-port_\020\026thunderbolt-multiether]generic-etherTvlanX X-iPhoneTpptpUmodemZmultiether_\020\020irda-ircomm-portVbridgeT6to4Tbo", 0x7DF) = 2015 0
    close(0xB) = 0 0

    Test in another account and in safe mode. Any difference?

  • What is a common cause for high sys CPU time and system faults on an Iplanet server?

    Hi,
    A newbie question...
    I am benchmarking an application which uses Iplanet on Solaris (2X400mhz cpus). vmstat output follows.
    Note the high sys time and relatively lower user mode time. Also relatively high system fault rate. Is this
    normal? If not, common causes?
    fyi - we are not running Java VM on this server.
    I have TRUSS output showing kernal activity but dont want to post it here without some further guidance
    on what if anything in it might be helpful.
    Thanks!
    Bernie
    procs memory page disk faults cpu
    r b w swap free re mf pi po fr de sr s0 s6 s7 s8 in sy cs us sy id
    0 0 0 2494224 481536 3 10 3 0 0 0 0 1 0 1 0 413 697 443 1 2 97
    0 0 0 2428464 414368 0 122 0 0 0 0 0 45 0 45 0 972 53598 575 5 28 67
    1 0 0 2428512 414456 0 242 0 0 0 0 0 0 0 0 0 563 1368 756 4 46 50
    0 0 0 2428440 414440 0 263 0 0 0 0 0 0 0 0 0 636 2229 1268 6 49 46
    1 0 0 2428240 414264 10 253 0 0 0 0 0 6 0 6 0 692 176918 873 16 49 3

    Hello
    You can change the DB isolation level to Read uncommitted
    http://technet.microsoft.com/en-us/library/ms378149(v=sql.110).aspx
    or use WITH (NOLOCK)
    I do use NOLOCK option for the dirty reads to avoid locks on the tables
    Javier Villegas |
    @javier_vill | http://sql-javier-villegas.blogspot.com/
    Please click "Propose As Answer" if a post solves your problem or "Vote As Helpful" if a post has been useful to you

  • Plugin-container is using excessive CPU time with nothing going on, ie 50%. How do I inhibit this?????

    ver 8.0.1. filling out this form, plugin-container is using excessive amount of CPU (> 50%) in basic an idle stage. This needs to be stopped. How do I do this???
    thanks

    Can you check this issue on Firefox 9?
    * getfirefox.com

  • HT3302 fell in the water by accident,since i had it in the rice for few weeks, when i turn on apple sign comes on and disappear soon .what could i do .my six year boy was spending most of his time with

    please help

    Expect to pay about $249 for the Out-Of-Warranty replacement.
    Unless you have AppleCare Plus, or some other form of damage protection.

  • Ipad would not power on for the third time, with as many Ipads

    I need some help, is there something wrong with me, or is it the Ipad's that i unfortunately selected. This is the 3rd ipad in less than 3weeks that i have to return to the store. the problem is the same with all three, work, then stop, and would not power on again.
    Is there some negative energy that is emanating from me that i triggering off this negativity?  

    It was said that lightning doesn't strike the same place twice, but that is not true. I have experience many same thing experiences in the past that told me for a certainty, that lightning can and does strike the same place twice. LOL. Unfortunately I didn't have to return the third I-pad i was able to get the problem solved by one of the support community members. (sorry i forgot his name now).
    His suggestion to another one having similar issues, i tried and it work for me. Probably that is what i should have done with the first one. unfortunately I did not know of this support group, only after me returning the 2nd, and i discuss those issues with some computer tech guys.
    I read that to get the I-pad turn on i was suppose to " hold in both the power button and the sleep button together for a few seconds and wait until the apple logo comes on, and by doing so it will not delete any data.
    I did just that, and after about a minute, it powered on, saving me a trip back to the store.
    So thanks guys for your support

  • I am caught in bizarre situation my labview programee takes 100percent cpu time and creates a deadlock

    i am communicating with java programme through data socket but labview creates problem

    You might try putting a 50 msec delay somewhere in your program loop to give the CPU time to perform other tasks. With no delays in a LabVIEW program, it *will* hog all the CPU time.
    Rob

  • [ask]cpu time and disk i/o in tkprof

    this is result of tkprof
    1     call     count       cpu    elapsed       disk      query    current        rows
    2     ------- ------  -------- ---------- ---------- ---------- ----------  ----------
    3     Parse        1      0.00       0.00          0          0          0           0
    4     Execute      1      0.00       0.00          0          0          0           0
    5     Fetch     1001      2.55       5.46      49517      39884          0      100000
    6     ------- ------  -------- ---------- ---------- ---------- ----------  ----------
    7     total     1003      2.55       5.47      49517      39884          0      100000what is the relationship between the cpu time with the disk??

    I mean, what effect the disk to cpu time?What is the effect of barometric pressure to water depth?
    When all else fails, Read The Fine Manual
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14211/sqltrace.htm#PFGRF01040
    code]
    count = number of times OCI procedure was executed
    cpu = cpu time in seconds executing
    elapsed = elapsed time in seconds executing
    disk = number of physical reads of buffers from disk
    query = number of buffers gotten for consistent read
    current = number of buffers gotten in current mode (usually for update)
    rows = number of rows processed by the fetch or execute call
    There is minimal relationship between "cpu time in seconds executing" for most SQL and "number of physical reads of buffers from disk".
    CPU Times includes CPU activity other than working to complete physical reads of buffers from disk
    Each measures in its own units based upon activity two different subsystem components.

  • DPS 6.3 takes 100% of CPU time

    I've 2 couple of DPS 6.3 proxy servers running upstream 2 couple of DS 6.3 on RHAS 4U6, JRE 1.5.0_16-b02
    located on 2 different sites.(6.3_KS_6661375_6670752_6654625_6513526_6653253_663073_6723858 B2008.0717.2043)
    I notice about once a week to every 2 weeks that a proxy server on each site starts to send
    to me warning messages about an LDAP data source not available on the remote site.
    The proactive monitor thread logs messages such as "exceeded maximum allowed timeout of 10000 ms" .
    The problem is that when it occurs, the proxy starts to take all the available CPU time so that there's
    no other solution than restarting it .
    Known problem ?

    The problem occured today, I had about 35 threads running among which the 5 below were taking all the CPU time,
    the others being under 2% CPU :
    PID USER PR NI %CPU TIME+ %MEM VIRT RES SHR S COMMAND
    15333 root 25 0 90 14:03.92 55.3 1003m 558m 11m R java
    15309 root 21 0 85 15:12.86 55.3 1003m 558m 11m R java
    15353 root 23 0 85 17:57.53 55.3 1003m 558m 11m R java
    15335 root 25 0 68 16:56.31 55.3 1003m 558m 11m R java
    15312 root 25 0 63 4175:46 55.3 1003m 558m 11m R java
    The jstack trace extract is as follows for the above threads:
    Thread 15309: (state = IN_VM)
    - java.lang.Throwable.getStackTraceElement(int) @bci=0 (Compiled frame; information may be imprecise)
    - java.lang.Throwable.getOurStackTrace() @bci=34, line=592 (Compiled frame)
    - java.lang.Throwable.getStackTrace() @bci=1, line=583 (Compiled frame)
    - com.sun.directory.proxy.util.StringBufferPool.getBuffer() @bci=130, line=109 (Compiled frame)
    - com.sun.directory.proxy.util.Log.exceptionToString(java.lang.Exception) @bci=3, line=892 (Compiled frame)
    - com.sun.directory.proxy.asn1.ASN1Reader.readElement() @bci=958, line=513 (Compiled frame)
    - com.sun.directory.proxy.asn1.ASN1Reader.readElement(int) @bci=36, line=226 (Compiled frame)
    - com.sun.directory.proxy.server.MultiplexedOpConnectionV2.readMessage(int, int) @bci=309, line=338 (Compiled frame)
    - com.sun.directory.proxy.server.OpConnection.readMessage(int) @bci=12, line=333 (Compiled frame)
    - com.sun.directory.proxy.server.LDAPServer.getConnection(int, com.sun.directory.proxy.server.ClientConnection, com.sun.directory.proxy.ldap.BindRequest, int) @bci=449, line=1806 (Compiled frame)
    - com.sun.directory.proxy.server.LDAPServer.getReadConnection(int, boolean, com.sun.directory.proxy.server.ClientConnection, com.sun.directory.proxy.ldap.BindRequest) @bci=284, line=1649 (Compiled frame)
    - com.sun.directory.proxy.extensions.ProportionalLoadBalancingAlgorithm.getSearchConnection(com.sun.directory.proxy.server.ClientOperation, int, boolean, com.sun.directory.proxy.server.ClientConnection, com.sun.directory.proxy.ldap.BindRequest) @bci=371, line=2132 (Compiled frame)
    - com.sun.directory.proxy.server.BackendSet.getSearchConnection(com.sun.directory.proxy.server.ClientOperation, com.sun.directory.proxy.server.ClientConnection, int, boolean, com.sun.directory.proxy.ldap.BindRequest) @bci=70, line=822 (Compiled frame)
    - com.sun.directory.proxy.server.LDAPDataView.getSearchContext(com.sun.directory.proxy.server.ClientOperation, boolean, java.lang.StringBuffer, com.sun.directory.proxy.server.DataViewOpContext) @bci=152, line=220 (Compiled frame)
    - com.sun.directory.proxy.server.LDAPDataView.getSearchContext(com.sun.directory.proxy.server.ClientOperation, java.lang.StringBuffer, com.sun.directory.proxy.server.DataViewOpContext) @bci=5, line=137 (Compiled frame)
    - com.sun.directory.proxy.server.WorkerThread.runThread() @bci=166, line=150 (Compiled frame)
    Error occurred during stack walking:
    Thread 15312: (state = IN_JAVA)
    Thread 15333: (state = IN_VM)
    - java.lang.Thread.yield() @bci=0 (Compiled frame; information may be imprecise)
    - com.sun.directory.proxy.server.MultiplexedOpConnectionV2.readFromNetwork(int, int) @bci=72, line=663 (Compiled frame)
    - com.sun.directory.proxy.server.MultiplexedOpConnectionV2.readMessage(int, int) @bci=309, line=338 (Compiled frame)
    - com.sun.directory.proxy.server.OpConnection.readMessage(int) @bci=12, line=333 (Compiled frame)
    - com.sun.directory.proxy.server.LDAPDataView.processSearchRequest(com.sun.directory.proxy.server.LDAPDataViewOpContext, com.sun.directory.proxy.ldap.LDAPMessage, com.sun.directory.proxy.server.DataViewConsumer) @bci=66, line=3387 (Compiled frame)
    - com.sun.directory.proxy.server.LDAPDataViewOpContext.processSearchRequest(com.sun.directory.proxy.ldap.LDAPMessage, com.sun.directory.proxy.server.DataViewConsumer) @bci=10, line=203 (Compiled frame)
    - com.sun.directory.proxy.server.WorkerThread.runThread() @bci=166, line=150 (Compiled frame)
    Error occurred during stack walking:
    Thread 15335: (state = IN_VM)
    - java.net.SocketInputStream.socketRead0(java.io.FileDescriptor, byte[], int, int, int) @bci=0 (Compiled frame; information may be imprecise)
    - java.net.SocketInputStream.read(byte[], int, int) @bci=84, line=129 (Compiled frame)
    - com.sun.directory.proxy.asn1.ASN1Reader.readElement(int) @bci=36, line=226 (Compiled frame)
    - com.sun.directory.proxy.server.MultiplexedOpConnectionV2.readMessage(int, int) @bci=309, line=338 (Compiled frame)
    - com.sun.directory.proxy.server.OpConnection.readMessage(int) @bci=12, line=333 (Compiled frame)
    - com.sun.directory.proxy.server.LDAPServer.getConnection(int, com.sun.directory.proxy.server.ClientConnection, com.sun.directory.proxy.ldap.BindRequest, int) @bci=449, line=1806 (Compiled frame)
    - com.sun.directory.proxy.server.LDAPServer.getReadConnection(int, boolean, com.sun.directory.proxy.server.ClientConnection, com.sun.directory.proxy.ldap.BindRequest) @bci=284, line=1649 (Compiled frame)
    - com.sun.directory.proxy.extensions.ProportionalLoadBalancingAlgorithm.getSearchConnection(com.sun.directory.proxy.server.ClientOperation, int, boolean, com.sun.directory.proxy.server.ClientConnection, com.sun.directory.proxy.ldap.BindRequest) @bci=371, line=2132 (Compiled frame)
    - com.sun.directory.proxy.server.BackendSet.getSearchConnection(com.sun.directory.proxy.server.ClientOperation, com.sun.directory.proxy.server.ClientConnection, int, boolean, com.sun.directory.proxy.ldap.BindRequest) @bci=70, line=822 (Compiled frame)
    - com.sun.directory.proxy.server.LDAPDataView.getSearchContext(com.sun.directory.proxy.server.ClientOperation, boolean, java.lang.StringBuffer, com.sun.directory.proxy.server.DataViewOpContext) @bci=152, line=220 (Compiled frame)
    - com.sun.directory.proxy.server.LDAPDataView.getSearchContext(com.sun.directory.proxy.server.ClientOperation, java.lang.StringBuffer, com.sun.directory.proxy.server.DataViewOpContext) @bci=5, line=137 (Compiled frame)
    - com.sun.directory.proxy.server.WorkerThread.runThread() @bci=166, line=150 (Compiled frame)
    Error occurred during stack walking:
    Thread 15353: (state = IN_VM)
    - java.lang.Throwable.fillInStackTrace() @bci=0 (Compiled frame; information may be imprecise)
    - java.lang.Throwable.<init>() @bci=10, line=181 (Compiled frame)
    - com.sun.directory.proxy.util.Log.exceptionToString(java.lang.Exception) @bci=3, line=892 (Compiled frame)
    - com.sun.directory.proxy.asn1.ASN1Reader.readElement() @bci=958, line=513 (Compiled frame)
    - com.sun.directory.proxy.asn1.ASN1Reader.readElement(int) @bci=36, line=226 (Compiled frame)
    - com.sun.directory.proxy.server.MultiplexedOpConnectionV2.readMessage(int, int) @bci=309, line=338 (Compiled frame)
    - com.sun.directory.proxy.server.OpConnection.readMessage(int) @bci=12, line=333 (Compiled frame)
    - com.sun.directory.proxy.server.LDAPServer.getConnection(int, com.sun.directory.proxy.server.ClientConnection, com.sun.directory.proxy.ldap.BindRequest, int) @bci=449, line=1806 (Compiled frame)
    - com.sun.directory.proxy.server.LDAPServer.getReadConnection(int, boolean, com.sun.directory.proxy.server.ClientConnection, com.sun.directory.proxy.ldap.BindRequest) @bci=284, line=1649 (Compiled frame)
    - com.sun.directory.proxy.extensions.ProportionalLoadBalancingAlgorithm.getSearchConnection(com.sun.directory.proxy.server.ClientOperation, int, boolean, com.sun.directory.proxy.server.ClientConnection, com.sun.directory.proxy.ldap.BindRequest) @bci=371, line=2132 (Compiled frame)
    - com.sun.directory.proxy.server.BackendSet.getSearchConnection(com.sun.directory.proxy.server.ClientOperation, com.sun.directory.proxy.server.ClientConnection, int, boolean, com.sun.directory.proxy.ldap.BindRequest) @bci=70, line=822 (Compiled frame)
    - com.sun.directory.proxy.server.LDAPDataView.getSearchContext(com.sun.directory.proxy.server.ClientOperation, boolean, java.lang.StringBuffer, com.sun.directory.proxy.server.DataViewOpContext) @bci=152, line=220 (Compiled frame)
    - com.sun.directory.proxy.server.LDAPDataView.getSearchContext(com.sun.directory.proxy.server.ClientOperation, java.lang.StringBuffer, com.sun.directory.proxy.server.DataViewOpContext) @bci=5, line=137 (Compiled frame)
    - com.sun.directory.proxy.server.WorkerThread.runThread() @bci=166, line=150 (Compiled frame)
    Error occurred during stack walking:
    I'll double check the proxy logs but the last time it occured, I had such like messages:
    [04/Nov/2008:10:06:02 +0100] - CONN - WARN - [Thread Worker Thread 33] Unable to create a connection to LDAP server ..... Exception: Unable to open socket to ..... -- exceeded maximum allowed timeout of 10000 ms
    [04/Nov/2008:10:06:02 +0100] - CONN - WARN - [Thread Worker Thread 32] Unable to create a connection to LDAP server ......Exception: Unable to open socket to ..... -- exceeded maximum allowed timeout of 10000 ms
    [04/Nov/2008:10:06:02 +0100] - BACKEND - WARN - Availability check indicated that LDAP server ...... is not available. Stopping server.
    [04/Nov/2008:10:06:02 +0100] - BACKEND - WARN - Availability check indicated that LDAP server ...... is not available. Stopping server.

  • To compare given time with the system time

    i need to compare the given time with system time.i dont know how to compare with system time
    in my application i need to end the time when both time is equal i need to give permission to access my page
    thank u
    plz help me

    Date d =new Date();
    System.out.println(d);
    Date d1 =new Date("04/28/2006 16:37");
    System.out.println(" "+d.getTime()+"  "+d1.getTime());you can use like this. d1 contains the user date
    as u mentioned
    startTime = new Date( "04/28/2006 12:37");
    EndTime = new Date( "04/28/2006 18:37");
    if curTime = new Date();
    then you can compare like
    if(curTime.after(startTime) && curTime.before(EndTime)
    hope it will work

  • HT201269 Hi. I have shared an Apple ID with my children for some time.  As they are getting older they do not wnat me seeing all their messages, photos etc so want their own accounts.  How can they access their purchased music and apps on the new account

    Hi. I have shared an Apple ID with my children for some time.  As they are getting older they do not wnat me seeing all their messages, photos etc so want their own accounts.  How can they access their purchased music and apps on the new account please?

    Yes.
    On their iOS devices, under Settings>iTunes & App Store, they should use your Apple ID. When they log into iCloud, iMessage and Facetime, they should use their personal Apple IDs.

Maybe you are looking for

  • Upgrading to lager Hard Drive

    Hi, I recently purchased my MacBook. I have already used about 27 GB of the 120 GB HDD. I have a feeling I'm going to fill the rest of that up pretty fast due to the amount of video and music content I put on this computer. I have decided the best wa

  • How do I update a program written for a Legacy DAQ into one for a USB DAQ?

        I am trying to rewrite a program, replacing all of the AI Waveform Scan and AO Update Channel VIs in it with DAQmx VIs. This seems to be the only way for the USB DAQ to respond to the program and not get any errors. I was just hoping for some hel

  • How to resolve error 403?

    I navigated to youtube.com to look up a video.  I selected it and the page changed and loaded up to the point where the controls would appear.  It froze and reloading in any form would not resolve.  In fact, after trying a few times, a white page loa

  • Urgent. Need to know about user exits.

    Hello Everyone, I am new to this forum. I need to know about user exits. My next project requires me to implement user exits, screen exits, etc. I am a rookie to this topic. Can anyone help me as to how to start with his topic. Any sort of help is ap

  • How do i solve the "blocked plugin" issue?

    I inadvertently downloaded an Adobe update and subsequently started getting a "blocked plugin" message when I tried to use some applications; I then uninstalled Adobe and still have blocked plugins, now on almost everything, i.e. YouTube, videos, etc