[infinispan-dev] How to add programmatic config to an exisitng xml configured cache

2014-02-20 Thread Faseela K
Hi, I have some infinispan configurations available in config.xml. After loading this configuration, I want to append some more configurations programmatically, using Configuration Builder. I am doing something like this : Configuration template = null;

[infinispan-dev] Doubt Regarding Infinispan Cache Creation limit

2013-11-28 Thread Faseela K
Hello, Is there any limitation on the number of infinispan caches that can be created, in a clustered environment? Also, is there any performance difference between the below two cases : Case 1 : Constructing a cache with 1 entries Case 2 : Splitting the

Re: [infinispan-dev] Doubt Regarding Infinispan Cache Creation limit

2013-11-28 Thread Faseela K
wrote: Hi Fassela, In future please post these kind of questions on the infinsipan forum so that other can benefit from them as well ;) On Nov 28, 2013, at 10:08 AM, Faseela K faseel...@ericsson.commailto:faseel...@ericsson.com wrote: Hello, Is there any limitation on the number

Re: [infinispan-dev] Issue with transaction rollback

2013-11-09 Thread Faseela K
From: infinispan-dev-boun...@lists.jboss.org [mailto:infinispan-dev-boun...@lists.jboss.org] On Behalf Of Faseela K Sent: Friday, November 08, 2013 6:39 PM To: infinispan -Dev List Subject: [infinispan-dev] Issue with nested transactions Hi, I have two osgi

Re: [infinispan-dev] Issue with transaction rollback

2013-11-09 Thread Faseela K
. Sanne On 9 November 2013 19:31, Faseela K faseel...@ericsson.com wrote: Hi, The issue I mentioned below was not related to nested transactions. I debugged further, and the issue narrowed down to the following: EmbeddedCacheManager manager = new DefaultCacheManager(config

[infinispan-dev] Issue with nested transactions

2013-11-08 Thread Faseela K
Hi, I have two osgi bundles, both having two separate caches. I explicitly started a transaction in Bundle 1. Within the transaction, I am accessing Bundle 2's cache(this is implicit transaction, since autocommit is true), and modifying it. Now, there is some operation on Bundle 1's

[infinispan-dev] Performance of Infinispan-Query Module

2013-10-22 Thread Faseela K
Hi, I tried a simple performance test for infinispan-query module using the example mentioned in : https://docs.jboss.org/author/display/ISPN/Querying+Infinispan What I see is, the querying is much slower than iterating through the cache entries and checking for a match.

Re: [infinispan-dev] Performance of Infinispan-Query Module

2013-10-22 Thread Faseela K
() on a distributed or replicated cache as it won't return results which are not stored locally. Sanne On 22 October 2013 14:36, Faseela K faseel...@ericsson.com wrote: Hi, I tried a simple performance test for infinispan-query module using the example mentioned in : https

[infinispan-dev] Changing Cache Configuration at runtime in Infinispan

2013-09-20 Thread Faseela K
Hi, Does Infinispan support dynamically changing the cache configuration? For example, I need a cache to run in transactional configuration for sometime, and then I want to switch it to non-transactional configuration. Thanks, Faseela ___

Re: [infinispan-dev] Infinispan Memory Requirement

2013-08-26 Thread Faseela K
%5dhttps://community.jboss.org/en/infinispan/content?filterID=contentstatus%5Bpublished%5D~objecttype~objecttype%5Bthread%5D On 22 Aug 2013, at 09:54, Faseela K faseel...@ericsson.commailto:faseel...@ericsson.com wrote: Hi, What is the memory requirement/specification for using Infinispan

Re: [infinispan-dev] Eventual Consistency in Infinispan

2013-08-25 Thread Faseela K
, Aug 19, 2013 at 4:47 PM, Faseela K faseel...@ericsson.commailto:faseel...@ericsson.com wrote: Hi Tristan, I was just comparing the performance of synchronous transactional and synchronous non-transactional writes in replication mode. And I see, transactional writes were taking lesser time, than

[infinispan-dev] Infinispan Memory Requirement

2013-08-22 Thread Faseela K
Hi, What is the memory requirement/specification for using Infinispan-5.3.0? Thanks, Faseela ___ infinispan-dev mailing list infinispan-dev@lists.jboss.org https://lists.jboss.org/mailman/listinfo/infinispan-dev

[infinispan-dev] Eventual Consistency in Infinispan

2013-08-19 Thread Faseela K
Hi, I am using Infinispan - 5.3.0 in clustering mode. I have a transactional configuration, in replication-synchronous mode. I want to know, whether eventual consistency is supported for synchronous replication in 5.3. Could someone please brief how eventual consistency works in

Re: [infinispan-dev] Eventual Consistency in Infinispan

2013-08-19 Thread Faseela K
some wrong configuration? Thanks, Faseela -Original Message- From: Tristan Tarrant [mailto:ttarr...@redhat.com] Sent: Monday, August 19, 2013 6:28 PM To: infinispan -Dev List Cc: Faseela K Subject: Re: [infinispan-dev] Eventual Consistency in Infinispan Infinispan does not implement

Re: [infinispan-dev] Recommended Cluster Size for Replication Mode

2013-08-13 Thread Faseela K
/viewpage.action?pageId=63636092 On 08/13/2013 06:29 AM, Faseela K wrote: Hi, I am using infinispan 5.2.3. My configuration is non-transactional, synchronous. With this configuration, is my replication supposed to perform better than distribution, for both reads and writes? My

Re: [infinispan-dev] Recommended Cluster Size for Replication Mode

2013-08-12 Thread Faseela K
[mailto:infinispan-dev-boun...@lists.jboss.org] On Behalf Of Mircea Markus Sent: Friday, August 09, 2013 7:14 PM To: infinispan -Dev List Subject: Re: [infinispan-dev] Recommended Cluster Size for Replication Mode On 6 Aug 2013, at 15:19, Faseela K faseel...@ericsson.com wrote: What

Re: [infinispan-dev] Recommended Cluster Size for Replication Mode

2013-08-12 Thread Faseela K
, Faseela K wrote: Hi, With a 3 node cluster, even for WRITES my replication performance is better than distribution. That's why I came across this doubt. Could some body please clarify, why the behaviour is like this? Thanks, Faseela -Original Message- From: infinispan-dev

[infinispan-dev] Recommended Cluster Size for Replication Mode

2013-08-06 Thread Faseela K
Hello, What is the recommended cluster size for Replication Mode? Given 3 nodes, My replication configuration performs better than my distributed configuration. Just wanted to know, at what cluster size, distribution will perform better than replication. Thanks, Faseela

[infinispan-dev] Query regarding Infinispan Clustering Performanc​e

2013-08-05 Thread Faseela K
Hi, I am doing some analysis and study to see how the performance of infinispan can be improved in distributed clustered mode. This study is based on some performance test I ran, with 3 nodes, where replication performance seems better than distribution. But, I think distribution