Re: executing jar application with ignite server
You can also check out the GridGain Add-on listed here: https://ignite.apache.org/addons.html#web-console It will automatically generate all the mapping code between DB and Ignite, as well as provide the store implementation. D. On Fri, Apr 15, 2016 at 4:05 AM, Alexei Scherbakov < alexey.scherbak...@gmail.com> wrote: > Hi, > > I strongly recommend you to start from reading Ignite documentation > http://apacheignite.readme.io > > and studiyng examples > https://github.com/apache/ignite/tree/master/examples > > If you specifically want to propagates cache updates to relational > database, please check the chapter > https://apacheignite.readme.io/docs/persistent-store > > and the example: > > https://github.com/apache/ignite/blob/master/examples/src/main/java/org/apache/ignite/examples/datagrid/store/jdbc/ > CacheJdbcStoreExample.java > > You could easily roll your own CacheStore to implement desired behavior > for cache updates. > > > > 2016-04-15 13:03 GMT+03:00 tomk : > >> No, I show you my case: >> >> I have a program which get data - in cyclic way. When it receives data I >> compute some things and as result I get row. >> The row I would like to write-through >> >> All program is packed into jar, >> main funcions look like: >> main (){ >>while (true){ >> row = getNewData (); >> computed_row = compute (row); >> cacheWriter.saveIntoCacheAndDB (computed_row); >> } >> cacheWriter is my class (in plans). >> How should I organize this code ? Where should I create object Ignite ? >> >> When it comes to write-through - at this moment I can use it and implement >> it. >> >> >> >> >> -- >> View this message in context: >> http://apache-ignite-users.70518.x6.nabble.com/executing-jar-application-with-ignite-server-tp4129p4215.html >> Sent from the Apache Ignite Users mailing list archive at Nabble.com. >> > > > > -- > > Best regards, > Alexei Scherbakov >
Re: executing jar application with ignite server
Hi, I strongly recommend you to start from reading Ignite documentation http://apacheignite.readme.io and studiyng examples https://github.com/apache/ignite/tree/master/examples If you specifically want to propagates cache updates to relational database, please check the chapter https://apacheignite.readme.io/docs/persistent-store and the example: https://github.com/apache/ignite/blob/master/examples/src/main/java/org/apache/ignite/examples/datagrid/store/jdbc/ CacheJdbcStoreExample.java You could easily roll your own CacheStore to implement desired behavior for cache updates. 2016-04-15 13:03 GMT+03:00 tomk : > No, I show you my case: > > I have a program which get data - in cyclic way. When it receives data I > compute some things and as result I get row. > The row I would like to write-through > > All program is packed into jar, > main funcions look like: > main (){ >while (true){ > row = getNewData (); > computed_row = compute (row); > cacheWriter.saveIntoCacheAndDB (computed_row); > } > cacheWriter is my class (in plans). > How should I organize this code ? Where should I create object Ignite ? > > When it comes to write-through - at this moment I can use it and implement > it. > > > > > -- > View this message in context: > http://apache-ignite-users.70518.x6.nabble.com/executing-jar-application-with-ignite-server-tp4129p4215.html > Sent from the Apache Ignite Users mailing list archive at Nabble.com. > -- Best regards, Alexei Scherbakov
Re: executing jar application with ignite server
No, I show you my case: I have a program which get data - in cyclic way. When it receives data I compute some things and as result I get row. The row I would like to write-through All program is packed into jar, main funcions look like: main (){ while (true){ row = getNewData (); computed_row = compute (row); cacheWriter.saveIntoCacheAndDB (computed_row); } cacheWriter is my class (in plans). How should I organize this code ? Where should I create object Ignite ? When it comes to write-through - at this moment I can use it and implement it. -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/executing-jar-application-with-ignite-server-tp4129p4215.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.
Re: executing jar application with ignite server
Hi, You can use Compute Grid [1] to execute custom code on the server nodes. Is that what you're looking for? [1] https://apacheignite.readme.io/docs/compute-grid -Val -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/executing-jar-application-with-ignite-server-tp4129p4142.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.
executing jar application with ignite server
Hello, Maybe, I don't understand something, but how to execute program on server node ? I mean something like spark-submit. -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/executing-jar-application-with-ignite-server-tp4129.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.