Problems with elasticsearch application

I have an application using ElasticSearch. Application worked for about year until last week.
Now I have an error:

[DEBUG] [2020-02-24 12:44:18,868] [marek] [/claimexpert/Request/Access] [p132aiaqksed23jlzj3bodjj] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/7.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C; .NET4.0E; Media Center PC 6.0)]- ElasticSearch DSL Query
{
"from": 0,
"size": 100,
"query": {
"bool": {
"filter": [
{
"bool": {
"must": [
{
"term": {
"User": {
"value": "marek"
}
}
},
{
"range": {
"@timestamp": {
"gte": "2020-02-17T02:00:00",
"lt": "2020-02-25T02:00:00"
}
}
}
]
}
}
]
}
}
}
[ERROR] [2020-02-24 12:44:20,884] [marek] [/claimexpert/Request/Access] [p132aiaqksed23jlzj3bodjj] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/7.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C; .NET4.0E; Media Center PC 6.0)]- Number of results: 0
[ERROR] [2020-02-24 12:44:20,884] [marek] [/claimexpert/Request/Access] [p132aiaqksed23jlzj3bodjj] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/7.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C; .NET4.0E; Media Center PC 6.0)]- Exception: Elasticsearch.Net.ElasticsearchClientException: One or more errors occurred. ---> System.AggregateException: One or more errors occurred. ---> Elasticsearch.Net.PipelineException: Failed to ping the specified node. ---> Elasticsearch.Net.PipelineException: An error occurred trying to read the response from the specified node.
at Elasticsearch.Net.RequestPipeline.Ping(Node node)
--- End of inner exception stack trace ---
at Elasticsearch.Net.RequestPipeline.Ping(Node node)
at Elasticsearch.Net.Transport1.Ping(IRequestPipeline pipeline, Node node) at Elasticsearch.Net.Transport1.Request[TResponse](HttpMethod method, String path, PostData data, IRequestParameters requestParameters)
--- End of inner exception stack trace ---
--- End of inner exception stack trace ---
[ERROR] [2020-02-24 12:44:20,884] [marek] [/claimexpert/Request/Access] [p132aiaqksed23jlzj3bodjj] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/7.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C; .NET4.0E; Media Center PC 6.0)]- Inner exception: System.AggregateException: One or more errors occurred. ---> Elasticsearch.Net.PipelineException: Failed to ping the specified node. ---> Elasticsearch.Net.PipelineException: An error occurred trying to read the response from the specified node.
at Elasticsearch.Net.RequestPipeline.Ping(Node node)
--- End of inner exception stack trace ---
at Elasticsearch.Net.RequestPipeline.Ping(Node node)
at Elasticsearch.Net.Transport1.Ping(IRequestPipeline pipeline, Node node) at Elasticsearch.Net.Transport1.Request[TResponse](HttpMethod method, String path, PostData data, IRequestParameters requestParameters)
--- End of inner exception stack trace ---
---> (Inner Exception #0) Elasticsearch.Net.PipelineException: Failed to ping the specified node. ---> Elasticsearch.Net.PipelineException: An error occurred trying to read the response from the specified node.
at Elasticsearch.Net.RequestPipeline.Ping(Node node)
--- End of inner exception stack trace ---
at Elasticsearch.Net.RequestPipeline.Ping(Node node)
at Elasticsearch.Net.Transport1.Ping(IRequestPipeline pipeline, Node node) at Elasticsearch.Net.Transport1.Request[TResponse](HttpMethod method, String path, PostData data, IRequestParameters requestParameters)<---

[ERROR] [2020-02-24 12:44:20,884] [marek] [/claimexpert/Request/Access] [p132aiaqksed23jlzj3bodjj] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/7.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C; .NET4.0E; Media Center PC 6.0)]- Inner exception: Elasticsearch.Net.PipelineException: Failed to ping the specified node. ---> Elasticsearch.Net.PipelineException: An error occurred trying to read the response from the specified node.
at Elasticsearch.Net.RequestPipeline.Ping(Node node)
--- End of inner exception stack trace ---
at Elasticsearch.Net.RequestPipeline.Ping(Node node)
at Elasticsearch.Net.Transport1.Ping(IRequestPipeline pipeline, Node node) at Elasticsearch.Net.Transport1.Request[TResponse](HttpMethod method, String path, PostData data, IRequestParameters requestParameters)
[ERROR] [2020-02-24 12:44:20,884] [marek] [/claimexpert/Request/Access] [p132aiaqksed23jlzj3bodjj] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/7.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C; .NET4.0E; Media Center PC 6.0)]- Inner exception: Elasticsearch.Net.PipelineException: An error occurred trying to read the response from the specified node.
at Elasticsearch.Net.RequestPipeline.Ping(Node node)
[DEBUG] [2020-02-24 12:44:20,900] [marek] [/claimexpert/Request/Access] [p132aiaqksed23jlzj3bodjj] [Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/7.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C; .NET4.0E; Media Center PC 6.0)]- Access checking completed

Application is .NET application and uses Nest library for ElasticSearch communication:
Connection is established using following statements:

connectionPool = new StaticConnectionPool(new Uri { new Uri(String.Format("http://{0}:{1}", ELASTIC_SEARCH_SERVER, ELASTIC_SEARCH_PORT)) });
connectionSettings = new ConnectionSettings(connectionPool);
elasticClient = new ElasticClient(connectionSettings);

No changes where made lately in elasticsearch module, which suggests that problems occurred due to changes in network configuration???

I developed a console application for debug purposes. The code in console application is as much as possible like in web application, but it works.

I'm very gratefull for any suggestions that could point me to a solution

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.