tkalkirill commented on code in PR #2682:
URL: https://github.com/apache/ignite-3/pull/2682#discussion_r1356653436
##########
modules/table/src/main/java/org/apache/ignite/internal/table/distributed/index/IndexBuilder.java:
##########
@@ -43,12 +46,23 @@
import org.apache.ignite.network.ClusterNode;
/**
- * Class for managing the building of table indexes.
+ * Component that is responsible for building an index for a specific
partition.
+ *
+ * <p>Approximate index building algorithm:</p>
+ * <ul>
+ * <li>If the index has not yet been built ({@link
IndexStorage#getNextRowIdToBuild()} {@code != null}) or is not in the process of
+ * being built, then an asynchronous task is added to build it.</li>
+ * <li>Index building task generates batches of {@link RowId} (by using
{@link IndexStorage#getNextRowIdToBuild()}) and sends this batch
Review Comment:
fix it
--
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]