ValidatePolls error with a distributed lock

Hello
Running 3.7.1.2
I have 24 storage enabled Coherence nodes. Every night a client thread acquires a lock for a cache and key (other client threads also try to acquire the same lock and key afterwards). The lock request will hit one of the server nodes as the cache is setup with a distributed scheme. The service responsible for the lock cache is configured with 0 worker threads. Question is, why do I get the message below in the log? The service thread is not deadlocked, nor blocked, when I analyze the thread dump in the morning. What is the function of the poll? Cheers Niklas
2012-09-06 03:14:08,413 ERROR [Coherence](Logger@9245523 3.7.1.2) ()()(): (member=67): validatePolls: Manual intervention is required to stop this node or the members that have not responded to this poll (gap size=4194420): Poll
PollId=2118256570, active
InitTimeMillis=1346893755440
Service=DistributedCache (2)
RespondedMemberSet=[]
LeftMemberSet=[]
RemainingMemberSet=[19]
Request=Message "LockRequest"
FromMember=Member(Id=67, Timestamp=2012-08-16 02:24:31.96, Address=10.24.0.169:8088, MachineId=65018, Location=site:X-site-prod,machine:XXXX1903,process:3028, Role=integration)
FromMessageId=2429713031
Internal=false
MessagePartCount=1
PendingCount=0
MessageType=67
ToPollId=0
Poll=null
Packets
Service=PartitionedCache{Name=DistributedCache, State=(SERVICE_STARTED), LocalStorage=disabled}
ToMemberSet=MemberSet(Size=1
Member(Id=19, Timestamp=2012-08-16 02:22:19.38, Address=10.24.0.153:8088, MachineId=21782, Location=site:X-site-prod,machine:XXXX1877,process:12400, Role=coherence)
NotifySent=false
CacheName=com.xx.xxxx.lock
WaitTimeout=1346894205490, LeaseExpiration=9223372036854775807
} within array capacity=8388608, expanions=17, size=2122451010, window index=0, window size=51, first index=2122450959, last index=2122451009, optimistic gets=2127944257, place holder allocations=548, waits=0, waiting threads=0

Here are a few more details:
The client thread that acquires the lock will keep the lock for at least 2 hours whilst clearing and loading a number of caches. Meanwhile another thread tries to obtain the lock in 5 minute intervals with
while(!cache.lock("motherOfAllLocks", 5*60*1000))
     LOG.debug("Waited another five minutes");
In the log I typically find that the other thread has waited a number of five minute intervals before the validatePolls ERROR appears. Subsequently the validatePolls error will show up roughly every 4 minutes during half an hour before the "Waited another five minutes" appears. So in my case the lock(Object oKey, long cWait) method will wait a lot longer than cWait millis. Today I also noticed a cryptic warning message prior to the cryptic validatePolls error message:
2012-09-11 04:35:28,652 WARN [Coherence](Logger@9217551 3.7.1.2) ()()(): (member=66): PollArray window size has grown to 8388608 elements; first element[1520943] = com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.partitionedService.PartitionedCache$LockRequest$Poll:Poll
PollId=1520943, active
InitTimeMillis=1347330683572
Service=DistributedCache (2)
RespondedMemberSet=[]
LeftMemberSet=[]
RemainingMemberSet=[8]
Thanx for any help, cheers Niklas

