Apache Ignite REST-HTTP Module ------------------------------ Apache Ignite REST-HTTP module provides Jetty-based server which can be used to execute tasks and/or cache commands in grid using REST approach via HTTP protocol. To enable REST-HTTP module when starting a standalone node, move 'optional/ignite-rest-http' folder to 'libs' folder before running 'ignite.{sh|bat}' script. The content of the module folder will be added to classpath in this case. Importing REST-HTTP Module In Maven Project ------------------------------------------- If you are using Maven to manage dependencies of your project, you can add REST-HTTP module dependency like this (replace '${ignite.version}' with actual Ignite version you are interested in): ... ... org.apache.ignite ignite-rest-http ${ignite.version} ... ...