Re: C# DataStreamer Best Practices

2021-04-23 Thread Pavel Tupitsyn
Hi William, > should we use a single instance within the server process Yes, use single instance per process in production. Multiple instances per process are useful for integration tests. > any benefits in trying to share/reuse DataStreamer instance DataStreamer is thread-safe and, in most cases

C# DataStreamer Best Practices

2021-04-23 Thread William.L
Hi, We are hitting a performance wall with using the C# thin client PutAsync for data upload to Ignite. We are in the process of migrating to C#'s thick client (using client mode) datastreamer. I would appreciate some advice on some best practices on how to use the thick client: * Ignite instance