binding ActiveMQ stream to Ignite, messages can show out but Ignite cache contain none

2017-04-11 Thread ArcherUnicorn
I have checked some similar cases about this issue , someone can solve it by adding "autoFlushFrequency(1)" method to IgniteDataStreamer .I tried and failed . My script is as below:public class IgniteJMS { public static void main(String[] args) throws Exception { Ignite ignite = Ignitio

Re: Concurrent job execution and FifoQueueCollisionSpi.parallelJobsNumber=1

2017-04-11 Thread Ryan Ripken
Ignite Team - I created a stripped down version of what I'm trying to do: https://www.dropbox.com/s/zhxidn14cgi4dqg/IgniteTest.7z?dl=0 There are a couple variables in node.bat that will need to be edited to point at your java_home and to the path where the 7z is unzipped to. I first start a

Re: Ignite on FreeBSD 11 and OpenJDK

2017-04-11 Thread Kamil Misuth
Sure thing. I will check out ignite-3477-master as soon as I have some time tomorrow. Kamil On 04/11/2017 05:48 PM, Andrey Gura wrote: Thanks for provided information. I need additional time for problem investigation. You can also try code from ignite-3477-master branch. This branch contains

Re: Huge delays while returning data back from remote callable's

2017-04-11 Thread yishchuk
After I've applied recommended JVM settings from the link you provided, I couldn't reproduce these long timeouts on this sample code any more - but they are still reproducible on original code. I've profiled the application with flight recorder and attached files for intermediate caller and calcul

Re: Ignite on FreeBSD 11 and OpenJDK

2017-04-11 Thread Andrey Gura
Thanks for provided information. I need additional time for problem investigation. You can also try code from ignite-3477-master branch. This branch contains many memory related fixes but it isn't stable yet. On Mon, Apr 10, 2017 at 11:37 PM, kimec.ethome.sk wrote: > Hi Andrey, > > sorry, I've g

Re: Slow on 1st time query "SQL Join"

2017-04-11 Thread afedotov
I'm not able to reproduce the timings you specified. Probably I do something wrong. Could you please provide a log for that case? Also, it would be of great help if you provide the reproducer sources. Kind regards, Alex. On Tue, Apr 11, 2017 at 4:57 AM, woo charles [via Apache Ignite Users] < ml-

Re: Ignite server showing this error class org.apache.ignite.IgniteCheckedException: Failed to send message (node may have left the grid or TCP connection cannot be established due to firewall issues)

2017-04-11 Thread afedotov
Hi, Please properly subscribe to the mailing list so that the community can receive email notifications for your messages. To subscribe, send empty email to user-subscr...@ignite.apache.org and follow simple instructions in the reply. Also, please elaborate a bit more on your use case. Do you sto

Re: Lots of cache creation become slow

2017-04-11 Thread Andrey Gura
Creation of each cache requires creation and initialization of internal data structures that leads to increased pressure to GC. Could you enable GC logs and look at result. I think you will find long GC pauses. In order to reduce memory consumption by created caches on creation stage we can do the

Re: REST API Configuration for Ignite.net

2017-04-11 Thread Pavel Tupitsyn
You can combine app.config and Spring XML. app.config: http://ignite.apache.org/schema/dotnet/IgniteConfigurationSection"; springConfigUrl="my-spring-config.xml"> -Xms512m -Xmx702m -DOPT25 Note that it points

Re: REST API Configuration for Ignite.net

2017-04-11 Thread ozgurnevres
Thanks, Pavel In fact I already understand that I have to use spring xml, but I couldn't find how to configure the REST API in spring xml. At app.config, I can set some options like this: -Xmx5g -XX:ParallelGCThreads=8 -XX:ConcGCThreads=8 -XX:+UseG1GC-->

Re: Concurrent job execution and FifoQueueCollisionSpi.parallelJobsNumber=1

2017-04-11 Thread vkulichenko
Ryan, No, there are no known issues like that and I don't think there will be a way to investigate it without being able to reproduce. Please let us know if you have a reproducer. -Val -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Concurrent-job-execution-and

Re: External data sources

2017-04-11 Thread vkulichenko
Dmitri, Correct, there are no plans. -Val -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/External-data-sources-tp11766p11883.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Re: Configuration using spring xml - log4j error

2017-04-11 Thread Pavel Tupitsyn
I've replied in another thread. For Ignite.NET you can configure connector in Spring XML and use .NET IgniteConfiguration.SpringConfigUrl property. On Tue, Apr 11, 2017 at 12:56 PM, ozgurnevres wrote: > After a bit searching I found this thread: > http://apache-ignite-users.70518.x6.nabble.com/R

Re: Client near cache with Apache Flink

2017-04-11 Thread vkulichenko
Both. -Val -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Client-near-cache-with-Apache-Flink-tp11627p11881.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Re: REST API Configuration for Ignite.net

2017-04-11 Thread Pavel Tupitsyn
Ignite.NET does not support such things in configuration natively, but you can always configure them in Spring XML and use IgniteConfiguration.SpringConfigUrl property to specify the path. Ignite will load Spring XML first, then apply all non-default properties from .NET IgniteConfiguration on top

REST API Configuration for Ignite.net

2017-04-11 Thread ozgurnevres
I previously opened a thread here: http://apache-ignite-users.70518.x6.nabble.com/Configuration-using-spring-xml-log4j-error-td11872.html But I think in that thread I made things complicated. My simpler question is: how to configure REST API for Ignite.net? By default, it uses 8080 port and I suc

Re: Disable WriteBehind

2017-04-11 Thread Nikolai Tikhonov
> If I disable writeThrough, would a put operation on the cache still succeed? Yes, sure. If write Through enabled than entries will be propagated to underlying store too. > If so, the get operation would return the same result as if the writeThrough were enabled, correct? You're right. But if you

Re: Local Mode - Kafka Streamer unable to write data

2017-04-11 Thread Santosh Pingale
Hi Andrey Thanks for taking out some time to answer this. I will keep that in mind. There was a silly mistake in the code. We also had a receiver on the cache somewhere which did not put messages into the cache after processing. Adding that put statement solved the issue. On Mon, Apr 10, 2017 at

Re: Configuration using spring xml - log4j error

2017-04-11 Thread ozgurnevres
After a bit searching I found this thread: http://apache-ignite-users.70518.x6.nabble.com/Rest-api-Returning-no-reply-from-server-td6561.html The conservation in the thread: /"Are you asking how to provide your own XML for Jetty? If so, it can be done like this: ConnectorConfiguration connCfg =

Lots of cache creation become slow

2017-04-11 Thread ctranxuan
Hi, We are trying for test purposes to create lots of cache on a machine. Something like: for (int i = 0; i < 1; i++) { IgniteCache cache; cache = ignite.getOrCreateCache("cache-" + i).withAsync(); LOGGER.info("starting to read cache #" + cache.getName()); } What we are noti

Re: Configuration using spring xml - log4j error

2017-04-11 Thread ozgurnevres
A few more about topic: - Why I am trying to use spring xml? Because I want to use the Ignite REST API, and I couldn't find a way to configure it. THere is a configuration xml sample at https://apacheignite.readme.io/docs/rest-api#general-configuration So I thought that if I configure Ignite with

Re: Index on complex value object

2017-04-11 Thread Evgenii Zhuravlev
Hi, Looks like I've seen same question on apache ignite users list, it may helps you. Here it is : http://apache-ignite-users.70518.x6.nabble.com/Ignite-Using-complex-object-with-nested-attributes-and-search-td6556.html 2017-04-11 1:02 GMT+03:00 waterg : > Hi Evgenii, thank you for getting back.

Configuration using spring xml - log4j error

2017-04-11 Thread ozgurnevres
Hi, I am trying to configure Ignite using spring xml. I am trying to apply the example here: https://apacheignite-net.readme.io/v1.9/docs/configuration#section-spring-xml But when I try to start the Ignite, I am getting the error below: (it is actually warning, but Ignite does not start) No app