ptupitsyn commented on issue #10598:
URL: https://github.com/apache/ignite/issues/10598#issuecomment-1471394524

   Do you happen to have a lot of network interfaces? That long part of the 
path comes from Consistent Id, which is a concatenation of addresses (IPs) from 
all network interfaces on the machine.
   
   A workaround is to set ConsistentId manually - just make sure it is 
different across nodes:
   
   ```csharp
   var cfg = new IgniteConfiguration
   {
       ConsistentId = "node-1"
   };
   
   var ignite = Ignition.Start(cfg);
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@ignite.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to