blob: 390ce7be7a9ae533d220b95c053c8be9495e9253 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.asterix.clienthelper.commands;
import java.io.IOException;
import java.net.HttpURLConnection;
import java.nio.charset.StandardCharsets;
import javax.servlet.http.HttpServletResponse;
import org.apache.asterix.clienthelper.Args;
import org.apache.commons.io.IOUtils;
import org.json.JSONException;
import org.json.JSONObject;
public class WaitForClusterCommand extends RemoteCommand {
public WaitForClusterCommand(Args args) {
super(args);
}
@Override
@SuppressWarnings("squid:S2142") // interrupted exception
public int execute() throws IOException {
log("Waiting "
+ (args.getTimeoutSecs() > 0 ? "up to " + args.getTimeoutSecs() + " seconds " : "")
+ "for cluster " + hostPort + " to be available.");
long startTime = System.currentTimeMillis();
boolean first = true;
String lastState = null;
while (true) {
if (!first) {
if (args.getTimeoutSecs() >= 0
&& (startTime + (args.getTimeoutSecs() * 1000) < System.currentTimeMillis())) {
break;
}
try {
Thread.sleep(500);
} catch (InterruptedException e) {
return 22;
}
}
first = false;
HttpURLConnection conn;
try {
conn = openConnection(args.getClusterStatePath(), Method.GET);
if (conn.getResponseCode() == HttpServletResponse.SC_OK) {
String result = IOUtils.toString(conn.getInputStream(), StandardCharsets.UTF_8.name());
JSONObject json = new JSONObject(result);
lastState = json.getString("state");
if ("ACTIVE".equals(lastState)) {
log("Cluster started and is ACTIVE.");
return 0;
}
}
} catch (JSONException |IOException e) { //NOSONAR - log or rethrow exception
// ignore exception, try again
}
}
log("Cluster " + hostPort + " was not available before timeout of " + args.getTimeoutSecs()
+ " seconds was exhausted" + (lastState != null ? " (state: " + lastState + ")" : "")
+ "; check logs for more information");
return 1;
}
}