The `Client` class is getting big. We should split it up in different scopes, for example: ```java clientFactory.getNodeClient(); clientFactory.getIndexClient(); clientFactory.getClusterClient(); ``` ... etc.