
Storm
文章平均质量分 62
追逐方向的风
克己养晦
展开
-
Storm TopologyBuilder
org.apache.storm.topologyClass TopologyBuilderjava.lang.Objectorg.apache.storm.topology.TopologyBuilderpublic class TopologyBuilderextends ObjectTopologyBuilder expo翻译 2017-09-13 14:16:57 · 478 阅读 · 0 评论 -
Strom Spouts
SpoutsA spout is a source of streams in a topology. Generally spouts will read tuples from an external source and emit them into the topology (e.g. a Kestrel queue or the Twitter API). Spouts can翻译 2017-09-30 13:47:19 · 737 阅读 · 0 评论 -
Storm Running Topologies on a Production Cluster
Running Topologies on a Production ClusterRunning topologies on a production cluster is similar to running in Local mode. Here are the steps:1) Define the topology (Use TopologyBuilder i翻译 2017-09-13 14:44:20 · 311 阅读 · 0 评论 -
Storm Setting Up a Development Environment
Setting Up a Development EnvironmentThis page outlines what you need to do to get a Storm development environment set up. In summary, the steps are:Download a Storm release , unpack it,翻译 2017-09-13 14:53:53 · 355 阅读 · 0 评论 -
Storm Local Mode
Local ModeLocal mode simulates a Storm cluster in process and is useful for developing and testing topologies. Running topologies in local mode is similar to running topologies on a cluster.翻译 2017-09-28 15:46:57 · 475 阅读 · 0 评论 -
Storm Topologies
TopologiesThe logic for a realtime application is packaged into a Storm topology. A Storm topology is analogous(相似的) to a MapReduce job. One key difference is that a MapReduce job eventually finis翻译 2017-09-28 16:13:32 · 305 阅读 · 0 评论 -
Storm Serialization
SerializationThis page is about how the serialization system in Storm works for versions 0.6.0 and onwards. Storm used a different serialization system prior to 0.6.0 which is documented on Seri翻译 2017-09-28 17:13:26 · 275 阅读 · 0 评论 -
Storm Tuple
org.apache.storm.tupleInterface TupleAll Superinterfaces:ITupleAll Known Implementing Classes:TupleImplpublic interface Tupleextends ITupleThe tuple is the main data structu翻译 2017-09-28 16:35:33 · 438 阅读 · 0 评论 -
Storm OutputFieldsDeclarer
org.apache.storm.topologyInterface OutputFieldsDeclarerAll Known Implementing Classes:OutputFieldsGetterpublic interface OutputFieldsDeclarerMethod Summary翻译 2017-09-28 16:53:34 · 599 阅读 · 0 评论 -
Storm Streams
StreamsThe stream is the core abstraction in Storm. A stream is an unbounded(无限的) sequence of tuples that is processed and created in parallel(平行的) in a distributed fashion(分布式方式). Streams are def翻译 2017-09-28 16:24:19 · 316 阅读 · 0 评论 -
初识Apache Storm
Apache Storm Why use Storm?Apache Storm 是免费开源的分布式实时计算系统,可以简单且可靠的处理无限制的流式数据,Storm支持多种语言,并且提供了很强大的功能。Apache Storm 支持实时分析,机器学习,持续计算,分布式 RPC, ETL等等Apache Storm 很快,每个节点每秒钟可处理100W个元组翻译 2017-09-06 16:24:59 · 405 阅读 · 0 评论 -
搭建Storm集群
Setting up a Storm Cluster/** 可忽略If you're on AWS,you should check out the storm-deploy project. storm-deploy completely automates the provisioning, configuration, and installation of Storm clus翻译 2017-09-06 17:46:48 · 427 阅读 · 0 评论 -
Storm IRichSpout
org.apache.storm.topologyInterface IRichSpoutAll Superinterfaces:IComponent, ISpout, SerializableAll Known Implementing Classes:BaseRichSpout, BlobStoreAPIWordCountTopology.Rando翻译 2017-09-30 14:14:26 · 747 阅读 · 0 评论