Skip to content

Commit

Permalink
[BACKPORT 2024.1.2][#23447]yugabyted: Node doesn't restart with `--se…
Browse files Browse the repository at this point in the history
…cure` enabled

Summary:
Original commit: f171e13 / D37166
While restarting a node, yugabyted was trying to hit the `/api/v1/varz` endpoint, before the mastre process could come up properly. Addinga timeout framework to handnle this case.
Jira: DB-12369

Test Plan: ./yb_build.sh --java-test 'org.yb.yugabyted.*'

Reviewers: djiang

Reviewed By: djiang

Subscribers: sgarg-yb, yugabyted-dev

Tags: #jenkins-ready

Differential Revision: https://phorge.dev.yugabyte.com/D37215
  • Loading branch information
nchandrappa committed Aug 11, 2024
1 parent bcb9a1a commit 80a75ff
Showing 1 changed file with 29 additions and 15 deletions.
44 changes: 29 additions & 15 deletions bin/yugabyted
Original file line number Diff line number Diff line change
Expand Up @@ -5831,24 +5831,38 @@ class ControlScript(object):
return fqdn

# Check whether the leader master is secure.
def is_leader_master_secure(self, master_hostport):
try:
leaderMasterURL = "http://{}/api/v1/varz".format(master_hostport)
response = urlopen(Request(leaderMasterURL))
jsonResponseFromMaster = json.load(response)
listOfAllFlags = jsonResponseFromMaster.get("flags")
def is_leader_master_secure(self, master_hostport, timeout=60):
start_time = time.time()
now = start_time
try_count = 0
while True:
try:
try_count+=1
leaderMasterURL = "http://{}/api/v1/varz".format(master_hostport)
Output.log("Trying to get response from {}. Try Count: {}".format(leaderMasterURL,
try_count))
response = urlopen(Request(leaderMasterURL), timeout=timeout)
jsonResponseFromMaster = json.load(response)
listOfAllFlags = jsonResponseFromMaster.get("flags")

encryptionFlag = [flag for flag in listOfAllFlags if
flag.get("name") == "use_node_to_node_encryption"]
encryptionFlag = [flag for flag in listOfAllFlags if
flag.get("name") == "use_node_to_node_encryption"]

return encryptionFlag[0].get("value") == "true"
return encryptionFlag[0].get("value") == "true"

except HTTPError as http_err:
Output.log_error_and_exit("HTTP error occurred while checking for security of " +
"leader master: {}".format(http_err))
except Exception as err:
now = time.time()
if now - start_time > timeout:
Output.log_error_and_exit("Other error occurred while checking for " +
"security of leader master: {}. Timeout: {}".format(err, now - start_time))
else:
Output.log("Other error occurred while checking for " +
"security of leader master: {}.".format(err))
time.sleep(0.2)

except HTTPError as http_err:
Output.log_error_and_exit("HTTP error occurred while checking for security of " +
"leader master: {}".format(http_err))
except Exception as err:
Output.log_error_and_exit("Other error occurred while checking for security of " +
"leader master: {}".format(err))

def handle_config_files(self, args, conf_dir, config_file, base_dir):
if not os.path.isdir(conf_dir):
Expand Down

0 comments on commit 80a75ff

Please sign in to comment.