Connect H2 Console to a running cluster

2016-05-26 Thread edwardkblk
Is there a way to find out url, user name, password to connect H2 Console to already running cluster? -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Connect-H2-Console-to-a-running-cluster-tp5242.html Sent from the Apache Ignite Users mailing list archive at

Re: Connect H2 Console to a running cluster

2016-05-26 Thread edwardkblk
The "-DIGNITE_H2_DEBUG_CONSOLE=true" option requires a startup of a local node. My question is about the options to connect H2 Console to a remote cluster without starting a local node. -- View this message in context:

RE: ignite cache-api licensing issue

2016-03-02 Thread edwardkblk
Can't say I'm a license expert but it was pointed out by my legal department. Here is my understanding of the issue: Anyone who would like to use apache-ignite is now forced to accept the license of cache-api-1.0.0.jar. That license pretty much does not permit the use of the cache-api beyond the

Re: ignite cache-api licensing issue

2016-03-03 Thread edwardkblk
Dmitry, Here is the link to geronimo api http://mvnrepository.com/artifact/org.apache.geronimo.specs/geronimo-jcache_1.0_spec/1.0-alpha-1. I tried to compile with Ignite - seems to be promising. For now, I would wait to see the response from Greg Luck as he is checking with his legal dept on

How to configure user data type for sql queries?

2016-04-01 Thread edwardkblk
One of my cache fields is a custom type MyCustomDateType implements Serializable, Comparable. How can I map this type to be able to query via sql? I have tried the following, but was not able to get the sql result. H2 Console shows the column data type for this field as (OTHER): /

Re: How to configure user data type for sql queries?

2016-04-04 Thread edwardkblk
Yes, it works with OptimizedMarshaller. Thank you. -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/How-to-configure-user-data-type-for-sql-queries-tp3867p3912.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Re: QuerySqlFunction methods with variable arguments do not seem to work

2016-07-27 Thread edwardkblk
Val, thanks for your offer to help. The example is provided in my original post. Just register the class in your cache and set the breakpoint in the function to see if it gets called. You don't have to have any specific cache structure, just run a pure /"select affinityKey('java.lang.String',

Re: QuerySqlFunction methods with variable arguments do not seem to work

2016-07-29 Thread edwardkblk
https://issues.apache.org/jira/browse/IGNITE-3608 -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/QuerySqlFunction-methods-with-variable-arguments-do-not-seem-to-work-tp6524p6625.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Re: Race condition with partition affinity mapping

2016-09-26 Thread edwardkblk
Thank you Vladimir, Indeed, I see the expected partition-2-node assignment on the 1st node when I turned off late-affinity-assignment mode. However I would see this feature being useful after the initial data set is loaded into a minimal number of running nodes and while new nodes are joining

Affinity and Topology versions

2016-09-22 Thread edwardkblk
Affinity in the cluster is coupled to the topology. Any affinity based processing requires a stable topology. Does Ignite guarantee that all nodes are executing a transaction on the same affinity version? Please correct me if I'm wrong but based on my observation in Race condition with

Race condition with partition affinity mapping

2016-09-20 Thread edwardkblk
I'm trying to load local partitions of a partitioned cache when a minimum number of nodes (let's say 2) join a cluster. To do that I'm deploying a listener for NODE_JOIN discovery event. Once the 2nd node joins, the listener fires on the 1st node and triggers execution of cache load logic in a