nizhikov commented on code in PR #10116:
URL: https://github.com/apache/ignite/pull/10116#discussion_r910788017


##########
modules/control-utility/src/main/java/org/apache/ignite/internal/commandline/indexreader/IgniteIndexReader.java:
##########
@@ -229,7 +283,18 @@ public IgniteIndexReader(
         partStores = new FilePageStore[partCnt];
 
         for (int i = 0; i < partCnt; i++)
-            partStores[i] = filePageStoreFactory.createFilePageStore(i, 
FLAG_DATA);
+            partStores[i] = filePageStore(i, FLAG_DATA, storeFactory);
+
+        Arrays.stream(root.listFiles(f -> 
f.getName().endsWith(CACHE_DATA_FILENAME))).forEach(f -> {
+            try (ObjectInputStream stream = new 
ObjectInputStream(Files.newInputStream(f.toPath()))) {

Review Comment:
   `JdkMarshaller` seems Ignite node specific class. It seems we can leverage 
on regular serialization here



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to