## Hbase as Backend store ,ES as backend index server occurs the error fix with follows ```pom add follws <properties> <apache.httpcomponents.httpcore.version>4.4.4</apache.httpcomponents.httpcore.version> <apache.httpcomponents.httpclient.verion>4.5.2</apache.httpcomponents.httpclient.verion> </properties> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpcore</artifactId> <version>${apache.httpcomponents.httpcore.version}</version> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <version>${apache.httpcomponents.httpclient.verion}</version> </dependency> ```
Hbase as Backend store ,ES as backend index server occurs the error
fix with follows