sql table names and annotations

2019-01-02 Thread Scott Cote
Is there a way to name a table different from the type without resorting to the use of DDL? I'm using the annotation approach to creating a table, and I seem to be restricted to having the tables named after the type of class that was annotated.

RE: ignite git repo

2019-01-17 Thread Scott Cote
e.git On 17 Jan 2019, at 19:17, Scott Cote mailto:sc...@etcc.com>> wrote: Hello Igniters: I’m having trouble cloning the git repo. Want to build from source and maybe make an add on …. Went to the link: https://ignite.apache.org/download.cgi#git-repository to get the “git” url/

ignite git repo

2019-01-17 Thread Scott Cote
Hello Igniters: I'm having trouble cloning the git repo. Want to build from source and maybe make an add on Went to the link: https://ignite.apache.org/download.cgi#git-repository to get the "git" url/command Am issuing the command: git clone

RE: building and running from source

2019-01-17 Thread Scott Cote
at: 2019-01-17T18:05:33-06:00 [INFO] scote@lt-scote10 ~/ignite From: Scott Cote Sent: Thursday, January 17, 2019 5:27 PM To: user@ignite.apache.org Subject: RE: building and running from source Am trying out : mvn package -P

notes and questions on configuration and installation of web console for ignite

2019-01-18 Thread Scott Cote
Am going through the manual installation and implementation of the Ignite Web Console. This is Part 1 of a series of notes that I’m making…. Throughout this set of items (questions and notes), I’m referencing the “Build and Deploy“ document (BDD)

part 2 - notes and questions on configuration and installation of web console for ignite

2019-01-18 Thread Scott Cote
Part 2 of notes and questions about web console for ignite = Items = Item 1. Found more npm issues while performing "Run Ignite Web Console In Development Mode" of BDD referenced in Part 1 Item 2. <<>>> It seems that the latest version of community mongodb is NOT supported by Ignite.

part 3 - dead in the water now - notes and questions on configuration and installation of web console for ignite

