-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Remove Deprecated TransportClient #1669
Copy link
Copy link
Closed
Labels
>breakingIdentifies a breaking change.Identifies a breaking change.Priority-LowenhancementEnhancement or improvement to existing feature or requestEnhancement or improvement to existing feature or requestnon-issuebugs / unexpected behaviors that end up non issues; audit trail simple changes that aren't issuesbugs / unexpected behaviors that end up non issues; audit trail simple changes that aren't issuesv2.0.0Version 2.0.0Version 2.0.0
Metadata
Metadata
Assignees
Labels
>breakingIdentifies a breaking change.Identifies a breaking change.Priority-LowenhancementEnhancement or improvement to existing feature or requestEnhancement or improvement to existing feature or requestnon-issuebugs / unexpected behaviors that end up non issues; audit trail simple changes that aren't issuesbugs / unexpected behaviors that end up non issues; audit trail simple changes that aren't issuesv2.0.0Version 2.0.0Version 2.0.0
Is your feature request related to a problem? Please describe.
TransportClient.javais deprecated and should be removed and adopt using High Level Rest Client.https://github.com/opensearch-project/OpenSearch/blob/main/server/src/main/java/org/opensearch/client/transport/TransportClient.java
There are a lot of references where TransportClient is used, all of the uses cases should be moved a layer above of TCP to Rest (Layer 7).
The intent of this issue is to sanitizing the code base.