Re: How to disable replication over multicast for development nodes?

2019-03-20 Thread AndrewV
Thank you. So, in the case of single-development node mode, I should add just local node IP? ... 127.0.0.1 ... -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Re: CamelCase to lowerCase conversion of column names while loading cache from postgres .

2019-03-20 Thread Harshal Patil
Any suggestions please let me know On Wed, Mar 20, 2019, 11:45 AM Harshal Patil wrote: > Hi , > I have enabled persistant store as Postgres . > This is my cacheConfiguration , > > public static CacheConfiguration cacheIgniteTableCache() throws Exception { > > CacheConfiguration ccfg = new

Re: Access a cache loaded by DataStreamer with SQL

2019-03-20 Thread Mike Needham
I guess I am not understanding how to build this for multiple tables in a cache that can be loaded using the datastreamer and are queryable from DBeaver or tableau. I changed the code to be IgniteCache testCache = ignite.getOrCreateCache(new CacheConfiguration<>("MAIN")

Licencing cost

2019-03-20 Thread austin solomon
Hi, Does the gridgain licensing cost vary depending on the number of physical cores of each node? Can anyone tell me. Thanks, Austin -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Re: Ignite 2.7 Errors

2019-03-20 Thread Philip Wu
Thank you, IIya! We ended up using cfg.setFailureHandler(new NoOpFailureHandler()); it silenced the errors and no more stack dumps, etc. and it seems to work like in 2.5 and 2.6, with no other changes. I am still curious if in the future I can take that line out if 2.7 is more stable or 2.8.

Re: How to disable replication over multicast for development nodes?

2019-03-20 Thread ibelyakov
Hi. To disable multicast, you need to change "ipFinder" in "discoverySpi" configuration to "TcpDiscoveryVmIpFinder" and specify the list of node's addresses. Check the link below for the configuration example: https://apacheignite.readme.io/docs/tcpip-discovery#section-static-ip-finder Regards,

Re: Access a cache loaded by DataStreamer with SQL

2019-03-20 Thread Ilya Kasnacheev
Hello! I don't understand what you are doing here. Why do you have two employee tables here? What is desired table structure? Regards, -- Ilya Kasnacheev ср, 20 мар. 2019 г. в 16:44, Mike Needham : > I have that part, what I dont understand is how I can create multiple > "Tables" within a

Re: Support User defined aggregate function ?

2019-03-20 Thread Ilya Kasnacheev
Hello! As far as I know there is no such support. It is recommended to use job/task API instead: https://apacheignite.readme.io/docs/compute-tasks Regards, -- Ilya Kasnacheev ср, 20 мар. 2019 г. в 09:24, Tâm Nguyễn Mạnh : > Hi Igniters, > > Can we support user defined aggreate function ? > >

Re: Access a cache loaded by DataStreamer with SQL

2019-03-20 Thread Mike Needham
I have that part, what I dont understand is how I can create multiple "Tables" within a Cache(Schema)? I have the following code that is using a simple Employee Class. IgniteCache testCache = ignite.getOrCreateCache(new CacheConfiguration<>("MAIN")

Re: Apache Ignite pluggability and extensibility in terms of security (kerberos)

2019-03-20 Thread Ilya Kasnacheev
Hello! This seems like a discussion for developers list. It may also help to focus more on actual questions or issues that you are facing. Regards, -- Ilya Kasnacheev ср, 20 мар. 2019 г. в 11:59, Vishalan : > I am trying to explore the extensibility of Apache Ignite 2.7 in terms of >

Re: InvalidClassException local class incompatible for custom cache store factory

2019-03-20 Thread relax ken
Thanks! On Wed, Mar 20, 2019 at 8:15 AM Denis Mekhanikov wrote: > Ken, > > Cache store factory is a part of a cache configuration. So, if a cache > configuration is stored somewhere, and it's deserialized using a new class, > then this exception is thrown. > It's possible if you have native

Re: How many Ignite nodes per Server + backup behavior

2019-03-20 Thread ibelyakov
Hello, 1. It's recommended to run 1 Ignite node per server, try to reduce nodes count to 4. 2. In case you're going to use 4 nodes per server, you need to specify backup=1 and also set excludeNeighbors on affinityFunction as described here:

Int to enum mapping failure

2019-03-20 Thread vinsala
Table A with columns and type col data_type name varchar idbigint type int data is loaded fine into Cache when following mapping used for field type

Re: Access a cache loaded by DataStreamer with SQL

2019-03-20 Thread Ilya Kasnacheev
Hello! Please take a look at https://apacheignite.readme.io/docs/cache-queries#section-query-configuration-by-annotations Regards, -- Ilya Kasnacheev вт, 19 мар. 2019 г. в 20:25, Mike Needham : > Do you have an example of how that could be done. I am struggling to > figure out how to set

How to disable replication over multicast for development nodes?

2019-03-20 Thread AndrewV
Hi there! I have a problem with the development environment. If more than one developer run project in the same local network nodes starts to replicate between each other. Could you tell me how to disable multicast replication? Thanks! -- Sent from:

Apache Ignite pluggability and extensibility in terms of security (kerberos)

2019-03-20 Thread Vishalan
I am trying to explore the extensibility of Apache Ignite 2.7 in terms of security configuration. In particular, ability to modify the authentication structure and implement a specific kerberos mechanism in: -Zookeeper Discovery -Internode communication

Re: InvalidClassException local class incompatible for custom cache store factory

2019-03-20 Thread Denis Mekhanikov
Ken, Cache store factory is a part of a cache configuration. So, if a cache configuration is stored somewhere, and it's deserialized using a new class, then this exception is thrown. It's possible if you have native persistence enabled, for example. The cache configuration is read from disk when

CamelCase to lowerCase conversion of column names while loading cache from postgres .

2019-03-20 Thread Harshal Patil
Hi , I have enabled persistant store as Postgres . This is my cacheConfiguration , public static CacheConfiguration cacheIgniteTableCache() throws Exception { CacheConfiguration ccfg = new CacheConfiguration(); ccfg.setName("IgniteTableCache");