blob: 02f976890d101f73b917381449bbd410ba588fad [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.fluo.command;
import java.util.Collections;
import java.util.List;
import org.apache.curator.framework.CuratorFramework;
import org.apache.fluo.api.config.FluoConfiguration;
import org.apache.fluo.core.client.FluoAdminImpl;
import org.apache.fluo.core.util.CuratorUtil;
public class FluoList {
public static void main(String[] args) throws Exception {
ConfigOpts commandOpts = ConfigOpts.parse("fluo list", args);
FluoConfiguration config = CommandUtil.resolveFluoConfig();
commandOpts.overrideFluoConfig(config);
try (CuratorFramework curator = CuratorUtil.newFluoCurator(config)) {
curator.start();
if (curator.checkExists().forPath("/") == null) {
System.out.println("Fluo instance (" + config.getInstanceZookeepers() + ") has not been "
+ "created yet in Zookeeper. It will be created when the first Fluo application is "
+ "initialized for this instance.");
return;
}
List<String> children = curator.getChildren().forPath("/");
if (children.isEmpty()) {
System.out.println("Fluo instance (" + config.getInstanceZookeepers() + ") does not "
+ "contain any Fluo applications.");
return;
}
Collections.sort(children);
System.out.println("Fluo instance (" + config.getInstanceZookeepers() + ") contains "
+ children.size() + " application(s)\n");
System.out.println("Application Status # Workers");
System.out.println("----------- ------ ---------");
for (String path : children) {
FluoConfiguration appConfig = new FluoConfiguration(config);
appConfig.setApplicationName(path);
try (FluoAdminImpl admin = new FluoAdminImpl(appConfig)) {
String state = "STOPPED";
if (admin.applicationRunning()) {
state = "RUNNING";
}
int numWorkers = admin.numWorkers();
System.out.format("%-15s %-11s %4d\n", path, state, numWorkers);
}
}
}
}
}