Re: Kindly tell me where to find these jar files.

2017-05-29 Thread ignitedFox
Hi Humphrey, I am using Kafka Connect JDBC to fetch data from oracle table. You can find the details in my post here http://apache-ignite-users.70518.x6.nabble.com/How-to-configure-Ignite-sink-connector-to-use-key-value-td13162.html . I want to use Kafka connect to fetch rows from oracle table to

Re: ignitevisor starting the node twice

2017-05-29 Thread Alexey Kuznetsov
You need to open configuration with proper discovery. Usually that means - open same config you used to start your "real" nodes. On Tue, May 30, 2017 at 8:45 AM, I PVP wrote: > Alexey, > > Thanks for answering. > > How do I make ignitevisorcmd.sh see my “real” node(s) ? > >

Re: ignitevisor starting the node twice

2017-05-29 Thread I PVP
Alexey, Thanks for answering. How do I make ignitevisorcmd.sh see my “real” node(s) ? best, IPVP On May 29, 2017 at 10:39:41 PM, Alexey Kuznetsov (akuznet...@apache.org) wrote: Hi, IPVP. Yes, ignitevisorcmd.sh starts internal node in "daemon" mode. This

Re: ignitevisor starting the node twice

2017-05-29 Thread Alexey Kuznetsov
Hi, IPVP. Yes, ignitevisorcmd.sh starts internal node in "daemon" mode. This node is "invisible" for other nodes and doe not have caches data and does not participate in compute task executions. See: IgniteConfiguration#setDaemon javadocs for more info. On Sat, May 27, 2017 at 9:19 PM, I PVP

Re: igfs-meta behavior when node restarts

2017-05-29 Thread Ivan Veselovsky
Enabling debug logging level in class org.apache.ignite.internal.processors.igfs.IgfsImpl can give tracing of all the IGFS operations performed -- this can help to track this issue down. Many operations in IGFS are implemented using "retry" logic , like the following while (true) { try

Cache.destroy() & close() does not delete SwapFile Ignite 2.0

2017-05-29 Thread Ramzinator
Hi all, I have a Cache that I've configured to use swap space by setting it's policy configuration as such: policy.setSwapFilePath("ignite\\cache"); Yet at the end of my unit tests, when I call cache.close() or cache.destroy(), it does not delete the created file. What can I do to guarantee the

Re: unsubscribe

2017-05-29 Thread Jim Wyatt
Denied On May 29, 2017 9:13 AM, "vincent gromakowski" < vincent.gromakow...@gmail.com> wrote:

Re: Client Server Persistent Store Fault Tolerance

2017-05-29 Thread Evgenii Zhuravlev
Hi, So, you stopped node, transaction was rolled back. You don't have inconsistent data. What did you expect? In this case you should handle this exception and run transaction again. Evgenii 2017-05-29 7:53 GMT+03:00 rickynauvaldy : > So I've been trying to

unsubscribe

2017-05-29 Thread vincent gromakowski

Re: igfs-meta behavior when node restarts

2017-05-29 Thread Ivan Veselovsky
Hi, Joe, how are you getting the cache commit rate in this measurement? -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/igfs-meta-behavior-when-node-restarts-tp13155p13201.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Re: i am tring to load mongo store but i am getting this messege

2017-05-29 Thread Andrey Mashenkov
Hi, Looks like, it is impossible to get such exception regarding master branch code. What ignite version do you use? On Thu, May 25, 2017 at 12:40 PM, Pothanaboyina wrote: > [14:28:10,334][ERROR][exchange-worker-#29%null%][ > GridDhtPartitionsExchangeFuture] > Failed to

Re: How to implement StreamSingleTupleExtractor in Kafka connect Ignite sink?

2017-05-29 Thread Humphrey
See answers in the following thread. http://apache-ignite-users.70518.x6.nabble.com/Kindly-tell-me-where-to-find-these-jar-files-td12649.html -- View this message in context:

Re: How to configure Ignite sink connector to use key-value?

2017-05-29 Thread Humphrey
See answers in the following post. http://apache-ignite-users.70518.x6.nabble.com/Kindly-tell-me-where-to-find-these-jar-files-td12649.html I think in the last step you need to convert the data you getting to an cache object, for example Annotation Based Configuration [1] so you can use it to

Re: How to set custom REST http port in Ignite?

2017-05-29 Thread Evgenii Zhuravlev
Hi, it was already discussed here: http://apache-ignite-users.70518.x6.nabble.com/Change-default-tcp-ports-for-Apache-Ignite-td158.html Evgenii 2017-05-29 15:46 GMT+03:00 ignitedFox : > Hi, > > I have ignite 1.9.0 set and I have enabled REST by copying the folder >

Re: New blog post: ADO.NET Ignite Cache Store

2017-05-29 Thread Pavel Tupitsyn
+user On Mon, May 29, 2017 at 4:15 PM, Pavel Tupitsyn wrote: > 1) ICache implements IEnumerable, so you can do `foreach (var entry in > cache)` or `cache.ToList()`. > 2) To bulk load the data into cache you can either use IDataStreamer [1] > or, in case with cache store,

