Re: is custom StreamSingleTupleExtractor compulsory in kafka-ignite-sink connector?

2021-05-19 Thread Alexander Korenshteyn
Hi, StreamSingleTupleExtractor is a helper interface used when you need to process your incoming messages before streaming them. see: https://ignite.apache.org/releases/latest/javadoc/org/apache/ignite/stream/StreamAdapter.html Its use by the socket streamer:

Re: Does Ignite support Distributed and Remote Second Level Cache for Hibernate?

2019-10-07 Thread Alexander Korenshteyn
Use this documentation for H2 cache: https://apacheignite-mix.readme.io/docs/hibernate-l2-cache On Mon, Oct 7, 2019 at 11:34 AM Alexander Korenshteyn < alexanderko...@gmail.com> wrote: > Hi, >Ignite does support Hibernate L2 cache: > check out: https://apacheignite.read

Re: Does Ignite support Distributed and Remote Second Level Cache for Hibernate?

2019-10-07 Thread Alexander Korenshteyn
Hi, Ignite does support Hibernate L2 cache: check out: https://apacheignite.readme.io/v1.0/docs/hibernate-l2-cache example: https://github.com/apache/ignite/blob/master/examples/src/main/java-lgpl/org/apache/ignite/examples/datagrid/hibernate/HibernateL2CacheExample.java Thanks, Alex On

Re: Using Ignite Native Persistence as a "temporary durable" cache

2019-09-06 Thread Alexander Korenshteyn
: (modified section in above example) [image: image.png] On Thu, Sep 5, 2019 at 12:17 PM Alexander Korenshteyn < alexanderko...@gmail.com> wrote: > Hello, >Ignite native persistence has a good track record, is fast and > reliable, you can use it in your application. >

Re: Using Ignite Native Persistence as a "temporary durable" cache

2019-09-05 Thread Alexander Korenshteyn
Hello, Ignite native persistence has a good track record, is fast and reliable, you can use it in your application. Take a look at the following example of how to use a streamer to quickly insert data:

Re: Will ignite support the CREATE SCHEMA statement?

2019-08-15 Thread Alexander Korenshteyn
Hi, Ignite does not support CREATE SCHEMA at this time. You can create schemas via configuration: MY_SCHEMA MY_SECOND_SCHEMA then use it when connecting: more info https://apacheignite-sql.readme.io/docs/schemas via config or