Guest
Welcome login


TIBCOmmunity > Products > BusinessEvents > Conversations
Home   Members Communities
Conversations () Resources () Blogs ()

BusinessEvents

Up to Conversations in BusinessEvents

BE Cache Usage Overview

Created on: Jul 14, 2008 1:30 PM

BE 2.x and 3.x are fully integrated with Coherence Cache as the Object Management Layer. What does this mean?

 

BE in contrast to orchestration engines is a stateful engine. The state is defined as the collection of instances of concepts, scorecards and events at any point in time. These instances are maintained within BE untill they are explicitly retracted using deleteInstance or consumeEvent in case of an event. The other mechanism for removing events from the state are using Time To Live (TTL). The events are automatically retracted from the state once the Time To Live expires. Given that, there are multiple considerations while designing a model to take advantage of the state management.

 

State Capsules

---------------------

 

1. RETE Working Memory

Once an object is asserted to BE using assertEvent() or createInstance(), the RETE network remembers the past matches. For example, if there's a rule of the form . The RETE network internally maintains join tables that in this case would store all asserted orders in this join table (Note that the objects are not stored within the engine but a virtual object reference is maintained in the RETE network). There is one setting that influences this behavior:

In the Object Management tab in the deployment, there are various settings for each concept/ scorecard/ event type:

1. CACHE+WM

2. CACHE ONLY

3. Memory Only

The CACHE+WM is the default option and in this case, BE does maintain the RETE network for the instances. There are various deployment strategies where this option may not work due to JVM heap size constraints coupled with GC times. In these cases, the fast responsiveness of the RETE network is offset by high memory usage thus resulting in poor performance. In those cases, it is recommended to use CACHE ONLY for the instances that change often and the system is required to hold large amount of state. In CACHE ONLY, the system does not store pre-matched join tables for the rules. The logic changes as follows:

1. On an Event X, use C_Load... calls to load the instances that might be affected by this event.

 

2. Distributed Cache

The Partitioned/ Distributed Cache is the only logical topological choice as the backing map for all instances. It is recommended that the BE engines are run with localstorage off and the data is solely stored in cache server nodes. Each cache server node should ideally be not sized more than 1 GB. I'll post a separate thread on multi data center topology.

 

 

3. Oracle Backing Store

This layer is optional and is used to replicate all instances to an Oracle store. The oracle schemas take advantage of Oracle Object Types thus bypassing the costs of an Object Relational Mapping tools such as Hibernate. A separate thread on this as well.

 

More to follow.....

Click to view Vincenzo Guastella's profile Dabbler 18 posts since
Jul 18, 2008
1. Jul 18, 2008 5:17 AM in response to: puneet arora
Re: BE Cache Usage Overview

Hi Puneet

I would like to understand better the join table usage.

In an configuration based on separate engines which engine is maintaining it ?

What about the references to the objets maintained by the RETE network ? Is their number proportional to the rules and conditions refencing them ?

Click to view fred's profile Dabbler 46 posts since
May 25, 2009
3. Mar 10, 2010 12:53 AM in response to: puneet arora
Re: BE Cache Usage Overview

HI Punit,

can u provide me the configuration i need to do for backing-store implementaion.

I went thru the pdfs, but i was getting some error.

i have attched the error stack for reference.

Attachments:
Click to view robin mathew's profile Enthusiast 91 posts since
Aug 6, 2008
4. Mar 11, 2010 10:32 AM in response to: fred
Re: BE Cache Usage Overview

Fred, I see a NoClassDeffound error in the log. Make sure that the ojdbc14.jar that has the oracle drivers for DB connectivity are in your Classpath.

 

thanks

Robin

Click to view fred's profile Dabbler 46 posts since
May 25, 2009
5. Mar 11, 2010 11:27 PM in response to: robin mathew
Re: BE Cache Usage Overview

Hi Robin,

where to mention and how?

Click to view robin mathew's profile Enthusiast 91 posts since
Aug 6, 2008
6. Mar 12, 2010 8:34 AM in response to: fred
Re: BE Cache Usage Overview

