Re: Binary type has different fields error

2018-05-23 Thread Pavel Tupitsyn
> *From:* Pavel Tupitsyn [mailto:ptupit...@apache.org] > *Sent:* Thursday, May 24, 2018 7:13 AM > > *To:* user@ignite.apache.org > *Subject:* Re: Binary type has different fields error > > > > Hi Raymond, > > > > Many thanks for posting the root cause! &g

RE: Binary type has different fields error

2018-05-23 Thread Raymond Wilson
f .Net serialization deals with it either. Thanks, Raymond. *From:* Ilya Kasnacheev [mailto:ilya.kasnach...@gmail.com] *Sent:* Wednesday, May 23, 2018 11:09 PM *To:* user@ignite.apache.org *Subject:* Re: Binary type has different fields error Hello Raymond! This is unusual. Do you ha

Re: Binary type has different fields error

2018-05-23 Thread Pavel Tupitsyn
t;> >> public class B >> >> { >> >> public int new bob; >> >> } >> >> >> >> I’m not sure if the marshaller should be expected to deal with this >> situation, and I’m not sure if .Net serialization deals with it either. >

Re: Binary type has different fields error

2018-05-23 Thread Ilya Kasnacheev
on, and I’m not sure if .Net serialization deals with it either. > > > > Thanks, > > Raymond. > > > > > > *From:* Ilya Kasnacheev [mailto:ilya.kasnach...@gmail.com] > *Sent:* Wednesday, May 23, 2018 11:09 PM > > *To:* user@ignite.apache.org > *Subject

RE: Binary type has different fields error

2018-05-23 Thread Raymond Wilson
Kasnacheev [mailto:ilya.kasnach...@gmail.com] *Sent:* Wednesday, May 23, 2018 11:09 PM *To:* user@ignite.apache.org *Subject:* Re: Binary type has different fields error Hello Raymond! This is unusual. Do you have a minimal reproducer by chance? Care to share it on e.g. github? Regards, -- Ilya

Re: Binary type has different fields error

2018-05-23 Thread Ilya Kasnacheev
`3.< > ExecuteClosures0>b__1a(BinaryWriter writer) > >at Apache.Ignite.Core.Impl.PlatformTargetAdapter.WriteToStream(Action`1 > action, IBinaryStream stream, Marshaller marsh) > >at Apache.Ignite.Core.Impl.PlatformJniTarget.InStreamOutObject(Int32 > type, Action`1 w

RE: Binary type has different fields error

2018-05-21 Thread Raymond Wilson
8 12:51 AM *To:* user@ignite.apache.org *Subject:* Re: Binary type has different fields error Hello! Yes, they are stored under work/marshaller. Should empty this dir before restarting node. Regards, -- Ilya Kasnacheev 2018-05-16 10:22 GMT+03:00 Raymond Wilson : Thanks Pavel. I guess I’m conf

Re: Binary type has different fields error

2018-05-16 Thread Ilya Kasnacheev
hemeral. Is Ignite persisting knowledge about these types behind the > scenes? > > > > Raymond. > > > > *From:* Pavel Tupitsyn [mailto:ptupit...@apache.org] > *Sent:* Wednesday, May 16, 2018 7:02 PM > *To:* user@ignite.apache.org > *Subject:* Re: Binary type has differe

RE: Binary type has different fields error

2018-05-16 Thread Raymond Wilson
@ignite.apache.org *Subject:* Re: Binary type has different fields error In general, Ignite is tolerant to changes within your types, adding fields, removing them. But field type change is a breaking change. You have to use a new field name. Other Ignite experts may give advice on how to update schema

Re: Binary type has different fields error

2018-05-16 Thread Pavel Tupitsyn
In general, Ignite is tolerant to changes within your types, adding fields, removing them. But field type change is a breaking change. You have to use a new field name. Other Ignite experts may give advice on how to update schema, I'm a bit out of the loop on this. Thanks, Pavel On Wed, May 16,

Binary type has different fields error

2018-05-15 Thread Raymond Wilson
I just changed a field in a class from a long to a Guid. The class in question is marked [Serializable] and is passed to Ignite compute functions as a part of an argument to the compute function and is not saved to the persistent store. When I run the modified code against an Ignite grid with