Available resources in a 2 CCM Cluster

Hi, i have a 2 callmanager cluster, where about 250 h323 gateways and 40 ip phones are installed. I have plans to install more ip phones but i'm worried because of the resources, does anybody know where i can find information about resources limit??
Best Regards,
Luis Felipe

Hi Luis,
There are some really good design guidelines in the following docs;
Call Processing Cisco Unified CallManager Cluster Guidelines
From this doc;
http://www.cisco.com/univercd/cc/td/doc/product/voice/c_callmg/4_2/srnd4_2/uc4_2/42clproc.htm#wp1085323
Part of Cisco Unified Communications SRND Based on Cisco Unified CallManager 4.x
http://www.cisco.com/en/US/products/sw/voicesw/ps556/products_implementation_design_guide_book09186a00806ecab5.html
Hope this helps!
Rob
Please remember to rate helpful posts.....

Similar Messages

  • Excel cannot complete this task with available resources

    Hello all,
    I am having a puzzling problem with some Excel 2010 users. 
    One person in Finance is having problems with excel in general, the others are having problems with a specific spreadsheet.
    The specific spreadsheet is very large, 250mb, and contains a lot of data. They're trying to update a specific pivot table within this sheet but every time they try to refresh the data they get the message "Excel cannot complete this task with available
    resources". I have also replicated the problem on my PC.
    All PC's have 4GB of RAM available. I closed all programs, opened the sheet again, refreshed the pivot table and still received the same error. 
    Now, one person in the department was able to open the sheet, refresh the pivot table and save it with no problems. They have the same spec machine as the others in the Finance department.
    All users have rebooted their machines, I've checked the server where the saved files sit to make sure there are no problems, I've asked them to check all data sources within the spreadsheet, watched RAM usage during the operation and while it is high, it
    doesn't max out. Before finding out that one person can open it, I thought it could be that the file had become corrupted in some way. 
    It's very puzzling as I cannot see any logical reason why four people cannot use this sheet but one can. Any help or suggestions would be greatly appreciated. 

    Hi
    MrBeardyDrummer,
    Since you got the error message "Excel cannot complete this task with available resources. Choose less data or close other applications."
    when opened the Excel, please try the follow this KB to fix the issue.
    http://support.microsoft.com/kb/2655178
    You can also refer to these.
    http://support.microsoft.com/kb/2779852
    http://blogs.technet.com/b/the_microsoft_excel_support_team_blog/archive/2012/05/22/quot-excel-cannot-complete-this-task-with-available-resources-quot-after-installing-ms12-030.aspx
    If there is anything I can do for you regarding this issue, feel free to post back.
    Best regards,
    Greta Ge
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Excel cannot complete this task with available resources.... running windows 8 office 2013

    excel cannot complete this task with available resources.choose less data or close other applications.
     m currently running windows 8 with office 2013 version. need help pplz

    Hi,
    Did you get the error message "Excel cannot complete this task with available resources error" in Excel 2013?
    Could you give me more detailed information? Which action caused the error message? Such as:
          Open or save an Excel workbook
          Open an Excel workbook that references a relative name from another workbook
          Use a defined name in a formula in an Excel workbook
          Define or delete a name in an Excel workbook
    Please go to the folder,
    and delete all the files in that folder.
    C:\Users\user name\AppData\Roaming\Microsoft\Excel
    If the issue still exists, I recommend you try to follow the links to troubleshooting it :
    http://support.microsoft.com/kb/2779852/en-us
    http://support.microsoft.com/kb/2655178/en-us
    The links apply to Excel 2010, but we can refer to it.
    If you had more information, I'll do deeply research.
    Regards,
    George Zhao
    TechNet Community Support

  • Excel cannot complete this task with available resources. Choose less data or close other applications

    Hello:
    I'm using Excel 2010 and when I try to open several workbooks a message "Excel cannot complete this task with available resources. Choose less data or close other applications" appears.  This happens when I open email attachments from MS Outlook
    and files on my C-Drive.
    Thank you for your help

    Hi NFL1,
    Could you tell me which version of office are you using, 32bit or 64bit? You said this issue always happened when open attachments from outlook and files in C-Driver.
    For opening attachments from outlook, it might there is a conflict between the preview pane and Excel. You can try to hide the preview pane as a workaround to solve this issue. Please refer to this link:
    https://support.microsoft.com/en-us/kb/2526883
    It is often the case, if your file is large or contains a large amount of features, it is possible you are running low on available memory resources. If you work with extremely large data sets, the 64-bit version of Office may perform better for you. 32-bit
    office you run are limited to making use of only 2GB of RAM. And this is one of the reasons occur the issue, you can via these links to get more information about this issue and detailed methods to solve this problem.
    https://support.microsoft.com/en-us/kb/2779852
    http://blogs.technet.com/b/the_microsoft_excel_support_team_blog/archive/2012/05/22/quot-excel-cannot-complete-this-task-with-available-resources-quot-after-installing-ms12-030.aspx
    Please try these methods and let me know if they work, I am glad to help and forward to your reply.
    Regards,

  • Cannot get Local Connection, No available resource, Wait-time expired

    Hi Friends,
    Please answer my queries below.
    Thanks and Regards
    Busincess Requirement
    I have to display a particular set of rows in a dashboard or screen, and it is being refreshed every 1 minute, also user can update from that screen displayed values.
    The below program extracts some data from database and passes to the front end through a collection where it is being displayed.
    Code Logic Flow
    1. CockpitAction calls CockpitOraDAO for database results
    2. CockpitOraDAO is a singleton class.
    3. After getting the CockpitOraDAO object, the action will then call the getLabAreaCockpitDetails() method.
    getLabAreaCockpitDetails will
         - Get the Connetion from the OracleConnectionManager class (It is a plain class with getPooledConnection() and releaseConnection() methods).
         - Execute the query and put the result to a collection
         - close the connection
         - return result to the calling action.
    This getLabAreaCockpitDetails() are called around once in every 1 minute
    So, I believe everytime a call is made to action for cockpit display, it will take the existing object of the CockpitOraDAO class and make a call to database. i.e there will be only one object of CockpitOraDAO reside in application server at any particular interval of time.
    My Understandings
    1. Only 1 object of CockpitOraDAO will reside in application server (provided it is not user longer and garbage collected) at a particular instance.
    2. Many objects of Connection will be created and destroyed.(Each time the getLabAreaCockpitDetails() method is called, we will get one connection from connection pool and in finally the Connection will be released to connection pool).
    My Problems
    It is showing the "Cannot get Local Connection, No available resource, Wait-time expired"
    after running around 1 full day.
    My doubts
    1. Can anybody say why I get this error ?
    2. There may be some connections are not closed. But I have checked at finally block, the status of the connection is closed after calling this method.
    3. There may be some problem due to the singleton instane of CockpitOraDAO, Is it affecting performance ?
    4. Is it valid that I have to make CockpitOraDAO as Singleton ?
    public class CockpitOraDAO extends DAOAdaptor //implements BISample
         private static CockpitOraDAO instance=null;
         private static boolean debug = true;
         * The below method will be used to provide the singleton intance of the CockpitOraDAO object.
         public static CockpitOraDAO getInstance()
              if (instance == null)
                   synchronized (CockpitOraDAO.class)
                        if (instance == null)
                             instance = new CockpitOraDAO();
              return instance;
         * The below method will be used to get the cockpit details of the lab area.
         * This will return collecton of sample details for the specific lab.
         public Collection getLabAreaCockpitDetails(Collection prevCockpitDetailList,Collection filterCriteria) throws Exception
         if(debug)
              System.out.println("Inside CockpitOraDAO::getLabAreaCockpitDetails() method");
              Connection conn = null;
              boolean sampleExists = false;
              PreparedStatement pstmt=null;
              ResultSet rs=null;
              String returnStr=null;
              StringBuffer sqlQuery = null;
              String tempComment1=null, tempComment2=null;
              LabCockpitDO labc=null;
              LabCockpitDO labc2=null;
              Collection resultList=null, manCommentList=null, labCommentList=null, labCompCommentList=null;
              ArrayList result1List=null, prevCockpitDetail1List=null,filterList = null;
              OracleConnectionManager manager = null;
              boolean flag = false;
              try
                   labc2 = new LabCockpitDO();
                   prevCockpitDetail1List = (ArrayList) prevCockpitDetailList;
                   sqlQuery = new StringBuffer();
                   sqlQuery.append("select s.sample_sample_no sample_no, s.sample_inspection_lot_no inspection_lot_no,");
                   manager = new OracleConnectionManager();
                   conn = manager.getPooledConnection("myDS");
                   pstmt = conn.prepareStatement(sqlQuery.toString());
                   if(debug)
                   System.out.println("Query********"+sqlQuery.toString());
                   rs = pstmt.executeQuery();
              catch(Exception e)
                   //System.out.println(e);
                   throw e;
              finally
                        try
                             manager.releaseConnection("myDS");
    if(debug)
    System.out.println("Connection Status Closed=true/ Open=false=["+conn.isClosed()+"]");
    if(conn!=null || !conn.isClosed())
    conn.close();
    if(debug)
    System.out.println("Connection Status After Closing Connection Closed=true/ Open=false=["+conn.isClosed()+"]");
                             if(rs != null)
                                  rs.close();
                             if(pstmt != null)
                                  pstmt.close();
                             conn = null;
                             pstmt=null;
                             rs = null;
                             sqlQuery=null;
                             returnStr=null;
                             labc=null;
                             labc2=null;
                             manCommentList=null;
                             labCommentList=null;
                             labCompCommentList=null;
                             tempComment1=null;
                             tempComment2=null;
                             resultList=null;
                             prevCockpitDetailList=null;
                             prevCockpitDetail1List=null;
                        catch(Exception e)
                             //System.out.println("Unable to Release Connection ="+e);
                             throw e;
              //if(debug)     
              //System.out.println(resultList);
              return result1List;
         }

    Hi,
    As you can see from other posts, this is a very common problem. Until now the cause always ends up pointing to a connection not being close.
    I suggest you try to run through a full single cycle of you app, while using the CLI monitoting to check that the connections created/closed matches the expected created/closed connections. Also that the number of free connections at the end is correct.

  • Error : No available resource. Wait-time expired.

    Hi,
    We have a big problem of connection pooling in SunOne.
    After out program execute a lot of sql command in a short time, SunOne 7.0 throws an Exception ---- No available resource. Wait-time expired. We modify the connection pool setting, but it doesn't work. Can someone help to solve problem.
    Our connectiong pool setting as below :
    <jdbc-connection-pool steady-pool-size="8" max-pool-size="32" max-wait-time-in-millis="60000" pool-resize-quantity="2" idle-timeout-in-seconds="300" is-isolation-level-guaranteed="false" is-connection-validation-required="true" connection-validation-method="auto-commit" fail-all-connections="false" datasource-classname="oracle.jdbc.pool.OracleDataSource" name="xxx">
    <property value="jdbc:oracle:thin:@aa:1521:aa" name="URL"/>
    <property value="xxx" name="user"/>
    <property value="xxx" name="password"/>
    </jdbc-connection-pool>
    Thanks!
    Elsa

    This issue is not resolved. I got this message this afternoon. It has nothing to do with ejb. Just for confirming this issue again, I created a very simple application, a jsp that calls a servlet. In the servlet, I have a loop that calls a getNewConnection(). and returns the connection, then I create a Statement with that connection. Then I call another method releaseResources(Statement stmt)
    Connection conn = stmt.getConnection();
    if(conn != null)
    System.out.println("connection: " + conn);
    conn.close();
    // conn = null; tried this one also, same result
    The code is OK. including try/catch blocks ans so on.
    If the number of loops greater than the connection pool size, then I get the same exception. It means the connections are not getting closed. But if I change the methode and pass Connection instead of Statement, then it workes fine.
    I have tested this in App server7 with:
    Oracle 9.2.0 client and ojdbc14.jar
    Oracle 9.2.0 client and classes12.jar
    Oracle 9.0.1 client and classes12.jar
    Oracle 8.1.6 client and classes12.zip
    all with thin or oci drivers.
    It looks like something to do with Statement.getConnection() and the version of AppServer jdk (1.4.0.2).
    I know the getConnection methode does return A connection. I can print the connection id.

  • Excel 2013 - Cannot complete this task with available resources

    We were getting this error message when we first updated to Excel 2010. A user would select all of the cells in a workbook, try to do something with them (sort, copy/paste, etc), and Excel would crash or give the above error message about available resources.
    I quickly found and applied a hotfix that addressed the issue, and that was that.
    Now we're having the same issue in Excel 2013 (specifically, Office 365 ProPlus click-to-run installation). Only this time, there are not hotfixes available (because it is click-to-run?) and I'm not sure where to go from here. I have a user who is selecting
    all of the cells in a workbook choosing the option to "Merge and Center", and Excel either freezes at that point or gives the above error message. This is a task he has done daily with these particular workbooks for the last several years without
    issue, that is until moving to Excel 2013.
    Excel was crashing on him regularly after updating to 2013 version, so I replaced his machine with a brand new one and brand new Office installation. He has plenty of memory (machine has 6GB of RAM) and the workbook is not particularly large (a few hundred
    rows and few dozen columns). I do notice that when the error occurs, the memory in use by excel immediately balloons from 80MB to 1.5GB. However the machine is still using less than 50% of its available 6GB at that point.
    I've disabled all add-ins, made sure we're on the latest Excel build (15.0.4517.1005). Not sure what else I can do. Any thoughts?
    Shaun

    Hi, 
    Does it happen with a particular file or with all the files? 
    Is this a shared file? If yes, have you set any password? 
    Create a new file and check if it works. If it helps, then copy the contents of the file to a new file and check if it helps.
    Also, here's a similar case for you to refer:
    http://answers.microsoft.com/en-us/office/forum/office_2013_release-excel/excel-cannot-complete-this-task-with-available/4861a69a-6ce0-4c74-ad45-9012d5edf9f1?msgId=95b69652-0902-4564-9884-952e0ba54e15
    Jaynet Zhang
    TechNet Community Support

  • Java.sql.SQLException: No available resource. Wait-time expired.

    Hi all,
    The application platform is SunONE Application Server 7, and the database is ORACLE 9i. My Website application will raise the SQLException once a few days' running. Everything will be ok once the Application server has been restarted. The detail about the Exception is :
    [12/Aug/2003:10:41:03] WARNING (25931): CORE3283: stderr: java.sql.SQLException: No available resource. Wait-time expired.
    [12/Aug/2003:10:41:03] WARNING (25931): CORE3283: stderr:      at com.sun.enterprise.resource.JdbcDataSource.internalGetConnection(JdbcDataSource.java:251)
    [12/Aug/2003:10:41:03] WARNING (25931): CORE3283: stderr:      at com.sun.enterprise.resource.JdbcDataSource.getConnection(JdbcDataSource.java:98)
    [12/Aug/2003:10:41:03] WARNING (25931): CORE3283: stderr:      at com.tsp.gdgpo.ejbm.util.EnvUtil.getDSConnection(EnvUtil.java:72)
    [12/Aug/2003:10:41:03] WARNING (25931): CORE3283: stderr:      at com.tsp.gdgpo.ejbm.util.DirectDSUtil.getObjectsFromDS(DirectDSUtil.java:103)
    [12/Aug/2003:10:41:03] WARNING (25931): CORE3283: stderr:      at com.tsp.gdgpo.ejbm.jcsms.dam.JcsmsDDSA.getSpecialistByPage(JcsmsDDSA.java:388)
    [12/Aug/2003:10:41:03] WARNING (25931): CORE3283: stderr:      at com.tsp.gdgpo.ejbm.jcsms.sessionbeans.SpecialManagerEJBBean.listSpecialist(SpecialManagerEJBBean.java:1941)
    [12/Aug/2003:10:41:03] WARNING (25931): CORE3283: stderr:      at com.tsp.gdgpo.ejbm.jcsms.sessionbeans.SpecialManagerEJBBean_EJBObjectImpl.listSpecialist(SpecialManagerEJBBean_EJBObjectImpl.java:702)
    [12/Aug/2003:10:41:03] WARNING (25931): CORE3283: stderr:      at com.tsp.gdgpo.ejbm.jcsms.sessionbeans._SpecialManagerEJBBean_EJBObjectImpl_Tie._invoke(Unknown Source)thanks for any help
    Niu

    Ther is a related Bug i n Oracle: Bug No. 4420032
    PROBLEM STATEMENT: ------------------
    The Oracle client file ojdbc_14.jar is not handling exceptions correctly. The connection pool slowly runs out of connections and hits the oracle db limit of max_sessions. Increasing the db max_sessions does not help as the number of sessions continue to increase.
    The vendor developers of ct's application have identified a code problem with the Oracle client file ojdbc_14.jar. Their description follows.
    The following is a technical description of the Oracle JDBC client library issue. The jar file in question is: ojdbc_14.jar. This issue is also present in the 9.2.05 and 9.2.06 versions of the client code.
    The socket.close() call in TcpNTAdapter.disconnect() does not properly handle network exceptions. Where the exception should be handled within the code segment calling socket.close(), the class instead throws an exception without ensuring the socket is closed. The socket is not subsequently closed by clients of the class. This ultimately results in a connection leak. Overtime, the maximum number of Oracle database sessions is reached. The only work around for this issue in production, is to restart the effected processes.
    The code segment:
    public void disconnect()
    throws IOException { 
    socket.close();
    socket = null; }
    should be along the lines of:
    public void disconnect()
    throws IOException { 
    try{  socket.close();  }
    catch(IOException ioe){  throw ioe;  }
    finally{  socket = null;  } }
    The original code segment will not execute the statement "socket = null" when . an exception occurs. Given the fact that the exception is not subsequently processed properly, the object is never dereferenced, and the socket remains open for the life of the process. Adding this statement in the finally block . ensures the object will ultimately be destroyed by the garbage collector. . ct tested this change in their lab and found that the recommended modification successfully resolved the issue.
    This problem has occurred with the previous ct's application releases, but the vendor has only recently been able to isolate the root cause. The JDBC connection pool slowly runs out of connections and hits the oracle db limit of max_sessions.
    Increasing the db max_sessions does not help as the number of sessions continue to increase. This problem has been occuring in Production over the past few releases of the application, but usually the connections leak slowly. This problem can be duplicated under heavy load in just a few minutes . in the Loadtest environment.

  • Excel not even open - "cannot complete this task with available resources" and then VBA run-time error randomly appear!

    Has anyone else seen the "Excel cannot complete this task with available resources" error message appear when Excel isn't even open? It keeps happening to me, and it's the strangest thing.
    It seems like interacting with Excel files sometimes prompts it - for example, I just turned on my computer this morning, checked my email, and then opened Google Chrome to upload some Excel files. Excel hasn't been opened at any point since the machine
    booted up, but this Excel error popped up while I was uploading the files.
    Checked the Task Manager because I was baffled (not that this is the first time it's happened), and there's no Excel application running, just that silly error message. Choose OK on that error and a VBA run-time error message appears (not even sure if it's
    Excel VBA or Word/Outlook but I assume it's Excel - it's the good old 1004, application-defined or object-defined error).
    Debug is greyed out, so it won't let me debug to see what the problem is. Choosing End brings the "Excel cannot complete this task with available resources" message back for one final performance.
    This happens on a not-infrequent basis: Excel isn't open, and I randomly get this set of Excel errors: 1) "cannot complete task", 2) VBA run-time, 3) "cannot complete task" again. Then it's done, until the next time it happens. Weird.
    I have 32-bit Windows 7 and Excel 2013/2010/2007/2003/2002 (I know!) but the issue only started after installing 2013. I also get the "cannot complete this task" message regularly when working in Excel (generally with Power Pivot or something legitimately
    memory-hungry though), and restarting the application does the trick. I don't mind a heads-up when I'm gobbling up too many resources, but when Excel's not even open, it's a bit ridiculous. It's like I have a zombie Excel! Does interacting with Excel files
    via upload/moving around Windows Explorer actually trigger some sort of Excel action in the background?
    Any ideas would be most appreciated!! Thank you :)

    Hi,
    As the memory error messages , it can be very generic and don't always identify the real cause of the issue. We may try to use the KB that Mr. KR mentioned above to troubleshoot it.
    On the other hand, if the file is xls format, we may convert to the new file format .XLSM and test.
    http://www.experts-exchange.com/Software/Office_Productivity/Office_Suites/MS_Office/Excel/Q_28339883.html
    Next, try to disable hardware graphics acceleration from File > Options > Advanced > Display section and disable Aero Themes (if you enabled) to check the results.
    For the hangs and crashes issues, we may use ADPlus.vbs to troubleshoot:
    http://support.microsoft.com/kb/286350/en-us
    http://www.networksteve.com/exchange/topic.php/Excel_cannot_complete_this_task_with_available_resources_error,/?TopicId=39411&Posts=1
    Please Note: Since the web site is not hosted by Microsoft, the link may change without notice. Microsoft does not guarantee the accuracy of this information.
    Hope it's helpful.
    George Zhao
    TechNet Community Support

  • Error: Excel cannot complete this task with available resources

    Hello -
    I am encountering an error when refreshing an EvDRE report in SAP.  The error message is:
    Excel cannot complete this task with available resources.  Choose less data or close other applications.
    Other Info:
    We are running Office 2007.
    We have several modified EvDRE reports stored on our network (roughly 250 reports).  I say modified because we use EvDRE to build the basic structure of the report, but then we modify it to suit our needs, but in the end, they are all EvDRE files.
    File sizes range from 100 KB to 700 KB.
    We have no other applications running while refreshing these reports (just Excel and SAP).
    Has anyone encountered this error before?
    Regards,
    Carlo Tom

    After some trial and error, we discovered what the problem was.
    It turns out, our Excel files were bigger than the actual data range.
    Excel Lesson: on a spreadsheet, if you do Ctrl + End, your cursor should move to the last cell that contains data.
    When we did a Ctrl + End on these files, we realized that the cursor was stopping in the far corner of the sheet u2013 completely outside the data range.  So, when the refresh was called, it was trying to refresh basically the entire spreadsheet (vs. just the data range u2013 hence not enough resources).
    So, to fix this, we deleted the extra rows and columns in the sheet and then ran the refresh routine again and now our files are working.
    So, if you encounter this type of error, check to make sure that the u2018endu2019 of your spreadsheet is truly the end.
    I hope this helps.
    Carlo

  • No available resource. Wait-time expired.

    Dear All
    I am using sun ONE applications server. I am struggling with No available resource. Wait-time expired problem. MY Pool configurations are steady:20,max:100,inc:2. My code is very straight forward.
    Getting the connection, using the connection and closing the connection. I made sure that the connection opened is getting closed. But still after certain no. of requests my request is getting blocked. What might be the problem.
    Regards,
    Nagaraju.KV

    Hi,
    As you can see from other posts, this is a very common problem. Until now the cause always ends up pointing to a connection not being close.
    I suggest you try to run through a full single cycle of you app, while using the CLI monitoting to check that the connections created/closed matches the expected created/closed connections. Also that the number of free connections at the end is correct.

  • No available resource found

    Hi,
    In LTRMS transaction ,while assigning a resource to a task for transfer order,i get a error msg "*No available resource found".
    Please let me know how do i create a resource in DWM or pls forward some documents related to it.
    Regards,
    Shanmugam

    Dear Shanmugam
    Please check whether the source location zone is defined with the available resource or not also please have a look on the below mentioned link
    http://sapexperts.com/go/virtual/pdfs/Moose%20SCM-v3%20n7.pdf
    Regards
    Manish Kumar

  • Not enough available resources

    I bought a Satellite A665-S6050 last month.  I set up the computer and allowed the battery to charge, etc.  After I used it the 2nd day, I logged off instead of shutting down.  When I came back and clicked my user name, the computer had a message that said "not enough available resources, cannot log in as a new user and it told me to use a user that was logged in.  I am the only user right now.  So of course I hit ok and it brings me back to my user id and when I click it again, I just keep getting the same message.  So I have to manually shut down the computer and reboot.  When I reboot I of course get the message that Windows did not close properly, etc. etc.
    Would resources be the "hard drive"?   this is a brand new computer that has 4 gig 500 m - how can there not be enough resources?  If anyone has suggestions please let me know.

    Satellite A665-S6050 
    I logged off instead of shutting down.  When I came back and clicked my user name, the computer had a message that said "not enough available resources, cannot log in..
    I suspect a glitch in a Toshiba program that's being loaded along with the desktop. Maybe left in memory and reloading it doesn't play well. Possibly leaks gobs of memory and runs out. Whatever..
    See if you can identify the culprit this way.
       How to troubleshoot a problem by performing a clean boot in Windows Vista or in Windows 7
    -Jerry

  • Parallel Processing - Rechecking number of available resources.

    Hi  SAP Gurus,
    Anyone got an idea on how to determine the number of available resources when using parallel processing / multithreading approach to optimize a program?  I was able to determine number of free resources  by calling fm SPBT_INITIALIZE but wasn't able to perform another similar call to this fm (exception PBT_ENV_ALREADY_INITIALIZED is being triggered) for the purpose of rechecking the current available resources that I may use from time to time.  Any idea?
    Thanks,
    Allex

    Hi,
    insert after INITIALIZE:
    case sy-subrc.
        when 0. "ok
        when 3.
          call function 'SPBT_GET_CURR_RESOURCE_INFO'
           importing
    *   MAX_PBT_WPS                       =
             free_pbt_wps                      = gv_maxno_pbt_available
    exceptions
             internal_error                    = 1
             pbt_env_not_initialized_yet       = 2
             others                            = 3.
      when others.
      endcase.
    kind regards,
    hp

  • Switching resource group in 2 node cluster fails

    hi,
    i configured a 2 node cluster to provide high availability for my oracle DB 9.2.0.7
    i have created a resource and named it oracleha-rg,
    and i crated later the following resources
    oraclelh-rs for logical hostname
    hastp-rs for the HA storage resource
    oracle-server-rs for oracle resource
    and listener-rs for listener
    whenever i try to switch the resource group between nodes is gives me the following in dmesg:
    +Feb  6 16:17:49 DB1 Cluster.RGM.global.rgmd: [ID 224900 daemon.notice] launching method <hafoip_stop> for resource <oraclelh-rs>, resource group <oracleha-rg>, node <DB1>, timeout <300> seconds+
    +Feb  6 16:17:49 DB1 Cluster.RGM.global.rgmd: [ID 784560 daemon.notice] resource oraclelh-rs status on node DB1 change to R_FM_UNKNOWN+
    +Feb  6 16:17:49 DB1 Cluster.RGM.global.rgmd: [ID 922363 daemon.notice] resource oraclelh-rs status msg on node DB1 change to <Stopping>+
    +Feb  6 16:17:49 DB1 ip: [ID 678092 kern.notice] TCP_IOC_ABORT_CONN: local = 010.050.033.009:0, remote = 000.000.000.000:0, start = -2, end = 6+
    +Feb  6 16:17:49 DB1 ip: [ID 302654 kern.notice] TCP_IOC_ABORT_CONN: aborted 0 connection+
    +Feb  6 16:17:49 DB1 Cluster.RGM.global.rgmd: [ID 784560 daemon.notice] resource oraclelh-rs status on node DB1 change to R_FM_OFFLINE+
    +Feb  6 16:17:49 DB1 Cluster.RGM.global.rgmd: [ID 922363 daemon.notice] resource oraclelh-rs status msg on node DB1 change to <LogicalHostname offline.>+
    +Feb  6 16:17:49 DB1 Cluster.RGM.global.rgmd: [ID 515159 daemon.notice] method <hafoip_stop> completed successfully for resource <oraclelh-rs>, resource group <oracleha-rg>, node <DB1>, time used: 0% of timeout <300 seconds>+
    +Feb  6 16:17:49 DB1 Cluster.RGM.global.rgmd: [ID 443746 daemon.notice] resource oraclelh-rs state on node DB1 change to R_OFFLINE+
    +Feb  6 16:17:49 DB1 Cluster.RGM.global.rgmd: [ID 224900 daemon.notice] launching method <hastorageplus_postnet_stop> for resource <hastp-rs>, resource group <oracleha-rg>, node <DB1>, timeout <1800> seconds+
    +Feb  6 16:17:49 DB1 Cluster.RGM.global.rgmd: [ID 784560 daemon.notice] resource hastp-rs status on node DB1 change to R_FM_UNKNOWN+
    +Feb  6 16:17:49 DB1 Cluster.RGM.global.rgmd: [ID 922363 daemon.notice] resource hastp-rs status msg on node DB1 change to <Stopping>+
    +Feb  6 16:17:49 DB1 SC[,SUNW.HAStoragePlus:8,oracleha-rg,hastp-rs,hastorageplus_postnet_stop]: [ID 843127 daemon.warning] Extension properties FilesystemMountPoints and GlobalDevicePaths and Zpools are empty.+
    +Feb  6 16:17:49 DB1 Cluster.RGM.global.rgmd: [ID 515159 daemon.notice] method <hastorageplus_postnet_stop> completed successfully for resource <hastp-rs>, resource group <oracleha-rg>, node <DB1>, time used: 0% of timeout <1800 seconds>+
    +Feb  6 16:17:49 DB1 Cluster.RGM.global.rgmd: [ID 443746 daemon.notice] resource hastp-rs state on node DB1 change to R_OFFLINE+
    +Feb  6 16:17:49 DB1 Cluster.RGM.global.rgmd: [ID 784560 daemon.notice] resource hastp-rs status on node DB1 change to R_FM_OFFLINE+
    +Feb  6 16:17:49 DB1 Cluster.RGM.global.rgmd: [ID 922363 daemon.notice] resource hastp-rs status msg on node DB1 change to <>+
    +Feb  6 16:17:49 DB1 Cluster.RGM.global.rgmd: [ID 529407 daemon.error] resource group oracleha-rg state on node DB1 change to RG_OFFLINE_START_FAILED+
    +Feb  6 16:17:49 DB1 Cluster.RGM.global.rgmd: [ID 529407 daemon.notice] resource group oracleha-rg state on node DB1 change to RG_OFFLINE+
    +Feb  6 16:17:49 DB1 Cluster.RGM.global.rgmd: [ID 447451 daemon.notice] Not attempting to start resource group <oracleha-rg> on node <DB1> because this resource group has already failed to start on this node 2 or more times in the past 3600 seconds+
    +Feb  6 16:17:49 DB1 Cluster.RGM.global.rgmd: [ID 447451 daemon.notice] Not attempting to start resource group <oracleha-rg> on node <DB2> because this resource group has already failed to start on this node 2 or more times in the past 3600 seconds+
    +Feb  6 16:17:49 DB1 Cluster.RGM.global.rgmd: [ID 674214 daemon.notice] rebalance: no primary node is currently found for resource group <oracleha-rg>.+
    +Feb  6 16:19:08 DB1 Cluster.RGM.global.rgmd: [ID 603096 daemon.notice] resource hastp-rs disabled.+
    +Feb  6 16:19:17 DB1 Cluster.RGM.global.rgmd: [ID 603096 daemon.notice] resource oraclelh-rs disabled.+
    +Feb  6 16:19:22 DB1 Cluster.RGM.global.rgmd: [ID 603096 daemon.notice] resource oracle-rs disabled.+
    +Feb  6 16:19:27 DB1 Cluster.RGM.global.rgmd: [ID 603096 daemon.notice] resource listener-rs disabled.+
    +Feb  6 16:19:51 DB1 Cluster.RGM.global.rgmd: [ID 529407 daemon.notice] resource group oracleha-rg state on node DB1 change to RG_OFF_PENDING_METHODS+
    +Feb  6 16:19:51 DB1 Cluster.RGM.global.rgmd: [ID 529407 daemon.notice] resource group oracleha-rg state on node DB2 change to RG_OFF_PENDING_METHODS+
    +Feb  6 16:19:51 DB1 Cluster.RGM.global.rgmd: [ID 224900 daemon.notice] launching method <bin/oracle_listener_fini> for resource <listener-rs>, resource group <oracleha-rg>, node <DB1>, timeout <30> seconds+
    +Feb  6 16:19:51 DB1 Cluster.RGM.global.rgmd: [ID 515159 daemon.notice] method <bin/oracle_listener_fini> completed successfully for resource <listener-rs>, resource group <oracleha-rg>, node <DB1>, time used: 0% of timeout <30 seconds>+
    +Feb  6 16:19:51 DB1 Cluster.RGM.global.rgmd: [ID 529407 daemon.notice] resource group oracleha-rg state on node DB1 change to RG_OFFLINE+
    +Feb  6 16:19:51 DB1 Cluster.RGM.global.rgmd: [ID 529407 daemon.notice] resource group oracleha-rg state on node DB2 change to RG_OFFLINE+
    and the resource group fails to switch...
    any help please?

    Hi,
    this forum is for Oracle Clusterware, not Solaris Cluster. You probably should close this thread and open your question in the corresponding Solaris Cluster forum, to get help.
    Regards
    Sebastian

Maybe you are looking for