Look on your machine for ojdbc14.jar. Its usually in your Oracle install lib folder. Mine is located at C:\oracle\ora92\jdbc\lib

 

Add that path to the TRA classpath. You could append it to tibco.env.STD_EXT_CP or CUSTOM_EXT_PREPEND_CP in all TRA's (cache servers and inference engines)

 

thanks

Robin

Click to view fred's profile Dabbler 46 posts since
May 25, 2009
7. Mar 17, 2010 1:38 AM in response to: robin mathew
Re: BE Cache Usage Overview

Hi Robin,

after configuring the class path, i got some other error during cache server initialization.,

here is the description:

 

2010 Mar 17 11:54:00:062 GMT +5 A4MD08131.org.com Info DistributedCache - Registering DataSource, rsp=A4MD08131.org.com, key=/Shared/JDBC Connection.sharedjdbc, uri=jdbc:tibcosoftwareinc:oracle://localhost:1521;SID=XE, user=be_user, cacheName=objectTableCache-bs$agent2$$ObjectTableIDs

2010 Mar 17 11:54:00:093 GMT +5 A4MD08131.org.com Info DistributedCache - Registering Key= as failback connection

2010 Mar 17 11:54:00:155 GMT +5 A4MD08131.org.com Error DistributedCache - java.lang.Exception: SQL Error while Instantiating Connection Cache :

java.sql.SQLException: Invalid Oracle URL specified

2010 Mar 17 11:54:00:155 GMT +5 A4MD08131.org.com Error DistributedCache - at com.tibco.be.oracle.impl.OracleConnectionPool.initializeConnectionCache(OracleC onnectionPool.java:258)

2010 Mar 17 11:54:00:155 GMT +5 A4MD08131.org.com Error DistributedCache - at com.tibco.be.oracle.impl.OracleConnectionPool.activate(OracleConnectionPool.jav a:54)

2010 Mar 17 11:54:00:155 GMT +5 A4MD08131.org.com Error DistributedCache - at com.tibco.be.oracle.impl.OracleActiveConnectionPool.activate(OracleActiveConnec tionPool.java:66)

2010 Mar 17 11:54:00:155 GMT +5 A4MD08131.org.com Error DistributedCache - at com.tibco.be.oracle.impl.OracleAdapter.]]>(OracleAdapter.java:77)

2010 Mar 17 11:54:00:171 GMT +5 A4MD08131.org.com Error DistributedCache - at com.tibco.be.oracle.BECoherenceOracleStore.initialize(BECoherenceOracleStore.ja va:398)

2010 Mar 17 11:54:00:171 GMT +5 A4MD08131.org.com Error DistributedCache - at com.tibco.be.oracle.BECoherenceOracleStore.initialize(BECoherenceOracleStore.ja va:286)

2010 Mar 17 11:54:00:171 GMT +5 A4MD08131.org.com Error DistributedCache - at com.tibco.be.oracle.BECoherenceOracleStore.]]>(BECoherenceOracleStore.java:99)

2010 Mar 17 11:54:00:171 GMT +5 A4MD08131.org.com Error DistributedCache - at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)

2010 Mar 17 11:54:00:171 GMT +5 A4MD08131.org.com Error DistributedCache - at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessor Impl.java:39)

2010 Mar 17 11:54:00:171 GMT +5 A4MD08131.org.com Error DistributedCache - at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructor AccessorImpl.java:27)

2010 Mar 17 11:54:00:171 GMT +5 A4MD08131.org.com Error DistributedCache - at java.lang.reflect.Constructor.newInstance(Constructor.java:494)

2010 Mar 17 11:54:00:171 GMT +5 A4MD08131.org.com Error DistributedCache - at com.tangosol.util.ClassHelper.newInstance(ClassHelper.java:615)

2010 Mar 17 11:54:00:171 GMT +5 A4MD08131.org.com Error DistributedCache - at com.tangosol.net.DefaultConfigurableCacheFactory.instantiateAny(DefaultConfigur ableCacheFactory.java:2692)