Similar Messages

  • BAPI_GOODSMVT_CREATE ERROR: A System Error Has Occurred While Locking

    Hi All,
    I am having a problem with a Z program that I am writing.
    Basically, it uses the BAPI mentioned in the title. The program will read excel file that is being uploaded, and then will segregate the line items by 200 lines.
    That means, if I were to upload 1000 line items, the BAPI will be called and executed 5 times (1000/200 = 5).
    However, when trying to upload 10000 line items, I received this error after around 3000 line items.
    "A system error has occurred while locking".
    This happens when IMPORT parameter TEST_RUN is set to 'X'.
    I found this after some googling: http://sap.ittoolbox.com/groups/technical-functional/sap-basis/lock-entry-system-error-1674434
    I am hoping for your expert thoughts on this.
    Thank you.

    BAPI TO Upload Inventory Data
    * GMCODE Table T158G - 01 - MB01 - Goods Receipts for Purchase Order
    *                      02 - MB31 - Goods Receipts for Prod Order
    *                      03 - MB1A - Goods Issue
    *                      04 - MB1B - Transfer Posting
    *                      05 - MB1C - Enter Other Goods Receipt
    *                      06 - MB11
    * Domain: KZBEW - Movement Indicator
    *      Goods movement w/o reference
    *  B - Goods movement for purchase order
    *  F - Goods movement for production order
    *  L - Goods movement for delivery note
    *  K - Goods movement for kanban requirement (WM - internal only)
    *  O - Subsequent adjustment of "material-provided" consumption
    *  W - Subsequent adjustment of proportion/product unit material
    report zbapi_goodsmovement.
    parameters: p-file like rlgrap-filename default
                                     'c:\sapdata\TEST.txt'.
    parameters: e-file like rlgrap-filename default
                                     'c:\sapdata\gdsmvterror.txt'.
    parameters: xpost like sy-datum default sy-datum.
    data: begin of gmhead.
            include structure bapi2017_gm_head_01.
    data: end of gmhead.
    data: begin of gmcode.
            include structure bapi2017_gm_code.
    data: end of gmcode.
    data: begin of mthead.
            include structure bapi2017_gm_head_ret.
    data: end of mthead.
    data: begin of itab occurs 100.
            include structure bapi2017_gm_item_create.
    data: end of itab.
    data: begin of errmsg occurs 10.
            include structure bapiret2.
    data: end of errmsg.
    data: wmenge like iseg-menge,
          errflag.
    data: begin of pcitab occurs 100,
            ext_doc(10),           "External Document Number
            mvt_type(3),           "Movement Type
            doc_date(8),           "Document Date
            post_date(8),          "Posting Date
            plant(4),              "Plant
            material(18),          "Material Number
            qty(13),               "Quantity
            recv_loc(4),           "Receiving Location
            issue_loc(4),          "Issuing Location
            pur_doc(10),           "Purchase Document No
            po_item(3),            "Purchase Document Item No
            del_no(10),            "Delivery Purchase Order Number
            del_item(3),           "Delivery Item
            prod_doc(10),          "Production Document No
            scrap_reason(10),      "Scrap Reason
            upd_sta(1),            "Update Status
          end of pcitab.
    call function 'WS_UPLOAD'
      exporting
        filename                      = p-file
        filetype                      = 'DAT'
    * IMPORTING
    *   FILELENGTH                    =
      tables
        data_tab                      = pcitab
    * EXCEPTIONS
    *   FILE_OPEN_ERROR               = 1
    *   FILE_READ_ERROR               = 2
    *   NO_BATCH                      = 3
    *   GUI_REFUSE_FILETRANSFER       = 4
    *   INVALID_TYPE                  = 5
    *   OTHERS                        = 6
    if sy-subrc <> 0.
      message id sy-msgid type sy-msgty number sy-msgno
              with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      exit.
    endif.
    gmhead-pstng_date = sy-datum.
    gmhead-doc_date = sy-datum.
    gmhead-pr_uname = sy-uname.
    gmcode-gm_code = '01'.   "01 - MB01 - Goods Receipts for Purchase Order
    loop at pcitab.
      itab-move_type  = pcitab-mvt_type.
      itab-mvt_ind    = 'B'.
      itab-plant      = pcitab-plant.
      itab-material   = pcitab-material.
      itab-entry_qnt  = pcitab-qty.
      itab-move_stloc = pcitab-recv_loc.
      itab-stge_loc   = pcitab-issue_loc.
      itab-po_number  = pcitab-pur_doc.
      itab-po_item    = pcitab-po_item.
      concatenate pcitab-del_no pcitab-del_item into itab-item_text.
      itab-move_reas  = pcitab-scrap_reason.
      append itab.
    endloop.
    loop at itab.
      write:/ itab-material, itab-plant, itab-stge_loc,
              itab-move_type, itab-entry_qnt, itab-entry_uom,
              itab-entry_uom_iso, itab-po_number, itab-po_item,
                                                  pcitab-ext_doc.
    endloop.
    call function 'BAPI_GOODSMVT_CREATE'
      exporting
        goodsmvt_header             = gmhead
        goodsmvt_code               = gmcode
    *   TESTRUN                     = ' '
    * IMPORTING
        goodsmvt_headret            = mthead
    *   MATERIALDOCUMENT            =
    *   MATDOCUMENTYEAR             =
      tables
        goodsmvt_item               = itab
    *   GOODSMVT_SERIALNUMBER       =
        return                      = errmsg
    clear errflag.
    loop at errmsg.
      if errmsg-type eq 'E'.
        write:/'Error in function', errmsg-message.
        errflag = 'X'.
      else.
        write:/ errmsg-message.
      endif.
    endloop.
    if errflag is initial.
      commit work and wait.
      if sy-subrc ne 0.
        write:/ 'Error in updating'.
        exit.
      else.
        write:/ mthead-mat_doc, mthead-doc_year.
        perform upd_sta.
      endif.
    endif.
    *       FORM UPD_STA                                                  *
    form upd_sta.
      loop at pcitab.
        pcitab-upd_sta = 'X'.
        modify pcitab.
      endloop.
      call function 'WS_DOWNLOAD'
        exporting
          filename                      = p-file
          filetype                      = 'DAT'
    * IMPORTING
    *   FILELENGTH                    =
        tables
          data_tab                      = pcitab
    * EXCEPTIONS
    *   FILE_OPEN_ERROR               = 1
    *   FILE_READ_ERROR               = 2
    *   NO_BATCH                      = 3
    *   GUI_REFUSE_FILETRANSFER       = 4
    *   INVALID_TYPE                  = 5
    *   OTHERS                        = 6
    endform.
    Code Formatted by: Alvaro Tejada Galindo on Dec 26, 2008 10:20 AM

  • Error with Layouts when applying package

    Hello
    I created a package with the "Deploy UI without pictures" unit, then sent it to the CRM so it is automatically distributed and executed on the mobile clients.
    The replication with ConnTrans runs fine, but when upgrading we have an error with the Layouts/ folders, for all languages.
    The error is
    Error description : Error opening File
    Error occurred in module ClientUpgrade.Shared.CCompressor
    Return value of command: 6
    I applied the OSS Note 950549 but nothing changes
    Any idea ?
    Thanks and Regards,
    François

    Hi
    this problem occurs when one of the components used by the Client
    upgrade tool is missing.
    Do you use the same machine for upgrading and deploying. Please check
    whether the file sapcar.exe is present in the same folder as
    ClientUpgradeDeployer.exe. You don't need to specify the path to it.
    Please check the location of the ClientUpgradeDeployer.exe.
    Please also test whether the problem is related to write protection and
    empty spaces in the temp folder. Make sure the temp folder doesn't
    contain blank spaces.
    Please also test whether the folder sap\mobile\bin is read only.
    If yes, then please remove the "ReadOnly" attribute
    since the SAPCAR.exe creates a files in this directory
    Regards,
    Gervase

  • Error with SMS_DISTRIBUTION_MANAGER

    Hi,
    Error with SMS_DISTRIBUTION_MANAGER shows up while, distribute a package:
    SMS_DISTRIBUTION_MANAGER
    CONFIGMGRDTS
    Possible cause: Distribution manager does not have access to either the package source directory or the distribution point
    Company server is down, Need help asap
    Thanks in advance.

    Are you seeing this in component status? Has something been changed (specifically the ConfigMgr servers computer account permissions on the source share)? Check the distmgr.log file for additional information.
    Gerry Hampson | Blog:
    www.gerryhampsoncm.blogspot.ie | LinkedIn:
    Gerry Hampson | Twitter:
    @gerryhampson

  • File Error: The File Is locked

    This is odd. I have multiple timelines, a nightmare project. I tried to save a the prjoject but FCP6 told me that "File Error: The File Is locked" This has never ever happened before. What has happened? I didn't change a thing! I saved the project with a different name and continued. Still, I'm stressed that this will haunt me when we're doing the online or something....
    Guys, do you have a clue why FCP told the file would be locked? The manual says it has something to do with file names but I didn't change anything...

    Right click on the project file in the finder and check if the LOCKED tick is checked. If so, uncheck it.

  • Whay am I having script errors with some of my websites only on Firefox, not other browsers, causing the computer to freeze for a bit at a time.

    I keep getting "script" errors and my computer locking up while using Mozilla Firefox on some of my websites. I don't have this problem while using Internet Explorer. Why has this just started and how can I resolve this? I like Firefox, but will have to start using a different browser if this doesn't get resolved.

    Hello,
    '''Try Firefox Safe Mode''' to see if the problem goes away. Safe Mode is a troubleshooting mode, which disables most add-ons.
    ''(If you're not using it, switch to the Default theme.)''
    * On Windows you can open Firefox 4.0+ in Safe Mode by holding the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * On Mac you can open Firefox 4.0+ in Safe Mode by holding the '''option''' key while starting Firefox.
    * On Linux you can open Firefox 4.0+ in Safe Mode by quitting Firefox and then going to your Terminal and running: firefox -safe-mode (you may need to specify the Firefox installation path e.g. /usr/lib/firefox)
    * Or open the Help menu and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    [[Image:FirefoxSafeMode|width=520]]
    ''Once you get the pop-up, just select "'Start in Safe Mode"''
    [[Image:Safe Mode Fx 15 - Win]]
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshooting extensions and themes]] article for that.
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    ''When you figure out what's causing your issues, please let us know. It might help other users who have the same problem.''
    Thank you.

  • Rhsnippet.apj Error with RoboHTML 11 Project on Network

    I have an RH 11 project on a network drive. The project has 485 snippets. When adding or modifying snippets I get the following error:
    An error occurred while trying to read data from <n:\roboHelp Projects\\rhsnippet.apj <1>.
    When I open the rhsnippet.apj file, the file is truncated like this:
    <file>
                <name>mysnippet.hts</name>
                <comments></comments
    It seems that RoboHelp cannot complete writing to the APJ file.
    After closing and reopening the project, I then get a message saying the cpd is corrupt. After deleting the cpd and reopening the project, I still get a message saying the project is corrupt.
    The only way I have found to fix the project is to move the project back to a local drive, delete the cpd, delete the rhsnippet.apj file and re-import all the snippets.
    I have seen a similar issue which was resolved by moving to another network drive. I moved my project to another network drive but the issue still occurred.
    rhsnippet.apj Error with RoboHTML 10 Project on Network
    My experience with R10 R11 projects on a network drive has been problematic, despite Adobes assertion that R11 and R10 projects now work on network drives. For example, Adobe support confirmed that RoboHelp does not support projects on a network drive that uses DFS (Distributed File System). I have found that large projects seem to be problematic on network drives.
    I suspect that part of this issue is the large amount of snippets I have, as other projects on the network drive don't appear to have this issue as they do not contain a large amount of snippets.
    If anybody else has experienced a similar issue with projects on a network drive related to snippets I'd be grateful for some advice.

    Thanks for the advice Peter, but deleting the CPD does not fix the issue. I have 500 snippets because I have 500 fields (and growing all the time) to document that can appear in multiple reports and also require that each field is documented separately. So although I seem to be pushing the envelope with the amount of snippets, I am grateful for the existence of snippets because trying to document this without snippets would be a nightmare!
    One thing that annoys me is that you cannot apply a style sheet to multiple snippets at the same time. At least I have not found a way. Is there a way of doing this – short of editing the HTML for each snippet individually? I will add this to a feature request for RoboHelp as well as log a bug report with Adobe.

  • IDOC Error with STATUS 51

    HI,
    I has a JMS-XI-IDOC Scenario where i has used BPM to get the response from RFC wehre the RFC input is the message from JMS.
    The Response Message from RFC is mapped to IDOC .The Scenario is working and the IDOC is getting created in SAP System Iam getting the Error with Status = 51 and the required field LIFNR not found.
    Request you to please provide the suggestion whether i need to make any settings to resolve this.
    Thanks & Regards,
    Y.Raj.

    Hi !
    Status 51 in most cases is because of lock occured in R3, you can check the kind of error in BD87. If it is a lock error then you can directly say process all
    also check in the last page of this URL
    http://help.sap.com/saphelp_nw04/helpdata/en/d4/0d67e4d85511d2a6080060087832f8/frameset.htm
    Thanks
    Edited by: Abhishek Agrahari on Sep 22, 2008 9:54 AM

  • CUA SU10 issue with users getting locked

    I did some role change using SU10 on CUA central system for 200 users. 45 of the users got locked with global admin lock in the child system for which I made the role changes.  These user locks are shown in the child system change documents log as changes by the CUA RFC user. I have this problem everytime I use su10. Why does this happen?  What can I do about it? Thanks, KT

    Hi Todd,
    propably you have some inconsistencies in your landscape....
    the cause of such 'unwanted' effects is the fact that if you change a user in your CUA central system, the whole user information is picked, then edited with you changes and afterwards distributed to all child systems.
    So what I could imagine in your example is as follows:
    User has a global lock in central system already, the particular child system did not have that information (user is still unlocked there). Several causes are possible, for instance the lock idoc did not get processed, Child system was not available/connected to CUA when the lock had been set,......).
    At the next update of that user (assign a role), the lock information from the central system is pushed to that child.
    Why?
    Because the design is to assure data consistency between central and child system. Therefore all the user information from central system is pushed to child at any user change. (that is also why you will see in SCUL 3 idocs for each user change (also user and profile idocs are pushed, even if you have changed the role assignement only).
    So what you could check is, if that users got the lock flag (128) already in the past somewhen.
    b.rgds, Bernhard

  • "out of memeory" error with Adobe Reader x & IE8

    Hello,
    Getting an "out of memory" error with Adobe Reader X & IE8. This is a locked down bank environment so upgrading to a higher version of Adobe is out of the question.
    I looked around on the web and noticed that many people are experiencing this "out of memory error" but no fix has been provided.
    Can you help?

    Thanks for the reply and suggestion - unfortunately, I get this error when I open Adobe Reader X itself in addition to launching a pdf within IE9 (my OS is Win7x64 Ultimate).  I can launch Adobe Reader X, but when I open any kind of PDF file (local copy, remote, web, etc...) the error dialog box pops up.  Everything seems functional with Reader, it's just a frustrating (er, irritating!) thing!  I think after the weekend I will 'give up' and remove the Reader X and go back to my 'old' (but functioning!) Reader - thanks for the comment and suggestion tho!

  • MSI 1612 Error with ZEN 7 SP1

    Since upgrading to ZENworks for Desktops 7, I have been unable to
    distribute MSI applications. I always seem to have an error 1612 when
    the application tries to distribute. I believe that this error usually
    means that the path to the installation files cannot be found, usually
    because of a file rights issue, but that doesn't seem to be the case here.
    I distribute most applications by associating them to workstations or
    workstations in a container, though I have the same 1612 error if I do
    associate by user. I have the same problem whether the Distribute in
    Workstation Security Space if Workstation Associated option is enabled
    or disabled.
    I typically use the File Rights screen under the Common tab to assign
    rights to the distribution files directory, so I know that the
    workstation object has rights to the files. Just to test this, I
    created an app object to run an Explorer window as an unsecured system
    user and made sure that I could browse to the distribution directory as
    the System account.
    I am currently running ZENworks 7 SP1 on a NetWare 6.5 SP5 server. All
    workstations are running Windows XP Pro SP2.
    As an experiment, I tried working around the problem by creating a
    simple application object and running an MSI installation by calling
    msiexec from a predistribution script as follows:
    %WINDIR%\System32\msiexec.exe /i "\\GRYPHON\DISTRIBUTION\West Point
    Bridge Designer 2004\West Point Bridge Designer 2004.msi" /qn
    Installing this way seems to work fine.
    Any ideas what is going wrong?
    Cory Calvert
    District Network Administrator
    Waterloo School District

    I'd like to know of this hotfix as well. I cant distribute a msi app
    either due to the 1612 errors.
    [email protected] wrote:
    > I'm experiencing the 1612 error with Zen 7 sp1. What hotfix are you
    > refering to?
    >
    > Lyle
    >
    > On Wed, 10 Jan 2007 15:48:14 GMT, dt <[email protected]> wrote:
    >
    >> Cory Calvert wrote:
    >>> I checked, and am definitely running the SP1 agent, version 7.0.1.0, so
    >>> that shouldn't be an issue. I don't think that it can' really be a
    >>> rights issue, since I can browse to the installation files as the system
    >>> account on the local machine and even get the installation to work by
    >>> calling msiexec from a predistribution script, though I have tried
    >>> assigning file rights to the entire organization just to make sure but
    >>> still had the same problem.
    >>>
    >>> Denis wrote:
    >>>> Few hints:
    >>>> Try assign rights directly to WS or WS container instead through
    >>>> application object.
    >>>> Try SP1 agent, if you are not using it already.
    >>>>
    >>>> Denis
    >>>>
    >>>> "Cory Calvert" <[email protected]> wrote in message
    >>>> news:[email protected]...
    >>>>> Since upgrading to ZENworks for Desktops 7, I have been unable to
    >>>>> distribute MSI applications. I always seem to have an error 1612
    >>>>> when the application tries to distribute. I believe that this error
    >>>>> usually means that the path to the installation files cannot be
    >>>>> found, usually because of a file rights issue, but that doesn't seem
    >>>>> to be the case here.
    >>>>>
    >>>>> I distribute most applications by associating them to workstations or
    >>>>> workstations in a container, though I have the same 1612 error if I
    >>>>> do associate by user. I have the same problem whether the Distribute
    >>>>> in Workstation Security Space if Workstation Associated option is
    >>>>> enabled or disabled.
    >>>>>
    >>>>> I typically use the File Rights screen under the Common tab to assign
    >>>>> rights to the distribution files directory, so I know that the
    >>>>> workstation object has rights to the files. Just to test this, I
    >>>>> created an app object to run an Explorer window as an unsecured
    >>>>> system user and made sure that I could browse to the distribution
    >>>>> directory as the System account.
    >>>>>
    >>>>> I am currently running ZENworks 7 SP1 on a NetWare 6.5 SP5 server.
    >>>>> All workstations are running Windows XP Pro SP2.
    >>>>>
    >>>>> As an experiment, I tried working around the problem by creating a
    >>>>> simple application object and running an MSI installation by calling
    >>>>> msiexec from a predistribution script as follows:
    >>>>>
    >>>>> %WINDIR%\System32\msiexec.exe /i "\\GRYPHON\DISTRIBUTION\West Point
    >>>>> Bridge Designer 2004\West Point Bridge Designer 2004.msi" /qn
    >>>>>
    >>>>> Installing this way seems to work fine.
    >>>>>
    >>>>> Any ideas what is going wrong?
    >>>>>
    >>>>>
    >>>>>
    >>>>> Cory Calvert
    >>>>> District Network Administrator
    >>>>> Waterloo School District
    >>>>
    >> I believe there is a bug of some sort regarding sp1... i am using the
    >> sp1 hot fix and it all works fine, but when I test on a sp1 i get the
    >> 1622 error.....using a basic and calling the msiexec works on both.
    >

  • Jvm returns an Error with Id: 564D3F4F5045524154494F4E530E4350500

    I tried to run our Bea weblogic(8.1 sp5) application service through the windows services. I installed the service using the beasvc.cmd distributed by weblogic along with the Appl . Server Installation. We use the jvm. 142_08. When i start the application server using the windows services, it starts perfectly. But when i try to stop the service through windows services panel, the error with Error ID: 564D3F4F5045524154494F4E530E4350500181 is reported in the console.
    The extract of the error is as below:
    -------------------------------------------------------------------------->>>>>>>>>>>>>
    [Wed Mar 15 14:13:40 2006] [ServiceStart] Informing SCM about SERVICE_STOP
    # HotSpot Virtual Machine Error, Internal Error
    # Please report this error at
    # http://java.sun.com/cgi-bin/bugreport.cgi
    # Java VM: Java HotSpot(TM) Client VM (1.4.2_08-b03 mixed mode)
    # Error ID: 564D3F4F5045524154494F4E530E4350500181
    # Problematic Thread: prio=9 tid=0x38bad4d0 nid=0x79c runnable
    Heap at VM Abort:
    Heap
    def new generation total 235968K, used 204476K [0x10010000, 0x20010000, 0x20010000)
    eden space 209792K, 89% used [0x10010000, 0x1b68bb80, 0x1ccf0000)
    from space 26176K, 67% used [0x1e680000, 0x1f7b3750, 0x20010000)
    to space 26176K, 0% used [0x1ccf0000, 0x1ccf0000, 0x1e680000)
    tenured generation total 262144K, used 32351K [0x20010000, 0x30010000, 0x30010000)
    the space 262144K, 12% used [0x20010000, 0x21fa7e00, 0x21fa7e00, 0x30010000)
    compacting perm gen total 65536K, used 47108K [0x30010000, 0x34010000, 0x38010000)
    the space 65536K, 71% used [0x30010000, 0x32e112d0, 0x32e11400, 0x34010000)
    ---------------------------------------------------------------------------------------->>>>>
    If anyone could help us out, it would be grateful.
    Thanks & Regards,
    Vijay

    The error indicates that VM executed an internal code which it should not.
    Could you use latest java version (1.4.2_11)? It gives more information
    in case of failure.

  • Why do I get "Error - That file is locked" when trying to save?

    Everytime I try to save a new sequence in FCP I get an error stating "Error - That file is locked" with no additional elements to determine which file is locked. I haven't changed any settings and I am the administrator of the computer. I was wondering if anyone knew how to fix this.
    Thank you!

    Everytime I try to save a new sequence in FCP I get an error stating "Error - That file is locked"
    Do you mean when you try to save the project? If so, check the project file (Get Info) and see if it is actually locked.
    -DH

  • Index creation error. Can't lock configuration object.

    Hi,
    My Trex it is giving me a lot of trouble. I am not able to create index with the Trex Search and Classification service (the message I get is==> Index could not be created: null)
    The defaulttrace says:
    #1.5 #0017A4F64A4801160000003200001F7000043C109F857E90#1191942000781#com.sap.workflow#sap.com/irj#com.sap.workflow#Guest#0####9fd2cf80767011dc9b4f0017a4f64a48#Thread[ThreadPool.Worker4,5,SAPEngine_Application_Thread[impl:3]_Group]##0#0#Error#1#/Applications/Workflow/General#Plain###TaskSchedulerDeadline.run()#
    #1.5 #0017A4F64A4801160000003300001F7000043C109F859265#1191942000797#com.sap.workflow#sap.com/irj#com.sap.workflow.#Guest#0####9fd2cf80767011dc9b4f0017a4f64a48#Thread[ThreadPool.Worker4,5,SAPEngine_Application_Thread[impl:3]_Group]##0#0#Error##Plain###LockConfigException: Cannot lock configuration object "config://local/com.sap.workflow/scheduler/task" without a valid user ID.
    at com.sapportals.config.fwk.data.ConfigLockManager.lock(ConfigLockManager.java:516)
    at com.sapportals.config.fwk.data.ConfigLockManager.lock(ConfigLockManager.java:265)
    at com.sapportals.config.fwk.data.Configurable.lock(Configurable.java:184)
    at com.sapportals.config.fwk.data.ConfigPlugin.getAndLockConfigurable(ConfigPlugin.java:452)
    at com.sap.workflow.cfg.AbstractConfiguration.setValue(AbstractConfiguration.java:313)
    at com.sap.workflow.es.scheduler.TaskSchedulerDeadline.run(TaskSchedulerDeadline.java:86)
    at com.sapportals.wcm.service.scheduler.SchedulerEntry.run(SchedulerEntry.java:174)
    at com.sapportals.wcm.service.scheduler.crt.PoolWorker.run(PoolWorker.java:108)
    at java.lang.Thread.run(Thread.java:534)
    What means the message "Cannot lock configuration object "config://local/com.sap.workflow/scheduler/task" without a valid user ID."?
    Have I to do something abut configuration, users, permissions??
    The version is 7.00 patch 57
    Operation system is WServer 2003SR2 Enterprise Edition (En)
    I have installed the TREX HTTP server
    In Monitoring I see a green light for http server, index server, name server, queue server
    I am so confused, don't know wich way to turn.
    Any help will be appreciated.
    Thanks in advance.
    Guillermo.

    Hi,
    It was an error caused by permissions.
    By mistake the repository /taxonomies was manipulated by an user and the permissions were changed.
    After it the portal wasn't able to create new folders under that repository.
    Regards.

  • Error when acquiring central lock - Urgent

    Hi ,
    I was trying to access the documents in Collaboration Team room. When i clicked the details of the folders under "documents and Links" room part, i got null pointer exception.
    Then i tried analysing the default trace and i could see the logs are getting generated continuously with the below mentioned error. No clue on what it implies..
    default trace files are getting filled up very fast and new files are generated.
    Errors:
    1. error when acquiring central lock (The lifetime can not be the user-session, because currently no user is logged in. Creating locks for the system-user is not allowed
    2. com.sapportals.wcm.WcmException##com.sapportals.wcm.WcmException.WcmException(90) Error when acquiring central lock com.sap.engine.services.applocking.exception.AppLockingTechnicalLockException: The lifetime can not be the user-session, because currently no user is logged in. Creating locks for the system-user is not allowed.
    Can anyone help me.?
    Thanks in advance
    Siva
    Pts will be awarded for helpful answers

    Hi All,
    SAP note 894884 solved my issue.
    Rgds,
    Siva

Maybe you are looking for