HSRP groups / Limit of 32 reached

Hi there,
Sorry in advance, I speak English with difficulty...
I have a problem with my network core: The limit of 32 groups is reached.
But I have only 32 standby IP address in the group 0...
The message "% More than 32 standby groups not supported in this platform" appeared...
At the moment, I'll create the others groups on others network core, but this solution is temporary.
My network cores: WS-C3750G-12S-S
iOS : 12.2(35)SE5 IPBase
So, I have two questions for you please :
Actually in IPBase version, if I will upgrade my switchs with IPService version, is it solved the problem ? is the iOS "IPService" support more than 32 groups ?
Is there an other solution to ensure failover that works like HSRP ? (VRRP ? how many groups are supported ?)
Any other issue or idea is welcome...
Thank you for all

Hi,
The maximum amount of 32 instances is the same for HSRP, VRRP and GLBP this is a hardware limitation not a matter of a IOS feature set. That said even if you upgrade to ipservices the amount of groups will not be higher.
Regards,

Similar Messages

  • Msg 8631 Internal error: Server stack limit has been reached on SQL Server 2012 from T-SQL script that runs on SQL Server 2008 R2

    I have an Script mostly that is generated by SSMS which works with-out issue on SQL Server 2008, but when I attempt to run it on a new fresh install of SQL Server 2012 I get an Msg 8631. Internal error: Server stack limit has been reached. Please look for
    potentially deep nesting in your query, and try to simplify it.
    The script itself doesn't seem to be all that deep or nested.  The script is large 2600 lines and when I remove the bulk of the 2600 lines, it does run on SQL Server 2012.  I'm just really baffled why something that SQL Server generated with very
    few additions/changes AND that WORKS without issue in SQL Server 2008 R2 would suddenly be invalid in SQL Server 2012
    I need to know why my script which is working great on our current SQL Server 2008 R2 servers suddenly fails and won't run on an new SQL Server 2012 server.  This script is used to create 'bulk' Replications on a large number of DBs saving a tremendous
    amount of our time doing it the manual way.
    Below is an 'condensed' version of the script which fails.  I have removed around 2550 lines of specific sp_addarticle statements which are mostly just copy and pasted from what SQL Management Studio 'scripted' for me went I when through the Replication
    Wizard and told it to save to script.
    declare @dbname varchar(MAX), @SQL nvarchar(MAX)
    declare c_dblist cursor for
    select name from sys.databases WHERE name like 'dbone[_]%' order by name;
    open c_dblist
    fetch next from c_dblist into @dbname
    while @@fetch_status = 0
    begin
    print @dbname
    SET @SQL = 'DECLARE @dbname NVARCHAR(MAX); SET @dbname = ''' + @dbname + ''';
    use ['+@dbname+']
    exec sp_replicationdboption @dbname = N'''+@dbname+''', @optname = N''publish'', @value = N''true''
    use ['+@dbname+']
    exec ['+@dbname+'].sys.sp_addlogreader_agent @job_login = N''DOMAIN\DBServiceAccount'', @job_password = N''secret'', @publisher_security_mode = 1, @job_name = null
    -- Adding the transactional publication
    use ['+@dbname+']
    exec sp_addpublication @publication = N'''+@dbname+' Replication'', @description = N''Transactional publication of database
    '''''+@dbname+''''' from Publisher ''''MSSQLSRV\INSTANCE''''.'', @sync_method = N''concurrent'', @retention = 0, @allow_push = N''true'', @allow_pull = N''true'', @allow_anonymous = N''false'', @enabled_for_internet
    = N''false'', @snapshot_in_defaultfolder = N''true'', @compress_snapshot = N''false'', @ftp_port = 21, @allow_subscription_copy = N''false'', @add_to_active_directory = N''false'', @repl_freq = N''continuous'', @status = N''active'', @independent_agent = N''true'',
    @immediate_sync = N''true'', @allow_sync_tran = N''false'', @allow_queued_tran = N''false'', @allow_dts = N''false'', @replicate_ddl = 1, @allow_initialize_from_backup = N''true'', @enabled_for_p2p = N''false'', @enabled_for_het_sub = N''false''
    exec sp_addpublication_snapshot @publication = N'''+@dbname+' Replication'', @frequency_type = 1, @frequency_interval = 1, @frequency_relative_interval = 1, @frequency_recurrence_factor = 0, @frequency_subday = 8,
    @frequency_subday_interval = 1, @active_start_time_of_day = 0, @active_end_time_of_day = 235959, @active_start_date = 0, @active_end_date = 0, @job_login = N''DOMAIN\DBServiceAccount'', @job_password = N''secret'', @publisher_security_mode = 1
    -- There are around 2400 lines roughly the same as this only difference is the tablename repeated below this one
    use ['+@dbname+']
    exec sp_addarticle @publication = N'''+@dbname+' Replication'', @article = N''TABLE_ONE'', @source_owner = N''dbo'', @source_object = N''TABLE_ONE'', @type = N''logbased'', @description = null, @creation_script =
    null, @pre_creation_cmd = N''drop'', @schema_option = 0x000000000803509F, @identityrangemanagementoption = N''manual'', @destination_table = N''TABLE_ONE'', @destination_owner = N''dbo'', @vertical_partition = N''false'', @ins_cmd = N''CALL sp_MSins_dboTABLE_ONE'',
    @del_cmd = N''CALL sp_MSdel_dboTABLE_ONE'', @upd_cmd = N''SCALL sp_MSupd_dboTABLE_ONE''
    EXEC sp_executesql @SQL
    SET @dbname = REPLACE(@dbname, 'dbone_', 'dbtwo_');
    print @dbname
    SET @SQL = 'DECLARE @dbname NVARCHAR(MAX); SET @dbname = ''' + @dbname + ''';
    use ['+@dbname+']
    exec sp_replicationdboption @dbname = N'''+@dbname+''', @optname = N''publish'', @value = N''true''
    use ['+@dbname+']
    exec ['+@dbname+'].sys.sp_addlogreader_agent @job_login = N''DOMAIN\DBServiceAccount'', @job_password = N''secret'', @publisher_security_mode = 1, @job_name = null
    -- Adding the transactional publication
    use ['+@dbname+']
    exec sp_addpublication @publication = N'''+@dbname+' Replication'', @description = N''Transactional publication of database
    '''''+@dbname+''''' from Publisher ''''MSSQLSRV\INSTANCE''''.'', @sync_method = N''concurrent'', @retention = 0, @allow_push = N''true'', @allow_pull = N''true'', @allow_anonymous = N''false'', @enabled_for_internet
    = N''false'', @snapshot_in_defaultfolder = N''true'', @compress_snapshot = N''false'', @ftp_port = 21, @allow_subscription_copy = N''false'', @add_to_active_directory = N''false'', @repl_freq = N''continuous'', @status = N''active'', @independent_agent = N''true'',
    @immediate_sync = N''true'', @allow_sync_tran = N''false'', @allow_queued_tran = N''false'', @allow_dts = N''false'', @replicate_ddl = 1, @allow_initialize_from_backup = N''true'', @enabled_for_p2p = N''false'', @enabled_for_het_sub = N''false''
    exec sp_addpublication_snapshot @publication = N'''+@dbname+' Replication'', @frequency_type = 1, @frequency_interval = 1, @frequency_relative_interval = 1, @frequency_recurrence_factor = 0, @frequency_subday = 8,
    @frequency_subday_interval = 1, @active_start_time_of_day = 0, @active_end_time_of_day = 235959, @active_start_date = 0, @active_end_date = 0, @job_login = N''DOMAIN\DBServiceAccount'', @job_password = N''secret'', @publisher_security_mode = 1
    -- There are around 140 lines roughly the same as this only difference is the tablename repeated below this one
    use ['+@dbname+']
    exec sp_addarticle @publication = N'''+@dbname+' Replication'', @article = N''DB_TWO_TABLE_ONE'', @source_owner = N''dbo'', @source_object = N''DB_TWO_TABLE_ONE'', @type = N''logbased'', @description = null, @creation_script
    = null, @pre_creation_cmd = N''drop'', @schema_option = 0x000000000803509D, @identityrangemanagementoption = N''manual'', @destination_table = N''DB_TWO_TABLE_ONE'', @destination_owner = N''dbo'', @vertical_partition = N''false''
    EXEC sp_executesql @SQL
    fetch next from c_dblist into @dbname
    end
    close c_dblist
    deallocate c_dblist
    George P Botuwell, Programmer

    Hi George,
    Thank you for your question. 
    I am trying to involve someone more familiar with this topic for a further look at this issue. Sometime delay might be expected from the job transferring. Your patience is greatly appreciated. 
    Thank you for your understanding and support.
    If you have any feedback on our support, please click
    here.
    Allen Li
    TechNet Community Support

  • Can multi-interfaces share the same hsrp group id on the c6500?

    case:
    c6509A+msfc2 and C6509B+msfc3
    configurating hsrp...
    question:
    msfc2 supports total 16 hsrp group id,however msfc3 256.How hsrp group Can configurate?How vlans can configurate inside the same group id?

    Hi,
    MSFC2 supports only 16 HSRP group duw to the limitaion on PFC2.The new MSFC3 supports 256 HSRP groups as you mentioned above.
    The workaround to get over this problem is to use multiple Vlan interface to a single HSRP group like
    Vlan1,3,5,7 in HSRP group 1
    Vlan 2,4,6,8 in HSRP group 2.
    It works perfectly as already pointed out by Glen.
    HTH,
    -amit singh

  • Too many connections - limit of 150 reached

    We ran into a situation where a program (written in PHP, running under Apache) was spawned via crontab every 30 seconds for test purposes. It connected to the database but did not disconnect.
    Net result: Once the program had been started 150 times, the database refused any more connections. No valid users could connect. I couldn't even connect from the oracle privileged account.
    Item 1: The process will be modified to explicitly close its connection when done, rather than trusting the job to default behavior of PHP. So, hopefully, we will not run into this a second time.
    Item 2: But if we do have this problem again, I need to know how to intervene when the connection limit has been reached. I was not able to connect myself and therefore could not query v$process or related tables to gather any information. I could kill the various (useless) listener processes at the unix command line, but it still took time for Oracle to sense the dead process and mop up. How to accomplish this quickly?
    Item 3: I can probably set up the rogue process to login as a different user and then set a resource profile for that user including timeouts. Any suggestions on values for that resource profile?
    Item 4: Is there a way to reserve a listener connection for a privileged account such as the DBA?
    Thanks for any guidance.
    -- Chris Curzon

    ChrisCurzonDBA wrote:
    Thanks for the friendly reply.
    What worried me was that I had to wait for the useless connections to clear, before I could connect and see what the sessions were. Yes, Oracle had to roll back any uncommitted work, and there's no way to speed that up, but I wanted to see that processes from inside of Oracle (connected) not from outside.
    Is it possible to configure the listener to "reserve" one connection for a privileged account? No.
    It is not the listener's responsibility. In fact, it is not even the listener's responsibility to maintain existing connections. Once the listener services the connection request, it is totally out of the picture. You can even kill the listener, and any existing connections will continue on. It's like being introduced to someone at a party. Once you are introduced to someone (by The Listener), you carry on your conversation with that person directly, not through the person (The Listener) who introduced you.
    >
    -- Chris

  • Capacity limit has been reached

    Hi Team,
    When we run a payment proposal through F110 its internally triggering Function module FI_PAYM_XML_WRITE,
    Through the transfer statement in the function module its placing the data in the designated path of application server
    (The folder is located on windows machine not on Unix machine).
    Some times its successfully placing the file and some time we are getting the SHORT DUMP as “capacity limit has been reached”,
    We already checked with our Basis team, they are telling that folder has  4.8gb more free space, so there should not space issue.
    Please let us know how to correct this.
    Thanks & Regards,
    Phani Kumar

    Hi Glen Anthony,
    I Checked the point with the Basis team, there is no restriction on the file size and we have more than sufficient space to place the fiel.
    Hi Max Bianchi,
    Below is the run time analysis, Please let me know how to correct the error.
    Runtime Errors         DATASET_WRITE_ERROR
    Short text
        Error when writing to the file "/nfs/SAPP/PIN/out/BDDPTA2BNP1467".
    What happened?
        Resource bottleneck
        The current program "SAPLDMEE5" had to be terminated because
        a capacity limit has been reached.
    Error analysis
        An exception occurred that is explained in detail below.
        The exception, which is assigned to class 'CX_SY_FILE_IO', was not caught in
        procedure "FI_PAYM_XML_WRITE" "(FUNCTION)", nor was it propagated by a RAISING
         clause.
        Since the caller of the procedure could not have anticipated that the
        exception would occur, the current program is terminated.
        The reason for the exception is:
        An error occurred when writing to the file "/nfs/SAPP/PIN/out/BDDPTA2BNP1467".
        Error text: "Missing file or filesystem"
        Error code: 52
    And error is occuring at transfer statement in the std function module
    FI_PAYM_XML_WRITE.
    Thanks,
    Phani Kumar

  • Opening multiple reports in Crystal Reports for VS causes database connect limit to be reached.  Seems to be no way to force Crystal Reports to close database connection (other than exiting application)

    I am working on upgrading an application that has been in use for many years.  The application is written in VB6 and I have been tasked with upgrading the current application to Crystal Reports for Visual Studio.  I am using Crystal Reports for VS Version 13.0.12.1494.  The system's database is a Sybase SQL Anywhere 16 database with an ODBC connection using integrated login.  Each of the reports has the database connection set up from within the report.  There is only once database server, so each of the reports are pointing to the same DB.  The database server is currently installed as a "Personal Server" with a limit of 10 connections. 
    I have implemented the CR viewer as part of a COM-callable wrapper that exposes a COM interface for VB6 to interact with.  Inside of my viewer component is a Winform that embeds the Crystal's Report viewer.  The COM interface basically maps the basic Crystal apis to methods that the VB6 can call (i.e., Load Report, Set Field Text, Update SQL Query, etc).  This architecture is working as designed and the reports are displaying correctly and responding correctly to changes in queries, etc.
    The issue is that after I open 9 reports, the tenth one will respond with an error indicating that the database connection limit has been reached.  The database connections used by the reports aren't released until after the application is closed.  The application is designed for a secure environment that prohibits the non-administrative user from accessing the systems desktop, so asking the user tor restart the application after 10 reports isn't a viable option.
    I have checked and database connection pooling is turned off for the SQL Anywhere 16 driver.
    I have been digging on this for a few days and have tried adding code in the FormClosed event to close and dispose of the Report Document as follows:
    ReportDocument reportDoc= (ReportDocument) crystalReportViewer1.ReportSource;
    reportDoc.Close();
    reportDoc.Dispose();
    GC.Collect();       // Force garbage collection on disposed items
    I have also tried the following (as well as maybe 20 or so other permutations) trying to fix the issue with no success.  
    ReportDocument reportDoc= (ReportDocument) crystalReportViewer1.ReportSource;
    foreach (Table table in reportDoc.Database.Tables)
         table.Dispose();
    crystalReportViewer1.ReportSource = null;
    reportDoc.Database.Dispose();
    reportDoc.Close();
    reportDoc.Dispose();
    reportDoc = (ReportDocument)crystalReportViewer1.ReportSource;
    GC.Collect();       // Force garabe collection on disposed items
    Any ideas or suggestions would be greatly appreciated.  I have been pulling my hair out on this one!

    Hi Ludek,
    Thanks so much for the quick reply.  Unfortunately I did not have time to work on the reporting project Friday afternoon, but did a quick test this morning with some interesting results.  I'm hoping if I describe what I'm doing, you can show me the error of my ways.  This is really my first major undertaking with Crystal Reports.
    If I simply load the report, then close and dispose, I don't hit the limit of 10 files.  Note that I do not logon manually in my code as the logon parameters are all defined within the reports themselves.  The logon happens when you actually view the report.  Loading the report doesn't seem to actually log in to the DB.
    What I did was create a very simple form with a single button that creates the WinForm class which contains the Crystal Viewer.  It then loads the report, sets the ReportSource property on the CrystalReportsViewer object contained in the WInForm and shows the report. The report does show correctly, until the 10 reports limit is reached.
    The relevant code is shown below. More than I wanted to post, but i want to be as complete and unambiguous as possible. 
    This code displays the same behavior as my earlier post (after 10 reports we are unable to create another connection to the DB).
    // Initial Form that simply has a button
      public partial class SlectReport : form
            public SelectReport()
                InitializeComponent();
            private void button1_Click(object sender, EventArgs e)
                ReportDocument rd = new ReportDocument();
                ReportForm report = new ReportForm();
                try
                    rd.Load(@"Test.rpt");
                    report.ReportSource = rd;
                    report.Show();
             catch (Exception ex)
                  MessageBox.Show(ex.Message);
    // The WinForm containing the Crystal Reports Viewer
        public partial class ReportForm : Form
            public ReportForm()
                InitializeComponent();
            private void Form1_Load(object sender, EventArgs e)
                this.crystalReportViewer1.RefreshReport();
                this.FormClosed += new FormClosedEventHandler(ReportForm_FormClosed);
            void ReportForm_FormClosed(object sender, FormClosedEventArgs e)
                ReportDocument rd;
                rd = (ReportDocument)crystalReportViewer1.ReportSource;
                rd.Close();
                rd.Dispose();
            public object ReportSource
                set { crystalReportViewer1.ReportSource = value; }
    Again, any guidance would be greatly appreciated. 

  • HSRP Group Limitation Problem

    Dear All,
    I have 2 3750 switches on which I need to configure HSRP for 26 VLANS.
    I have tried configuring one group for vlan 1 - 16 & second group next 16 VLANS. But i still get the error 'platform does not support more than 32 hsrp groups'
    What seems to be the problem?
    Thanks in advance.
    Sridhar.

    Have you tried to assign unique HSRP group numbers to the 26 different groups you need?
    32 HSRP groups is an HW limitation of the 3750 with no workaround available, unlike the 3550 where you could get creative with clumping groups of vlans and re use HSRP group numbers as outlined in:
    http://www.cisco.com/en/US/products/hw/switches/ps646/products_qanda_item09186a00801cb707.shtml
    The other thing to consider would be version of IOS.
    HTH

  • HSRP group question

    If you have multiples VLAN SVIs configured with the same HSRP group, does changing the priority on one SVI to failover to another router cause all the SVIs in that group to switch to the other router or do the individual priority settings keep that from happening?

    I would think that since you configure the priority in interface config mode (not in global config) that it would affect only the SVI on which you configure it.
    HTH
    Rick

  • Multiple members of HSRP group - implications?

    I've got a group of 6509's that support a couple dozen IP networks. Recently we ran into the "16 HSRP groups" limitation.
    My question is, if I assign multiple VLAN's to a single HSRP group, and one of the member interfaces becomes unavailable, do *all* members of that group go from active to standby? Or just the affected IP/VLAN?

    Hi,
    it effects on that particular Vlan not the entire HSRP group.
    regards,
    -amit singh

  • NATing to the virtual MAC address of an HSRP group problems...

    Hello
    I have a problem where I need to NAT various IP addresses, and need the NATd addresses to carry the virtual MAC address of the HSRP group on the onward travels..
    By default, with the Cisco 871's I'm using, the packets are NATd, but carry the MAC address of the external interface.. not the virtual MAC address.
    The problem is that when I failover to the standby 871, the packets will then have the MAC address of the standby (new active) 871. This causes problems because my next hop doesn't update its ARP tables (very infrequent updates).
    The next hop will accept packets NATd by the standby (now live), but will continue to send reply (eg ICMP) to the live (now standby) because it hasn't updated its ARP table.
    I know that I can create a NAT pool with the virtual IP address as the only member of the pool. Packets will then have the virtual MAC address, and the problem will be fixed, but if I need to NAT IP addresses to *different* NATd addresses, then I would have to create multiple HSRP groups, with different virtual IP's and MAC's, and then create multiple NAT pools...
    If I can't get my next hop (which I have minimal control over) to refresh/update it's ARP table, then I will consider the multiple HSRP group config, but before I try that I would like to know whether I would be able to have multiple virtual IP's and MAC's on a single interface. Apparently there was a problem with the Catalyst 2500/4500 series where the same MAC address would be used for all HSRP groups, and you had to use burned-in MAC addresses for HSRP groups.. which wouldn't provide a solution in this case..
    Any ideas on how to fix this would be greatly appreciated. BTW I have proxy-arp on external interface, and gratuitous arp.
    My software version is:
    Cisco IOS Software, C870 Software (C870-ADVSECURITYK9-M), Version 12.3(8)YI1, RELEASE SOFTWARE (fc1)
    Synched to technology version 12.3(10.3)T2
    Many thanks,
    Michael Blake.

    Hello Michael,
    you might want to have a look at the documents below, describing two techniques developed for the problem of NAT in an HSRP environement:
    NAT Stateful Failover of Network Address Translation.
    http://www.cisco.com/univercd/cc/td/doc/product/software/ios122/122newft/122t/122t13/ftsnat.htm
    NAT Static Mapping Support with HSRP for High Availability
    http://www.cisco.com/univercd/cc/td/doc/product/software/ios122/122newft/122t/122t4/ftnthsrp.htm
    Regards,
    GP

  • Is it possible to increase the nested layer group limit on Photoshop CS4

    Hi all,
    Does anyone know if it is possible to increase the limit on nested layer groups in Photoshop CS4. To do a test, I made a group with a blank layer inside, then duplicated this group several times and nested them within each other. Once I have nested groups (5 deep) I can't nest any more.
    This is quite frustrating as I'm sure I could cope with a just two or three more levels of depth.
    Thanks.

    Thanks for the reply.
    That's rather annoying. I guess I will have to live with it for now. :-(

  • Group Limit items to create one PO

    Hi All,
    while creating limit items, we want to group all limit items in one PO. I am aware that it is SAP standard behavior that we should not have more than one limit item in a PO.
    But is there any BADI available for such an enhancement so that we can gorup multiple limit items to create one single PO ?
    Thanks.

    Hello,
    In case of Extended classic scenario, as per the standard system design, it is not possible to create two limit items in one PO, when a PO is created manually from transaction "Create purchase order" (BBP_POC).                                                                    
    If you want to have two limit items in one PO, this is possible only by a Shopping cart. In shopping cart, you have to create two hierarchies with one limit item in each hierarchy. This will then create a PO with two limit items. This is the only way you can have two limit items in one PO in case of ECS.
    Multiple packages concept is introduced in SRM 5.0.                               
    The prerequisite to have multiple service packages in SRM is to have multiple hierarchy items in one PO. Unfortunately there is nearly no way to create hierarchy items directly from PO. It is only possible by a SC or an RFI process. The multiple service package handling was built exactly for this scenario.                                                                               
    Items need to be hierarchy items so that different packages are created for each item. If you have more then 1 limit item you will end up with 1 package for all of them.
    This results in PO not being created in the backend raising an error message:  #Sum of Percentages > 200.0< exceeds 100%.                              
    I hope this helps.
    Kind regards,
    Ricardo

  • Channel-group limit per router

    Can someone make clear statement about limit of channel-groups (from VWIC2-2MFT-T1/E1) per router (i.e. 2811) ? I have 2 controllers with total of 4 E1 lines, but it sounds that I can ONLY have 4 channel-groups of any combination in a time per router.

    Two channel groups can be supported per VWIC2 module. When a 2 port VWIC2 is used, only 1 channel group is supported per por
    check this
    http://www.cisco.com/application/pdf/en/us/guest/products/ps5855/c1167/cdccont_0900aecd8028d2e5.pdf

  • Server Admin user and group limit

    Just noticed today with 10.6.7 that there is a limit of 100 users being displayed in Server Admin. I guess the sames goes for Groups as well.
    As soon as i deleted some old accounts the users i had created recently appeared in Server Admin.
    Is there a fix for this?
    Thanks

    As you mentioned, it is a display limit in WM, the accounts are still there. A quick workaround is to type part of the object name in the search box at the top of the list.
    That 100 object display limit was probably the result of countless meetings between middle-managers. I'm guessing it went something like this:
    "Why don't we just show them all?"
    "Some deployments could have tens of thousands... that won't work... it'll take forever to load and even longer for somebody to skim through the list."
    "Okay, how about we do 1000?"
    "No, that won't work either. Still too many to skim through and, even worse, they'll spend years with 999 objects in there then add a few more and think it's broken..."
    "Fine... then 100. Short enough to load reasonably quickly and long enough that the average person could eyeball it."
    "But there will still be some admins who think it's broken and want to change it."
    Steve Jobs walks in, "Give 'em a search box."
    Middle-managers in unison, "Brilliant!"
    Sorry. It's early, and I'm a bit punchy.

  • XML Event casuing EJB cache limit to be reached

    I am running WLS 6.1 (sp2) and WLI 2.1 (sp2). My workflows are completely XML event
    driven. After the workflow is started a number of events are created that wait
    for different state changes to be posted th the JMS queue. During testing this
    seemed to work fine. However, I have now moved to production and things are falling
    apart.
    I have 100+ active workflows at any given time. They all have the same XML event
    active, which checks a conditional field to determine if it should handle the
    event. When the number of active workflows reached 100 I start receiving CacheFullException
    whenever the workflow engine attempts to process the event.
    Is there some way to increase the default EJB cache size for the WLI beans? How
    does WLI process these events so that the cache limit comes into play? Is there
    some way to change the structure of my workflow so that this limit is no longer
    a problem?
    Any suggestions will be greatly appreciated.
    Thanks,
    Pete Giesin

    I am running WLS 6.1 (sp2) and WLI 2.1 (sp2). My workflows are completely XML event
    driven. After the workflow is started a number of events are created that wait
    for different state changes to be posted th the JMS queue. During testing this
    seemed to work fine. However, I have now moved to production and things are falling
    apart.
    I have 100+ active workflows at any given time. They all have the same XML event
    active, which checks a conditional field to determine if it should handle the
    event. When the number of active workflows reached 100 I start receiving CacheFullException
    whenever the workflow engine attempts to process the event.
    Is there some way to increase the default EJB cache size for the WLI beans? How
    does WLI process these events so that the cache limit comes into play? Is there
    some way to change the structure of my workflow so that this limit is no longer
    a problem?
    Any suggestions will be greatly appreciated.
    Thanks,
    Pete Giesin