2010 Mar 17 11:54:00:171 GMT +5 A4MD08131.org.com Error DistributedCache - at com.tibco.cep.runtime.service.om.coherence.cluster.ClusterCacheFactory.instanti ateAny(ClusterCacheFactory.java:129)

2010 Mar 17 11:54:00:171 GMT +5 A4MD08131.org.com Error DistributedCache - at com.tangosol.net.DefaultConfigurableCacheFactory.instantiateCacheStore(DefaultC onfigurableCacheFactory.java:2514)

2010 Mar 17 11:54:00:171 GMT +5 A4MD08131.org.com Error DistributedCache - at com.tibco.cep.runtime.service.om.coherence.cluster.ClusterCacheFactory.instanti ateCacheStore(ClusterCacheFactory.java:59)

2010 Mar 17 11:54:00:171 GMT +5 A4MD08131.org.com Error DistributedCache - at com.tangosol.net.DefaultConfigurableCacheFactory.instantiateReadWriteBackingMap (DefaultConfigurableCacheFactory.java:1220)

2010 Mar 17 11:54:00:171 GMT +5 A4MD08131.org.com Error DistributedCache - at com.tangosol.net.DefaultConfigurableCacheFactory.configureBackingMap(DefaultCon figurableCacheFactory.java:1045)

2010 Mar 17 11:54:00:171 GMT +5 A4MD08131.org.com Error DistributedCache - at com.tibco.cep.runtime.service.om.coherence.cluster.ClusterCacheFactory.configur eBackingMap(ClusterCacheFactory.java:39)

2010 Mar 17 11:54:00:171 GMT +5 A4MD08131.org.com Error DistributedCache - at com.tangosol.net.DefaultConfigurableCacheFactory.configureBackingMap(DefaultCon figurableCacheFactory.java:1012)

2010 Mar 17 11:54:00:171 GMT +5 A4MD08131.org.com Error DistributedCache - at com.tibco.cep.runtime.service.om.coherence.cluster.ClusterCacheFactory.configur eBackingMap(ClusterCacheFactory.java:39)

2010 Mar 17 11:54:00:171 GMT +5 A4MD08131.org.com Error DistributedCache - at com.tangosol.net.DefaultConfigurableCacheFactory$Manager.instantiateBackingMap( DefaultConfigurableCacheFactory.java:3123)

2010 Mar 17 11:54:00:171 GMT +5 A4MD08131.org.com Error DistributedCache - at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Distributed Cache$Storage.instantiateResourceMap(DistributedCache.CDB:19)

2010 Mar 17 11:54:00:171 GMT +5 A4MD08131.org.com Error DistributedCache - at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Distributed Cache$Storage.setCacheName(DistributedCache.CDB:27)

2010 Mar 17 11:54:00:187 GMT +5 A4MD08131.org.com Error DistributedCache - at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Distributed Cache$ConfigListener.entryInserted(DistributedCache.CDB:15)

2010 Mar 17 11:54:00:187 GMT +5 A4MD08131.org.com Error DistributedCache - at com.tangosol.util.MapEvent.dispatch(MapEvent.java:191)

2010 Mar 17 11:54:00:187 GMT +5 A4MD08131.org.com Error DistributedCache - at com.tangosol.util.MapEvent.dispatch(MapEvent.java:164)

2010 Mar 17 11:54:00:187 GMT +5 A4MD08131.org.com Error DistributedCache - at com.tangosol.util.MapListenerSupport.fireEvent(MapListenerSupport.java:556)

2010 Mar 17 11:54:00:187 GMT +5 A4MD08131.org.com Error DistributedCache - at com.tangosol.util.ObservableHashMap.dispatchEvent(ObservableHashMap.java:229)

2010 Mar 17 11:54:00:187 GMT +5 A4MD08131.org.com Error DistributedCache - at com.tangosol.util.ObservableHashMap$Entry.onAdd(ObservableHashMap.java:270)

2010 Mar 17 11:54:00:187 GMT +5 A4MD08131.org.com Error DistributedCache - at com.tangosol.util.SafeHashMap.put(SafeHashMap.java:247)

