Files
elasticsearch/ts/core/connection/index.ts

16 lines
399 B
TypeScript
Raw Normal View History

/**
* Connection management for Elasticsearch client
*
* This module provides:
* - Connection pooling and lifecycle management
* - Health monitoring with periodic checks
* - Circuit breaker pattern for fault tolerance
* - Automatic reconnection
*
* @packageDocumentation
*/
export * from './health-check.js';
export * from './circuit-breaker.js';
export * from './connection-manager.js';