Maybe you are looking for

  • IMac receives message "Cannot connect to Apple TV" - Apple TV can see iTunes library and can mirror with iPhone.

    Hi all. I have an iMac (mid 2011) running OS X Yosemite 10.10.2 and an apple TV that my little brother just gave me (I believe it's 3rd gen from serial #). I can successfully mirror my iPhone 4S with AirPlay, and the Apple TV can see the iTunes lib f

  • Automatic creation of ad hoc network

    I regularly have to facilitate workshops using Keynote slides.  I use Keynote Remote to control the presentation which requires the creation of an ad hoc network that is password protected. My procedure for this starts with the MBP where in the Finde

  • OC4J 9.0.2.1.0

    Before you say "your still on that version????", yes we are and there is nothing i can do about it for the moment. I've recently put together an app with J2EE1.3 (oc4j 10g) and have been trying to downgrade it to J2EE 1.2. So far the app is in a depl

  • What version  of iphoto to download from EOS 20D

    What version of iphoto or what software do I need to download images from my EOS 20 D Canon camera onto my computer? I currently have iphoto 2.

  • Variable drop-down lists according to radio-button input

    I need to restrict the display of drop-down lists according to a particular radio-button selection earlier on the form. Can I use a javascript call on the client side without linking to an external database along these lines: If radiobutton1 == 1 the