How to set custom REST http port in Ignite?

2017-05-29 Thread ignitedFox
Hi, I have ignite 1.9.0 set and I have enabled REST by copying the folder "ignite-rest-http" from "libs/optional/" to "libs/". I know that by default Ignite uses 8080 as http port, but in my machine, another application is currently listening on it, and so I would like to change it. Somebody

Re: How to return ID of Ignite task to stop this task in the future?

2017-05-29 Thread Vadim Dedkov
I don't think that it is solution. I posted my comment there as well. 2017-05-29 15:20 GMT+03:00 Evgenii Zhuravlev : > Hi, > > question was answered here: https://stackoverflow.com/ > questions/44239558/how-to-return-id-of-ignite-task-to- >

Re: Kindly tell me where to find these jar files.

2017-05-29 Thread Humphrey
I think it's not hard to do and once you start implement the interface you will figure out by yourself. - May I ask *what tool do you use* to parse the Schema that converts the object to this json? Here is what I did: I created an object, called TulpeBus which would be the kind of messages

Re: Kindly tell me where to find these jar files.

2017-05-29 Thread ignitedFox
Hi Humphrey, Need a small help. Could you kindly tell me how to implement custom key-value pair in ignite sink connector? from the documentation here , i got to know that there need to implement "StreamSingleTupleExtractor and

How to return ID of Ignite task to stop this task in the future?

2017-05-29 Thread Vadim Dedkov
I want to broadcast some Apache Ignite task for some entity with ID stored in DB of my app. At some moment I want to stop this task (may be even after restart of my app). For this I think that I need to broadcast this task, somehow return UUID of this task, save this task UUID near entity ID in DB

Re: Correct Way to Store Data

2017-05-29 Thread Dmitry Pavlov
Hi, Of cause Ignite cache is more powerful than just one relational table. Cache is object oriented storage and can store a lot of data tables in one cache record. Selecting how many caches to use is design question: - one per each table, - one per some business object (root for several tables),

Re: Apache Ignite: Failed to unmarshal discovery data

2017-05-29 Thread Evgenii Zhuravlev
Hi, answered you here: https://stackoverflow.com/questions/44155694/apache-ignite-failed-to-unmarshal-discovery-data/44238855#44238855 Evgenii 2017-05-25 11:24 GMT+03:00 brent : > I'm trying to use the Ignite Jdbc connection; with my goal to be able to > call > the cache

Re: Correct Way to Store Data

2017-05-29 Thread rick_tem
As well, for companies that have a large number of tables (as does ours), using a cache per table would probably not be ideal. Best, Rick -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Correct-Way-to-Store-Data-tp13163p13187.html Sent from the Apache Ignite