Hello!
If you're on .Net please make sure to explicitly register the types that
you use, otherwise you can see this "schema update" locking.
new BinaryConfiguration
{
TypeConfigurations = new List<BinaryTypeConfiguration>
{
new BinaryTypeConfiguration(typeof (Address)),
new BinaryTypeConfiguration(typeof (TestModel))
}
};
(then set it to IgniteConfiguration.BinaryConfiguration)
Especially if you're using DataStreamer and not Cache API.
If that does not help, please provide a reproducer project which
demonstrates the issue.
Regards,
--
Ilya Kasnacheev
чт, 14 янв. 2021 г. в 07:21, siva <[email protected]>:
> Hi,
> I have .Net ClientServer Ignite Application.I am using DataStreamer to load
> data into ignite caches<string,modelclass>.
>
> while loading data client node getting stop with stackoverflow message .And
> on server node displaying message on console like
> Error:data-streamer-stripe....Timed out while waiting for schema update.
>
>
> And while again starting client node getting the following message on
> console.
>
> Nodes started on local machine require more than 80% of physical RAM what
> can lead to significant slowdown due to swapping (please decrease JVM heap
> size, data region size or checkpoint buffer size) [required=78152MB,
> available=65535MB]
>
> what might be the issue and how to solve?
>
> Any other inform needed please let me know.
> Thanks.
>
>
>
> --
> Sent from: http://apache-ignite-users.70518.x6.nabble.com/
>