Re: distributed-computing error System.Runtime.Serialization.ISerializable

2022-08-29 Thread Jeremy McMillan
>>>>>>>>> New error with new changes >>>>>>>>>>>> System.AggregateException >>>>>>>>>>>> HResult=0x80131500 >>>>>>>>>>>> Message=One or more errors occurred. (Topolo

Re: distributed-computing error System.Runtime.Serialization.ISerializable

2022-08-29 Thread Charlin S
ing.Tasks.Task`1.get_Result() >>>>>>>>>>>at Apache.Ignite.Core.Impl.Common.Future`1.Get() >>>>>>>>>>>at >>>>>>>>>>> Apache.Ignite.Core.Impl.Compute.Compute.Call[TJobRes](IComputeFunc`1 >>>

Re: distributed-computing error System.Runtime.Serialization.ISerializable

2022-08-26 Thread Charlin S
t;>>>>>>>> Apache.Ignite.Core.Impl.Compute.Compute.Call[TJobRes](IComputeFunc`1 >>>>>>>>>> clo) >>>>>>>>>>at ConsoleApp2.CacheUtils.ComputeTest_OnIgnite_OnIgnite(String >>

Re: distributed-computing error System.Runtime.Serialization.ISerializable

2022-08-24 Thread Charlin S
> wrote: > >> Sorry to bother you,does scan in distribute compute faster than use a >> scan in client? >> >> ---Original--- >> *From:* "Pavel Tupitsyn" >> *Date:* Wed, Aug 24, 2022 19:14 PM >> *To:* "user"; >> *Subject:

Re: distributed-computing error System.Runtime.Serialization.ISerializable

2022-08-24 Thread Pavel Tupitsyn
in client? > > ---Original--- > *From:* "Pavel Tupitsyn" > *Date:* Wed, Aug 24, 2022 19:14 PM > *To:* "user"; > *Subject:* Re: distributed-computing error > System.Runtime.Serialization.ISerializable > > This line is the problem: > public ICache

Re: distributed-computing error System.Runtime.Serialization.ISerializable

2022-08-24 Thread wkhapy123

Re: distributed-computing error System.Runtime.Serialization.ISerializable

2022-08-24 Thread Pavel Tupitsyn
This line is the problem: public ICache IgniteCache { get; set; } You can't serialize an Ignite cache. Instead, use [InstanceResource] - uncomment the line you already have, then get the cache by name: [InstanceResource] private readonly IIgnite _ignite; public string CacheName { get; set; }

Re: distributed-computing error System.Runtime.Serialization.ISerializable

2022-08-24 Thread Charlin S
Hi, The exception details are as follows. System.AggregateException HResult=0x80131500 Message=One or more errors occurred. (Serializing delegates is not supported on this platform.) Source=System.Private.CoreLib StackTrace: at System.Threading.Tasks.Task`1.GetResultCore(Boolean

Re: distributed-computing error System.Runtime.Serialization.ISerializable

2022-08-24 Thread Pavel Tupitsyn
Please share the exception with full stack trace (you've only shared some warnings, which may or may not be a problem). On Wed, Aug 24, 2022 at 10:26 AM Charlin S wrote: > > I have a requirement to fetch the data using distributed-computing > function and error at > var res =

distributed-computing error System.Runtime.Serialization.ISerializable

2022-08-24 Thread Charlin S
I have a requirement to fetch the data using distributed-computing function and error at var res = CacheInstance.Instance.InstanceObject.GetCompute().Call(calls); // InstanceObject singleton object for Ignite [11:16:34,865][WARNING][main][Marshaller] Type