Skip to main content

Posts

Showing posts with the label apacheignite

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 learn...

Unboxing of the first copy of the book High performance in-memory computing with Apache Ignite

Yesterday I have got the first paperback version of the book High performance in-memory computing with Apache Ignite  The book is available at Lulu.com & Amazon bookstore. Product details Paperback:  360 pages Language:  English ISBN-10:  1365732355 ISBN-13:  978-1365732355 Product Dimensions:  8.3 x 0.8 x 11 inches Shipping Weight:  1.8 pounds Happy reading!!

Book: High performance in-memory computing with Apache Ignite has been published

The book " High performance in-memory computing with apache Ignite " has been released and available at http://leanpub.com/ignite Print copy of the book is available at  Lulu.com  &  Amazon  bookstore. UP1: NOW the book is available for purchase from the Russian federation through PayPal (Ignore the yellow warning). The goal of the book is to provide a guide for those who really need to implement the In-memory platform in their projects. At the same time, the idea behind the book is not writing a manual. This book wraps all the topics like in-memory data grid, highly available service grid, streaming and in-memory computing use cases from high-performance computing to get the performance gain. The book will be particularly useful for those, who have the following use cases: You have database bottleneck in your application and want to solve the problem. You have a high volume of ACID transactions in your system. You want to develop and deploy m...

Apache Ignite with JPA : A missing element

A new version of using Hibernate OGM described in the  The Apache Ignite book . If it got you interested, check out the rest of the book for more helpful information. Often the first step to developing an Enterprise information system is creating the domain model, that is, listing the entities in the domain and defining the relationships between them. A domain model is a conceptual image of the problem your system is trying to solve. Domain model elements can be linked by relationships. Usually, relational objects are represented in a tabular format, while application object model are represented in an interconnected graph of the object format. While storing and retrieving an object model from the relational database, a few mismatch occurs such as Granularity, SubTypes etc. To solve the mismatches between relational and object model, JPA provides a collection of APIs and methods to manipulates with the persistence store. The JPA specification only defines relational database a...

Black Friday discount on High performance in-memory computing with Apache Ignite

Black Friday discount on High-performance in-memory computing with Apache Ignite. 40% discount https://leanpub.com/ignite/c/MKU2EsYCj6nN

Tip: SQL client for Apache Ignite cache

A new SQL client configuration described in  The Apache Ignite book . If it got you interested, check out the rest of the book for more helpful information. Apache Ignite provides SQL queries execution on the caches, SQL syntax is an ANSI-99 compliant. Therefore, you can execute SQL queries against any caches from any SQL client which supports JDBC thin client. This section is for those, who feels comfortable with SQL rather than execute a bunch of code to retrieve data from the cache. Apache Ignite out of the box shipped with JDBC driver that allows you to connect to Ignite caches and retrieve distributed data from the cache using standard SQL queries. Rest of the section of this chapter will describe how to connect SQL IDE (Integrated Development Environment) to Ignite cache and executes some SQL queries to play with the data. SQL IDE or SQL editor can simplify the development process and allow you to get productive much quicker. Most database vendors have their own fron...