What are the three distinct layers of the Codebase in Storm?

devquora
devquora

Posted On: Feb 22, 2018

 

Storm's codebase consists of three distinct layers.

  • First, a storm can run with the use of any language. This is due to the thrift structures. The storm is compatible to go with all the languages.
  • Second, all the interfaces of the storm are specified as the interfaces of Java. All the users have to go with API of Java which implies that always all storm's features are accessible through Java.
  • Third, Clojure has a large implementation of the storm. Half of the storm is Clojure code and the other half is Java code, with Clojure code being more expressive.

    Related Questions

    Please Login or Register to leave a response.

    Related Questions

    Apache Storm Interview Questions

    What is Apache Storm?

    Apache Storm is a distributed real-time system of computation which is an open and free source. Apache storm is used for processing Big Data Analytics with being reliable. It is simple to use Storm. I...

    Apache Storm Interview Questions

    What are the benefits of Apache Storm?

    There are a bunch of benefits of using Apache Storm for real-time processing.First, it is very simple to operate Storm. Its standard configurations are helpful in deploying and using it easily. S...

    Apache Storm Interview Questions

    What are the types of Nodes in Apache Storm?

    Nodes are classified into two types, namely Master Node and the Worker Node. The master node is responsible for the execution of daemon nimbus. Its duty is to assign tasks to the machines and also of ...