-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Closed
Labels
Description
NEST/Elasticsearch.Net version:6.6
Elasticsearch version:6.7
Description of the problem including expected versus actual behavior:
When big data index
Steps to reproduce:
1.
2.
3.
Provide ConnectionSettings
(if relevant):
var path = Environment.GetEnvironmentVariable("ESURL");
if (string.IsNullOrWhiteSpace(path))
{
throw new Exception("the Environment vairable ESURL is not exist");
}
var pathArr = path.Split(",", StringSplitOptions.RemoveEmptyEntries);
IEnumerable<Uri> nodes = pathArr.ToList().Select(s => new Uri(s));
var pool = new StaticConnectionPool(nodes);
var settings = new ConnectionSettings(pool).DefaultTypeName(ESClient.DOCUMENTTYPE).ConnectionLimit(1000);
Provide DebugInformation
(if relevant):
Describe the feature: