Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Segment Replication] Draft - Create Segrep orchestration class & Target implementation #3409

Closed
wants to merge 11 commits into from
Prev Previous commit
Next Next commit
Add missing javadoc.
Signed-off-by: Marc Handalian <handalm@amazon.com>
  • Loading branch information
mch2 committed May 25, 2022
commit bef2ee646d95e575d14df6c0ddb2430be945c36f
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
import java.util.Map;

/**
* Transport client that implements retry functionality.
* Client that implements retry functionality for transport layer requests.
*
* @opensearch.internal
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@
import org.opensearch.indices.recovery.RecoverySettings;
import org.opensearch.transport.TransportService;

/**
* Factory to build {@link SegmentReplicationSource} used by {@link SegmentReplicationTargetService}.
*
* @opensearch.internal
*/
public class SegmentReplicationSourceFactory {

private TransportService transportService;
Expand Down