DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

Related

  • Mastering System Design: A Comprehensive Guide to System Scaling for Millions, Part 2
  • Exploring Apache Ignite With Spring Boot
  • Coordinating an Apache Ignite Cluster With GridGain Control Center
  • Stateful Microservices With Apache Ignite

Trending

  • Zero-Downtime Deployments for Java Apps on Kubernetes
  • Building Production-Grade GenAI on GCP with Vertex AI Agent Builder
  • DevOps and Platform Engineering Readiness Checklist: Everything Needed for a Scalable, Secure, High-Velocity Delivery Platform
  • Why Google Data Migration Gets Stuck at 99%: Causes and Proven Fixes
  1. DZone
  2. Data Engineering
  3. Databases
  4. Apache Ignite: Setup Guide

Apache Ignite: Setup Guide

If you're looking to get started with Apache Ignite, this is the post for you. Learn steps for binary installation, building from sources, and Maven.

By 
Gaurav Rai Mazra user avatar
Gaurav Rai Mazra
·
Feb. 12, 18 · Tutorial
Likes (5)
Comment
Save
Tweet
Share
10.9K Views

Join the DZone community and get the full member experience.

Join For Free

In this post, we will discuss setting up Apache Ignite.

You can download the Apache Ignite from its official site. You can download the binary, sources, Docker or cloud images, and Maven. There is also third-party support from GridGain.

Steps for Binary Installation

This is a pretty straightforward installation. Download the binary from the website. You can optionally set up the installation path as IGNITE_HOME. To run Ignite as a server, you need to run the below command on terminal.

/bin/ignite.bat //If it is Windows
/bin/ignite.sh //If it is Linux

The above command will run the Ignite with default configuration file under $IGNITE_HOME/config/default-config.xml. You can pass your own configuration file with following command:

/bin/ignite.sh config/ignite-config.xml

Steps for Building From Sources

If you are likely to build everything from sources, then follow the steps listed below.

# Unpack the source package
$ unzip -q apache-ignite-{version}-src.zip
$ cd apache-ignite-{version}-src

# Build In-Memory Data Fabric release (without LGPL dependencies)
$ mvn clean package -DskipTests

# Build In-Memory Data Fabric release (with LGPL dependencies)
$ mvn clean package -DskipTests -Prelease,lgpl

# Build In-Memory Hadoop Accelerator release
# (optionally specify version of hadoop to use)
$ mvn clean package -DskipTests -Dignite.edition=hadoop [-Dhadoop.version=X.X.X]

Steps for Maven

You just need to add the Maven dependencies to make it work in your project. Ignite has integration support with many other libraries and almost all of them are optional. The only mandatory one is ignite-core. You can add ignite-spring for configuring Ignite with Spring XML like configurations and ignite-indexing for SQL querying.

<dependency>
    <groupId>org.apache.ignite</groupId>
    <artifactId>ignite-core</artifactId>
    <version>${ignite.version}</version>
</dependency>
<dependency>
    <groupId>org.apache.ignite</groupId>
    <artifactId>ignite-spring</artifactId>
    <version>${ignite.version}</version>
</dependency>
<dependency>
    <groupId>org.apache.ignite</groupId>
    <artifactId>ignite-indexing</artifactId>
    <version>${ignite.version}</version>
</dependency>

You can download the Docker image or cloud AMI from this link.

Apache Ignite

Published at DZone with permission of Gaurav Rai Mazra. See the original article here.

Opinions expressed by DZone contributors are their own.

Related

  • Mastering System Design: A Comprehensive Guide to System Scaling for Millions, Part 2
  • Exploring Apache Ignite With Spring Boot
  • Coordinating an Apache Ignite Cluster With GridGain Control Center
  • Stateful Microservices With Apache Ignite

Partner Resources

×

Comments

The likes didn't load as expected. Please refresh the page and try again.

  • RSS
  • X
  • Facebook

ABOUT US

  • About DZone
  • Support and feedback
  • Community research

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Core Program
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 215
  • Nashville, TN 37211
  • [email protected]

Let's be friends:

  • RSS
  • X
  • Facebook