You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by na...@apache.org on 2021/04/07 07:45:31 UTC

[ignite-extensions] branch ignite-performance-statistics-ext-1.0.0 created (now b992d97)

This is an automated email from the ASF dual-hosted git repository.

namelchev pushed a change to branch ignite-performance-statistics-ext-1.0.0
in repository https://gitbox.apache.org/repos/asf/ignite-extensions.git.


      at b992d97  Release ignite-performance-statistics-ext extension v.1.0.0

This branch includes the following new commits:

     new 19c6ef5  IGNITE-14433 Update README file for the performance statistics extension (#52)
     new 3dff9f4  IGNITE-14456 Change copyrights to 2021 (#53)
     new effeead  IGNITE-14480 Add release notes for performance-statistics-ext, spring-data*-ext, spring-tx-ext extensions 1.0.0 version (#54)
     new b992d97  Release ignite-performance-statistics-ext extension v.1.0.0

The 4 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


[ignite-extensions] 02/04: IGNITE-14456 Change copyrights to 2021 (#53)

Posted by na...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

namelchev pushed a commit to branch ignite-performance-statistics-ext-1.0.0
in repository https://gitbox.apache.org/repos/asf/ignite-extensions.git

commit 3dff9f453bf780c2efd86428119b77361a15fd08
Author: Nikita Amelchev <ns...@gmail.com>
AuthorDate: Thu Apr 1 14:03:32 2021 +0300

    IGNITE-14456 Change copyrights to 2021 (#53)
    
    (cherry picked from commit 800ed9d1676bd49423915dc75dd2acf2e3ed9bdf)
---
 NOTICE                                                     |  2 +-
 .../springdata20/repository/query/DeclaredQuery.java       | 12 +++++++-----
 .../springdata20/repository/query/EmptyDeclaredQuery.java  | 12 +++++++-----
 .../repository/query/ExpressionBasedStringQuery.java       | 12 +++++++-----
 .../ignite/springdata20/repository/query/QueryUtils.java   | 12 +++++++-----
 .../ignite/springdata20/repository/query/StringQuery.java  | 12 +++++++-----
 .../springdata20/repository/query/spel/SpelEvaluator.java  | 14 ++++++++------
 .../repository/query/spel/SpelQueryContext.java            | 14 ++++++++------
 .../springdata22/repository/query/DeclaredQuery.java       | 12 +++++++-----
 .../springdata22/repository/query/EmptyDeclaredQuery.java  | 12 +++++++-----
 .../repository/query/ExpressionBasedStringQuery.java       | 12 +++++++-----
 .../ignite/springdata22/repository/query/QueryUtils.java   | 12 +++++++-----
 .../ignite/springdata22/repository/query/StringQuery.java  | 12 +++++++-----
 13 files changed, 87 insertions(+), 63 deletions(-)

diff --git a/NOTICE b/NOTICE
index 84204dd..f7eb3cb 100644
--- a/NOTICE
+++ b/NOTICE
@@ -1,5 +1,5 @@
 Apache Ignite Extensions
-Copyright 2019 The Apache Software Foundation
+Copyright 2021 The Apache Software Foundation
 
 This product includes software developed at
 The Apache Software Foundation (http://www.apache.org/).
diff --git a/modules/spring-data-2.0-ext/src/main/java/org/apache/ignite/springdata20/repository/query/DeclaredQuery.java b/modules/spring-data-2.0-ext/src/main/java/org/apache/ignite/springdata20/repository/query/DeclaredQuery.java
index 297d35c..fa5043d 100644
--- a/modules/spring-data-2.0-ext/src/main/java/org/apache/ignite/springdata20/repository/query/DeclaredQuery.java
+++ b/modules/spring-data-2.0-ext/src/main/java/org/apache/ignite/springdata20/repository/query/DeclaredQuery.java
@@ -1,9 +1,10 @@
 /*
- * Copyright 2018-2019 the original author or authors.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
  *
  *      http://www.apache.org/licenses/LICENSE-2.0
  *
@@ -13,6 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.apache.ignite.springdata20.repository.query;
 
 import java.util.List;
diff --git a/modules/spring-data-2.0-ext/src/main/java/org/apache/ignite/springdata20/repository/query/EmptyDeclaredQuery.java b/modules/spring-data-2.0-ext/src/main/java/org/apache/ignite/springdata20/repository/query/EmptyDeclaredQuery.java
index 34fdb8c..4714f38 100644
--- a/modules/spring-data-2.0-ext/src/main/java/org/apache/ignite/springdata20/repository/query/EmptyDeclaredQuery.java
+++ b/modules/spring-data-2.0-ext/src/main/java/org/apache/ignite/springdata20/repository/query/EmptyDeclaredQuery.java
@@ -1,9 +1,10 @@
 /*
- * Copyright 2018-2019 the original author or authors.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
  *
  *      http://www.apache.org/licenses/LICENSE-2.0
  *
@@ -13,6 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.apache.ignite.springdata20.repository.query;
 
 import java.util.Collections;
diff --git a/modules/spring-data-2.0-ext/src/main/java/org/apache/ignite/springdata20/repository/query/ExpressionBasedStringQuery.java b/modules/spring-data-2.0-ext/src/main/java/org/apache/ignite/springdata20/repository/query/ExpressionBasedStringQuery.java
index b7559a5..b1115ae 100644
--- a/modules/spring-data-2.0-ext/src/main/java/org/apache/ignite/springdata20/repository/query/ExpressionBasedStringQuery.java
+++ b/modules/spring-data-2.0-ext/src/main/java/org/apache/ignite/springdata20/repository/query/ExpressionBasedStringQuery.java
@@ -1,9 +1,10 @@
 /*
- * Copyright 2013-2019 the original author or authors.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
  *
  *      http://www.apache.org/licenses/LICENSE-2.0
  *
@@ -13,6 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.apache.ignite.springdata20.repository.query;
 
 import java.util.regex.Pattern;
diff --git a/modules/spring-data-2.0-ext/src/main/java/org/apache/ignite/springdata20/repository/query/QueryUtils.java b/modules/spring-data-2.0-ext/src/main/java/org/apache/ignite/springdata20/repository/query/QueryUtils.java
index c586770..a44ae6c 100644
--- a/modules/spring-data-2.0-ext/src/main/java/org/apache/ignite/springdata20/repository/query/QueryUtils.java
+++ b/modules/spring-data-2.0-ext/src/main/java/org/apache/ignite/springdata20/repository/query/QueryUtils.java
@@ -1,9 +1,10 @@
 /*
- * Copyright 2008-2019 the original author or authors.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
  *
  *      http://www.apache.org/licenses/LICENSE-2.0
  *
@@ -13,6 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.apache.ignite.springdata20.repository.query;
 
 import java.util.HashSet;
diff --git a/modules/spring-data-2.0-ext/src/main/java/org/apache/ignite/springdata20/repository/query/StringQuery.java b/modules/spring-data-2.0-ext/src/main/java/org/apache/ignite/springdata20/repository/query/StringQuery.java
index 7280276..40752b5 100644
--- a/modules/spring-data-2.0-ext/src/main/java/org/apache/ignite/springdata20/repository/query/StringQuery.java
+++ b/modules/spring-data-2.0-ext/src/main/java/org/apache/ignite/springdata20/repository/query/StringQuery.java
@@ -1,9 +1,10 @@
 /*
- * Copyright 2013-2019 the original author or authors.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
  *
  *      http://www.apache.org/licenses/LICENSE-2.0
  *
@@ -13,6 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.apache.ignite.springdata20.repository.query;
 
 import java.lang.reflect.Array;
diff --git a/modules/spring-data-2.0-ext/src/main/java/org/apache/ignite/springdata20/repository/query/spel/SpelEvaluator.java b/modules/spring-data-2.0-ext/src/main/java/org/apache/ignite/springdata20/repository/query/spel/SpelEvaluator.java
index 1c30673..c442b68 100644
--- a/modules/spring-data-2.0-ext/src/main/java/org/apache/ignite/springdata20/repository/query/spel/SpelEvaluator.java
+++ b/modules/spring-data-2.0-ext/src/main/java/org/apache/ignite/springdata20/repository/query/spel/SpelEvaluator.java
@@ -1,11 +1,12 @@
 /*
- * Copyright 2018-2019 the original author or authors.
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
  *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      https://www.apache.org/licenses/LICENSE-2.0
+ *      http://www.apache.org/licenses/LICENSE-2.0
  *
  * Unless required by applicable law or agreed to in writing, software
  * distributed under the License is distributed on an "AS IS" BASIS,
@@ -13,6 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.apache.ignite.springdata20.repository.query.spel;
 
 import java.util.Map;
diff --git a/modules/spring-data-2.0-ext/src/main/java/org/apache/ignite/springdata20/repository/query/spel/SpelQueryContext.java b/modules/spring-data-2.0-ext/src/main/java/org/apache/ignite/springdata20/repository/query/spel/SpelQueryContext.java
index 40de67a..44bfec8 100644
--- a/modules/spring-data-2.0-ext/src/main/java/org/apache/ignite/springdata20/repository/query/spel/SpelQueryContext.java
+++ b/modules/spring-data-2.0-ext/src/main/java/org/apache/ignite/springdata20/repository/query/spel/SpelQueryContext.java
@@ -1,11 +1,12 @@
 /*
- * Copyright 2018-2019 the original author or authors.
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
  *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      https://www.apache.org/licenses/LICENSE-2.0
+ *      http://www.apache.org/licenses/LICENSE-2.0
  *
  * Unless required by applicable law or agreed to in writing, software
  * distributed under the License is distributed on an "AS IS" BASIS,
@@ -13,6 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.apache.ignite.springdata20.repository.query.spel;
 
 import java.util.ArrayList;
diff --git a/modules/spring-data-2.2-ext/src/main/java/org/apache/ignite/springdata22/repository/query/DeclaredQuery.java b/modules/spring-data-2.2-ext/src/main/java/org/apache/ignite/springdata22/repository/query/DeclaredQuery.java
index 74ab2cc..dad35e2 100644
--- a/modules/spring-data-2.2-ext/src/main/java/org/apache/ignite/springdata22/repository/query/DeclaredQuery.java
+++ b/modules/spring-data-2.2-ext/src/main/java/org/apache/ignite/springdata22/repository/query/DeclaredQuery.java
@@ -1,9 +1,10 @@
 /*
- * Copyright 2018-2019 the original author or authors.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
  *
  *      http://www.apache.org/licenses/LICENSE-2.0
  *
@@ -13,6 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.apache.ignite.springdata22.repository.query;
 
 import java.util.List;
diff --git a/modules/spring-data-2.2-ext/src/main/java/org/apache/ignite/springdata22/repository/query/EmptyDeclaredQuery.java b/modules/spring-data-2.2-ext/src/main/java/org/apache/ignite/springdata22/repository/query/EmptyDeclaredQuery.java
index 7803537..6f697a2 100644
--- a/modules/spring-data-2.2-ext/src/main/java/org/apache/ignite/springdata22/repository/query/EmptyDeclaredQuery.java
+++ b/modules/spring-data-2.2-ext/src/main/java/org/apache/ignite/springdata22/repository/query/EmptyDeclaredQuery.java
@@ -1,9 +1,10 @@
 /*
- * Copyright 2018-2019 the original author or authors.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
  *
  *      http://www.apache.org/licenses/LICENSE-2.0
  *
@@ -13,6 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.apache.ignite.springdata22.repository.query;
 
 import java.util.Collections;
diff --git a/modules/spring-data-2.2-ext/src/main/java/org/apache/ignite/springdata22/repository/query/ExpressionBasedStringQuery.java b/modules/spring-data-2.2-ext/src/main/java/org/apache/ignite/springdata22/repository/query/ExpressionBasedStringQuery.java
index bdbd81d..9279da7 100644
--- a/modules/spring-data-2.2-ext/src/main/java/org/apache/ignite/springdata22/repository/query/ExpressionBasedStringQuery.java
+++ b/modules/spring-data-2.2-ext/src/main/java/org/apache/ignite/springdata22/repository/query/ExpressionBasedStringQuery.java
@@ -1,9 +1,10 @@
 /*
- * Copyright 2013-2019 the original author or authors.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
  *
  *      http://www.apache.org/licenses/LICENSE-2.0
  *
@@ -13,6 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.apache.ignite.springdata22.repository.query;
 
 import java.util.regex.Pattern;
diff --git a/modules/spring-data-2.2-ext/src/main/java/org/apache/ignite/springdata22/repository/query/QueryUtils.java b/modules/spring-data-2.2-ext/src/main/java/org/apache/ignite/springdata22/repository/query/QueryUtils.java
index 711d297..90cc292 100644
--- a/modules/spring-data-2.2-ext/src/main/java/org/apache/ignite/springdata22/repository/query/QueryUtils.java
+++ b/modules/spring-data-2.2-ext/src/main/java/org/apache/ignite/springdata22/repository/query/QueryUtils.java
@@ -1,9 +1,10 @@
 /*
- * Copyright 2008-2019 the original author or authors.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
  *
  *      http://www.apache.org/licenses/LICENSE-2.0
  *
@@ -13,6 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.apache.ignite.springdata22.repository.query;
 
 import java.util.HashSet;
diff --git a/modules/spring-data-2.2-ext/src/main/java/org/apache/ignite/springdata22/repository/query/StringQuery.java b/modules/spring-data-2.2-ext/src/main/java/org/apache/ignite/springdata22/repository/query/StringQuery.java
index 8957e69..01af166 100644
--- a/modules/spring-data-2.2-ext/src/main/java/org/apache/ignite/springdata22/repository/query/StringQuery.java
+++ b/modules/spring-data-2.2-ext/src/main/java/org/apache/ignite/springdata22/repository/query/StringQuery.java
@@ -1,9 +1,10 @@
 /*
- * Copyright 2013-2019 the original author or authors.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
  *
  *      http://www.apache.org/licenses/LICENSE-2.0
  *
@@ -13,6 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.apache.ignite.springdata22.repository.query;
 
 import java.lang.reflect.Array;

[ignite-extensions] 03/04: IGNITE-14480 Add release notes for performance-statistics-ext, spring-data*-ext, spring-tx-ext extensions 1.0.0 version (#54)

Posted by na...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

namelchev pushed a commit to branch ignite-performance-statistics-ext-1.0.0
in repository https://gitbox.apache.org/repos/asf/ignite-extensions.git

commit effeeadadf736e80951579142e6e76e451d9f4aa
Author: Nikita Amelchev <ns...@gmail.com>
AuthorDate: Mon Apr 5 19:32:38 2021 +0300

    IGNITE-14480 Add release notes for performance-statistics-ext, spring-data*-ext, spring-tx-ext extensions 1.0.0 version (#54)
    
    (cherry picked from commit c8de80ee14d1fb76d6cbb0b18513bb70b499c3cb)
---
 RELEASE_NOTES.txt | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/RELEASE_NOTES.txt b/RELEASE_NOTES.txt
index 8451780..22f8d66 100644
--- a/RELEASE_NOTES.txt
+++ b/RELEASE_NOTES.txt
@@ -1,6 +1,34 @@
 Apache Ignite Extensions Release Notes
 ===========================
 
+Apache Ignite Performance Statistics Module 1.0
+-------------------------------------
+
+* Added the tool to build the cluster performance report
+* Added the utility to print performance statistics operations to a console or to a file in JSON format
+
+
+Apache Ignite Spring Data Modules 1.0
+-------------------------------------
+
+* Added the ability to connect to the Ignite cluster through the Ignite thin client for the Spring Data extensions
+* Fixed closing of Spring Data Ignite resources after destroying the Spring context if they were automatically started by the manager
+
+The following integrations were migrated to the Apache Ignite Extensions repository:
+* Spring Data 2.2 extension
+* Spring Data 2.0 extension
+* Spring Data extension
+
+
+Apache Ignite Spring Transactions Module 1.0
+-------------------------------------
+
+* Added the ability to connect to the Ignite cluster through the Ignite thin client
+
+The following integration was migrated to the Apache Ignite Extensions repository:
+* Spring Transactions extension
+
+
 Apache Ignite Streamer Extension Modules 1.0
 -------------------------------------
 The following integrations were migrated the Apache Ignite Extensions repository:

[ignite-extensions] 01/04: IGNITE-14433 Update README file for the performance statistics extension (#52)

Posted by na...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

namelchev pushed a commit to branch ignite-performance-statistics-ext-1.0.0
in repository https://gitbox.apache.org/repos/asf/ignite-extensions.git

commit 19c6ef5b2e2c043b2a087963af21e4c1b8f1b83d
Author: Nikita Amelchev <ns...@gmail.com>
AuthorDate: Tue Mar 30 16:45:59 2021 +0300

    IGNITE-14433 Update README file for the performance statistics extension (#52)
    
    (cherry picked from commit 341033c61022b2c888529283be9700ac2b9cfd32)
---
 modules/performance-statistics-ext/README.txt | 19 ++++++++++++++++++-
 1 file changed, 18 insertions(+), 1 deletion(-)

diff --git a/modules/performance-statistics-ext/README.txt b/modules/performance-statistics-ext/README.txt
index 2d53515..f4c4ccb 100644
--- a/modules/performance-statistics-ext/README.txt
+++ b/modules/performance-statistics-ext/README.txt
@@ -6,6 +6,8 @@ Apache Ignite Performance Statistics module provides the tool to collect perform
 Cluster nodes collect performance statistics to the files placed under 'Ignite_work_directory/perf_stat/'.
 Performance statistics files are used to build the report offline.
 
+Building the Report
+---------------------------
 To collect statistics in runtime and to build the performance report follow:
 
 1) Start collecting performance statistics (use IgnitePerformanceStatisticsMBean JMX bean).
@@ -22,8 +24,23 @@ To collect statistics in runtime and to build the performance report follow:
 
         performance-statistics/build-report.sh path_to_files
 
-    to build the performance report. It will be created in the new directory under the performance statistics files path:
+    to build the performance report. It will be created in the new directory under the performance statistics files:
 
         path_to_files/report_yyyy-MM-dd_HH-mm-ss/
 
     Open 'report_yyyy-MM-dd_HH-mm-ss/index.html' in the browser to see the report.
+
+Print statistics
+---------------------------
+Ignite provides a tool to print statistics to a console or to a file in JSON format.
+
+Run the script from the release package of the tool to print statistics:
+
+    performance-statistics-tool/print-statistics.sh path_to_files
+
+Note that `path_to_files` is a path to the performance statistics file or files directory.
+
+The script provides the ability to filter operations by operation's type, time, or cache. For more details run the
+help command:
+
+    performance-statistics-tool/print-statistics.sh --help

[ignite-extensions] 04/04: Release ignite-performance-statistics-ext extension v.1.0.0

Posted by na...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

namelchev pushed a commit to branch ignite-performance-statistics-ext-1.0.0
in repository https://gitbox.apache.org/repos/asf/ignite-extensions.git

commit b992d9758278c38e93b375b08e4052954744a436
Author: NSAmelchev <ns...@gmail.com>
AuthorDate: Wed Apr 7 10:45:15 2021 +0300

    Release ignite-performance-statistics-ext extension v.1.0.0
---
 modules/performance-statistics-ext/pom.xml | 2 +-
 parent/pom.xml                             | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/modules/performance-statistics-ext/pom.xml b/modules/performance-statistics-ext/pom.xml
index e9e7adf..45f398d 100644
--- a/modules/performance-statistics-ext/pom.xml
+++ b/modules/performance-statistics-ext/pom.xml
@@ -32,7 +32,7 @@
     </parent>
 
     <artifactId>ignite-performance-statistics-ext</artifactId>
-    <version>1.0.0-SNAPSHOT</version>
+    <version>1.0.0</version>
     <url>http://ignite.apache.org</url>
 
     <properties>
diff --git a/parent/pom.xml b/parent/pom.xml
index 7492556..44f26df 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -36,7 +36,7 @@
         <maven.compiler.source>1.8</maven.compiler.source>
         <maven.compiler.target>1.8</maven.compiler.target>
 
-        <ignite.version>2.11.0-SNAPSHOT</ignite.version>
+        <ignite.version>2.10.0</ignite.version>
 
         <ignite.edition>apache-ignite</ignite.edition>
         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>