layout: about

Apache Storm was designed from the ground up to be usable with any programming language. At the core of Apache Storm is a Thrift definition for defining and submitting topologies. Since Thrift can be used in any language, topologies can be defined and submitted from any language.

Similarly, spouts and bolts can be defined in any language. Non-JVM spouts and bolts communicate to Apache Storm over a JSON-based protocol over stdin/stdout. Adapters that implement this protocol exist for Ruby, Python, Javascript, Perl.

storm-starter has an example topology that implements one of the bolts in Python.