Hello,

I'm trying to run the clusterstore EJB3 TrailBlazer POJO Clustering and Caching 
demo application.

The demo src consists the file "clusterstore-cache-service.xml" and it is 
having the following code snippet for configuring TreeCache eviction policy.


  |  <!--  Specific eviction policy configurations. This is LRU -->
  |     <attribute name="EvictionPolicyConfig">
  |       <config>
  |         <attribute name="wakeUpIntervalSeconds">5</attribute>
  |         <!--  Cache wide default -->
  |         <region name="/_default_">
  |           <attribute name="maxNodes">5000</attribute>
  |           <attribute name="timeToLiveSeconds">1000</attribute>
  |         </region>
  | 
  |         <!-- The Credit Verification query cache -->
  |           <region name="/CreditVerification"> 
  |           <attribute name="maxNodes">1000</attribute>
  |           <attribute name="timeToLiveSeconds">5000</attribute>
  |         </region>
  | 
  |       </config>
  |     </attribute>
  | 
  | 

After deploying the demo application in the deploy directory of one node in the 
cluster(only one node available in the cluster), it gives the following 
Warnings.

  | 05:58:35,385 INFO  [STDOUT] purchase for username1
  | 05:58:35,405 INFO  [STDOUT] Send mesg to ccproc
  | 05:58:35,408 INFO  [STDOUT] The Msg ID is ID:4-11728151154051
  | 05:57:50,727 INFO  [STDOUT] Finalized order called
  | 05:57:50,728 WARN  [TreeCache] node /CreditVerification not found
  | 05:57:55,822 INFO  [STDOUT] Finalized order called
  | 05:57:55,823 WARN  [TreeCache] node /CreditVerification not found
  | 05:58:00,946 INFO  [STDOUT] Finalized order called
  | 05:58:00,947 WARN  [TreeCache] node /CreditVerification not found
  | 05:58:35,424 INFO  [STDOUT] Finalized order called
  | 05:58:35,425 WARN  [TreeCache] node /CreditVerification not found
  | 

Whats the problem here? Is there anyother file also need to specify the "region 
name"?
Please help me to solve this.

Thanks in Advance,

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4024552#4024552

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4024552
_______________________________________________
jboss-user mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to