Re: JDBC Connection Pooling

2020-04-13 Thread Evgenii Zhuravlev
Hi, Do you use STREAMING MODE for thin JDBC driver? Evgenii пн, 13 апр. 2020 г. в 19:33, narges saleh : > Thanks Alex. I will study the links you provided. > > I read somewhere that jdbc datasource is available via Ignite JDBC, (which > should provide connection pooling). > > On Mon, Apr 13, 20

Re: JDBC Connection Pooling

2020-04-13 Thread narges saleh
Thanks Alex. I will study the links you provided. I read somewhere that jdbc datasource is available via Ignite JDBC, (which should provide connection pooling). On Mon, Apr 13, 2020 at 12:31 PM akorensh wrote: > Hi, > At this point you need to implement connection pooling yourself. > Use >

Re: Local node terminated after segmentation

2020-04-13 Thread VeenaMithare
Hi Ilya, How can a node reachability resolver or Tcp Segmentation resolver help in discovering segmentation due to GC pauses ? What is the best way to discover segmentation on a node due to GC pauses ? regards, Veena -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Re: Automatically generate Code using java reflection

2020-04-13 Thread Evgenii Zhuravlev
Anthony, No, I don't think so. If you plan to use it from C++, then you will need to configure QueryEntity. Evgenii пн, 13 апр. 2020 г. в 13:02, Anthony : > Thank you Evgenii ! BTW, Is there a same thing in c++ ? > > On Mon, Apr 13, 2020 at 9:30 AM Evgenii Zhuravlev < > e.zhuravlev...@gmail.com

Re: Automatically generate Code using java reflection

2020-04-13 Thread Anthony
Thank you Evgenii ! BTW, Is there a same thing in c++ ? On Mon, Apr 13, 2020 at 9:30 AM Evgenii Zhuravlev wrote: > Hi, > > There is no need to create Query Entity if you already have annotations. > YOu can add CacheConfiguration.setIndexedTypes(PersonKey.class, > Person.class) and it will be gen

Re: JDBC Connection Pooling

2020-04-13 Thread akorensh
Hi, At this point you need to implement connection pooling yourself. Use https://ignite.apache.org/releases/latest/javadoc/org/apache/ignite/configuration/ClientConnectorConfiguration.html#setThreadPoolSize-int- to specify number of threads Ignite creates to service connection requests. E

Re: Automatically generate Code using java reflection

2020-04-13 Thread Evgenii Zhuravlev
Hi, There is no need to create Query Entity if you already have annotations. YOu can add CacheConfiguration.setIndexedTypes(PersonKey.class, Person.class) and it will be generated automatically based on you annotations. Evgenii пн, 13 апр. 2020 г. в 09:11, Anthony : > Hello, > If I have the fol

Automatically generate Code using java reflection

2020-04-13 Thread Anthony
Hello, If I have the following java class: public class Person implements Serializable { /** */ private static final AtomicLong ID_GEN = new AtomicLong(); /** Person ID (indexed). */ @QuerySqlField(index = true) public Long id; /** Organization ID (indexed). */ @Query

Re: org.apache.ignite.spi.discovery.tcp.TcpDiscoverySpi - Failed to reconnect to cluster (will retry): class o.a.i.IgniteCheckedException: Failed to deserialize object with given class loader: org.spr

2020-04-13 Thread Evgenii Zhuravlev
Hi, Can you share full logs from all nodes? I mean log files, not the console output. Evgenii вс, 12 апр. 2020 г. в 20:30, Rajan Ahlawat : > ? > > On Thu, Apr 9, 2020 at 3:11 AM Rajan Ahlawat > wrote: > > > > -- Forwarded message - > > From: Rajan Ahlawat > > Date: Thu, Apr 9,

Re: Versions of windows supported and meaning of log error message - This operating system has been tested less rigorously

2020-04-13 Thread Pavel Tupitsyn
Hi Rohan, I'm removing it right now. You can expect it in the next non-patch release. Thanks, Pavel On Tue, Apr 7, 2020 at 7:42 AM Rohan Kurian wrote: > Hi Pavel, > Thanks for your reply. It does make things clear for us. > > One request, please accomodate if possible. You mentioned that t

ignite webSession clustering about session timeout

2020-04-13 Thread kay
Hello, I'd like to use ignite websession cluster .. but, I'm wondering about ignite session timeout algorithm. I figured out every websession data make with expiry policy in source code. Is it only dependency of ignite cache expiry policy?? What happen if I made a class implements HttpSessionList