sk0x50 commented on a change in pull request #394:
URL: https://github.com/apache/ignite-3/pull/394#discussion_r727193929
##########
File path:
examples/src/main/java/org/apache/ignite/example/table/RecordViewExample.java
##########
@@ -36,23 +36,30 @@
* <ol>
* <li>Import the examples project into you IDE.</li>
* <li>
- * (optional) Run one or more standalone nodes using the CLI tool:<br>
- * {@code ignite node start
--config=$IGNITE_HOME/examples/config/ignite-config.json node-1}<br>
- * {@code ignite node start
--config=$IGNITE_HOME/examples/config/ignite-config.json node-2}<br>
- * {@code ...}<br>
-* {@code ignite node start
--config=$IGNITE_HOME/examples/config/ignite-config.json node-n}<br>
+ * Start a server node using the CLI tool:<br>
+ * {@code ignite node start
--config=$IGNITE_HOME/examples/config/ignite-config.json my-first-node}
* </li>
* <li>Run the example in the IDE.</li>
* </ol>
*/
public class RecordViewExample {
public static void main(String[] args) throws Exception {
+
//--------------------------------------------------------------------------------------
+ //
+ // Starting a server node.
+ //
+ // NOTE: An embedded server node is only needed to invoke the
'createTable' API.
+ // In the future releases, this API will be available on the
client,
+ // eliminating the need to start an embedded server node in this
example.
+ //
+
//--------------------------------------------------------------------------------------
+
System.out.println("Starting a server node... Logging to file:
ignite.log");
Review comment:
```suggestion
System.out.println("Starting a server node... Logging to file:
example-node.log");
```
--
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]