Re: Cache Updates Order

2016-02-22 Thread vkulichenko
amit2103 wrote > I have a problem with Subscription. I have a yahoo mail id and the mail > never reaches me. Checked Spam too. Is it possible to use another email? amit2103 wrote > When I fetch some item from a Transactional cache during an ongoing > transaction, that entry is added to the txmap

RE: Integration issue with enyimmecached client

2016-02-22 Thread vkulichenko
David, OK, now I get it. I will take a closer look at this. Do you by any chance know where I can find good description of Memcache binary protocol? It sounds like you're quoting [1], which is actually text protocol. It's a different one. [1] https://github.com/memcached/memcached/blob/master/do

RE: Integration issue with enyimmecached client

2016-02-22 Thread David Puebla Garcia
Hi Val, My point is that the client is entitled to used whatever flag it wants to describe its data. The spec describes that those should be opaque to the server. In this case the client flags the strings in a way that ignite interprets as Boolean. There is no specification describing which fl

Re: Guidance on Ignite-Spark SQL Functionality

2016-02-22 Thread vkulichenko
Hi, As a first step I would check log files from all Ignite nodes. Are there any exceptions or errors? -Val -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Guidance-on-Ignite-Spark-SQL-Functionality-tp3138p3146.html Sent from the Apache Ignite Users mailing lis

Re: Cache Updates Order

2016-02-22 Thread vkulichenko
Hi Amit, Can you please subscribe to the mailing list? Here is the instruction: http://apache-ignite-users.70518.x6.nabble.com/mailing_list/MailingListOptions.jtp?forum=1 amit2103 wrote > We have two cache with Write through Lets say for entity A and B. > We need write through for B to be called

Re: Integration issue with enyimmecached client

2016-02-22 Thread vkulichenko
Hi David, Are you saying that the client sends the value with the boolean type flag set which causes it to be saved as a boolean in the cache? It sounds like a client issue, no? Let me know if I'm missing something. Actually, is it a requirement for you to use memcached client? Can you switch to

Re: Exception during streams processing

2016-02-22 Thread vkulichenko
Hi Saurabh, Is multicast enabled in your network? If it doesn't work for you, you can switch to static IP configuration to create the cluster [1]. Let us know if it helps. [1] https://apacheignite.readme.io/v1.5/docs/cluster-config#static-ip-based-discovery -Val -- View this message in conte

Re: Can I get more details about Data Grid fault tolerance(failover)?

2016-02-22 Thread kwon
O, I got it! Thank you very much! -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Can-I-get-more-details-about-Data-Grid-fault-tolerance-failover-tp3131p3141.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Re: Ignite and impala integration.

2016-02-22 Thread vkulichenko
Hi, Can you please properly subscribe to the mailing list so that the community receives email notifications? Please follow this instruction: http://apache-ignite-users.70518.x6.nabble.com/mailing_list/MailingListOptions.jtp?forum=1 surajz wrote > Is there a way to use Ignite with impala? I have

Re: Can I get more details about Data Grid fault tolerance(failover)?

2016-02-22 Thread vkulichenko
Hi, This actually means that if you have one or more backups, you can safely lose one or more nodes at a time without losing any data. In case of topology change, Ignite will automatically rebalance the data in background. It will also make sure that if a client requests any data (via cache.get(),

Re: Exception on Ignite cluster shutdown

2016-02-22 Thread vkulichenko
Hi Steve, Looks like one of your services (AppService) calls IgniteCache.close() when being stopped. As a result cache is closed concurrently with node stop and you get this exception. I don't think there is any real reason to do that, all resources will be released anyway. So you can just remove

Guidance on Ignite-Spark SQL Functionality

2016-02-22 Thread sparkcraft
Hello,I could use some assistance on testing out Ignite over Spark, specifically when it comes to sql over RDD Objects. I am able to load up an IgniteRDD with tuples, and do some aggregations over it. However, when I try to invoke .sql() on the IgniteRDD, I am getting errors.Here is my test, dist

Re: Ignite instance hangs during restart in client mode

2016-02-22 Thread vkulichenko
Yakov, I agree. Ticket created: https://issues.apache.org/jira/browse/IGNITE-2708 -Val -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Ignite-instance-hangs-during-restart-in-client-mode-tp3101p3137.html Sent from the Apache Ignite Users mailing list archive at

Integration issue with enyimmecached client

2016-02-22 Thread David Puebla Garcia
Hello, Following is the description of the issue as I posted it in gitter. I have run into an integration issue between ignite memcached interface and Enyim client implementation. https://github.com/enyim/EnyimMemcached I am basically evaluating the options for ignite to replace memcached in som

Re: Exception on Ignite cluster shutdown

2016-02-22 Thread Steve Scheck
It’s all quite standard as far as I can tell. An external control process sends SIGTERM to the JVM, which initiates the Spring application context shutdown hook, which eventually results in the destroy() method on IgniteSpringBean being invoked, from which I presume normal cluster shutdown is tr

Re: Conceptual Question - Near Cache

2016-02-22 Thread vaibhav sharma
Thanks Val. Its clear. On 20 Feb 2016 00:27, "vkulichenko" wrote: > Hi Vaibhav, > > No, your understanding is incorrect. Near cache is a small local cache that > is usually created on client node and is used to save entries that are most > frequently accessed by this client. It can be created for