Github user fhueske commented on a diff in the pull request:
https://github.com/apache/flink/pull/1581#discussion_r52496167
--- Diff:
flink-examples/flink-examples-batch/src/main/java/org/apache/flink/examples/java/clustering/KMeans.java
---
@@ -61,42 +62,46 @@
* <li>Cluster centers are represented by an integer id and a point
value.<br>
* For example <code>"1 6.2 3.2\n2 2.9 5.7\n"</code> gives two centers
(id=1, x=6.2, y=3.2) and (id=2, x=2.9, y=5.7).
* </ul>
- *
+ *
* <p>
- * Usage: <code>KMeans <points path> <centers path> <result
path> <num iterations></code><br>
- * If no parameters are provided, the program is run with default data
from {@link org.apache.flink.examples.java.clustering.util.KMeansData} and 10
iterations.
- *
+ * Usage: <code>KMeans --points <path> --centroids <path>
--output <path> --iterations <n></code><br>
+ * If no parameters are provided, the program is run with default data
from {@link org.apache.flink.examples.java.clustering.util.KMeansData} and 10
iterations.
+ *
* <p>
* This example shows how to use:
* <ul>
* <li>Bulk iterations
* <li>Broadcast variables in bulk iterations
- * <li>Custom Java objects (PoJos)
+ * <li>Custom Java objects (POJOs)
* </ul>
*/
@SuppressWarnings("serial")
public class KMeans {
-
- //
*************************************************************************
- // PROGRAM
- //
*************************************************************************
-
+
public static void main(String[] args) throws Exception {
-
- if(!parseParameters(args)) {
- return;
+
+ // Checking input parameters
+ final ParameterTool params = ParameterTool.fromArgs(args);
+ if (params.getNumberOfParameters() < 4) {
--- End diff --
Otherwise we will use the file input if a user provides only the --points
parameter although the printed message says differently.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---