Re: Ignite with Spring Boot Data JPA

2018-07-11 Thread John Heitor
Great news, glad you managed to get it up and running. I have currently put my Ignite implementation on the back burner due to the fact that it is not yet supporting sql transactions but definitely plan on getting back onto it. Perhaps you can then help me with my HikariCP issue. Cheers On Wed,

Re: Ignite with Spring Boot Data JPA

2018-07-11 Thread bitanxen
Hi John, after adding h2 db dependency and h2 dialect, it is working like charm. Just to mention, I haven't executed HikariCP from dependency, So means it works with it too. Many thanks for your suggestion. -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Re: Ignite with Spring Boot Data JPA

2018-07-11 Thread John Heitor
Hi, I did forget to mention that Spring boot would not start correctly with Hikari. I therefore also had to add Tomcat jdbc dependency. org.apache.tomcat tomcat-jdbc On Wed, Jul 11, 2018 at 7:33 AM bitanxen wrote: > Hi John, > > Thanks a lot for the

Re: Ignite with Spring Boot Data JPA

2018-07-10 Thread bitanxen
Hi John, Thanks a lot for the reply. I will test this out in my setup. Hope this will help me. Just one question, if you are excluding HikariCP, then how the Datasource will be created using ignite cluster's URL and credentials? -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Re: Ignite with Spring Boot Data JPA

2018-07-10 Thread John Heitor
Hi, I am not too sure if this will help but this is my current setup that I have working on Ignite 2.4. jpa.database-platform: org.hibernate.dialect.H2Dialect and have the following Maven dependency. com.h2database h2 1.4.196 Since Spring

Re: Ignite with Spring Boot Data JPA

2018-07-10 Thread Pavel Vinokurov
Hi Ignite uses H2 syntax, so you could set H2 dialect: Thanks, Pavel 2018-07-11 0:46 GMT+03:00 Вячеслав Коптилин : > Hello, > > I don't think I clearly understand the issue you faced. > Please provide more details about the problem so that the community can > help you. > Could create a

Re: Ignite with Spring Boot Data JPA

2018-07-10 Thread Вячеслав Коптилин
Hello, I don't think I clearly understand the issue you faced. Please provide more details about the problem so that the community can help you. Could create a small reproducer project and share it on GitHub? By the way, the log file from the server node will be helpful as well. Thanks, S. вт,

Ignite with Spring Boot Data JPA

2018-07-10 Thread bitanxen
Hi, I have a running a ignite cluster. Now from my spring boot maven project which is dependent on spring-data-jpa where the jdbc datasource is configured with Ignite. But it's giving me an error that hibernate entitymanager bean is not initialised because it didn't find hibernate.dialect. Is