2019-01-18 Thread Scott Cote
Part 3 of notes and questions about web console for ignite Restarted attempt inside BDD (https://apacheignite-tools.readme.io/docs/build-and-deploy) of the section titled: Run Ignite Web Console In Development Mode

building and running from source

2019-01-17 Thread Scott Cote
Hello, I want to build a copy of ignite with the web console. Cannot - as far as I can tell - download a binary for the web console (don't want to use the gridgain cloud version). The instructions for the web console state that one must build it from source. To that point, the binary

RE: building and running from source

2019-01-17 Thread Scott Cote
Am trying out : mvn package -P release this builds a snapshot? SCott From: Scott Cote Sent: Thursday, January 17, 2019 4:32 PM To: user@ignite.apache.org Subject: building and running from source Hello, I want to build a copy of ignite with the web console. Cannot - as far as I can tell

RE: sql table names and annotations

2019-01-04 Thread Scott Cote
Thank you - I will look at this example and write back what I find -Original Message- From: akurbanov Sent: Friday, January 4, 2019 10:56 AM To: user@ignite.apache.org Subject: Re: sql table names and annotations As far as I know, there is currently no way to set custom table name

Re: Pain points of Ignite user community

2019-01-11 Thread Scott Cote
Thank you Rohan 972.900.1561 Scott Cote From: Stephen Darlington Sent: Friday, January 11, 2019 5:31:12 AM To: user@ignite.apache.org Subject: Re: Pain points of Ignite user community Nice work! On 10 Jan 2019, at 15:26, Stanislav Lukyanov mailto:stanlukya

RE: key value cache - value size limits or concerns

2019-03-29 Thread Scott Cote
Wayne, You can stick huge items into ignite as a value of a key store. Have seen design patterns whereas a queueish structure was thrown in as a value corresponding to a key, and clients of queue retrieved the queue by the key, then queued data in/out. Not a high speed solution. What is

RE: xa transaction manager and ignite

2019-03-27 Thread Scott Cote
transaction manager and ignite Hello! Never done that, but did you go through https://apacheignite.readme.io/docs/transactions#section-integration-with-jta ? Regards, -- Ilya Kasnacheev пн, 25 мар. 2019 г. в 21:49, Scott Cote mailto:sc...@etcc.com>>: Igniters: I’m unsuccessfully establ

xa transaction manager and ignite

2019-03-25 Thread Scott Cote
Igniters: I'm unsuccessfully establishing an XA transaction manager to associate with my ignite configuration. I don't know the JNDI name location of my java transaction manager (not to be confused with the spring transaction manager which implements TransactionManagerPlatform). Here is a

introspection of ignite data

2019-02-26 Thread Scott Cote
I am trouble shooting a sql problem where I'm issuing a "select" statement and the parser is not finding my table . IgniteSqlException: Failed to parse query. Table "FOOBOO" not found; SQL statement:\nselect * from FOOBOO [42102-197] What API can I call against either an instance of

Re: introspection of ignite data

2019-02-27 Thread Scott Cote
Thank you Jeff 972.900.1561 Scott Cote From: Jeff Zemerick Sent: Wednesday, February 27, 2019 10:30 AM To: user@ignite.apache.org Subject: Re: introspection of ignite data Scott, I have used: CacheConfiguration config = cache.getConfiguration

proper usage of sql configuration in ignite question

2019-03-04 Thread Scott Cote
Hello Igniters: I am programmatically setting the index type data in ignite. I was establishing the index types by doing something like: CacheConfiguration cacheConfiguration = new CacheConfiguration(); cacheConfiguration.setName(cacheName); cacheConfiguration.setTypes(keyClazz, valueClazz);

RE: proper usage of sql configuration in ignite question

2019-03-05 Thread Scott Cote
CacheConfiguration() .setName(cacheName) .setTypes(keyClazz, valueClazz) .setIndexedTypes(long.class, valueClazz) .setSqlSchema("PUBLIC"); Why do you have keyClazz != indexed types key class? Regards, -- Ilya Kasnacheev пн, 4 мар. 2019 г. в 19:27, Scott Cote mailto:sc...@etcc.co

cache configurations in a grid

2019-01-31 Thread Scott Cote
I am trying to inspect the caches that are contained within a given grid. Using a specific instance of Ignite, myIgnite, I created an instance of IgniteCache - myIgniteCache - call the cache "FOO". Later, I interrogated that same Ignite instance, myIgnite, by invoking

FW: Python/Java Ignite Compatibility

2019-01-31 Thread Scott Cote
Any advice on ignite/java/python interoperability? From: Benjamin McCord Sent: Tuesday, January 29, 2019 4:31 PM To: Scott Cote Subject: Python/Java Ignite Compatibility I have an issue using a cache to share data between a python and Java application. My Java application defines a POJO

Re: The Apache Ignite Book

2019-02-04 Thread Scott Cote
Congrats ! 972.900.1561 Scott Cote From: srecon Sent: Monday, February 4, 2019 7:12:08 AM To: user@ignite.apache.org Subject: Re: The Apache Ignite Book Dear, Igniters. We are really excited to announce that we have finished the final manuscript of "The A

RE: FW: Python/Java Ignite Compatibility

2019-02-04 Thread Scott Cote
and debug it. Regards, -- Ilya Kasnacheev чт, 31 янв. 2019 г. в 17:54, Scott Cote mailto:sc...@etcc.com>>: Any advice on ignite/java/python interoperability? From: Benjamin McCord mailto:bmcc...@etcc.com>> Sent: Tuesday, January 29, 2019 4:31 PM To: Scott Cote mailto:sc...@etcc.c

FW: class loading, peer class loading, jars, fun times in ignite

2019-05-28 Thread Scott Cote
Whoops - sent to the wrong list ... From: Scott Cote Sent: Tuesday, May 28, 2019 1:04 PM To: d...@ignite.apache.org Subject: class loading, peer class loading, jars, fun times in ignite I am fairly certain that I don't know how to use peer class loading properly. Am using Apache Ignite 2.7

RE: FW: class loading, peer class loading, jars, fun times in ignite

2019-05-29 Thread Scott Cote
? вт, 28 мая 2019 г. в 23:35, Scott Cote : > > Whoops – sent to the wrong list … > > > > From: Scott Cote > Sent: Tuesday, May 28, 2019 1:04 PM > To: d...@ignite.apache.org > Subject: class loading, peer class loading, jars, fun times in ignite > > > > I am fair

dumb cache question

2019-04-29 Thread Scott Cote
What are the restrictions around having two caches in an ignite node that use the same value type? Issues with the sql? Can I have two sql tables of the same class type inside ignite? I thought the answer was no, and saw results verifying that position, but I cannot remember and cannot find

configuration of ignite client nodes

2019-07-07 Thread Scott Cote
We have ignite client nodes (2.7.0 linux) embedded inside our microservices (spring boot apps) pointed at a dedicated ignite server (2.7.0 linux). Each client node has its ip finder - the vm ip finder -configured to seek the dedicated server. None of the client nodes are configured to know

RE: [ANNOUNCE] Apache Ignite 2.7.5 Released

2019-07-22 Thread Scott Cote
Huzzah! From: Dmitriy Pavlov Sent: Monday, July 22, 2019 6:54 AM To: dev ; user ; annou...@apache.org Subject: [ANNOUNCE] Apache Ignite 2.7.5 Released The Apache Ignite Community is pleased to announce the release of Apache Ignite 2.7.5. Apache Ignite [1] is a memory-centric distributed

RE: Service grid webinar

2019-11-06 Thread Scott Cote
Looking forward to it – Thank you Denis From: Denis Mekhanikov Sent: Tuesday, November 5, 2019 4:00 PM To: d...@ignite.apache.org; user@ignite.apache.org Subject: Service grid webinar Hi Igniters! I’ve been working on the Service Grid functionality in Apache Ignite for a while, and at some

RE: custom java classes and ignite node questions

2019-12-17 Thread Scott Cote
Thanks Ilya – we are standing up a second node in our QA to test the segregation by node (not region). Scott Cote Senior Application Developer - Java | Electronic Transaction Consultants Corporation (ETC) 1600 N. Collins Boulevard, Suite 4000, Richardson, TX 75080 (o) 469.248.4576 | (c

RE: H2 version security concern

2019-12-11 Thread Scott Cote
YAY Scott Cote Senior Application Developer - Java | Electronic Transaction Consultants Corporation (ETC) 1600 N. Collins Boulevard, Suite 4000, Richardson, TX 75080 (o) 469.248.4576 | (c) 972.900.1561 [cid:image005.png@01D5B018.1D9FC010]<https://etcc.com/> [cid:image0

custom java classes and ignite node questions

2019-12-16 Thread Scott Cote
ce. SCott Scott Cote Senior Application Developer - Java | Electronic Transaction Consultants Corporation (ETC) 1600 N. Collins Boulevard, Suite 4000, Richardson, TX 75080 (o) 469.248.4576 | (c) 972.900.1561 [cid:image002.png@01D5B404.0BC16430]<https://etcc.com/> [A picture containing

RE: Apache Ignite 2.8 ETA

2020-01-29 Thread Scott Cote
Very cool. SCott Scott Cote Senior Application Developer - Java | Electronic Transaction Consultants Corporation (ETC) 1600 N. Collins Boulevard, Suite 4000, Richardson, TX 75080 (o) 469.248.4576 | (c) 972.900.1561 [cid:image005.png@01D5D6B2.A4015090]<https://etcc.com/> [cid:image0

RE: How does the Transaction aquires Lock

2020-02-11 Thread Scott Cote
Don’t forget that mvcc is experimental. Scott Cote Senior Application Developer - Java | Electronic Transaction Consultants Corporation (ETC) 1600 N. Collins Boulevard, Suite 4000, Richardson, TX 75080 (o) 469.248.4576 | (c) 972.900.1561 [cid:image005.png@01D5E0C3.F68F03F0]<https://etcc.

RE: Best GUI for viewing caches

2020-02-14 Thread Scott Cote
I use dbeaver with jdbc to ignite Scott Cote Senior Application Developer - Java | Electronic Transaction Consultants Corporation (ETC) 1600 N. Collins Boulevard, Suite 4000, Richardson, TX 75080 (o) 469.248.4576 | (c) 972.900.1561 [cid:image005.png@01D5E34C.9B0DF320]<https://etcc.