forked from opensearch-project/performance-analyzer-rca
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Handle Reader thread termination gracefully (opensearch-project#476)
* Handle Reader thread termination gracefully Signed-off-by: Khushboo Rajput <[email protected]> * Adding retry for PA disable Signed-off-by: Khushboo Rajput <[email protected]> * Add Content-Type for PA disable * Remove commons-lang3-NOTICE.txt Signed-off-by: Khushboo Rajput <[email protected]> * Update supervisord configuration for process failure expected codes and PROCESS_STATE_FATAL handling Signed-off-by: Khushboo Rajput <[email protected]> --------- Signed-off-by: Khushboo Rajput <[email protected]>
- Loading branch information
Showing
10 changed files
with
217 additions
and
231 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
75 changes: 75 additions & 0 deletions
75
src/main/java/org/opensearch/performanceanalyzer/LocalhostConnectionUtil.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
/* | ||
* Copyright OpenSearch Contributors | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
package org.opensearch.performanceanalyzer; | ||
|
||
|
||
import io.netty.handler.codec.http.HttpMethod; | ||
import java.io.DataOutputStream; | ||
import java.net.HttpURLConnection; | ||
import java.net.URL; | ||
import org.apache.logging.log4j.LogManager; | ||
import org.apache.logging.log4j.Logger; | ||
import org.opensearch.performanceanalyzer.core.Util; | ||
|
||
public class LocalhostConnectionUtil { | ||
|
||
private static final int TIMEOUT_MILLIS = 30000; | ||
|
||
private static final Logger LOG = LogManager.getLogger(LocalhostConnectionUtil.class); | ||
|
||
public static void disablePA() throws InterruptedException { | ||
String PA_CONFIG_PATH = Util.PA_BASE_URL + "/cluster/config"; | ||
String PA_DISABLE_PAYLOAD = "{\"enabled\": false}"; | ||
int retryCount = 5; | ||
|
||
while (retryCount > 0) { | ||
HttpURLConnection connection = null; | ||
try { | ||
connection = createHTTPConnection(PA_CONFIG_PATH, HttpMethod.POST); | ||
DataOutputStream stream = new DataOutputStream(connection.getOutputStream()); | ||
stream.writeBytes(PA_DISABLE_PAYLOAD); | ||
stream.flush(); | ||
stream.close(); | ||
LOG.info( | ||
"PA Disable Response: " | ||
+ connection.getResponseCode() | ||
+ " " | ||
+ connection.getResponseMessage()); | ||
if (connection.getResponseCode() == HttpURLConnection.HTTP_OK) { | ||
return; | ||
} | ||
} catch (Exception e) { | ||
LOG.error("PA Disable Request failed: " + e.getMessage(), e); | ||
} finally { | ||
if (connection != null) { | ||
connection.disconnect(); | ||
} | ||
} | ||
--retryCount; | ||
Thread.sleep((int) (60000 * (Math.random() * 2) + 100)); | ||
} | ||
throw new RuntimeException("Failed to disable PA after 5 attempts"); | ||
} | ||
|
||
private static HttpURLConnection createHTTPConnection(String path, HttpMethod httpMethod) { | ||
try { | ||
String endPoint = "http://localhost:9200" + path; | ||
URL endpointUrl = new URL(endPoint); | ||
HttpURLConnection connection = (HttpURLConnection) endpointUrl.openConnection(); | ||
connection.setRequestMethod(httpMethod.toString()); | ||
connection.setRequestProperty("Content-Type", "application/json"); | ||
|
||
connection.setConnectTimeout(TIMEOUT_MILLIS); | ||
connection.setReadTimeout(TIMEOUT_MILLIS); | ||
connection.setUseCaches(false); | ||
connection.setDoOutput(true); | ||
return connection; | ||
} catch (Exception e) { | ||
throw new RuntimeException( | ||
"Failed to create OpenSearch Connection: " + e.getMessage(), e); | ||
} | ||
} | ||
} |
Oops, something went wrong.