This is an automated email from the ASF dual-hosted git repository. amashenkov pushed a commit to branch gg-17462 in repository https://gitbox.apache.org/repos/asf/ignite.git
commit bb2905dd86113d2b79c8293f4fa62571db9c941e Author: mstepachev <[email protected]> AuthorDate: Tue Apr 16 19:38:51 2019 +0300 Additional Readme --- .../src/main/java/org/apache/ignite/internal/README.md | 14 +++++++------- .../java/org/apache/ignite/internal/processors/README.md | 6 +++--- .../org/apache/ignite/internal/processors/cache/README.md | 6 +++--- .../ignite/internal/processors/cache/persistence/README.md | 4 ++-- .../processors/cache/persistence/pagemem/README.md | 4 ++-- modules/dev-utils/ignite-modules-test/README.md | 8 ++++---- modules/direct-io/README.md | 10 +++++----- 7 files changed, 26 insertions(+), 26 deletions(-) diff --git a/modules/core/src/main/java/org/apache/ignite/internal/README.md b/modules/core/src/main/java/org/apache/ignite/internal/README.md index 0ed8639..380e498 100644 --- a/modules/core/src/main/java/org/apache/ignite/internal/README.md +++ b/modules/core/src/main/java/org/apache/ignite/internal/README.md @@ -1,19 +1,19 @@ -Apache Ignite Internals +GridGain Internals ----------------------- -Contains implementation classes for Apache Ignite. +Contains implementation classes for GridGain. -### Ignite Components +### GridGain Components -All internal Ignite components implements [GridComponent.java](GridComponent.java) - interface for +All internal GridGain components implements [GridComponent.java](GridComponent.java) - interface for - [processors](processors) and for - [managers](managers) - has associated SPI. -Service Provider Interface (SPI) abbreviation is here because Apache Ignite was designed as a pluggable product. But Ignite users usually do not define own implementations. +Service Provider Interface (SPI) abbreviation is here because GridGain was designed as a pluggable product. But GridGain users usually do not define own implementations. ### Contexts -Ignite manages its components using Context used to access components and binding theirs to each other. -Component-related context in the Apache Ignite is an implementation of [GridKernalContext.java](GridKernalContext.java). +GridGain manages its components using Context used to access components and binding theirs to each other. +Component-related context in the GridGain is an implementation of [GridKernalContext.java](GridKernalContext.java). This context instance is usually referred in code as `kctx` or `ctx`. Higher-level context, cache shared context is also defined in [processors/cache](processors/cache) diff --git a/modules/core/src/main/java/org/apache/ignite/internal/processors/README.md b/modules/core/src/main/java/org/apache/ignite/internal/processors/README.md index 05a1feb..2ecf367 100644 --- a/modules/core/src/main/java/org/apache/ignite/internal/processors/README.md +++ b/modules/core/src/main/java/org/apache/ignite/internal/processors/README.md @@ -1,9 +1,9 @@ -Apache Ignite Processors +GridGain Processors ------------------------ -A processor is Apache Ignite component with the lifecycle. This lifecycle is associated with Ignite Node lifecycle. +A processor is GridGain component with the lifecycle. This lifecycle is associated with GridGain Node lifecycle. -Despite Managers, Ignite processors are not associated with an SPI. +Despite Managers, GridGain processors are not associated with an SPI. Cache Processors and Implementation ----------------------------------- diff --git a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/README.md b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/README.md index 19c5d70..33b0ca8 100644 --- a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/README.md +++ b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/README.md @@ -1,11 +1,11 @@ -Apache Ignite Cache Processors +GridGain Cache Processors ------------------------------ ### Context [GridCacheSharedContext.java](GridCacheSharedContext.java) is a class which is used for binding cache-related managers. This context is shared by all caches defined. This context instance is usually referred in code as `sctx`, `cctx` or `ctx`. ### Native Persistence -Apache Ignite has its own [Native Persistence](persistence) - Implementation +GridGain has its own [Native Persistence](persistence) - Implementation -### Ignite Cache Entries +### GridGain Cache Entries Each entry represended by a subclass [GridCacheMapEntry](GridCacheMapEntry.java) \ No newline at end of file diff --git a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/persistence/README.md b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/persistence/README.md index 372a108..8a7eed2 100644 --- a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/persistence/README.md +++ b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/persistence/README.md @@ -1,6 +1,6 @@ -Apache Ignite Persistence +GridGain Persistence ------------------------- -See Native Persistence introduction in [Ignite Persistent Store - under the hood](https://cwiki.apache.org/confluence/display/IGNITE/Ignite+Persistent+Store+-+under+the+hood) +See Native Persistence introduction in [GridGain Persistent Store - under the hood](https://cwiki.apache.org/confluence/display/IGNITE/GridGain+Persistent+Store+-+under+the+hood) Contents -------- diff --git a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/persistence/pagemem/README.md b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/persistence/pagemem/README.md index 0244d45..e23d772 100644 --- a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/persistence/pagemem/README.md +++ b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/persistence/pagemem/README.md @@ -1,4 +1,4 @@ -Apache Ignite Native Peristence Page Memory +GridGain Native Peristence Page Memory ------------------------------------------- This package contains page memory implementation for case persitence is enabled. @@ -21,7 +21,7 @@ Throttling is implemented at physical level of operations, so it operates not wi For an introduction, please see [wiki PagesWriteThrottling](https://cwiki.apache.org/confluence/display/IGNITE/Ignite+Persistent+Store+-+under+the+hood#IgnitePersistentStore-underthehood-PagesWriteThrottling) -There are two types of throttling implemented in Apache Ignite: +There are two types of throttling implemented in GridGain: * Checkpoint buffer overflow protection. This CP Buffer throttling is enabled by default. It is activated if CP buffer is close to being filled. diff --git a/modules/dev-utils/ignite-modules-test/README.md b/modules/dev-utils/ignite-modules-test/README.md index 3f04de4..2544cb7 100644 --- a/modules/dev-utils/ignite-modules-test/README.md +++ b/modules/dev-utils/ignite-modules-test/README.md @@ -1,6 +1,6 @@ -# Ignite modular environment test project +# GridGain modular environment test project -This project intended for testing Ignite artifacts separately from main project. +This project intended for testing GridGain artifacts separately from main project. ## Local Setup To import project use Import from existing sources, use gradle option: @@ -11,6 +11,6 @@ Use latest gradle distribution, because older versions may not support modules. This project is compatible only with Java 11. -## Used Ignite version -By default this project uses Ignite version of previous released Ignite, but it can be switched to snapshot version if needed. +## Used GridGain version +By default this project uses GridGain version of previous released GridGain, but it can be switched to snapshot version if needed. diff --git a/modules/direct-io/README.md b/modules/direct-io/README.md index ca35214..0e09916 100644 --- a/modules/direct-io/README.md +++ b/modules/direct-io/README.md @@ -1,7 +1,7 @@ -Apache Ignite Direct IO Module +GridGain Direct IO Module ------------------------------ -Apache Ignite Direct IO is plugin, which provides page store with ability to write and read cache partitions +GridGain Direct IO is plugin, which provides page store with ability to write and read cache partitions in O_DIRECT mode. @@ -34,7 +34,7 @@ interested in): <dependencies> ... <dependency> - <groupId>org.apache.ignite</groupId> + <groupId>org.gridgain</groupId> <artifactId>ignite-direct-io</artifactId> <version>${ignite.version}</version> </dependency> @@ -49,13 +49,13 @@ Importing Direct I/O Pluging In Gradle Project For gradle you can add compile dependency, where igniteVersion is actual Ignite version: ```groovy -compile group: 'org.apache.ignite', name: 'ignite-direct-io', version: igniteVersion +compile group: 'org.gridgain', name: 'ignite-direct-io', version: igniteVersion ``` Additional setup is not required. Once plugin is available in classpath, it will be used for Durable Memory IO. ------------------------------------- -See more information in Apache Ignite documentation: +See more information in GridGain documentation: [How to enable Direct IO](https://apacheignite.readme.io/docs/durable-memory-tuning#section-enabling-direct-i-o) and description of internal desing can be found in Wiki:
