8
8
import org .kohsuke .args4j .CmdLineParser ;
9
9
import org .kohsuke .args4j .CmdLineException ;
10
10
11
+ /**
12
+ * DataGenerator is the main method and entry point for the kafka-data-gen application, The DataGenerator will:
13
+ * <ul>
14
+ * <li> Read and Parse in command line values</li>
15
+ * <li> Set any default values for parameters</li>
16
+ * <li> Create all threads needed and loop till finished</li>
17
+ * <li> Output metrics on program complete.</li>
18
+ * </ul>
19
+ *
20
+ * @author Don Tregonning (dtregonning)
21
+ * @version 1.0
22
+ * @since 1.0
23
+ */
11
24
public class DataGenerator {
12
- private static Logger logger = LogManager .getLogger (DataGenerator .class );
25
+ private static final Logger logger = LogManager .getLogger (DataGenerator .class );
13
26
14
27
public static void main (String [] args ) {
15
28
logger .info ("Starting Kafka Data Generator" );
29
+
16
30
CommandLineParams params = new CommandLineParams ();
17
31
CmdLineParser parser = new CmdLineParser (params );
18
32
@@ -22,28 +36,40 @@ public static void main(String[] args) {
22
36
} catch (CmdLineException e ) {
23
37
logger .error (e .getMessage ());
24
38
parser .printUsage (System .err );
39
+ System .exit (2 );
25
40
}
26
41
27
- Properties props = new Properties ();
28
- props = parseKafkaArguments (params , props );
42
+ // Check for required parameters
43
+ if (params .bootStrapServers == null || params .topic == null ){
44
+ logger .error ("Missing required commandline parameter - quiting kafka-data-gen - Exit Status 1" );
45
+ System .exit (1 );
46
+ }
29
47
30
- long startTime = System .currentTimeMillis ();
48
+ //Set defaults for non required params. And log printout of value default or configured
49
+ if (params .workerThreadCount == null ) { params .workerThreadCount = "4" ;}
50
+ if (params .eps == null ) { params .eps = "0" ;}
51
+ if (params .messageSize == null ) { params .messageSize = "256" ;}
52
+ if (params .messageCount == null ) { params .messageSize = "10000" ;}
53
+ logger .info (params );
31
54
32
- int workers ;
33
- if (params .workerThreadCount != null ) {
34
- workers = Integer .parseInt (params .workerThreadCount );
35
- }else {
36
- workers = 4 ;
37
- }
38
- logger .info ("Worker count configured to: " + workers );
55
+ //Create and configure Kafka Producer variables. Store in Properties object
56
+ Properties props = new Properties ();
57
+ props = parseKafkaArguments (params , props );
39
58
40
59
EPSToken epsToken = new EPSToken ();
60
+
61
+ /* Thread Implementation.
62
+ * RefreshTokenThread will be used to throttle and control message creation. If a token is not available at a
63
+ * given time a message cannot be created and sent. By using tokens we can control throughput. This thread will
64
+ * refresh tokens. Logic implemented in EPSToken().
65
+ * MetricsCalculatorThread is responsible for periodically reporting metrics to the log file.
66
+ * WorkThreads - create, bacth and sent events to a Kafka topic.
67
+ * */
41
68
EPSThread thread_01 = new EPSThread ("RefreshTokenThread" , epsToken , props , params );
42
69
EPSThread thread_02 = new EPSThread ("MetricsCalculatorThread" , epsToken , props , params );
70
+ EPSThread [] epsThreadArray = new EPSThread [Integer .parseInt (params .workerThreadCount )];
43
71
44
-
45
-
46
- EPSThread [] epsThreadArray = new EPSThread [workers ];
72
+ long startTime = System .currentTimeMillis ();
47
73
48
74
for (int i = 0 ; i < epsThreadArray .length ; i ++) {
49
75
String threadName = "WorkerThread-" + i ;
@@ -60,8 +86,11 @@ public static void main(String[] args) {
60
86
}
61
87
62
88
long elapsedTime = System .currentTimeMillis () - startTime ;
89
+
90
+ // Program Exit statistics
63
91
logger .info (epsToken .getMessageKey () + " messages created and sent in " + (elapsedTime / 1000 ) + " seconds" );
64
92
logger .info ("Events Per Second of " + (long )(epsToken .getMessageKey ())/(elapsedTime / 1000 ));
93
+ logger .info ("Program run and complete without interruption" );
65
94
}
66
95
67
96
public static Properties parseKafkaArguments (CommandLineParams params , Properties props ) {
0 commit comments