Skip to main content

The Apache Ignite Book: table of contents

This is the table of contents of the Apache Ignite book that we are planning to publish end of this year 2018.


Table of contents:
  • Chapter 1. Introduction
  • Chapter 2. Getting started with Apache Ignite
    • Installing and setting up Apache Ignite
    • Building from source code
    • Run multiple instances of Apache Ignite in a single host
    • Running Apache Ignite from Docker
    • Using Apache Ignite SQLLINE command tool
    • Meet with Apache Ignite SQL engine: H2 database
    • Using a universal SQL client IDE to working with Apache Ignite
    • Apache Ignite thin client
    • First Java application
    • Using REST API for manipulating the Apache Ignite caches
    • Configure a multimode cluster in different hosts
    • Summary
    • What's Next
  • Chapter 3. Apache Ignite use cases
    • Caching for fast data access
    • High volume transaction processing
    • HTAP
    • Fast data processing
    • Lambda architecture
    • Resilient web acceleration
    • Microservices in distributed fashion
    • Cache as a service
    • Big Data accelerations
    • In-memory machine learning
    • In-memory geospatial
    • Cluster management
    • Summary
    • What’s next
  • Chapter 4. Architecture deep drive
    • Functional overview
    • Understanding the cluster topology: shared nothing architecture
      • Client and server node
      • Embedded with the application
      • Client and the server nodes in the same host
      • Running multiple nodes within single JVM
      • Real cluster topology
    • Data partitioning in Ignite
      • Understanding data distribution: DHT
      • Rendezvous hashing
      • Reliability and redundancy of the data
      • Partitioned mode
      • Replicated mode
      • Local mode
      • Near cache
      • Partition loss policies
      • Partition map exchange in Ignite
    • Caching strategy
      • Cache a-side
      • Read through and write through
      • Write behind
    • Apache Ignite life cycle
    • Protocols and clients
    • Distributed data models
    • CAP theorem and where does Ignite stand in?
    • Durable memory architecture
    • Native persistence
    • Data affinity in Ignite
      • Cluster group
      • Data collocation
      • Compute collocation with Data
      • Node filter
      • ZeroSPOF
    • Data rebalancing and indexing
    • Transactions
    • Discovery service provider interfaces
    • Security
    • Multi data center replication
    • Asynchronous support
    • Resilience
    • Ignite baseline topology
    • Ignite internal engines
      • Ignite SQL engines
      • Ignite full text search engine
      • Servlet container
    • Management and monitoring
    • Key API’s
    • Summary
    • What's next
  • Chapter 5: Intelligent caching
    • Smart in-memory caching
    • Database caching
      • MyBatis caching
      • Hibernate 2nd level cache
    • Memoization
    • Web session clustering
    • Updating cache
    • Prepare the cache correctly
    • Summary
    • What's next
  • Chapter 6. Database
    • Using JPA with Ignite
    • Hibenate OGM
    • SQL queries
      • Projection and indexing
      • Query API
      • Collocated distributed Joins
      • Non-collocated distributed joins
      • Performance tuning
    • Cache queries
      • Scan queries
      • Text queries
    • Data expiration
    • Eviction policies
    • Continues query
    • Distributed transactions
    • Persistence
      • Native persistence
      • Persistence in RDBMS
      • Persistence in NoSQL
    • HTAP
    • Security
    • Summary
    • What’s next
  • Chapter 7. Distributed computing
    • Compute grid
      • Distributed Closures
      • MapReduce and fork-join
      • Per-Node share state
      • Distributed task session
      • Fault tolerance & checkpointing
      • Collocation of compute and data
      • Job scheduling
    • Service Grid
      • Developing services
      • Cluster singleton
      • Service management configuration
    • Developing microservices
  • Chapter 8. Fast data processing
    • IgniteDataStreamer
      • StreamReciever
      • StreamVisitor
    • Kafka streamer
    • Camel data streamer
    • Flume streamer
    • Storm data streamer
    • ZeroMQ streamer
    • IoT in action: MQTT streamer
    • Implementing lambda architecture
    • Summary
    • What’s next
  • Chapter 9. Accelerating BigData computing
    • Hadoop accelerator
      • In-memory Map/Reduce
      • Using Apache Pig for data analysis
      • Near real-time data analysis with Hive
      • Replace HDFS by Ignite In-memory File System (IGFS)
      • Hadoop file system cache
    • Ignite for Apache Spark
      • Apache Spark – an introduction
      • IgniteContext
      • IgniteRDD
      • Ignite for Spark data frame
      • Spark application example
    • Summary
    • What’s next
  • Chapter 10. Monitoring and management
    • Web console for monitoring
    • JMX monitoring
    • Using 3rd party tools for monitoring
    • Summary


Comments

Popular posts from this blog

Apache Ignite deep dive, SQL engine

Apache Ignite  is an open source memory-centric distributed database, caching and comput- ing platform. From the beginning, it was designed as an in-memory data grid for developing a high-performance software system. So, it’s core architecture design is slightly different from the traditional NoSQL databases, which can simplify building modern applications with a flexible data model and simpler high availability, high scalability.     Moreover, to understand how to design application with any databases or framework properly, you must understand the architecture of the database or framework itself. By getting a better idea of the system, you can solve different problems in your enterprise architecture landscape, can select a comprehensive database or framework that is appropriate for your application and get the maximum benefits from the system. In this article we are going to explore the Apache Ignite SQL engine.      Under the hood...

Book review: High Performance in-memory computing with Apache Ignite by Sadruddin Md

A new title  The Apache Ignite book  has been released including Ignite 2.6 and above. Read the full book review by Sadruddin Md .

Quick start with In memory Data Grid, Apache Ignite

UP1: For complete quick start guide, see also the sample chapter of the book "High performance in-memory computing with Apache Ignite" here . Even you can find the sample examples from the GitHub repository . IMDG or In memory data grid is not an in-memory relational database, an NoSQL database or a relational database. It is a different breed of software datastore. The data model is distributed across many servers in a single location or across multiple locations. This distribution is known as a data fabric. This distributed model is known as a ‘shared nothing’ architecture. IMDG has following characteristics: All servers can be active in each site. All data is stored in the RAM of the servers. Servers can be added or removed non-disruptively, to increase the amount of RAM available. The data model is non-relational and is object-based.  Distributed applications written on the platform independent language. The data fabric is resilient, allowing non-disruptive au...