-
Notifications
You must be signed in to change notification settings - Fork 0
/
redis.patch
3797 lines (3663 loc) · 216 KB
/
redis.patch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
diff -crbB '--exclude=.svn' '--exclude=command-cloud.sh' '--exclude=create-cloud.sh' '--exclude=end-cloud.sh' '--exclude=flink-bench-2.sh' '--exclude=flink-bench.sh' '--exclude=list-cloud.sh' '--exclude=run-cloud.sh' '--exclude=scp-cloud.sh' '--exclude=spark-bench.sh' '--exclude=start-cloud.sh' '--exclude=stop-cloud.sh' '--exclude=storm-bench-2.sh' '--exclude=storm-bench.sh' '--exclude=streaming-group-0-command-list' '--exclude=streaming-group-0-command-list-2' '--exclude=streaming-group-0-list' streaming-benchmarks_git_compact/apache-storm-0.9.7/conf/storm.yaml streaming-benchmarks/apache-storm-0.9.7/conf/storm.yaml
*** streaming-benchmarks_git_compact/apache-storm-0.9.7/conf/storm.yaml 2016-08-15 19:07:29.000000000 +0000
--- streaming-benchmarks/apache-storm-0.9.7/conf/storm.yaml 2017-03-07 07:49:23.289028096 +0000
***************
*** 15,25 ****
# limitations under the License.
########### These MUST be filled in for a storm configuration
! # storm.zookeeper.servers:
! # - "server1"
! # - "server2"
! #
! # nimbus.host: "nimbus"
#
#
# ##### These may optionally be filled in:
--- 15,41 ----
# limitations under the License.
########### These MUST be filled in for a storm configuration
! storm.zookeeper.servers:
! - "10.140.0.101"
! - "10.140.0.102"
! - "10.140.0.103"
!
! nimbus.host: "10.140.0.110"
! nimbus.seeds: "10.140.0.110"
!
! supervisor.slots.ports:
! - 6700
! - 6701
! - 6702
! - 6703
! # - 6704
! # - 6705
! # - 6706
! # - 6707
! # - 6708
! # - 6709
! # - 6710
! storm.local.dir: "storm-local/streaming-group-0-0004"
#
#
# ##### These may optionally be filled in:
Only in streaming-benchmarks/apache-storm-0.9.7/examples/storm-starter: storm-starter-topologies-0.9.7.jar
Only in streaming-benchmarks/apache-storm-0.9.7/external/storm-hbase: storm-hbase-0.9.7.jar
Only in streaming-benchmarks/apache-storm-0.9.7/external/storm-hdfs: storm-hdfs-0.9.7.jar
Only in streaming-benchmarks/apache-storm-0.9.7/external/storm-kafka: storm-kafka-0.9.7.jar
Only in streaming-benchmarks/apache-storm-0.9.7/lib: asm-4.0.jar
Only in streaming-benchmarks/apache-storm-0.9.7/lib: carbonite-1.4.0.jar
Only in streaming-benchmarks/apache-storm-0.9.7/lib: chill-java-0.3.5.jar
Only in streaming-benchmarks/apache-storm-0.9.7/lib: clj-stacktrace-0.2.2.jar
Only in streaming-benchmarks/apache-storm-0.9.7/lib: clj-time-0.4.1.jar
Only in streaming-benchmarks/apache-storm-0.9.7/lib: clojure-1.5.1.jar
Only in streaming-benchmarks/apache-storm-0.9.7/lib: clout-1.0.1.jar
Only in streaming-benchmarks/apache-storm-0.9.7/lib: commons-codec-1.6.jar
Only in streaming-benchmarks/apache-storm-0.9.7/lib: commons-exec-1.1.jar
Only in streaming-benchmarks/apache-storm-0.9.7/lib: commons-fileupload-1.2.1.jar
Only in streaming-benchmarks/apache-storm-0.9.7/lib: commons-io-2.4.jar
Only in streaming-benchmarks/apache-storm-0.9.7/lib: commons-lang-2.5.jar
Only in streaming-benchmarks/apache-storm-0.9.7/lib: commons-logging-1.1.3.jar
Only in streaming-benchmarks/apache-storm-0.9.7/lib: compojure-1.1.3.jar
Only in streaming-benchmarks/apache-storm-0.9.7/lib: core.incubator-0.1.0.jar
Only in streaming-benchmarks/apache-storm-0.9.7/lib: disruptor-2.10.4.jar
Only in streaming-benchmarks/apache-storm-0.9.7/lib: hiccup-0.3.6.jar
Only in streaming-benchmarks/apache-storm-0.9.7/lib: jetty-6.1.26.jar
Only in streaming-benchmarks/apache-storm-0.9.7/lib: jetty-util-6.1.26.jar
Only in streaming-benchmarks/apache-storm-0.9.7/lib: jgrapht-core-0.9.0.jar
Only in streaming-benchmarks/apache-storm-0.9.7/lib: jline-2.11.jar
Only in streaming-benchmarks/apache-storm-0.9.7/lib: joda-time-2.0.jar
Only in streaming-benchmarks/apache-storm-0.9.7/lib: json-simple-1.1.jar
Only in streaming-benchmarks/apache-storm-0.9.7/lib: kieker-1.12-emf.jar
Only in streaming-benchmarks/apache-storm-0.9.7/lib: kryo-2.21.jar
Only in streaming-benchmarks/apache-storm-0.9.7/lib: libsigar-amd64-linux.so
Only in streaming-benchmarks/apache-storm-0.9.7/lib: log4j-over-slf4j-1.6.6.jar
Only in streaming-benchmarks/apache-storm-0.9.7/lib: logback-classic-1.0.13.jar
Only in streaming-benchmarks/apache-storm-0.9.7/lib: logback-core-1.0.13.jar
Only in streaming-benchmarks/apache-storm-0.9.7/lib: math.numeric-tower-0.0.1.jar
Only in streaming-benchmarks/apache-storm-0.9.7/lib: minlog-1.2.jar
Only in streaming-benchmarks/apache-storm-0.9.7/lib: objenesis-1.2.jar
Only in streaming-benchmarks/apache-storm-0.9.7/lib: reflectasm-1.07-shaded.jar
Only in streaming-benchmarks/apache-storm-0.9.7/lib: ring-core-1.1.5.jar
Only in streaming-benchmarks/apache-storm-0.9.7/lib: ring-devel-0.3.11.jar
Only in streaming-benchmarks/apache-storm-0.9.7/lib: ring-jetty-adapter-0.3.11.jar
Only in streaming-benchmarks/apache-storm-0.9.7/lib: ring-servlet-0.3.11.jar
Only in streaming-benchmarks/apache-storm-0.9.7/lib: servlet-api-2.5.jar
Only in streaming-benchmarks/apache-storm-0.9.7/lib: sigar-1.6.4.jar
Only in streaming-benchmarks/apache-storm-0.9.7/lib: slf4j-api-1.7.5.jar
Only in streaming-benchmarks/apache-storm-0.9.7/lib: snakeyaml-1.11.jar
Only in streaming-benchmarks/apache-storm-0.9.7/lib: storm-core-0.9.7.jar
Only in streaming-benchmarks/apache-storm-0.9.7/lib: tools.cli-0.2.4.jar
Only in streaming-benchmarks/apache-storm-0.9.7/lib: tools.logging-0.2.3.jar
Only in streaming-benchmarks/apache-storm-0.9.7/lib: tools.macro-0.1.0.jar
Only in streaming-benchmarks/apache-storm-0.9.7: logs
diff -crbB '--exclude=.svn' '--exclude=command-cloud.sh' '--exclude=create-cloud.sh' '--exclude=end-cloud.sh' '--exclude=flink-bench-2.sh' '--exclude=flink-bench.sh' '--exclude=list-cloud.sh' '--exclude=run-cloud.sh' '--exclude=scp-cloud.sh' '--exclude=spark-bench.sh' '--exclude=start-cloud.sh' '--exclude=stop-cloud.sh' '--exclude=storm-bench-2.sh' '--exclude=storm-bench.sh' '--exclude=streaming-group-0-command-list' '--exclude=streaming-group-0-command-list-2' '--exclude=streaming-group-0-list' streaming-benchmarks_git_compact/conf/benchmarkConf.yaml streaming-benchmarks/conf/benchmarkConf.yaml
*** streaming-benchmarks_git_compact/conf/benchmarkConf.yaml 2017-06-07 09:17:13.000000000 +0000
--- streaming-benchmarks/conf/benchmarkConf.yaml 2017-03-28 02:40:16.804225859 +0000
***************
*** 2,24 ****
# Licensed under the terms of the Apache License 2.0. Please see LICENSE file in the project root for terms.
kafka.brokers:
! - "localhost"
zookeeper.servers:
! - "localhost"
kafka.port: 9092
zookeeper.port: 2181
! redis.host: "localhost"
kafka.topic: "ad-events"
! kafka.partitions: 1
process.hosts: 1
! process.cores: 4
#STORM Specific
! storm.workers: 1
storm.ackers: 2
#Spark Specific
spark.batchtime: 2000
--- 2,34 ----
# Licensed under the terms of the Apache License 2.0. Please see LICENSE file in the project root for terms.
kafka.brokers:
! - "10.140.0.105"
! - "10.140.0.106"
! - "10.140.0.107"
! - "10.140.0.108"
! - "10.140.0.109"
zookeeper.servers:
! - "10.140.0.101"
! - "10.140.0.102"
! - "10.140.0.103"
kafka.port: 9092
zookeeper.port: 2181
! redis.host: "10.140.0.104"
kafka.topic: "ad-events"
! kafka.partitions: 5
process.hosts: 1
! process.cores: 16
#STORM Specific
! storm.workers: 10
storm.ackers: 2
+ storm.nimbus: "10.140.0.110" # not working?
+
#Spark Specific
spark.batchtime: 2000
+
+ flink.checkpoint-interval: 1000
diff -crbB '--exclude=.svn' '--exclude=command-cloud.sh' '--exclude=create-cloud.sh' '--exclude=end-cloud.sh' '--exclude=flink-bench-2.sh' '--exclude=flink-bench.sh' '--exclude=list-cloud.sh' '--exclude=run-cloud.sh' '--exclude=scp-cloud.sh' '--exclude=spark-bench.sh' '--exclude=start-cloud.sh' '--exclude=stop-cloud.sh' '--exclude=storm-bench-2.sh' '--exclude=storm-bench.sh' '--exclude=streaming-group-0-command-list' '--exclude=streaming-group-0-command-list-2' '--exclude=streaming-group-0-list' streaming-benchmarks_git_compact/conf/localConf.yaml streaming-benchmarks/conf/localConf.yaml
*** streaming-benchmarks_git_compact/conf/localConf.yaml 2017-06-07 09:31:17.000000000 +0000
--- streaming-benchmarks/conf/localConf.yaml 2017-02-09 14:04:59.291179905 +0000
***************
*** 10,16 ****
kafka.topic: "ad-events"
kafka.partitions: 1
process.hosts: 1
! process.cores: 4
storm.workers: 1
storm.ackers: 2
spark.batchtime: 2000
--- 10,16 ----
kafka.topic: "ad-events"
kafka.partitions: 1
process.hosts: 1
! process.cores: 24
storm.workers: 1
storm.ackers: 2
spark.batchtime: 2000
Only in streaming-benchmarks/conf: localConf.yamle
Only in streaming-benchmarks_git_compact/data: project.clj
diff -crbB '--exclude=.svn' '--exclude=command-cloud.sh' '--exclude=create-cloud.sh' '--exclude=end-cloud.sh' '--exclude=flink-bench-2.sh' '--exclude=flink-bench.sh' '--exclude=list-cloud.sh' '--exclude=run-cloud.sh' '--exclude=scp-cloud.sh' '--exclude=spark-bench.sh' '--exclude=start-cloud.sh' '--exclude=stop-cloud.sh' '--exclude=storm-bench-2.sh' '--exclude=storm-bench.sh' '--exclude=streaming-group-0-command-list' '--exclude=streaming-group-0-command-list-2' '--exclude=streaming-group-0-list' streaming-benchmarks_git_compact/data/src/setup/core.clj streaming-benchmarks/data/src/setup/core.clj
*** streaming-benchmarks_git_compact/data/src/setup/core.clj 2017-06-07 09:17:13.000000000 +0000
--- streaming-benchmarks/data/src/setup/core.clj 2017-02-08 09:38:50.617000000 +0000
***************
*** 196,204 ****
t (long (/ t 1000000))]
(if (> t cur)
(Thread/sleep (- t cur))
! (future
! (if (> cur (+ t 100))
! (println "Falling behind by:" (- cur t) "ms"))))
(send p (record "ad-events"
(.getBytes (make-kafka-event-at t with-skew? ads user-ids page-ids)))))))))
--- 196,205 ----
t (long (/ t 1000000))]
(if (> t cur)
(Thread/sleep (- t cur))
! ;;(future
! ;; (if (> cur (+ t 100))
! ;; (println "Falling behind by:" (- cur t) "ms")))
! )
(send p (record "ad-events"
(.getBytes (make-kafka-event-at t with-skew? ads user-ids page-ids)))))))))
Only in streaming-benchmarks/data: target
Only in streaming-benchmarks: download-cache
diff -crbB '--exclude=.svn' '--exclude=command-cloud.sh' '--exclude=create-cloud.sh' '--exclude=end-cloud.sh' '--exclude=flink-bench-2.sh' '--exclude=flink-bench.sh' '--exclude=list-cloud.sh' '--exclude=run-cloud.sh' '--exclude=scp-cloud.sh' '--exclude=spark-bench.sh' '--exclude=start-cloud.sh' '--exclude=stop-cloud.sh' '--exclude=storm-bench-2.sh' '--exclude=storm-bench.sh' '--exclude=streaming-group-0-command-list' '--exclude=streaming-group-0-command-list-2' '--exclude=streaming-group-0-list' streaming-benchmarks_git_compact/flink-1.1.3/conf/flink-conf.yaml streaming-benchmarks/flink-1.1.3/conf/flink-conf.yaml
*** streaming-benchmarks_git_compact/flink-1.1.3/conf/flink-conf.yaml 2016-10-10 14:24:55.000000000 +0000
--- streaming-benchmarks/flink-1.1.3/conf/flink-conf.yaml 2017-03-09 07:56:55.165042859 +0000
***************
*** 25,31 ****
# The JobManager process will use this hostname to bind the listening servers to.
# The TaskManagers will try to connect to the JobManager on that host.
! jobmanager.rpc.address: localhost
# The port where the JobManager's main actor system listens for messages.
--- 25,31 ----
# The JobManager process will use this hostname to bind the listening servers to.
# The TaskManagers will try to connect to the JobManager on that host.
! jobmanager.rpc.address: 10.140.0.110
# The port where the JobManager's main actor system listens for messages.
***************
*** 35,51 ****
# The heap size for the JobManager JVM
! jobmanager.heap.mb: 256
# The heap size for the TaskManager JVM
! taskmanager.heap.mb: 512
!
# The number of task slots that each TaskManager offers. Each slot runs one parallel pipeline.
! taskmanager.numberOfTaskSlots: 1
# Specify whether TaskManager memory should be allocated when starting up (true) or when
# memory is required in the memory manager (false)
--- 35,54 ----
# The heap size for the JobManager JVM
! #jobmanager.heap.mb: 256
! jobmanager.heap.mb: 1024
# The heap size for the TaskManager JVM
! #taskmanager.heap.mb: 512
! #taskmanager.heap.mb: 2048
! taskmanager.heap.mb: 15360
# The number of task slots that each TaskManager offers. Each slot runs one parallel pipeline.
! #taskmanager.numberOfTaskSlots: 64
! taskmanager.numberOfTaskSlots: 16
# Specify whether TaskManager memory should be allocated when starting up (true) or when
# memory is required in the memory manager (false)
***************
*** 68,74 ****
# Flag to specify whether job submission is enabled from the web-based
# runtime monitor. Uncomment to disable.
!
#jobmanager.web.submit.enable: false
--- 71,77 ----
# Flag to specify whether job submission is enabled from the web-based
# runtime monitor. Uncomment to disable.
! #
#jobmanager.web.submit.enable: false
***************
*** 98,104 ****
# The number of buffers for the network stack.
#
! # taskmanager.network.numberOfBuffers: 2048
# Directories for temporary files.
--- 101,111 ----
# The number of buffers for the network stack.
#
! #taskmanager.network.numberOfBuffers: 2048 # 1~33
! #taskmanager.network.numberOfBuffers: 4096 # ~44
! #taskmanager.network.numberOfBuffers: 6144 # ~54
! #taskmanager.network.numberOfBuffers: 6288 # ~55
! taskmanager.network.numberOfBuffers: 6432
# Directories for temporary files.
diff -crbB '--exclude=.svn' '--exclude=command-cloud.sh' '--exclude=create-cloud.sh' '--exclude=end-cloud.sh' '--exclude=flink-bench-2.sh' '--exclude=flink-bench.sh' '--exclude=list-cloud.sh' '--exclude=run-cloud.sh' '--exclude=scp-cloud.sh' '--exclude=spark-bench.sh' '--exclude=start-cloud.sh' '--exclude=stop-cloud.sh' '--exclude=storm-bench-2.sh' '--exclude=storm-bench.sh' '--exclude=streaming-group-0-command-list' '--exclude=streaming-group-0-command-list-2' '--exclude=streaming-group-0-list' streaming-benchmarks_git_compact/flink-1.1.3/conf/masters streaming-benchmarks/flink-1.1.3/conf/masters
*** streaming-benchmarks_git_compact/flink-1.1.3/conf/masters 2016-10-10 14:24:55.000000000 +0000
--- streaming-benchmarks/flink-1.1.3/conf/masters 2017-03-09 06:27:24.013023682 +0000
***************
*** 1 ****
! localhost:8081
--- 1 ----
! 10.140.0.110:8081
diff -crbB '--exclude=.svn' '--exclude=command-cloud.sh' '--exclude=create-cloud.sh' '--exclude=end-cloud.sh' '--exclude=flink-bench-2.sh' '--exclude=flink-bench.sh' '--exclude=list-cloud.sh' '--exclude=run-cloud.sh' '--exclude=scp-cloud.sh' '--exclude=spark-bench.sh' '--exclude=start-cloud.sh' '--exclude=stop-cloud.sh' '--exclude=storm-bench-2.sh' '--exclude=storm-bench.sh' '--exclude=streaming-group-0-command-list' '--exclude=streaming-group-0-command-list-2' '--exclude=streaming-group-0-list' streaming-benchmarks_git_compact/flink-1.1.3/conf/slaves streaming-benchmarks/flink-1.1.3/conf/slaves
*** streaming-benchmarks_git_compact/flink-1.1.3/conf/slaves 2016-10-10 14:24:55.000000000 +0000
--- streaming-benchmarks/flink-1.1.3/conf/slaves 2017-03-09 06:27:24.139023952 +0000
***************
*** 1 ****
! localhost
--- 1,10 ----
! 10.140.0.111
! 10.140.0.112
! 10.140.0.113
! 10.140.0.114
! 10.140.0.115
! 10.140.0.116
! 10.140.0.117
! 10.140.0.118
! 10.140.0.119
! 10.140.0.120
Only in streaming-benchmarks/flink-1.1.3/examples/batch: ConnectedComponents.jar
Only in streaming-benchmarks/flink-1.1.3/examples/batch: DistCp.jar
Only in streaming-benchmarks/flink-1.1.3/examples/batch: EnumTriangles.jar
Only in streaming-benchmarks/flink-1.1.3/examples/batch: KMeans.jar
Only in streaming-benchmarks/flink-1.1.3/examples/batch: PageRank.jar
Only in streaming-benchmarks/flink-1.1.3/examples/batch: TransitiveClosure.jar
Only in streaming-benchmarks/flink-1.1.3/examples/batch: WebLogAnalysis.jar
Only in streaming-benchmarks/flink-1.1.3/examples/batch: WordCount.jar
Only in streaming-benchmarks/flink-1.1.3/examples/streaming: IncrementalLearning.jar
Only in streaming-benchmarks/flink-1.1.3/examples/streaming: Iteration.jar
Only in streaming-benchmarks/flink-1.1.3/examples/streaming: Kafka.jar
Only in streaming-benchmarks/flink-1.1.3/examples/streaming: SessionWindowing.jar
Only in streaming-benchmarks/flink-1.1.3/examples/streaming: SocketWindowWordCount.jar
Only in streaming-benchmarks/flink-1.1.3/examples/streaming: TopSpeedWindowing.jar
Only in streaming-benchmarks/flink-1.1.3/examples/streaming: Twitter.jar
Only in streaming-benchmarks/flink-1.1.3/examples/streaming: WindowJoin.jar
Only in streaming-benchmarks/flink-1.1.3/examples/streaming: WordCount.jar
Only in streaming-benchmarks/flink-1.1.3/lib: flink-dist_2.10-1.1.3.jar
Only in streaming-benchmarks/flink-1.1.3/lib: flink-python_2.10-1.1.3.jar
Only in streaming-benchmarks/flink-1.1.3/lib: log4j-1.2.17.jar
Only in streaming-benchmarks/flink-1.1.3/lib: slf4j-log4j12-1.7.7.jar
diff -crbB '--exclude=.svn' '--exclude=command-cloud.sh' '--exclude=create-cloud.sh' '--exclude=end-cloud.sh' '--exclude=flink-bench-2.sh' '--exclude=flink-bench.sh' '--exclude=list-cloud.sh' '--exclude=run-cloud.sh' '--exclude=scp-cloud.sh' '--exclude=spark-bench.sh' '--exclude=start-cloud.sh' '--exclude=stop-cloud.sh' '--exclude=storm-bench-2.sh' '--exclude=storm-bench.sh' '--exclude=streaming-group-0-command-list' '--exclude=streaming-group-0-command-list-2' '--exclude=streaming-group-0-list' streaming-benchmarks_git_compact/flink-benchmarks/src/main/java/flink/benchmark/AdvertisingTopologyNative.java streaming-benchmarks/flink-benchmarks/src/main/java/flink/benchmark/AdvertisingTopologyNative.java
*** streaming-benchmarks_git_compact/flink-benchmarks/src/main/java/flink/benchmark/AdvertisingTopologyNative.java 2017-06-07 09:17:13.000000000 +0000
--- streaming-benchmarks/flink-benchmarks/src/main/java/flink/benchmark/AdvertisingTopologyNative.java 2017-04-24 02:43:48.629486005 +0000
***************
*** 16,21 ****
--- 16,22 ----
import org.apache.flink.streaming.api.CheckpointingMode;
import org.apache.flink.streaming.api.datastream.DataStream;
import org.apache.flink.streaming.api.environment.StreamExecutionEnvironment;
+ import org.apache.flink.streaming.connectors.kafka.FlinkKafkaConsumer08;
import org.apache.flink.streaming.connectors.kafka.FlinkKafkaConsumer082;
import org.apache.flink.streaming.util.serialization.SimpleStringSchema;
import org.apache.flink.util.Collector;
***************
*** 25,30 ****
--- 26,45 ----
import java.util.*;
+ import java.nio.charset.Charset;
+ import java.nio.file.Files;
+ import java.nio.file.Path;
+ import java.nio.file.Paths;
+ import java.nio.file.StandardOpenOption;
+ import java.io.IOException;
+ import java.net.InetAddress;
+ import java.util.ArrayList;
+ import java.util.Arrays;
+
+ import org.apache.flink.streaming.util.serialization.DeserializationSchema;
+ import java.util.Properties;
+ import org.apache.flink.streaming.api.graph.StreamGraph;
+
/**
* To Run: flink run target/flink-benchmarks-0.1.0-AdvertisingTopologyNative.jar --confPath "../conf/benchmarkConf.yaml"
*/
***************
*** 62,68 ****
env.setParallelism(hosts * cores);
DataStream<String> messageStream = env
! .addSource(new FlinkKafkaConsumer082<String>(
flinkBenchmarkParams.getRequired("topic"),
new SimpleStringSchema(),
flinkBenchmarkParams.getProperties())).setParallelism(Math.min(hosts * cores, kafkaPartitions));
--- 76,82 ----
env.setParallelism(hosts * cores);
DataStream<String> messageStream = env
! .addSource(new MyFlinkKafkaConsumer082<String>(
flinkBenchmarkParams.getRequired("topic"),
new SimpleStringSchema(),
flinkBenchmarkParams.getProperties())).setParallelism(Math.min(hosts * cores, kafkaPartitions));
***************
*** 89,96 ****
env.execute();
}
! public static class DeserializeBolt implements
! FlatMapFunction<String, Tuple7<String, String, String, String, String, String, String>> {
@Override
public void flatMap(String input, Collector<Tuple7<String, String, String, String, String, String, String>> out)
--- 103,208 ----
env.execute();
}
! public static class X11ColorScheme {
! public static List<String> COLORS = Arrays.asList(
! // 0-9
! "#FFB6C1", "#FFC0CB", "#DC143C", "#FFF0F5", "#DB7093", "#FF69B4", "#FF1493", "#C71585",
! "#DA70D6", "#D8BFD8",
!
! // 10-21
! "#a6cee3", "#1f78b4", "#b2df8a", "#33a02c", "#fb9a99", "#e31a1c", "#fdbf6f", "#ff7f00",
! "#cab2d6", "#6a3d9a", "#ffff99", "#b15928",
!
! "#DDA0DD", "#EE82EE", "#FF00FF", "#FF00FF", "#8B008B", "#800080", "#BA55D3", "#9400D3",
! "#9932CC", "#4B0082", "#8A2BE2", "#9370DB", "#7B68EE", "#6A5ACD",
!
! "#483D8B", "#F8F8FF", "#E6E6FA", "#0000FF", "#0000CD", "#00008B", "#000080", "#191970",
! "#4169E1", "#6495ED", "#B0C4DE", "#778899", "#708090", "#1E90FF", "#F0F8FF", "#4682B4",
! "#87CEFA", "#87CEEB", "#00BFFF", "#ADD8E6", "#B0E0E6", "#5F9EA0", "#00CED1", "#F0FFFF",
! "#E0FFFF", "#AFEEEE", "#00FFFF", "#00FFFF", "#008B8B", "#008080", "#2F4F4F", "#48D1CC",
! "#20B2AA", "#40E0D0", "#7FFFD4", "#66CDAA", "#00FA9A", "#F5FFFA", "#00FF7F", "#3CB371",
! "#2E8B57", "#F0FFF0", "#8FBC8F", "#98FB98", "#90EE90", "#32CD32", "#00FF00", "#228B22",
! "#008000", "#006400", "#7CFC00", "#7FFF00", "#ADFF2F", "#556B2F", "#9ACD32", "#6B8E23",
! "#FFFFF0", "#F5F5DC", "#FFFFE0", "#FAFAD2", "#FFFF00", "#808000", "#BDB76B", "#EEE8AA",
! "#FFFACD", "#F0E68C", "#FFD700", "#FFF8DC", "#DAA520", "#B8860B", "#FFFAF0", "#FDF5E6",
! "#F5DEB3", "#FFA500", "#FFE4B5", "#FFEFD5", "#FFEBCD", "#FFDEAD", "#FAEBD7", "#D2B48C",
! "#DEB887", "#FF8C00", "#FFE4C4", "#FAF0E6", "#CD853F", "#FFDAB9", "#F4A460", "#D2691E",
! "#8B4513", "#FFF5EE", "#A0522D", "#FFA07A", "#FF7F50", "#FF4500", "#E9967A", "#FF6347",
! "#FA8072", "#FFE4E1", "#F08080", "#FFFAFA", "#BC8F8F", "#CD5C5C", "#FF0000", "#A52A2A",
! "#B22222", "#8B0000", "#800000", "#FFFFFF", "#F5F5F5", "#DCDCDC", "#D3D3D3", "#C0C0C0",
! "#A9A9A9", "#808080", "#696969", "#000000");
!
! public static String colorAt(int index) {
! return X11ColorScheme.COLORS.get(index);
! }
! }
!
! public static class MyFlinkKafkaConsumer082<T> extends FlinkKafkaConsumer08<T> {
!
! private static final long serialVersionUID = -5649906773771949146L;
!
! public MyFlinkKafkaConsumer082(String topic, DeserializationSchema<T> valueDeserializer, Properties props) {
! super(topic, valueDeserializer, props);
! }
!
! @Override
! public void open(Configuration parameters) {
! RuntimeContext runCtx = getRuntimeContext();
! try {
! String className = this.getClass().getSimpleName();
! String host = InetAddress.getLocalHost().getHostName();
! if (host.contains("instance-")) host = host.replaceAll("instance-", "");
! else if (host.contains("streaming-group-0-")) host = host.replaceAll("streaming-group-0-", "");
! String color = X11ColorScheme.colorAt(Integer.parseInt(host));
! String curNode = host + "_" + Integer.toString(this.hashCode());
! List<String> lines = new ArrayList<String>();
! /*
! String srcNode = "???_stream";
! lines.add("\""+srcNode+"\" [label = \"queue\", fontname = Helvetica, shape = box];");
! lines.add("\""+srcNode+"\" -> \""+curNode+"\" [color = \"black\"]");
! */
! lines.add("\""+curNode+"\" [label = \""+className+"\", fontname = Helvetica, shape = circle, style = filled, fillcolor = \""+color+"\"];");
! ///
! String tarNode = "MyFlinkKafkaConsumer082_stream";
! lines.add("\""+tarNode+"\" [label = \"queue\", fontname = Helvetica, shape = box];");
! lines.add("\""+curNode+"\" -> \""+tarNode+"\"");
! ///
! Path file = Paths.get("flink_node_"+host+"_"+Integer.toString(this.hashCode())+".txt");
! Files.write(file, lines, Charset.forName("UTF-8"), StandardOpenOption.CREATE);
! } catch (IOException e) { e.printStackTrace(); }
!
! }
! }
!
! public static class DeserializeBolt extends
! RichFlatMapFunction<String, Tuple7<String, String, String, String, String, String, String>> {
!
! @Override
! public void open(Configuration parameters) {
! RuntimeContext runCtx = getRuntimeContext();
! try {
! String className = this.getClass().getSimpleName();
! String host = InetAddress.getLocalHost().getHostName();
! if (host.contains("instance-")) host = host.replaceAll("instance-", "");
! else if (host.contains("streaming-group-0-")) host = host.replaceAll("streaming-group-0-", "");
! String color = X11ColorScheme.colorAt(Integer.parseInt(host));
! String curNode = host + "_" + Integer.toString(this.hashCode());
! List<String> lines = new ArrayList<String>();
! ///
! String srcNode = "MyFlinkKafkaConsumer082_stream";
! lines.add("\""+srcNode+"\" [label = \"queue\", fontname = Helvetica, shape = box];");
! lines.add("\""+srcNode+"\" -> \""+curNode+"\" [color = \"black\"]");
! ///
! lines.add("\""+curNode+"\" [label = \""+className+"\", fontname = Helvetica, shape = circle, style = filled, fillcolor = \""+color+"\"];");
! ///
! String tarNode = "DeserializeBolt_stream";
! lines.add("\""+tarNode+"\" [label = \"queue\", fontname = Helvetica, shape = box];");
! lines.add("\""+curNode+"\" -> \""+tarNode+"\"");
! ///
! Path file = Paths.get("flink_node_"+host+"_"+Integer.toString(this.hashCode())+".txt");
! Files.write(file, lines, Charset.forName("UTF-8"), StandardOpenOption.CREATE);
! } catch (IOException e) { e.printStackTrace(); }
! }
@Override
public void flatMap(String input, Collector<Tuple7<String, String, String, String, String, String, String>> out)
***************
*** 109,116 ****
}
}
! public static class EventFilterBolt implements
! FilterFunction<Tuple7<String, String, String, String, String, String, String>> {
@Override
public boolean filter(Tuple7<String, String, String, String, String, String, String> tuple) throws Exception {
return tuple.getField(4).equals("view");
--- 221,257 ----
}
}
! public static class EventFilterBolt extends
! RichFilterFunction<Tuple7<String, String, String, String, String, String, String>> {
!
! @Override
! public void open(Configuration parameters) {
! RuntimeContext runCtx = getRuntimeContext();
! try {
! String className = this.getClass().getSimpleName();
! String host = InetAddress.getLocalHost().getHostName();
! if (host.contains("instance-")) host = host.replaceAll("instance-", "");
! else if (host.contains("streaming-group-0-")) host = host.replaceAll("streaming-group-0-", "");
! String color = X11ColorScheme.colorAt(Integer.parseInt(host));
! String curNode = host + "_" + Integer.toString(this.hashCode());
! List<String> lines = new ArrayList<String>();
! ///
! String srcNode = "DeserializeBolt_stream";
! lines.add("\""+srcNode+"\" [label = \"queue\", fontname = Helvetica, shape = box];");
! lines.add("\""+srcNode+"\" -> \""+curNode+"\" [color = \"black\"]");
! ///
! lines.add("\""+curNode+"\" [label = \""+className+"\", fontname = Helvetica, shape = circle, style = filled, fillcolor = \""+color+"\"];");
! ///
! String tarNode = "EventFilterBolt_stream";
! lines.add("\""+tarNode+"\" [label = \"queue\", fontname = Helvetica, shape = box];");
! lines.add("\""+curNode+"\" -> \""+tarNode+"\"");
! ///
! Path file = Paths.get("flink_node_"+host+"_"+Integer.toString(this.hashCode())+".txt");
! Files.write(file, lines, Charset.forName("UTF-8"), StandardOpenOption.CREATE);
! } catch (IOException e) { e.printStackTrace(); }
!
! }
!
@Override
public boolean filter(Tuple7<String, String, String, String, String, String, String> tuple) throws Exception {
return tuple.getField(4).equals("view");
***************
*** 129,134 ****
--- 270,300 ----
LOG.info("Opening connection with Jedis to {}", parameterTool.getRequired("jedis_server"));
this.redisAdCampaignCache = new RedisAdCampaignCache(parameterTool.getRequired("jedis_server"));
this.redisAdCampaignCache.prepare();
+
+ RuntimeContext runCtx = getRuntimeContext();
+ try {
+ String className = this.getClass().getSimpleName();
+ String host = InetAddress.getLocalHost().getHostName();
+ if (host.contains("instance-")) host = host.replaceAll("instance-", "");
+ else if (host.contains("streaming-group-0-")) host = host.replaceAll("streaming-group-0-", "");
+ String color = X11ColorScheme.colorAt(Integer.parseInt(host));
+ String curNode = host + "_" + Integer.toString(this.hashCode());
+ List<String> lines = new ArrayList<String>();
+ ///
+ String srcNode = "EventFilterBolt_stream";
+ lines.add("\""+srcNode+"\" [label = \"queue\", fontname = Helvetica, shape = box];");
+ lines.add("\""+srcNode+"\" -> \""+curNode+"\" [color = \"black\"]");
+ ///
+ lines.add("\""+curNode+"\" [label = \""+className+"\", fontname = Helvetica, shape = circle, style = filled, fillcolor = \""+color+"\"];");
+ ///
+ String tarNode = "RedisJoinBolt_stream";
+ lines.add("\""+tarNode+"\" [label = \"queue\", fontname = Helvetica, shape = box];");
+ lines.add("\""+curNode+"\" -> \""+tarNode+"\"");
+ ///
+ Path file = Paths.get("flink_node_"+host+"_"+Integer.toString(this.hashCode())+".txt");
+ Files.write(file, lines, Charset.forName("UTF-8"), StandardOpenOption.CREATE);
+ } catch (IOException e) { e.printStackTrace(); }
+
}
@Override
***************
*** 160,165 ****
--- 326,356 ----
this.campaignProcessorCommon = new CampaignProcessorCommon(parameterTool.getRequired("jedis_server"));
this.campaignProcessorCommon.prepare();
+
+ RuntimeContext runCtx = getRuntimeContext();
+ try {
+ String className = this.getClass().getSimpleName();
+ String host = InetAddress.getLocalHost().getHostName();
+ if (host.contains("instance-")) host = host.replaceAll("instance-", "");
+ else if (host.contains("streaming-group-0-")) host = host.replaceAll("streaming-group-0-", "");
+ String color = X11ColorScheme.colorAt(Integer.parseInt(host));
+ String curNode = host + "_" + Integer.toString(this.hashCode());
+ List<String> lines = new ArrayList<String>();
+ ///
+ String srcNode = "RedisJoinBolt_stream";
+ lines.add("\""+srcNode+"\" [label = \"queue\", fontname = Helvetica, shape = box];");
+ lines.add("\""+srcNode+"\" -> \""+curNode+"\" [color = \"black\"]");
+ ///
+ lines.add("\""+curNode+"\" [label = \""+className+"\", fontname = Helvetica, shape = circle, style = filled, fillcolor = \""+color+"\"];");
+ /*
+ String tarNode = "???_stream";
+ lines.add("\""+tarNode+"\" [label = \"queue\", fontname = Helvetica, shape = box];");
+ lines.add("\""+curNode+"\" -> \""+tarNode+"\"");
+ */
+ Path file = Paths.get("flink_node_"+host+"_"+Integer.toString(this.hashCode())+".txt");
+ Files.write(file, lines, Charset.forName("UTF-8"), StandardOpenOption.CREATE);
+ } catch (IOException e) { e.printStackTrace(); }
+
}
@Override
Binary files streaming-benchmarks_git_compact/flink-benchmarks/target/classes/flink/benchmark/AdvertisingTopologyNative$CampaignProcessor.class and streaming-benchmarks/flink-benchmarks/target/classes/flink/benchmark/AdvertisingTopologyNative$CampaignProcessor.class differ
Binary files streaming-benchmarks_git_compact/flink-benchmarks/target/classes/flink/benchmark/AdvertisingTopologyNative.class and streaming-benchmarks/flink-benchmarks/target/classes/flink/benchmark/AdvertisingTopologyNative.class differ
Binary files streaming-benchmarks_git_compact/flink-benchmarks/target/classes/flink/benchmark/AdvertisingTopologyNative$DeserializeBolt.class and streaming-benchmarks/flink-benchmarks/target/classes/flink/benchmark/AdvertisingTopologyNative$DeserializeBolt.class differ
Binary files streaming-benchmarks_git_compact/flink-benchmarks/target/classes/flink/benchmark/AdvertisingTopologyNative$EventFilterBolt.class and streaming-benchmarks/flink-benchmarks/target/classes/flink/benchmark/AdvertisingTopologyNative$EventFilterBolt.class differ
Only in streaming-benchmarks/flink-benchmarks/target/classes/flink/benchmark: AdvertisingTopologyNative$MyFlinkKafkaConsumer082.class
Binary files streaming-benchmarks_git_compact/flink-benchmarks/target/classes/flink/benchmark/AdvertisingTopologyNative$RedisJoinBolt.class and streaming-benchmarks/flink-benchmarks/target/classes/flink/benchmark/AdvertisingTopologyNative$RedisJoinBolt.class differ
Only in streaming-benchmarks/flink-benchmarks/target/classes/flink/benchmark: AdvertisingTopologyNative$X11ColorScheme.class
Only in streaming-benchmarks/flink-benchmarks/target: flink-benchmarks-0.1.0.jar
diff -crbB '--exclude=.svn' '--exclude=command-cloud.sh' '--exclude=create-cloud.sh' '--exclude=end-cloud.sh' '--exclude=flink-bench-2.sh' '--exclude=flink-bench.sh' '--exclude=list-cloud.sh' '--exclude=run-cloud.sh' '--exclude=scp-cloud.sh' '--exclude=spark-bench.sh' '--exclude=start-cloud.sh' '--exclude=stop-cloud.sh' '--exclude=storm-bench-2.sh' '--exclude=storm-bench.sh' '--exclude=streaming-group-0-command-list' '--exclude=streaming-group-0-command-list-2' '--exclude=streaming-group-0-list' streaming-benchmarks_git_compact/flink-benchmarks/target/maven-archiver/pom.properties streaming-benchmarks/flink-benchmarks/target/maven-archiver/pom.properties
*** streaming-benchmarks_git_compact/flink-benchmarks/target/maven-archiver/pom.properties 2017-06-07 09:31:22.000000000 +0000
--- streaming-benchmarks/flink-benchmarks/target/maven-archiver/pom.properties 2017-04-24 02:46:31.029629277 +0000
***************
*** 1,5 ****
#Generated by Maven
! #Wed Jun 07 18:31:22 KST 2017
version=0.1.0
groupId=com.yahoo.stream
artifactId=flink-benchmarks
--- 1,5 ----
#Generated by Maven
! #Mon Apr 24 02:46:31 UTC 2017
version=0.1.0
groupId=com.yahoo.stream
artifactId=flink-benchmarks
Only in streaming-benchmarks/flink-benchmarks/target: original-flink-benchmarks-0.1.0.jar
Only in streaming-benchmarks_git_compact: .git
diff -crbB '--exclude=.svn' '--exclude=command-cloud.sh' '--exclude=create-cloud.sh' '--exclude=end-cloud.sh' '--exclude=flink-bench-2.sh' '--exclude=flink-bench.sh' '--exclude=list-cloud.sh' '--exclude=run-cloud.sh' '--exclude=scp-cloud.sh' '--exclude=spark-bench.sh' '--exclude=start-cloud.sh' '--exclude=stop-cloud.sh' '--exclude=storm-bench-2.sh' '--exclude=storm-bench.sh' '--exclude=streaming-group-0-command-list' '--exclude=streaming-group-0-command-list-2' '--exclude=streaming-group-0-list' streaming-benchmarks_git_compact/kafka_2.10-0.8.2.1/config/consumer.properties streaming-benchmarks/kafka_2.10-0.8.2.1/config/consumer.properties
*** streaming-benchmarks_git_compact/kafka_2.10-0.8.2.1/config/consumer.properties 2015-02-26 22:02:45.000000000 +0000
--- streaming-benchmarks/kafka_2.10-0.8.2.1/config/consumer.properties 2017-02-27 12:18:54.667050213 +0000
***************
*** 17,23 ****
# Zookeeper connection string
# comma separated host:port pairs, each corresponding to a zk
# server. e.g. "127.0.0.1:3000,127.0.0.1:3001,127.0.0.1:3002"
! zookeeper.connect=127.0.0.1:2181
# timeout in ms for connecting to zookeeper
zookeeper.connection.timeout.ms=6000
--- 17,23 ----
# Zookeeper connection string
# comma separated host:port pairs, each corresponding to a zk
# server. e.g. "127.0.0.1:3000,127.0.0.1:3001,127.0.0.1:3002"
! zookeeper.connect=10.140.0.101:2181,10.140.0.102:2181,10.140.0.103:2181
# timeout in ms for connecting to zookeeper
zookeeper.connection.timeout.ms=6000
diff -crbB '--exclude=.svn' '--exclude=command-cloud.sh' '--exclude=create-cloud.sh' '--exclude=end-cloud.sh' '--exclude=flink-bench-2.sh' '--exclude=flink-bench.sh' '--exclude=list-cloud.sh' '--exclude=run-cloud.sh' '--exclude=scp-cloud.sh' '--exclude=spark-bench.sh' '--exclude=start-cloud.sh' '--exclude=stop-cloud.sh' '--exclude=storm-bench-2.sh' '--exclude=storm-bench.sh' '--exclude=streaming-group-0-command-list' '--exclude=streaming-group-0-command-list-2' '--exclude=streaming-group-0-list' streaming-benchmarks_git_compact/kafka_2.10-0.8.2.1/config/producer.properties streaming-benchmarks/kafka_2.10-0.8.2.1/config/producer.properties
*** streaming-benchmarks_git_compact/kafka_2.10-0.8.2.1/config/producer.properties 2015-02-26 22:02:45.000000000 +0000
--- streaming-benchmarks/kafka_2.10-0.8.2.1/config/producer.properties 2017-02-27 12:21:00.842220028 +0000
***************
*** 18,24 ****
# list of brokers used for bootstrapping knowledge about the rest of the cluster
# format: host1:port1,host2:port2 ...
! metadata.broker.list=localhost:9092
# name of the partitioner class for partitioning events; default partition spreads data randomly
#partitioner.class=
--- 18,24 ----
# list of brokers used for bootstrapping knowledge about the rest of the cluster
# format: host1:port1,host2:port2 ...
! metadata.broker.list=10.140.0.105:9092,10.140.0.106:9092,10.140.0.107:9092,10.140.0.108:9092,10.140.0.109:9092
# name of the partitioner class for partitioning events; default partition spreads data randomly
#partitioner.class=
diff -crbB '--exclude=.svn' '--exclude=command-cloud.sh' '--exclude=create-cloud.sh' '--exclude=end-cloud.sh' '--exclude=flink-bench-2.sh' '--exclude=flink-bench.sh' '--exclude=list-cloud.sh' '--exclude=run-cloud.sh' '--exclude=scp-cloud.sh' '--exclude=spark-bench.sh' '--exclude=start-cloud.sh' '--exclude=stop-cloud.sh' '--exclude=storm-bench-2.sh' '--exclude=storm-bench.sh' '--exclude=streaming-group-0-command-list' '--exclude=streaming-group-0-command-list-2' '--exclude=streaming-group-0-list' streaming-benchmarks_git_compact/kafka_2.10-0.8.2.1/config/server.properties streaming-benchmarks/kafka_2.10-0.8.2.1/config/server.properties
*** streaming-benchmarks_git_compact/kafka_2.10-0.8.2.1/config/server.properties 2015-02-26 22:02:45.000000000 +0000
--- streaming-benchmarks/kafka_2.10-0.8.2.1/config/server.properties 2017-03-27 05:38:36.198778865 +0000
***************
*** 25,31 ****
port=9092
# Hostname the broker will bind to. If not set, the server will bind to all interfaces
! #host.name=localhost
# Hostname the broker will advertise to producers and consumers. If not set, it uses the
# value for "host.name" if configured. Otherwise, it will use the value returned from
--- 25,31 ----
port=9092
# Hostname the broker will bind to. If not set, the server will bind to all interfaces
! host.name=10.140.0.104
# Hostname the broker will advertise to producers and consumers. If not set, it uses the
# value for "host.name" if configured. Otherwise, it will use the value returned from
***************
*** 60,66 ****
# The default number of log partitions per topic. More partitions allow greater
# parallelism for consumption, but this will also result in more files across
# the brokers.
! num.partitions=1
# The number of threads per data directory to be used for log recovery at startup and flushing at shutdown.
# This value is recommended to be increased for installations with data dirs located in RAID array.
--- 60,66 ----
# The default number of log partitions per topic. More partitions allow greater
# parallelism for consumption, but this will also result in more files across
# the brokers.
! num.partitions=5
# The number of threads per data directory to be used for log recovery at startup and flushing at shutdown.
# This value is recommended to be increased for installations with data dirs located in RAID array.
***************
*** 115,121 ****
# server. e.g. "127.0.0.1:3000,127.0.0.1:3001,127.0.0.1:3002".
# You can also append an optional chroot string to the urls to specify the
# root directory for all kafka znodes.
! zookeeper.connect=localhost:2181
# Timeout in ms for connecting to zookeeper
zookeeper.connection.timeout.ms=6000
--- 115,121 ----
# server. e.g. "127.0.0.1:3000,127.0.0.1:3001,127.0.0.1:3002".
# You can also append an optional chroot string to the urls to specify the
# root directory for all kafka znodes.
! zookeeper.connect=10.140.0.101:2181,10.140.0.102:2181,10.140.0.103:2181
# Timeout in ms for connecting to zookeeper
zookeeper.connection.timeout.ms=6000
diff -crbB '--exclude=.svn' '--exclude=command-cloud.sh' '--exclude=create-cloud.sh' '--exclude=end-cloud.sh' '--exclude=flink-bench-2.sh' '--exclude=flink-bench.sh' '--exclude=list-cloud.sh' '--exclude=run-cloud.sh' '--exclude=scp-cloud.sh' '--exclude=spark-bench.sh' '--exclude=start-cloud.sh' '--exclude=stop-cloud.sh' '--exclude=storm-bench-2.sh' '--exclude=storm-bench.sh' '--exclude=streaming-group-0-command-list' '--exclude=streaming-group-0-command-list-2' '--exclude=streaming-group-0-list' streaming-benchmarks_git_compact/kafka_2.10-0.8.2.1/config/zookeeper.properties streaming-benchmarks/kafka_2.10-0.8.2.1/config/zookeeper.properties
*** streaming-benchmarks_git_compact/kafka_2.10-0.8.2.1/config/zookeeper.properties 2015-02-26 22:02:45.000000000 +0000
--- streaming-benchmarks/kafka_2.10-0.8.2.1/config/zookeeper.properties 2017-03-02 08:28:36.091117903 +0000
***************
*** 18,20 ****
--- 18,26 ----
clientPort=2181
# disable the per-ip limit on the number of connections since this is a non-production config
maxClientCnxns=0
+ tickTime=2000
+ initLimit=5
+ syncLimit=2
+ server.1=10.140.0.101:2888:3888
+ server.2=10.140.0.102:2888:3888
+ server.3=10.140.0.103:2888:3888
Only in streaming-benchmarks/kafka_2.10-0.8.2.1/libs: jopt-simple-3.2.jar
Only in streaming-benchmarks/kafka_2.10-0.8.2.1/libs: kafka_2.10-0.8.2.1.jar
Only in streaming-benchmarks/kafka_2.10-0.8.2.1/libs: kafka_2.10-0.8.2.1-javadoc.jar
Only in streaming-benchmarks/kafka_2.10-0.8.2.1/libs: kafka_2.10-0.8.2.1-scaladoc.jar
Only in streaming-benchmarks/kafka_2.10-0.8.2.1/libs: kafka_2.10-0.8.2.1-sources.jar
Only in streaming-benchmarks/kafka_2.10-0.8.2.1/libs: kafka_2.10-0.8.2.1-test.jar
Only in streaming-benchmarks/kafka_2.10-0.8.2.1/libs: kafka-clients-0.8.2.1.jar
Only in streaming-benchmarks/kafka_2.10-0.8.2.1/libs: log4j-1.2.16.jar
Only in streaming-benchmarks/kafka_2.10-0.8.2.1/libs: lz4-1.2.0.jar
Only in streaming-benchmarks/kafka_2.10-0.8.2.1/libs: metrics-core-2.2.0.jar
Only in streaming-benchmarks/kafka_2.10-0.8.2.1/libs: scala-library-2.10.4.jar
Only in streaming-benchmarks/kafka_2.10-0.8.2.1/libs: slf4j-api-1.7.6.jar
Only in streaming-benchmarks/kafka_2.10-0.8.2.1/libs: slf4j-log4j12-1.6.1.jar
Only in streaming-benchmarks/kafka_2.10-0.8.2.1/libs: snappy-java-1.1.1.6.jar
Only in streaming-benchmarks/kafka_2.10-0.8.2.1/libs: zkclient-0.3.jar
Only in streaming-benchmarks/kafka_2.10-0.8.2.1/libs: zookeeper-3.4.6.jar
Only in streaming-benchmarks/kafka_2.10-0.8.2.1: logs
Only in streaming-benchmarks: logs
Only in streaming-benchmarks/redis-3.0.5/deps/hiredis: async.o
Only in streaming-benchmarks/redis-3.0.5/deps/hiredis: hiredis.o
Binary files streaming-benchmarks_git_compact/redis-3.0.5/deps/hiredis/libhiredis.a and streaming-benchmarks/redis-3.0.5/deps/hiredis/libhiredis.a differ
Only in streaming-benchmarks/redis-3.0.5/deps/hiredis: net.o
Only in streaming-benchmarks/redis-3.0.5/deps/hiredis: sds.o
diff -crbB '--exclude=.svn' '--exclude=command-cloud.sh' '--exclude=create-cloud.sh' '--exclude=end-cloud.sh' '--exclude=flink-bench-2.sh' '--exclude=flink-bench.sh' '--exclude=list-cloud.sh' '--exclude=run-cloud.sh' '--exclude=scp-cloud.sh' '--exclude=spark-bench.sh' '--exclude=start-cloud.sh' '--exclude=stop-cloud.sh' '--exclude=storm-bench-2.sh' '--exclude=storm-bench.sh' '--exclude=streaming-group-0-command-list' '--exclude=streaming-group-0-command-list-2' '--exclude=streaming-group-0-list' streaming-benchmarks_git_compact/redis-3.0.5/deps/jemalloc/config.log streaming-benchmarks/redis-3.0.5/deps/jemalloc/config.log
*** streaming-benchmarks_git_compact/redis-3.0.5/deps/jemalloc/config.log 2017-06-07 09:31:37.000000000 +0000
--- streaming-benchmarks/redis-3.0.5/deps/jemalloc/config.log 2017-02-22 05:02:59.743116568 +0000
***************
*** 10,25 ****
## Platform. ##
## --------- ##
! hostname = elc-1
uname -m = x86_64
! uname -r = 4.4.0-47-generic
uname -s = Linux
! uname -v = #68~14.04.1-Ubuntu SMP Wed Oct 26 19:42:11 UTC 2016
! /usr/bin/uname -p = unknown
/bin/uname -X = unknown
! /bin/arch = unknown
/usr/bin/arch -k = unknown
/usr/convex/getsysinfo = unknown
/usr/bin/hostinfo = unknown
--- 10,25 ----
## Platform. ##
## --------- ##
! hostname = ip-172-31-42-227
uname -m = x86_64
! uname -r = 3.10.0-327.10.1.el7.x86_64
uname -s = Linux
! uname -v = #1 SMP Tue Feb 16 17:03:50 UTC 2016
! /usr/bin/uname -p = x86_64
/bin/uname -X = unknown
! /bin/arch = x86_64
/usr/bin/arch -k = unknown
/usr/convex/getsysinfo = unknown
/usr/bin/hostinfo = unknown
***************
*** 27,50 ****
/usr/bin/oslevel = unknown
/bin/universe = unknown
- PATH: /opt/texlive/bin/x86_64-linux
PATH: /opt/gcc/5.4.0/bin
PATH: /opt/jvm/jdk1.8.0_74/bin
PATH: /opt/jvm/jdk1.8.0_74/jre/bin
PATH: /opt/maven/3.3.9/bin
PATH: /opt/apache-storm-0.9.5/bin
! PATH: /home/shyang/bin
! PATH: /usr/local/sbin
PATH: /usr/local/bin
- PATH: /usr/sbin
PATH: /usr/bin
! PATH: /sbin
! PATH: /bin
! PATH: /usr/games
! PATH: /usr/local/games
PATH: /opt/Swift/2.2/usr/bin
PATH: /home/shyang/bin
- PATH: /opt/gcloud/151.0.1/bin
## ----------- ##
--- 27,52 ----
/usr/bin/oslevel = unknown
/bin/universe = unknown
PATH: /opt/gcc/5.4.0/bin
PATH: /opt/jvm/jdk1.8.0_74/bin
PATH: /opt/jvm/jdk1.8.0_74/jre/bin
PATH: /opt/maven/3.3.9/bin
PATH: /opt/apache-storm-0.9.5/bin
! PATH: /opt/gcc/5.4.0/bin
! PATH: /opt/jvm/jdk1.8.0_74/bin
! PATH: /opt/jvm/jdk1.8.0_74/jre/bin
! PATH: /opt/maven/3.3.9/bin
! PATH: /opt/apache-storm-0.9.5/bin
PATH: /usr/local/bin
PATH: /usr/bin
! PATH: /usr/local/sbin
! PATH: /usr/sbin
! PATH: /opt/Swift/2.2/usr/bin
! PATH: /home/shyang/bin
! PATH: /home/centos/.local/bin
! PATH: /home/centos/bin
PATH: /opt/Swift/2.2/usr/bin
PATH: /home/shyang/bin
## ----------- ##
***************
*** 54,64 ****
configure:2523: checking for xsltproc
configure:2554: result: false
configure:2635: checking for gcc
! configure:2651: found /opt/gcc/5.4.0/bin/gcc
configure:2662: result: gcc
configure:2891: checking for C compiler version
configure:2900: gcc --version >&5
! gcc (GCC) 5.4.0
Copyright (C) 2015 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
--- 56,66 ----
configure:2523: checking for xsltproc
configure:2554: result: false
configure:2635: checking for gcc
! configure:2651: found /usr/bin/gcc
configure:2662: result: gcc
configure:2891: checking for C compiler version
configure:2900: gcc --version >&5
! gcc (GCC) 4.8.5 20150623 (Red Hat 4.8.5-11)
Copyright (C) 2015 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
***************
*** 67,88 ****
configure:2900: gcc -v >&5
Using built-in specs.
COLLECT_GCC=gcc
! COLLECT_LTO_WRAPPER=/opt/gcc/5.4.0/libexec/gcc/x86_64-unknown-linux-gnu/5.4.0/lto-wrapper
! Target: x86_64-unknown-linux-gnu
! Configured with: ../gcc-5.4.0/configure --prefix=/opt/gcc/5.4.0 --disable-multilib --enable-languages=c,c++,lto
Thread model: posix
! gcc version 5.4.0 (GCC)
configure:2911: $? = 0
configure:2900: gcc -V >&5
gcc: error: unrecognized command line option '-V'
gcc: fatal error: no input files
compilation terminated.
! configure:2911: $? = 1
configure:2900: gcc -qversion >&5
gcc: error: unrecognized command line option '-qversion'
gcc: fatal error: no input files
compilation terminated.
! configure:2911: $? = 1
configure:2931: checking whether the C compiler works
configure:2953: gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops conftest.c >&5
configure:2957: $? = 0
--- 69,90 ----
configure:2900: gcc -v >&5
Using built-in specs.
COLLECT_GCC=gcc
! COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/lto-wrapper
! Target: x86_64-redhat-linux
! Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-bootstrap --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --with-linker-hash-style=gnu --enable-languages=c,c++,objc,obj-c++,java,fortran,ada,go,lto --enable-plugin --enable-initfini-array --disable-libgcj --with-isl=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/isl-install --with-cloog=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/cloog-install --enable-gnu-indirect-function --with-tune=generic --with-arch_32=x86-64 --build=x86_64-redhat-linux
Thread model: posix
! gcc version 4.8.5 20150623 (Red Hat 4.8.5-11) (GCC)
configure:2911: $? = 0
configure:2900: gcc -V >&5
gcc: error: unrecognized command line option '-V'
gcc: fatal error: no input files
compilation terminated.
! configure:2911: $? = 4
configure:2900: gcc -qversion >&5
gcc: error: unrecognized command line option '-qversion'
gcc: fatal error: no input files
compilation terminated.
! configure:2911: $? = 4
configure:2931: checking whether the C compiler works
configure:2953: gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops conftest.c >&5
configure:2957: $? = 0
***************
*** 120,125 ****
--- 122,129 ----
configure:3749: $? = 0
configure:3763: gcc -E conftest.c
conftest.c:9:28: fatal error: ac_nonexistent.h: No such file or directory
+ #include <ac_nonexistent.h>
+ ^
compilation terminated.
configure:3763: $? = 1
configure: failed program was:
***************
*** 137,142 ****
--- 141,148 ----
configure:3808: $? = 0
configure:3822: gcc -E conftest.c
conftest.c:9:28: fatal error: ac_nonexistent.h: No such file or directory
+ #include <ac_nonexistent.h>
+ ^
compilation terminated.
configure:3822: $? = 1
configure: failed program was:
***************
*** 150,158 ****
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
configure:3852: checking for grep that handles long lines and -e
! configure:3910: result: /bin/grep
configure:3915: checking for egrep
! configure:3977: result: /bin/grep -E
configure:3982: checking for ANSI C header files
configure:4002: gcc -c -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops conftest.c >&5
configure:4002: $? = 0
--- 156,164 ----
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
configure:3852: checking for grep that handles long lines and -e
! configure:3910: result: /usr/bin/grep
configure:3915: checking for egrep
! configure:3977: result: /usr/bin/grep -E
configure:3982: checking for ANSI C header files
configure:4002: gcc -c -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops conftest.c >&5
configure:4002: $? = 0
***************