2010 Mar 17 11:54:00:187 GMT +5 A4MD08131.org.com Error DistributedCache - at com.tangosol.coherence.component.util.collections.WrapperMap.put(WrapperMap.CDB :1)

2010 Mar 17 11:54:00:187 GMT +5 A4MD08131.org.com Error DistributedCache - at com.tangosol.coherence.component.util.daemon.queueProcessor.Service$ServiceConf igMap.put(Service.CDB:12)

2010 Mar 17 11:54:00:187 GMT +5 A4MD08131.org.com Error DistributedCache - at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Distributed Cache$StorageIdRequest.onReceived(DistributedCache.CDB:40)

2010 Mar 17 11:54:00:187 GMT +5 A4MD08131.org.com Error DistributedCache - at com.tangosol.coherence.component.util.daemon.queueProcessor.Service.onMessage(S ervice.CDB:9)

2010 Mar 17 11:54:00:187 GMT +5 A4MD08131.org.com Error DistributedCache - at com.tangosol.coherence.component.util.daemon.queueProcessor.Service.onNotify(Se rvice.CDB:130)

2010 Mar 17 11:54:00:187 GMT +5 A4MD08131.org.com Error DistributedCache - at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Distributed Cache.onNotify(DistributedCache.CDB:3)

2010 Mar 17 11:54:00:187 GMT +5 A4MD08131.org.com Error DistributedCache - at com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:35)

2010 Mar 17 11:54:00:187 GMT +5 A4MD08131.org.com Error DistributedCache - at java.lang.Thread.run(Thread.java:595)

2010 Mar 17 11:54:00:187 GMT +5 A4MD08131.org.com Info CTRL-C - Shutting down service provider -A4MD08131.org.com

2010 Mar 17 11:54:00:202 GMT +5 A4MD08131.org.com Info CTRL-C - RuleServiceProvider A4MD08131.org.com is shutting down.

2010 Mar 17 11:54:00:202 GMT +5 A4MD08131.org.com Info CTRL-C - Shutting down Cluster ...

2010 Mar 17 11:54:00:202 GMT +5 A4MD08131.org.com Info CTRL-C - CLUSTER NODEagent2 Shutdown In Progress

2010 Mar 17 11:54:00:202 GMT +5 A4MD08131.org.com Info CTRL-C - CLUSTER NODEagent2 Flush the Write Behind Queues

 

 

 

And i checked the connection resource property, , i had mentioned the Db host as localhost.

Can u figureout , where i am going wrong.

Click to view robin mathew's profile Enthusiast 91 posts since
Aug 6, 2008
8. Mar 17, 2010 9:15 AM in response to: fred
Re: BE Cache Usage Overview

For your JDBC shared resource, Change your driver type to oracle:thin instead of the Tibco oracle driver.

Click to view fred's profile Dabbler 46 posts since
May 25, 2009
9. Mar 18, 2010 1:06 AM in response to: robin mathew
Re: BE Cache Usage Overview

Hi Robin,

 

Now i am successfully able to run the engine in cache -server mode with backing store.

But when i am trying to run another instance with infrence mode: its showing me the following error.

 

