在Storm中,启动类是用于初始化和配置Storm集群的类,它通常包含一些必要的设置,如定义拓扑、设置工作目录、配置Nimbus和Supervisor等,下面是一个典型的Storm启动类的示例:

storm 启动storm 启动

“`java

import backtype.storm.Config;

import backtype.storm.LocalCluster;

import backtype.storm.topology.TopologyBuilder;

import backtype.storm.tuple.Fields;

import backtype.storm.utils.Utils;

public class StormStarter {

public static void main(String[] args) {

// 创建拓扑构建器

TopologyBuilder builder = new TopologyBuilder();

// 定义拓扑组件

builder.setSpout(“spout”, new MySpout(), 1);

builder.setBolt(“bolt”, new MyBolt(), 2).shuffleGrouping(“spout”);

storm 启动storm 启动

// 设置拓扑的配置

Config conf = new Config();

conf.setDebug(true);

conf.setNumWorkers(2);

conf.setMaxSpoutPending(1);

conf.setMaxBoltPending(1);

conf.setMessageTimeoutSecs(30);

conf.setDebugActions(“*”);

conf.setDebugOutputToStdOut(true);

conf.setDebugSuppressLogging(false);

conf.setDebugSuppressTimeStamp(false);

conf.setDebugSuppressExceptionStackTrace(false);

conf.setDebugSuppressRecursiveErrorDetails(false);

storm 启动storm 启动

conf.setDebugSuppressDirectObjectInspection(false);

conf.setDebugSuppressClassLoadingDetails(false);

conf.setDebugSuppressFieldAccessDetails(false);

conf.setDebugSuppressMethodExecutionDetails(false);

conf.setDebugSuppressExceptionDetails(false);

conf.setDebugSuppressStackTrace(false);

conf.setDebugSuppressExceptionCause(false);

conf.setDebugSuppressExceptionClass(false);

conf.setDebugSuppressExceptionMessage(false);

conf.setDebugSuppressExceptionMessage

声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。