Re: Re:Re: Re:Re: delete data error

2018-01-25 Thread Ilya Kasnacheev
Hello! It seems that an issue was filed about the problem you are seeing: https://issues.apache.org/jira/browse/IGNITE-7512 I can see that there's already work underway to fix is. Regards, -- Ilya Kasnacheev 2018-01-23 4:53 GMT+03:00 Lucky : > Sorry, the fid is not UUID

Re:Re:Re: Re:Re: delete data error

2018-01-22 Thread Lucky
Sorry, the fid is not UUID in tmpCompanyCuBaseDataCache , but the other are UUID. The error is not happened only in this cache, the other are the same. I found when I delete a single record ,it's nomal .But If I delete many records in a SQL,it will get the wrong. Thanks. At 2018-01-23

Re:Re: Re:Re: delete data error

2018-01-22 Thread Lucky
I put the entry like this: cache.put(entry.getFID(),entry); The fid is a UUID, is only. I'm very sure that the data in the cache is no problem. All value is correct,and look like the other record. sql="delete from \"tmpCompanyCuBaseDataCache\".TmpCompanyCuBaseData where

Re: Re:Re: delete data error

2018-01-22 Thread Ilya Kasnacheev
Hello! Thank you for the log! It looks like there's some internal consistency problem with the cache. >From the log content the root cause is not apparent. Can you please try getting the offending key from cache via Cache API (see if it's everything all right with it), and then deleting the key

Re:Re:Re: delete data error

2018-01-21 Thread Lucky
Is there any suggestion? At 2018-01-18 09:56:51, "Lucky" wrote: This did not happen every time. When I run it several times,it will happen .And when it happened, then it will happened every time. This table is simple; I insert some data and when I finish the job,I

Re:Re: delete data error

2018-01-17 Thread Lucky
This did not happen every time.When I run it several times,it will happen .And when it happened, then it will happened every time. This table is simple; I insert some data and when I finish the job,I will delete the data. Thanks. At 2018-01-17 20:20:34, "ilya.kasnacheev"

Re: delete data error

2018-01-17 Thread ilya.kasnacheev
Hello Lucky! Does this happen every time when you try, or it is a one-time occurrence? Can you please share logs from your nodes and cache/table configurations? Ideally a small reproducer project. Regards, -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

delete data error

2018-01-16 Thread Lucky
Hi When delete some data,it got an error. sql = "delete from \"tmpCompanyCuBaseDataCache\".TmpCompanyCuBaseData "; cache.query(new SqlFieldsQuery(sql)) I use jdbc to excute this sql ,it's the same. This table has about 20 records. I had check the data ,and found the data