2010 Mar 18 11:23:45:000 GMT +5 A4MD08131.org.com Info main - JDBCConnectionPool(jdbc:oracle:thin:@172.22.45.136:1521:XE,be_user), available=5, busy=0, max=10 initialized successfully
2010 Mar 18 11:23:45:000 GMT +5 A4MD08131.org.com Info main - $cluster RuleSet /Rules/ProcessDebits Rule class be.gen.Rules.ProcessDebits.FraudDetection added
2010 Mar 18 11:23:45:000 GMT +5 A4MD08131.org.com Info main - $cluster RuleSet /Rules/ProcessDebits Rule class be.gen.Rules.ProcessDebits.CheckNegativeBalance added
2010 Mar 18 11:23:45:000 GMT +5 A4MD08131.org.com Info main - $cluster RuleSet /Rules/ProcessDebits Rule class be.gen.Rules.ProcessDebits.ApplyDebit added
2010 Mar 18 11:23:45:016 GMT +5 A4MD08131.org.com Info main - Cluster agent2 starting in SINGLE PRIMARY MODE
2010 Mar 18 11:23:47:063 GMT +5 A4MD08131.org.com Error main - java.lang.Exception: Cluster in Incompatible Mode.. Cluster MultiEngineMode=true, Node multiEngineMode=false
2010 Mar 18 11:23:47:078 GMT +5 A4MD08131.org.com Error main - at com.tibco.cep.runtime.service.om.coherence.cluster.MasterCache.registerMember(M asterCache.java:124)
2010 Mar 18 11:23:47:078 GMT +5 A4MD08131.org.com Error main - at com.tibco.cep.runtime.service.om.coherence.cluster.MasterCache.2010 Mar 18 11:23:47:078 GMT +5 A4MD08131.org.com Error - at com.tibco.cep.runtime.service.om.coherence.cluster.CacheCluster.initialize(Cach eCluster.java:989)2010 Mar 18 11:23:47:078 GMT +5 A4MD08131.org.com Error - at com.tibco.cep.runtime.session.impl.RuleServiceProviderImpl.initCluster(RuleServ iceProviderImpl.java:691)2010 Mar 18 11:23:47:078 GMT +5 A4MD08131.org.com Error - at com.tibco.cep.runtime.session.impl.RuleServiceProviderImpl.configure(RuleServic eProviderImpl.java:212)2010 Mar 18 11:23:47:078 GMT +5 A4MD08131.org.com Error - at com.tibco.cep.container.standalone.BEMain.jumpStart(BEMain.java:115)2010 Mar 18 11:23:47:078 GMT +5 A4MD08131.org.com Error - at com.tibco.cep.container.standalone.BEMain.main(BEMain.java:45)2010 Mar 18 11:23:47:078 GMT +5 A4MD08131.org.com Info - Shutting down service provider -A4MD08131.org.com2010 Mar 18 11:23:47:078 GMT +5 A4MD08131.org.com Info - RuleServiceProvider A4MD08131.org.com is shutting down.2010 Mar 18 11:23:47:078 GMT +5 A4MD08131.org.com Info - Shutting down Cluster ...2010 Mar 18 11:23:47:078 GMT +5 A4MD08131.org.com Info - CLUSTER NODEagent2 Shutdown In Progress2010 Mar 18 11:23:47:094 GMT +5 A4MD08131.org.com Info - CLUSTER NODEagent2 Flush the Write Behind Queues2010 Mar 18 11:23:47:094 GMT +5 A4MD08131.org.com Info - CLUSTER NODEagent2 Shutting down the Agents2010 Mar 18 11:23:47:094 GMT +5 A4MD08131.org.com Info - CLUSTER NODEagent2 Releasing the Caches

]]>

(MasterCache.java:45)
main
main
main
main
main
CTRL-C
CTRL-C
CTRL-C
CTRL-C
CTRL-C
CTRL-C
CTRL-C

 

Can u suggest which can be the problem?i ahve attached the tra file for my inference engine.

Attachments:
Click to view robin mathew's profile Enthusiast 91 posts since
Aug 6, 2008
10. Mar 18, 2010 8:31 AM in response to: fred
Re: BE Cache Usage Overview

Make sure, that the engine and cache server tra's have the exact same cluster properties.

 

If you get any more errors, you might be better off posting a new conversation with an appropriate subject.

Click to view fred's profile Dabbler 46 posts since
May 25, 2009
11. Mar 19, 2010 1:41 AM in response to: robin mathew
Re: BE Cache Usage Overview

Hi Robin,

in fact i did that, but i didn't get reply.

Thats why i thought i 'ld get reply in this manner.

 

Anyway, i checked the cluster properties of both the TRAs.

Its infact same and still i am getting the following error.

 

 

