Re: Determining BinaryObject field type

2018-03-28 Thread Pavel Vinokurov
Dave, I suppose there isn't way to delete the schema. You could get the meta information about binary objects using Ignite#binary() method. For example ignite.binary().type("package.Employeee").fieldTypeName("name"). Thanks, Pavel 2018-03-24 1:10 GMT+03:00 Dave Harvey :

Re: JTA transactions in Iginte

2018-03-28 Thread Prasad Bhalerao
Val, Thank you for the response. As per your suggestion I will first test it with write through approach before moving to JTA. About JTA, I still have some doubts about how to use it. As per the example given in this link https://apacheignite.readme.io/v2.4/docs/transactions (Integration With

Re: Ignite integration with Tableau

2018-03-28 Thread Igor Sapego
Hello Swetha, Also, is the node you are trying to connect to up and running? Can you see anything in its log? Best Regards, Igor On Wed, Mar 28, 2018 at 1:15 PM, Andrey Mashenkov < andrey.mashen...@gmail.com> wrote: > Hi Swetha, > > Would you please check if there is no network issue, dns name

Re: Any idea what this is ?

2018-03-28 Thread Mikael
Hi! It behaves a bit different if I try to use BinaryConfiguration.SetClassNames, I added the following to the Ignite configuration, I hope that is the correct way to do it ? http://www.springframework.org/schema/beans;    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance;   

Re: Determining BinaryObject field type

2018-03-28 Thread David Harvey
I had stopped at BinaryObject, and didn't follow the indirection though type() to BinaryType. I think I assumed that this had only information at the higher level, and wouldn't drill down into the fields. This also answers a question about how to enumerate the fields. Thanks. -DH On Wed, Mar

Re: [2.4.0] Cluster unrecoverable after node failure

2018-03-28 Thread Pavel Vinokurov
Hi Jose, >> Caused by: class org.apache.ignite.spi.IgniteSpiException: Node with set up BaselineTopology is not allowed to join cluster without one >> That is expected behavior. The "Crashed" node has the empty baseline. Nodes with a old baseline could not connect to the cluster with empty

Ignite integration with Tableau

2018-03-28 Thread Swetha
Hi, Im trying to integrate Ignite and tableau.. Steps i have followed: I have taken ODBC driver installer from this path /Ignite_Home/platforms/cpp/bin/odbc/ignite-odbc-amd64.msi to my windows local and installed. Now im able to find Apache Ignite in the list to add new DSN. I have configured

Re: Ignite integration with Tableau

2018-03-28 Thread Andrey Mashenkov
Hi Swetha, Would you please check if there is no network issue, dns name resolved correctly and 10800 port is not blocked by firewall? E.g. you can try to ping host and if it is ok then try connect to bkcttplna0***:10800 via telnet. On Wed, Mar 28, 2018 at 12:54 PM, Swetha

Re: Redis KEYS command?

2018-03-28 Thread Andrey Mashenkov
Hi, As I understand, you need this command in SQL query, right? AFAIK, there is no plans to add Redis dialect support. If you need a way to achieve same results via SQL query (JDBC\ODBC for example), you can try to use custom SQL functions [1]. [1]

Re: Redis KEYS command?

2018-03-28 Thread aealexsandrov
Hi Jose, All availavle information about ingine/redis compatibility you can see here: https://apacheignite.readme.io/docs/redis If you are going tobe informed about the last information about future integrations then you can read articleы from еру official site:

Baseline Topology and Node Failure

2018-03-28 Thread Dave Harvey
The introduction in 2.4 of Baselines seems quite helpful. If a node restarts, it will avoid excessive rebalancing. What is unclear from the documentation is what happens in the case where a node fails, and doesn't come back. I'm assuming that in fact nothing happens, except that the backups

Running heavy queries on Ignite cluster on backing store directly without impacting the cluster

2018-03-28 Thread Naveen
Hi I am using ignite 2.3 with native persistence layer as backing store We do have close to half to 1 billion records in each of the tables. There are some adhoc requirements to query the tables with diffrent where conditions, columns which we use in where clause may not have indexes, which may

Re: Error: class org.apache.ignite.IgniteException: Ignite instance with this name has already been started: igniteDual

2018-03-28 Thread Naveen
The reason I was creating a new client for every thread is I am using datastreamer which has all the configurations/properties per client basis. Thats why I am using a new client for each thread, it was working fine when I used native persistence alone, now with this config XML which is used for

Re: Assuring quorum

2018-03-28 Thread Ariel Tubaltsev
Makes sense. Thank you. Ariel -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Re: Getting "BinaryObjectException: Failed to deserialize object" while trying to execute the application using multi node

2018-03-28 Thread Michael Jay
Hi, val. I just met with the same problem. Would you mind giving more detailed solutions? thanks -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Re: Getting "BinaryObjectException: Failed to deserialize object" while trying to execute the application using multi node

2018-03-28 Thread vkulichenko
Michael, There is no much detail to add. Although it's technically possible to serialize lambdas and anonymous classes, it's usually not recommended, as they can reference some objects from outside. If these objects are not serializable (or not intended to be serialized), you're likely to get

Upgrade from 2.1.0 to 2.4.0 resulting in error within transaction block

2018-03-28 Thread smurphy
Code works in Ignite 2.1.0. Upgrading to 2.4.0 produces the stack trace below. The delete statement that is causing the error is: SqlFieldsQuery sqlQuery = new SqlFieldsQuery("delete from EngineFragment where " + criteria()); fragmentCache.query(sqlQuery.setArgs(criteria.getArgs())); The code

Re: JTA transactions in Iginte

2018-03-28 Thread vkulichenko
Prasad, 1. JTA is an abstraction that is not related to Ignite, so exact details would depend on how your application is organized. But basically you need to do the following: - Acquire the transaction manager (from a container, from Spring app context or whatever you use for management of such

Re: Determining BinaryObject field type

2018-03-28 Thread Pavel Vinokurov
Dave, There is one way to delete meta data. You could find typeId using ignite.binary().type("package.Employeee").typeId() and remove .bin files in all *binary_meta* subfolders. ​

Ignite integration with Tableau

2018-03-28 Thread Swetha
Hi, Im trying to integrate Ignite and tableau.. Steps i have followed: I have taken ODBC driver installer from this path /Ignite_Home/platforms/cpp/bin/odbc/ignite-odbc-amd64.msi to my windows local and installed. Now im able to find Apache Ignite in the list to add new DSN. I have configured

Re: LifeCycle STOPPED question

2018-03-28 Thread Chris Berry
Thank you!! -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/