This is an automated email from the ASF dual-hosted git repository. ivandasch pushed a commit to branch ignite-2.13 in repository https://gitbox.apache.org/repos/asf/ignite.git
The following commit(s) were added to refs/heads/ignite-2.13 by this push: new 51c8ff1c2fa IGNITE-16876 Add instruction for building release with NUMA allocator (#9989) 51c8ff1c2fa is described below commit 51c8ff1c2fa61fe7b375179bb65894d1422a5da5 Author: Ivan Daschinskiy <ivanda...@apache.org> AuthorDate: Wed Apr 20 16:09:37 2022 +0300 IGNITE-16876 Add instruction for building release with NUMA allocator (#9989) (cherry picked from commit d661e389532c8c72d67137aaae264db80c0d94fc) --- DEVNOTES.txt | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/DEVNOTES.txt b/DEVNOTES.txt index 7cd6f119ec0..4f6a3a58de0 100644 --- a/DEVNOTES.txt +++ b/DEVNOTES.txt @@ -64,6 +64,30 @@ Apache Ignite with LGPL Maven Build Instructions Look for apache-ignite-lgpl-<version>-bin.zip in ./target/bin directory. +Apache Ignite with NUMA allocator Build Instructions (Linux only) +================================================ +1) Install dependencies as described at modules/numa-allocator/README.md. + +2) Compile and install: + + ./mvnw clean install -Pall-java,licenses -DskipTests + + or if you have built Apache Ignite.NET on the first step use following command: + (Note that 'doxygen' should be installed before running this command.) + + ./mvnw clean install -Pall-java,licenses -DskipTests -DclientDocs + +3) Javadoc generation with NUMA allocator (optional): + + ./mvnw initialize -Pjavadoc,numa-allocator + +4) Build Apache Ignite assembly with NUMA allocator: + + ./mvnw initialize -Prelease,numa-allocator + + Look for apache-ignite-<version>-bin.zip in ./target/bin directory. + + Ignite C++ Build Instructions ============================= Instructions can be found at modules/platforms/cpp/DEVNOTES.txt.