2010 Mar 19 12:01:31:214 GMT +5 A4MD08131.org.com Info [main] - Created Rulesession: FraudDetection.0
2010 Mar 19 12:01:41:839 GMT +5 A4MD08131.org.com Info [main] - [JDBCConnectionPool(jdbc:oracle:thin:@172.22.45.136:1521:XE,be_user), available=5, busy=0, max=10] initialized successfully
2010 Mar 19 12:01:41:839 GMT +5 A4MD08131.org.com Info [main] - [$cluster] RuleSet /Rules/ProcessDebits Rule class be.gen.Rules.ProcessDebits.FraudDetection added
2010 Mar 19 12:01:41:839 GMT +5 A4MD08131.org.com Info [main] - [$cluster] RuleSet /Rules/ProcessDebits Rule class be.gen.Rules.ProcessDebits.CheckNegativeBalance added
2010 Mar 19 12:01:41:839 GMT +5 A4MD08131.org.com Info [main] - [$cluster] RuleSet /Rules/ProcessDebits Rule class be.gen.Rules.ProcessDebits.ApplyDebit added
2010 Mar 19 12:01:41:854 GMT +5 A4MD08131.org.com Info [main] - Cluster agent2 starting in SINGLE PRIMARY MODE
2010 Mar 19 12:01:44:338 GMT +5 A4MD08131.org.com Error [DistributedCache] - java.lang.NullPointerException
2010 Mar 19 12:01:44:338 GMT +5 A4MD08131.org.com Error [DistributedCache] - at com.tibco.be.oracle.BECoherenceOracleStore.initialize(BECoherenceOracleStore.ja va:357)
2010 Mar 19 12:01:44:338 GMT +5 A4MD08131.org.com Error [DistributedCache] - at com.tibco.be.oracle.BECoherenceOracleStore.initialize(BECoherenceOracleStore.ja va:286)
2010 Mar 19 12:01:44:338 GMT +5 A4MD08131.org.com Error [DistributedCache] - at com.tibco.be.oracle.BECoherenceOracleStore.<init>(BECoherenceOracleStore.java:9 9)
2010 Mar 19 12:01:44:338 GMT +5 A4MD08131.org.com Error [DistributedCache] - at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
2010 Mar 19 12:01:44:338 GMT +5 A4MD08131.org.com Error [DistributedCache] - at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessor Impl.java:39)
2010 Mar 19 12:01:44:338 GMT +5 A4MD08131.org.com Error [DistributedCache] - at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructor AccessorImpl.java:27)
2010 Mar 19 12:01:44:338 GMT +5 A4MD08131.org.com Error [DistributedCache] - at java.lang.reflect.Constructor.newInstance(Constructor.java:494)
2010 Mar 19 12:01:44:338 GMT +5 A4MD08131.org.com Error [DistributedCache] - at com.tangosol.util.ClassHelper.newInstance(ClassHelper.java:615)
2010 Mar 19 12:01:44:338 GMT +5 A4MD08131.org.com Error [DistributedCache] - at com.tangosol.net.DefaultConfigurableCacheFactory.instantiateAny(DefaultConfigur ableCacheFactory.java:2692)
2010 Mar 19 12:01:44:338 GMT +5 A4MD08131.org.com Error [DistributedCache] - at com.tibco.cep.runtime.service.om.coherence.cluster.ClusterCacheFactory.instanti ateAny(ClusterCacheFactory.java:129)
2010 Mar 19 12:01:44:338 GMT +5 A4MD08131.org.com Error [DistributedCache] - at com.tangosol.net.DefaultConfigurableCacheFactory.instantiateCacheStore(DefaultC onfigurableCacheFactory.java:2514)
2010 Mar 19 12:01:44:385 GMT +5 A4MD08131.org.com Error [DistributedCache] - at com.tibco.cep.runtime.service.om.coherence.cluster.ClusterCacheFactory.instanti ateCacheStore(ClusterCacheFactory.java:59)
2010 Mar 19 12:01:44:385 GMT +5 A4MD08131.org.com Error [DistributedCache] - at com.tangosol.net.DefaultConfigurableCacheFactory.instantiateReadWriteBackingMap (DefaultConfigurableCacheFactory.java:1220)
2010 Mar 19 12:01:44:385 GMT +5 A4MD08131.org.com Error [DistributedCache] - at com.tangosol.net.DefaultConfigurableCacheFactory.configureBackingMap(DefaultCon figurableCacheFactory.java:1045)
2010 Mar 19 12:01:44:385 GMT +5 A4MD08131.org.com Error [DistributedCache] - at com.tibco.cep.runtime.service.om.coherence.cluster.ClusterCacheFactory.configur eBackingMap(ClusterCacheFactory.java:39)
2010 Mar 19 12:01:44:385 GMT +5 A4MD08131.org.com Error [DistributedCache] - at com.tangosol.net.DefaultConfigurableCacheFactory.configureBackingMap(DefaultCon figurableCacheFactory.java:1012)
2010 Mar 19 12:01:44:385 GMT +5 A4MD08131.org.com Error [DistributedCache] - at com.tibco.cep.runtime.service.om.coherence.cluster.ClusterCacheFactory.configur eBackingMap(ClusterCacheFactory.java:39)
2010 Mar 19 12:01:44:385 GMT +5 A4MD08131.org.com Error [DistributedCache] - at com.tangosol.net.DefaultConfigurableCacheFactory$Manager.instantiateBackingMap( DefaultConfigurableCacheFactory.java:3123)
2010 Mar 19 12:01:44:385 GMT +5 A4MD08131.org.com Error [DistributedCache] - at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Distributed Cache$Storage.instantiateResourceMap(DistributedCache.CDB:19)
2010 Mar 19 12:01:44:401 GMT +5 A4MD08131.org.com Error [DistributedCache] - at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Distributed Cache$Storage.setCacheName(DistributedCache.CDB:27)
2010 Mar 19 12:01:44:401 GMT +5 A4MD08131.org.com Error [DistributedCache] - at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Distributed Cache.ensureKnownStorage(DistributedCache.CDB:39)
2010 Mar 19 12:01:44:401 GMT +5 A4MD08131.org.com Error [DistributedCache] - at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Distributed Cache.onNotify(DistributedCache.CDB:21)
2010 Mar 19 12:01:44:401 GMT +5 A4MD08131.org.com Error [DistributedCache] - at com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:35)
2010 Mar 19 12:01:44:401 GMT +5 A4MD08131.org.com Error [DistributedCache] - at java.lang.Thread.run(Thread.java:595)
2010 Mar 19 12:01:44:401 GMT +5 A4MD08131.org.com Info [CTRL-C] - Shutting down service provider -A4MD08131.org.com
2010 Mar 19 12:01:44:417 GMT +5 A4MD08131.org.com Info [CTRL-C] - RuleServiceProvider A4MD08131.org.com is shutting down.
2010 Mar 19 12:01:44:417 GMT +5 A4MD08131.org.com Info [CTRL-C] - Shutting down Cluster ...
2010 Mar 19 12:01:44:417 GMT +5 A4MD08131.org.com Info [CTRL-C] - CLUSTER NODEagent2 Shutdown In Progress
2010 Mar 19 12:01:44:417 GMT +5 A4MD08131.org.com Info [CTRL-C] - CLUSTER NODEagent2 Flush the Write Behind Queues
2010 Mar 19 12:01:44:417 GMT +5 A4MD08131.org.com Info [CTRL-C] - CLUSTER NODEagent2 Shutting down the Agents
2010 Mar 19 12:01:44:417 GMT +5 A4MD08131.org.com Info [CTRL-C] - CLUSTER NODEagent2 Releasing the Caches
2010 Mar 19 12:01:44:417 GMT +5 A4MD08131.org.com Info [CTRL-C] - CLUSTER NODEagent2 Updating the Agent Table
2010 Mar 19 12:01:44:432 GMT +5 A4MD08131.org.com Info [CTRL-C] - CLUSTER NODEagent2 Releasing the Metadata cache

 

pls, help me.

Click to view robin mathew's profile Enthusiast 91 posts since
Aug 6, 2008
12. Mar 19, 2010 9:05 AM in response to: fred
Re: BE Cache Usage Overview

Not sure why you are getting this error. Set hasbackingstore to false and see if the error goes away. if it does, it could be one of the backingstore properties.



More Like This

  • Retrieving data ...