org.apache.thrift7.TException Java Examples
The following examples show how to use
org.apache.thrift7.TException.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: StormExecutionRuntime.java From eagle with Apache License 2.0 | 6 votes |
@Override public void stop(Application<StormEnvironment, StormTopology> executor, com.typesafe.config.Config config) { String appId = config.getString("appId"); LOG.info("Stopping topology {} ...", appId); if (Objects.equals(config.getString("mode"), ApplicationEntity.Mode.CLUSTER.name())) { Nimbus.Client stormClient = NimbusClient.getConfiguredClient(getStormConfig(config)).getClient(); try { stormClient.killTopologyWithOpts(appId, this.killOptions); } catch (NotAliveException | TException e) { LOG.error("Failed to kill topology named {}, due to: {}",appId,e.getMessage(),e.getCause()); throw new RuntimeException(e.getMessage(),e); } } else { getLocalCluster().killTopologyWithOpts(appId, this.killOptions); } LOG.info("Stopped topology {}", appId); }
Example #2
Source File: ClusterInfoBolt.java From jstorm with Apache License 2.0 | 6 votes |
protected long getTopologyTPS(TopologySummary topology, Client client) throws NotAliveException, TException{ long topologyTps = 0l; String topologyId = topology.get_id(); if(topologyId.startsWith("ClusterMonitor")){ return topologyTps; } TopologyInfo topologyInfo = client.getTopologyInfo(topologyId); if(topologyInfo == null){ return topologyTps; } List<ExecutorSummary> executorSummaryList = topologyInfo.get_executors(); for(ExecutorSummary executor : executorSummaryList){ topologyTps += getComponentTPS(executor); } LOGGER.info("topology = " + topology.get_name() + ", tps = " + topologyTps); return topologyTps; }
Example #3
Source File: DRPCMetricsCollector.java From storm-benchmark with Apache License 2.0 | 5 votes |
private long execute(String arg, PrintWriter writer) throws TException, DRPCExecutionException { LOG.debug(String.format("executing %s('%s')", function, arg)); DRPCClient client = new DRPCClient(server, port); long start = System.currentTimeMillis(); String result = client.execute(function, arg); long end = System.currentTimeMillis(); long latency = end - start; writer.println(String.format("%s('%s') = %s, latency = %d ms", function, arg, result, latency)); writer.flush(); return latency; }
Example #4
Source File: DrpcTestClient.java From trident-tutorial with Apache License 2.0 | 5 votes |
public static void main(String[] args) throws TException, DRPCExecutionException { DRPCClient cl = new DRPCClient("localhost",3772, 9000); if (args.length != 2){ System.err.println("<functionName> <arguments>"); }else{ String func = args[0]; String argument = args[1]; System.out.println(cl.execute(func, argument)); } }
Example #5
Source File: ClusterInfoBolt.java From jstorm with Apache License 2.0 | 5 votes |
private void getClusterInfo(Client client) { try { ClusterSummary clusterSummary = client.getClusterInfo(); List<SupervisorSummary> supervisorSummaryList = clusterSummary.get_supervisors(); int totalWorkers = 0; int usedWorkers = 0; for(SupervisorSummary summary : supervisorSummaryList){ totalWorkers += summary.get_num_workers() ; usedWorkers += summary.get_num_used_workers(); } int freeWorkers = totalWorkers - usedWorkers; LOGGER.info("cluster totalWorkers = " + totalWorkers + ", usedWorkers = " + usedWorkers + ", freeWorkers = " + freeWorkers); HttpCatClient.sendMetric("ClusterMonitor", "freeSlots", "avg", String.valueOf(freeWorkers)); HttpCatClient.sendMetric("ClusterMonitor", "totalSlots", "avg", String.valueOf(totalWorkers)); List<TopologySummary> topologySummaryList = clusterSummary.get_topologies(); long clusterTPS = 0l; for(TopologySummary topology : topologySummaryList){ long topologyTPS = getTopologyTPS(topology, client); clusterTPS += topologyTPS; if(topology.get_name().startsWith("ClusterMonitor")){ continue; } HttpCatClient.sendMetric(topology.get_name(), topology.get_name() + "-TPS", "avg", String.valueOf(topologyTPS)); } HttpCatClient.sendMetric("ClusterMonitor", "ClusterEmitTPS", "avg", String.valueOf(clusterTPS)); } catch (TException e) { initClient(configMap); LOGGER.error("get client info error.", e); } catch(NotAliveException nae){ LOGGER.warn("topology is dead.", nae); } }
Example #6
Source File: StormTopologySubmitter.java From incubator-samoa with Apache License 2.0 | 4 votes |
public static void main(String[] args) throws IOException { Properties props = StormSamoaUtils.getProperties(); String uploadedJarLocation = props.getProperty(StormJarSubmitter.UPLOADED_JAR_LOCATION_KEY); if (uploadedJarLocation == null) { logger.error("Invalid properties file. It must have key {}", StormJarSubmitter.UPLOADED_JAR_LOCATION_KEY); return; } List<String> tmpArgs = new ArrayList<String>(Arrays.asList(args)); int numWorkers = StormSamoaUtils.numWorkers(tmpArgs); args = tmpArgs.toArray(new String[0]); StormTopology stormTopo = StormSamoaUtils.argsToTopology(args); Config conf = new Config(); conf.putAll(Utils.readStormConfig()); conf.putAll(Utils.readCommandLineOpts()); conf.setDebug(false); conf.setNumWorkers(numWorkers); String profilerOption = props.getProperty(StormTopologySubmitter.YJP_OPTIONS_KEY); if (profilerOption != null) { String topoWorkerChildOpts = (String) conf.get(Config.TOPOLOGY_WORKER_CHILDOPTS); StringBuilder optionBuilder = new StringBuilder(); if (topoWorkerChildOpts != null) { optionBuilder.append(topoWorkerChildOpts); optionBuilder.append(' '); } optionBuilder.append(profilerOption); conf.put(Config.TOPOLOGY_WORKER_CHILDOPTS, optionBuilder.toString()); } Map<String, Object> myConfigMap = new HashMap<String, Object>(conf); StringWriter out = new StringWriter(); try { JSONValue.writeJSONString(myConfigMap, out); } catch (IOException e) { System.out.println("Error in writing JSONString"); e.printStackTrace(); return; } Config config = new Config(); config.putAll(Utils.readStormConfig()); NimbusClient nc = NimbusClient.getConfiguredClient(config); String topologyName = stormTopo.getTopologyName(); try { System.out.println("Submitting topology with name: " + topologyName); nc.getClient().submitTopology(topologyName, uploadedJarLocation, out.toString(), stormTopo.getStormBuilder().createTopology()); System.out.println(topologyName + " is successfully submitted"); } catch (AlreadyAliveException aae) { System.out.println("Fail to submit " + topologyName + "\nError message: " + aae.get_msg()); } catch (InvalidTopologyException ite) { System.out.println("Invalid topology for " + topologyName); ite.printStackTrace(); } catch (TException te) { System.out.println("Texception for " + topologyName); te.printStackTrace(); } }
Example #7
Source File: StormTopologySubmitter.java From samoa with Apache License 2.0 | 4 votes |
public static void main(String[] args) throws IOException{ Properties props = StormSamoaUtils.getProperties(); String uploadedJarLocation = props.getProperty(StormJarSubmitter.UPLOADED_JAR_LOCATION_KEY); if(uploadedJarLocation == null){ logger.error("Invalid properties file. It must have key {}", StormJarSubmitter.UPLOADED_JAR_LOCATION_KEY); return; } List<String> tmpArgs = new ArrayList<String>(Arrays.asList(args)); int numWorkers = StormSamoaUtils.numWorkers(tmpArgs); args = tmpArgs.toArray(new String[0]); StormTopology stormTopo = StormSamoaUtils.argsToTopology(args); Config conf = new Config(); conf.putAll(Utils.readStormConfig()); conf.putAll(Utils.readCommandLineOpts()); conf.setDebug(false); conf.setNumWorkers(numWorkers); String profilerOption = props.getProperty(StormTopologySubmitter.YJP_OPTIONS_KEY); if(profilerOption != null){ String topoWorkerChildOpts = (String) conf.get(Config.TOPOLOGY_WORKER_CHILDOPTS); StringBuilder optionBuilder = new StringBuilder(); if(topoWorkerChildOpts != null){ optionBuilder.append(topoWorkerChildOpts); optionBuilder.append(' '); } optionBuilder.append(profilerOption); conf.put(Config.TOPOLOGY_WORKER_CHILDOPTS, optionBuilder.toString()); } Map<String, Object> myConfigMap = new HashMap<String, Object>(conf); StringWriter out = new StringWriter(); try { JSONValue.writeJSONString(myConfigMap, out); } catch (IOException e) { System.out.println("Error in writing JSONString"); e.printStackTrace(); return; } Config config = new Config(); config.putAll(Utils.readStormConfig()); String nimbusHost = (String) config.get(Config.NIMBUS_HOST); NimbusClient nc = new NimbusClient(nimbusHost); String topologyName = stormTopo.getTopologyName(); try { System.out.println("Submitting topology with name: " + topologyName); nc.getClient().submitTopology(topologyName, uploadedJarLocation, out.toString(), stormTopo.getStormBuilder().createTopology()); System.out.println(topologyName + " is successfully submitted"); } catch (AlreadyAliveException aae) { System.out.println("Fail to submit " + topologyName + "\nError message: " + aae.get_msg()); } catch (InvalidTopologyException ite) { System.out.println("Invalid topology for " + topologyName); ite.printStackTrace(); } catch (TException te) { System.out.println("Texception for " + topologyName); te.printStackTrace(); } }