-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathout0_poolSize100.txt
2447 lines (2447 loc) · 75.3 KB
/
out0_poolSize100.txt
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
[info] Loading global plugins from /home/andriy/.sbt/0.13/plugins
[info] Loading project definition from /home/andriy/Projects/com/github/plokhotnyuk/actors/project
[info] Set current project to actors (in build file:/home/andriy/Projects/com/github/plokhotnyuk/actors/)
[success] Total time: 0 s, completed Jul 12, 2017 9:20:29 PM
[info] Updating {file:/home/andriy/Projects/com/github/plokhotnyuk/actors/}actors...
[info] Resolving org.scala-lang#scala-library;2.12.2 ...
[info] Resolving com.typesafe.akka#akka-actor_2.12;2.5.3 ...
[info] Resolving com.typesafe#config;1.3.1 ...
[info] Resolving org.scala-lang.modules#scala-java8-compat_2.12;0.8.0 ...
[info] Resolving net.liftweb#lift-actor_2.12;3.1.0 ...
[info] Resolving net.liftweb#lift-common_2.12;3.1.0 ...
[info] Resolving org.slf4j#slf4j-api;1.7.2 ...
[info] Resolving org.scala-lang.modules#scala-xml_2.12;1.0.5 ...
[info] Resolving org.scala-lang.modules#scala-parser-combinators_2.12;1.0.4 ...
[info] Resolving org.scalaz#scalaz-concurrent_2.12;7.3.0-M14 ...
[info] Resolving org.scalaz#scalaz-core_2.12;7.3.0-M14 ...
[info] Resolving org.scalaz#scalaz-effect_2.12;7.3.0-M14 ...
[info] Resolving org.scalatest#scalatest_2.12;3.0.3 ...
[info] Resolving org.scalactic#scalactic_2.12;3.0.3 ...
[info] Resolving org.scala-lang#scala-reflect;2.12.2 ...
[info] Resolving org.hdrhistogram#HdrHistogram;2.1.9 ...
[info] Resolving org.agrona#agrona;0.9.6 ...
[info] Resolving org.scala-lang#scala-compiler;2.12.2 ...
[info] Resolving org.scala-lang.modules#scala-xml_2.12;1.0.6 ...
[info] Resolving jline#jline;2.14.3 ...
[info] Done updating.
[info] Compiling 15 Scala sources to /home/andriy/Projects/com/github/plokhotnyuk/actors/target/scala-2.12/test-classes...
[warn] -optimise is deprecated: In 2.12, -optimise enables -opt:l:classpath. Check -opt:help for using the Scala 2.12 optimizer.
[warn] /home/andriy/Projects/com/github/plokhotnyuk/actors/src/test/scala/akka/dispatch/Mailboxes.scala:17: private setter of tail in class NBBQ is never used
[warn] @volatile private var tail: NodeWithCount = get
[warn] ^
[warn] /home/andriy/Projects/com/github/plokhotnyuk/actors/src/test/scala/akka/dispatch/Mailboxes.scala:88: private setter of tail in class UQ is never used
[warn] @volatile private var tail: Node = get
[warn] ^
[warn] three warnings found
[success] Total time: 15 s, completed Jul 12, 2017 9:20:44 PM
[info] Loading global plugins from /home/andriy/.sbt/0.13/plugins
[info] Loading project definition from /home/andriy/Projects/com/github/plokhotnyuk/actors/project
[info] Set current project to actors (in build file:/home/andriy/Projects/com/github/plokhotnyuk/actors/)
[info] ActorSpec:
[info] actor with Akka fork-join pool executor
[info] - execute code async
[info] - exchange messages with another actor without loss
[info] - create child actor and send messages to it recursively
[info] - handle messages in order of sending by each thread
[info] - doesn't handle messages in simultaneous threads
[info] - redirect unhandled errors to uncaught exception handler of thread
Exception in thread "ForkJoinPool-1-worker-7" java.lang.NullPointerException
[info] - handle messages with previous behaviour after unhandled errors
[info] - don't starve tasks arriving from external submit under high internal traffic
[info] actor with Java fork-join pool executor
[info] - execute code async
[info] - exchange messages with another actor without loss
[info] - create child actor and send messages to it recursively
[info] - handle messages in order of sending by each thread
[info] - doesn't handle messages in simultaneous threads
[info] - redirect unhandled errors to uncaught exception handler of thread
java.lang.NullPointerException
java.lang.NullPointerException
[info] - handle messages with previous behaviour after unhandled errors
java.lang.NullPointerException
[info] - don't starve tasks arriving from external submit under high internal traffic
Exception in thread "ForkJoinPool-1-worker-0" java.lang.NullPointerException
[info] actor with fixed thread pool executor
[info] - execute code async
[info] - exchange messages with another actor without loss
[info] - create child actor and send messages to it recursively
[info] - handle messages in order of sending by each thread
[info] - doesn't handle messages in simultaneous threads
[info] - redirect unhandled errors to uncaught exception handler of thread
[info] - handle messages with previous behaviour after unhandled errors
[info] - don't starve tasks arriving from external submit under high internal traffic
Exception in thread "pool-3-thread-101" java.lang.NullPointerException
[info] AkkaBoundedActorSpec:
Executor service type: akka-forkjoin-pool
[info] - Enqueueing
[info] + 10,000,000 ops
[info] + 799,138,039 ns
[info] + 12,513,482 ops/s
[info] + 14.2 % of CPU usage
[info] + 48 bytes per instance
[info] +
[info] - Dequeueing
[info] + 10,000,000 ops
[info] + 1,003,630,832 ns
[info] + 9,963,823 ops/s
[info] + 14.8 % of CPU usage
[info] +
[info] - Initiation
[info] + 100,000 ops
[info] + 4,500,884,029 ns
[info] + 45,008 ns/op
[info] + 93.7 % of CPU usage
[info] + 607 bytes per instance
[info] +
[info] - Single-producer sending
[info] + 6,000,000 ops
[info] + 1,388,624,771 ns
[info] + 4,320,821 ops/s
[info] + 24.7 % of CPU usage
[info] +
[info] - Multi-producer sending
[info] + 6,000,000 ops
[info] + 1,298,329,556 ns
[info] + 4,621,322 ops/s
[info] + 34.0 % of CPU usage
[info] +
[info] - Max throughput
[info] + 12,000,000 ops
[info] + 1,162,512,439 ns
[info] + 10,322,470 ops/s
[info] + 95.5 % of CPU usage
[info] +
[info] - Ping latency
[info] + 1,500,000 ops
[info] + 2,095,801,020 ns
[info] + p(0.00000) = 284 ns/op
[info] + p(0.50000) = 1327 ns/op
[info] + p(0.90000) = 1911 ns/op
[info] + p(0.99000) = 2559 ns/op
[info] + p(0.99900) = 7807 ns/op
[info] + p(0.99990) = 15359 ns/op
[info] + p(0.99999) = 44799 ns/op
[info] + p(1.00000) = 1769471 ns/op
[info] + 77.4 % of CPU usage
[info] +
[info] - Ping throughput 10K
[info] + 2,000,000 ops
[info] + 765,700,730 ns
[info] + 2,611,986 ops/s
[info] + 99.3 % of CPU usage
[info] +
[info] - Overflow throughput
[info] + 5,000,000 ops
[info] + 533,704,448 ns
[info] + 9,368,481 ops/s
[info] + 16.2 % of CPU usage
[info] +
[info] AkkaMCNonBlockingBoundedActorSpec:
Executor service type: akka-forkjoin-pool
[info] - Enqueueing
[info] + 10,000,000 ops
[info] + 480,338,774 ns
[info] + 20,818,639 ops/s
[info] + 14.8 % of CPU usage
[info] + 48 bytes per instance
[info] +
[info] - Dequeueing
[info] + 10,000,000 ops
[info] + 835,540,339 ns
[info] + 11,968,303 ops/s
[info] + 14.5 % of CPU usage
[info] +
[info] - Initiation
[info] + 100,000 ops
[info] + 1,155,963,669 ns
[info] + 11,559 ns/op
[info] + 62.7 % of CPU usage
[info] + 417 bytes per instance
[info] +
[info] - Single-producer sending
[info] + 6,000,000 ops
[info] + 875,372,901 ns
[info] + 6,854,221 ops/s
[info] + 23.8 % of CPU usage
[info] +
[info] - Multi-producer sending
[info] + 6,000,000 ops
[info] + 1,286,449,620 ns
[info] + 4,663,999 ops/s
[info] + 77.1 % of CPU usage
[info] +
[info] - Max throughput
[info] + 12,000,000 ops
[info] + 583,182,579 ns
[info] + 20,576,746 ops/s
[info] + 91.5 % of CPU usage
[info] +
[info] - Ping latency
[info] + 1,500,000 ops
[info] + 1,632,932,960 ns
[info] + p(0.00000) = 225 ns/op
[info] + p(0.50000) = 991 ns/op
[info] + p(0.90000) = 1559 ns/op
[info] + p(0.99000) = 2287 ns/op
[info] + p(0.99900) = 10815 ns/op
[info] + p(0.99990) = 13247 ns/op
[info] + p(0.99999) = 41727 ns/op
[info] + p(1.00000) = 1417215 ns/op
[info] + 83.5 % of CPU usage
[info] +
[info] - Ping throughput 10K
[info] + 2,000,000 ops
[info] + 733,202,062 ns
[info] + 2,727,761 ops/s
[info] + 99.4 % of CPU usage
[info] +
[info] - Overflow throughput
[info] + 5,000,000 ops
[info] + 725,635,458 ns
[info] + 6,890,512 ops/s
[info] + 22.6 % of CPU usage
[info] +
[info] AkkaMCUnboundedActorSpec:
Executor service type: akka-forkjoin-pool
[info] - Enqueueing
[info] + 10,000,000 ops
[info] + 659,288,996 ns
[info] + 15,167,855 ops/s
[info] + 13.8 % of CPU usage
[info] + 48 bytes per instance
[info] +
[info] - Dequeueing
[info] + 10,000,000 ops
[info] + 1,148,201,174 ns
[info] + 8,709,275 ops/s
[info] + 14.9 % of CPU usage
[info] +
[info] - Initiation
[info] + 100,000 ops
[info] + 1,562,566,189 ns
[info] + 15,625 ns/op
[info] + 61.1 % of CPU usage
[info] + 436 bytes per instance
[info] +
[info] - Single-producer sending
[info] + 6,000,000 ops
[info] + 1,078,143,922 ns
[info] + 5,565,119 ops/s
[info] + 21.7 % of CPU usage
[info] +
[info] - Multi-producer sending
[info] + 6,000,000 ops
[info] + 934,341,950 ns
[info] + 6,421,631 ops/s
[info] + 34.9 % of CPU usage
[info] +
[info] - Max throughput
[info] + 12,000,000 ops
[info] + 1,137,483,142 ns
[info] + 10,549,606 ops/s
[info] + 96.7 % of CPU usage
[info] +
[info] - Ping latency
[info] + 1,500,000 ops
[info] + 1,514,401,816 ns
[info] + p(0.00000) = 237 ns/op
[info] + p(0.50000) = 823 ns/op
[info] + p(0.90000) = 1199 ns/op
[info] + p(0.99000) = 2559 ns/op
[info] + p(0.99900) = 8511 ns/op
[info] + p(0.99990) = 25727 ns/op
[info] + p(0.99999) = 749567 ns/op
[info] + p(1.00000) = 56098815 ns/op
[info] + 99.0 % of CPU usage
[info] +
[info] - Ping throughput 10K
[info] + 2,000,000 ops
[info] + 962,566,024 ns
[info] + 2,077,779 ops/s
[info] + 99.1 % of CPU usage
[info] +
[info] AkkaSCONonBlockingBoundedActorSpec:
Executor service type: akka-forkjoin-pool
[info] - Enqueueing
[info] + 10,000,000 ops
[info] + 641,539,181 ns
[info] + 15,587,512 ops/s
[info] + 13.8 % of CPU usage
[info] + 48 bytes per instance
[info] +
[info] - Dequeueing
[info] + 10,000,000 ops
[info] + 914,593,971 ns
[info] + 10,933,813 ops/s
[info] + 14.6 % of CPU usage
[info] +
[info] - Initiation
[info] + 100,000 ops
[info] + 4,298,395,884 ns
[info] + 42,983 ns/op
[info] + 92.7 % of CPU usage
[info] + 441 bytes per instance
[info] +
[info] - Single-producer sending
[info] + 6,000,000 ops
[info] + 831,487,498 ns
[info] + 7,215,983 ops/s
[info] + 23.2 % of CPU usage
[info] +
[info] - Multi-producer sending
[info] + 6,000,000 ops
[info] + 1,651,445,128 ns
[info] + 3,633,181 ops/s
[info] + 72.5 % of CPU usage
[info] +
[info] - Max throughput
[info] + 12,000,000 ops
[info] + 715,865,697 ns
[info] + 16,762,920 ops/s
[info] + 91.7 % of CPU usage
[info] +
[info] - Ping latency
[info] + 1,500,000 ops
[info] + 1,900,536,832 ns
[info] + p(0.00000) = 256 ns/op
[info] + p(0.50000) = 1143 ns/op
[info] + p(0.90000) = 1831 ns/op
[info] + p(0.99000) = 2767 ns/op
[info] + p(0.99900) = 13823 ns/op
[info] + p(0.99990) = 17151 ns/op
[info] + p(0.99999) = 49919 ns/op
[info] + p(1.00000) = 115199 ns/op
[info] + 85.8 % of CPU usage
[info] +
[info] - Ping throughput 10K
[info] + 2,000,000 ops
[info] + 682,669,245 ns
[info] + 2,929,676 ops/s
[info] + 98.1 % of CPU usage
[info] +
[info] - Overflow throughput
[info] + 5,000,000 ops
[info] + 488,189,831 ns
[info] + 10,241,917 ops/s
[info] + 17.2 % of CPU usage
[info] +
[info] AkkaSCOUnboundedActorSpec:
Executor service type: akka-forkjoin-pool
[info] - Enqueueing
[info] + 10,000,000 ops
[info] + 433,413,604 ns
[info] + 23,072,649 ops/s
[info] + 14.4 % of CPU usage
[info] + 48 bytes per instance
[info] +
[info] - Dequeueing
[info] + 10,000,000 ops
[info] + 807,255,021 ns
[info] + 12,387,659 ops/s
[info] + 14.7 % of CPU usage
[info] +
[info] - Initiation
[info] + 100,000 ops
[info] + 1,276,971,782 ns
[info] + 12,769 ns/op
[info] + 58.8 % of CPU usage
[info] + 417 bytes per instance
[info] +
[info] - Single-producer sending
[info] + 6,000,000 ops
[info] + 1,066,150,170 ns
[info] + 5,627,725 ops/s
[info] + 23.3 % of CPU usage
[info] +
[info] - Multi-producer sending
[info] + 6,000,000 ops
[info] + 993,909,467 ns
[info] + 6,036,767 ops/s
[info] + 38.1 % of CPU usage
[info] +
[info] - Max throughput
[info] + 12,000,000 ops
[info] + 647,348,691 ns
[info] + 18,537,150 ops/s
[info] + 92.1 % of CPU usage
[info] +
[info] - Ping latency
[info] + 1,500,000 ops
[info] + 1,569,024,440 ns
[info] + p(0.00000) = 214 ns/op
[info] + p(0.50000) = 931 ns/op
[info] + p(0.90000) = 1511 ns/op
[info] + p(0.99000) = 2271 ns/op
[info] + p(0.99900) = 10751 ns/op
[info] + p(0.99990) = 12863 ns/op
[info] + p(0.99999) = 33535 ns/op
[info] + p(1.00000) = 10092543 ns/op
[info] + 84.6 % of CPU usage
[info] +
[info] - Ping throughput 10K
[info] + 2,000,000 ops
[info] + 691,792,093 ns
[info] + 2,891,042 ops/s
[info] + 99.0 % of CPU usage
[info] +
[info] AkkaUnboundedActorSpec:
Executor service type: akka-forkjoin-pool
[info] - Enqueueing
[info] + 10,000,000 ops
[info] + 332,364,900 ns
[info] + 30,087,412 ops/s
[info] + 15.4 % of CPU usage
[info] + 48 bytes per instance
[info] +
[info] - Dequeueing
[info] + 10,000,000 ops
[info] + 1,314,908,300 ns
[info] + 7,605,093 ops/s
[info] + 14.7 % of CPU usage
[info] +
[info] - Initiation
[info] + 100,000 ops
[info] + 4,063,749,835 ns
[info] + 40,637 ns/op
[info] + 94.7 % of CPU usage
[info] + 443 bytes per instance
[info] +
[info] - Single-producer sending
[info] + 6,000,000 ops
[info] + 1,135,983,028 ns
[info] + 5,281,769 ops/s
[info] + 23.0 % of CPU usage
[info] +
[info] - Multi-producer sending
[info] + 6,000,000 ops
[info] + 935,023,451 ns
[info] + 6,416,951 ops/s
[info] + 68.3 % of CPU usage
[info] +
[info] - Max throughput
[info] + 12,000,000 ops
[info] + 459,821,998 ns
[info] + 26,097,055 ops/s
[info] + 87.3 % of CPU usage
[info] +
[info] - Ping latency
[info] + 1,500,000 ops
[info] + 1,763,652,609 ns
[info] + p(0.00000) = 256 ns/op
[info] + p(0.50000) = 1079 ns/op
[info] + p(0.90000) = 1671 ns/op
[info] + p(0.99000) = 2511 ns/op
[info] + p(0.99900) = 9599 ns/op
[info] + p(0.99990) = 15167 ns/op
[info] + p(0.99999) = 36607 ns/op
[info] + p(1.00000) = 303103 ns/op
[info] + 81.9 % of CPU usage
[info] +
[info] - Ping throughput 10K
[info] + 2,000,000 ops
[info] + 1,003,464,191 ns
[info] + 1,993,095 ops/s
[info] + 98.9 % of CPU usage
[info] +
SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
SLF4J: Defaulting to no-operation (NOP) logger implementation
SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.
[info] LiftActorSpec:
Executor service type: akka-forkjoin-pool
[info] - Enqueueing
[info] + 10,000,000 ops
[info] + 392,721,077 ns
[info] + 25,463,364 ops/s
[info] + 13.7 % of CPU usage
[info] + 23 bytes per instance
[info] +
[info] - Dequeueing
[info] + 10,000,000 ops
[info] + 650,763,447 ns
[info] + 15,366,566 ops/s
[info] + 15.0 % of CPU usage
[info] +
[info] - Initiation
[info] + 10,000,000 ops
[info] + 914,278,917 ns
[info] + 91 ns/op
[info] + 15.9 % of CPU usage
[info] + 72 bytes per instance
[info] +
[info] - Single-producer sending
[info] + 6,000,000 ops
[info] + 698,073,683 ns
[info] + 8,595,081 ops/s
[info] + 28.5 % of CPU usage
[info] +
[info] - Multi-producer sending
[info] + 6,000,000 ops
[info] + 822,792,033 ns
[info] + 7,292,243 ops/s
[info] + 37.8 % of CPU usage
[info] +
[info] - Max throughput
[info] + 12,000,000 ops
[info] + 367,428,541 ns
[info] + 32,659,411 ops/s
[info] + 89.8 % of CPU usage
[info] +
[info] - Ping latency
[info] + 1,500,000 ops
[info] + 2,286,959,704 ns
[info] + p(0.00000) = 386 ns/op
[info] + p(0.50000) = 1375 ns/op
[info] + p(0.90000) = 2143 ns/op
[info] + p(0.99000) = 3503 ns/op
[info] + p(0.99900) = 12735 ns/op
[info] + p(0.99990) = 32127 ns/op
[info] + p(0.99999) = 98303 ns/op
[info] + p(1.00000) = 663551 ns/op
[info] + 52.3 % of CPU usage
[info] +
[info] - Ping throughput 10K
[info] + 2,000,000 ops
[info] + 1,293,306,041 ns
[info] + 1,546,424 ops/s
[info] + 91.4 % of CPU usage
[info] +
Executor service type: akka-forkjoin-pool
[info] MinimalistActorSpec:
[info] - Enqueueing
[info] + 40,000,000 ops
[info] + 626,666,199 ns
[info] + 63,829,834 ops/s
[info] + 12.8 % of CPU usage
[info] + 24 bytes per instance
[info] +
[info] - Dequeueing
[info] + 40,000,000 ops
[info] + 263,754,761 ns
[info] + 151,656,030 ops/s
[info] + 41.2 % of CPU usage
[info] +
[info] - Initiation
[info] + 2,000,000 ops
[info] + 995,523,115 ns
[info] + 497 ns/op
[info] + 97.4 % of CPU usage
[info] + 25 bytes per instance
[info] +
[info] - Single-producer sending
[info] + 15,000,000 ops
[info] + 182,999,162 ns
[info] + 81,967,588 ops/s
[info] + 33.5 % of CPU usage
[info] +
[info] - Multi-producer sending
[info] + 15,000,000 ops
[info] + 1,241,293,803 ns
[info] + 12,084,165 ops/s
[info] + 98.2 % of CPU usage
[info] +
[info] - Max throughput
[info] + 30,000,000 ops
[info] + 1,316,861,545 ns
[info] + 22,781,438 ops/s
[info] + 99.3 % of CPU usage
[info] +
[info] - Ping latency
[info] + 3,000,000 ops
[info] + 3,603,941,507 ns
[info] + p(0.00000) = 112 ns/op
[info] + p(0.50000) = 481 ns/op
[info] + p(0.90000) = 867 ns/op
[info] + p(0.99000) = 1423 ns/op
[info] + p(0.99900) = 4735 ns/op
[info] + p(0.99990) = 46847 ns/op
[info] + p(0.99999) = 20185087 ns/op
[info] + p(1.00000) = 88080383 ns/op
[info] + 99.1 % of CPU usage
[info] +
[info] - Ping throughput 10K
[info] + 6,000,000 ops
[info] + 1,166,336,739 ns
[info] + 5,144,311 ops/s
[info] + 99.8 % of CPU usage
[info] +
Executor service type: akka-forkjoin-pool
[info] ScalazActorSpec:
[info] - Enqueueing
[info] + 40,000,000 ops
[info] + 902,059,559 ns
[info] + 44,342,970 ops/s
[info] + 12.6 % of CPU usage
[info] + 24 bytes per instance
[info] +
[info] - Dequeueing
[info] + 40,000,000 ops
[info] + 285,468,860 ns
[info] + 140,120,361 ops/s
[info] + 24.5 % of CPU usage
[info] +
[info] - Initiation
[info] + 10,000,000 ops
[info] + 354,501,545 ns
[info] + 35 ns/op
[info] + 23.3 % of CPU usage
[info] + 88 bytes per instance
[info] +
[info] - Single-producer sending
[info] + 15,000,000 ops
[info] + 301,205,025 ns
[info] + 49,799,965 ops/s
[info] + 79.3 % of CPU usage
[info] +
[info] - Multi-producer sending
[info] + 15,000,000 ops
[info] + 492,363,406 ns
[info] + 30,465,302 ops/s
[info] + 87.8 % of CPU usage
[info] +
[info] - Max throughput
[info] + 30,000,000 ops
[info] + 693,019,445 ns
[info] + 43,288,828 ops/s
[info] + 93.4 % of CPU usage
[info] +
[info] - Ping latency
[info] + 3,000,000 ops
[info] + 2,537,854,617 ns
[info] + p(0.00000) = 81 ns/op
[info] + p(0.50000) = 411 ns/op
[info] + p(0.90000) = 811 ns/op
[info] + p(0.99000) = 2335 ns/op
[info] + p(0.99900) = 9535 ns/op
[info] + p(0.99990) = 36351 ns/op
[info] + p(0.99999) = 712703 ns/op
[info] + p(1.00000) = 80216063 ns/op
[info] + 99.3 % of CPU usage
[info] +
[info] - Ping throughput 10K
[info] + 6,000,000 ops
[info] + 1,149,387,239 ns
[info] + 5,220,172 ops/s
[info] + 99.5 % of CPU usage
[info] +
[info] Run completed in 3 minutes, 11 seconds.
[info] Total number of tests run: 99
[info] Suites: completed 10, aborted 0
[info] Tests: succeeded 99, failed 0, canceled 0, ignored 0, pending 0
[info] All tests passed.
[success] Total time: 193 s, completed Jul 12, 2017 9:24:01 PM
[info] Loading global plugins from /home/andriy/.sbt/0.13/plugins
[info] Loading project definition from /home/andriy/Projects/com/github/plokhotnyuk/actors/project
[info] Set current project to actors (in build file:/home/andriy/Projects/com/github/plokhotnyuk/actors/)
[info] ActorSpec:
[info] actor with Akka fork-join pool executor
[info] - execute code async
[info] - exchange messages with another actor without loss
[info] - create child actor and send messages to it recursively
[info] - handle messages in order of sending by each thread
[info] - doesn't handle messages in simultaneous threads
[info] - redirect unhandled errors to uncaught exception handler of thread
Exception in thread "ForkJoinPool-1-worker-1" java.lang.NullPointerException
at com.github.gist.viktorklang.ActorSpec.failingAccumulator$1(ActorSpec.scala:136)
at com.github.gist.viktorklang.ActorSpec.$anonfun$actorTests$34(ActorSpec.scala:138)
at com.github.gist.viktorklang.Actor$$anon$1.com$github$gist$viktorklang$Actor$$anon$$act(Actor.scala:114)
at com.github.gist.viktorklang.Actor$$anon$1$$anon$2.exec(Actor.scala:67)
at akka.dispatch.forkjoin.ForkJoinTask.doExec(ForkJoinTask.java:260)
at akka.dispatch.forkjoin.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1339)
at akka.dispatch.forkjoin.ForkJoinPool.runWorker(ForkJoinPool.java:1979)
at akka.dispatch.forkjoin.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:107)
[info] - handle messages with previous behaviour after unhandled errors
[info] - don't starve tasks arriving from external submit under high internal traffic
[info] actor with Java fork-join pool executor
[info] - execute code async
[info] - exchange messages with another actor without loss
[info] - create child actor and send messages to it recursively
[info] - handle messages in order of sending by each thread
[info] - doesn't handle messages in simultaneous threads
[info] - redirect unhandled errors to uncaught exception handler of thread
Exception in thread "ForkJoinPool-1-worker-3" java.lang.NullPointerException
at com.github.gist.viktorklang.ActorSpec.failingAccumulator$1(ActorSpec.scala:136)
at com.github.gist.viktorklang.ActorSpec.$anonfun$actorTests$34(ActorSpec.scala:138)
at com.github.gist.viktorklang.Actor$$anon$1.com$github$gist$viktorklang$Actor$$anon$$act(Actor.scala:114)
at com.github.gist.viktorklang.Actor$$anon$1$$anon$3.exec(Actor.scala:77)
at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:289)
at java.util.concurrent.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1056)
at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1692)
at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:157)
[info] - handle messages with previous behaviour after unhandled errors
[info] - don't starve tasks arriving from external submit under high internal traffic
[info] actor with fixed thread pool executor
[info] - execute code async
[info] - exchange messages with another actor without loss
[info] - create child actor and send messages to it recursively
[info] - handle messages in order of sending by each thread
[info] - doesn't handle messages in simultaneous threads
[info] - redirect unhandled errors to uncaught exception handler of thread
[info] - handle messages with previous behaviour after unhandled errors
[info] - don't starve tasks arriving from external submit under high internal traffic
Exception in thread "pool-3-thread-102" java.lang.NullPointerException
Exception in thread "pool-3-thread-98" java.lang.NullPointerException
[info] AkkaBoundedActorSpec:
Executor service type: java-forkjoin-pool
[info] - Enqueueing
[info] + 10,000,000 ops
[info] + 929,397,520 ns
[info] + 10,759,658 ops/s
[info] + 14.0 % of CPU usage
[info] + 48 bytes per instance
[info] +
[info] - Dequeueing
[info] + 10,000,000 ops
[info] + 982,574,077 ns
[info] + 10,177,349 ops/s
[info] + 14.2 % of CPU usage
[info] +
[info] - Initiation
[info] + 100,000 ops
[info] + 1,095,919,468 ns
[info] + 10,959 ns/op
[info] + 48.8 % of CPU usage
[info] + 599 bytes per instance
[info] +
[info] - Single-producer sending
[info] + 6,000,000 ops
[info] + 1,312,217,379 ns
[info] + 4,572,413 ops/s
[info] + 24.4 % of CPU usage
[info] +
[info] - Multi-producer sending
[info] + 6,000,000 ops
[info] + 1,207,259,819 ns
[info] + 4,969,932 ops/s
[info] + 32.6 % of CPU usage
[info] +
[info] - Max throughput
[info] + 12,000,000 ops
[info] + 695,153,131 ns
[info] + 17,262,383 ops/s
[info] + 95.5 % of CPU usage
[info] +
[info] - Ping latency
[info] + 1,500,000 ops
[info] + 1,649,254,628 ns
[info] + p(0.00000) = 243 ns/op
[info] + p(0.50000) = 1047 ns/op
[info] + p(0.90000) = 1503 ns/op
[info] + p(0.99000) = 2207 ns/op
[info] + p(0.99900) = 5535 ns/op
[info] + p(0.99990) = 10559 ns/op
[info] + p(0.99999) = 31359 ns/op
[info] + p(1.00000) = 411647 ns/op
[info] + 59.4 % of CPU usage
[info] +
[info] - Ping throughput 10K
[info] + 2,000,000 ops
[info] + 741,422,198 ns
[info] + 2,697,518 ops/s
[info] + 98.6 % of CPU usage
[info] +
[info] - Overflow throughput
[info] + 5,000,000 ops
[info] + 1,241,890,516 ns
[info] + 4,026,119 ops/s
[info] + 18.0 % of CPU usage
[info] +
[info] AkkaMCNonBlockingBoundedActorSpec:
Executor service type: java-forkjoin-pool
[info] - Enqueueing
[info] + 10,000,000 ops
[info] + 663,118,880 ns
[info] + 15,080,252 ops/s
[info] + 13.9 % of CPU usage
[info] + 48 bytes per instance
[info] +
[info] - Dequeueing
[info] + 10,000,000 ops
[info] + 807,212,715 ns
[info] + 12,388,308 ops/s
[info] + 15.3 % of CPU usage
[info] +
[info] - Initiation
[info] + 100,000 ops
[info] + 1,200,837,578 ns
[info] + 12,008 ns/op
[info] + 51.3 % of CPU usage
[info] + 436 bytes per instance
[info] +
[info] - Single-producer sending
[info] + 6,000,000 ops
[info] + 1,234,820,566 ns
[info] + 4,859,005 ops/s
[info] + 25.1 % of CPU usage
[info] +
[info] - Multi-producer sending
[info] + 6,000,000 ops
[info] + 1,340,963,377 ns
[info] + 4,474,395 ops/s
[info] + 82.3 % of CPU usage
[info] +
[info] - Max throughput
[info] + 12,000,000 ops
[info] + 484,582,560 ns
[info] + 24,763,582 ops/s
[info] + 92.9 % of CPU usage
[info] +
[info] - Ping latency
[info] + 1,500,000 ops
[info] + 1,513,768,453 ns
[info] + p(0.00000) = 219 ns/op
[info] + p(0.50000) = 951 ns/op
[info] + p(0.90000) = 1423 ns/op
[info] + p(0.99000) = 2023 ns/op
[info] + p(0.99900) = 6271 ns/op
[info] + p(0.99990) = 10303 ns/op
[info] + p(0.99999) = 28287 ns/op
[info] + p(1.00000) = 430079 ns/op
[info] + 63.5 % of CPU usage
[info] +
[info] - Ping throughput 10K
[info] + 2,000,000 ops
[info] + 971,466,652 ns
[info] + 2,058,742 ops/s
[info] + 99.3 % of CPU usage
[info] +
[info] - Overflow throughput
[info] + 5,000,000 ops
[info] + 700,129,980 ns
[info] + 7,141,531 ops/s
[info] + 21.1 % of CPU usage
[info] +
[info] AkkaMCUnboundedActorSpec:
Executor service type: java-forkjoin-pool
[info] - Enqueueing
[info] + 10,000,000 ops
[info] + 309,408,267 ns
[info] + 32,319,756 ops/s
[info] + 14.1 % of CPU usage
[info] + 48 bytes per instance
[info] +
[info] - Dequeueing
[info] + 10,000,000 ops
[info] + 1,123,108,730 ns
[info] + 8,903,857 ops/s
[info] + 14.2 % of CPU usage
[info] +
[info] - Initiation
[info] + 100,000 ops
[info] + 1,049,964,611 ns
[info] + 10,499 ns/op
[info] + 47.3 % of CPU usage
[info] + 407 bytes per instance
[info] +
[info] - Single-producer sending
[info] + 6,000,000 ops
[info] + 677,551,379 ns
[info] + 8,855,417 ops/s
[info] + 21.2 % of CPU usage
[info] +
[info] - Multi-producer sending
[info] + 6,000,000 ops
[info] + 675,017,069 ns
[info] + 8,888,664 ops/s
[info] + 35.2 % of CPU usage
[info] +
[info] - Max throughput
[info] + 12,000,000 ops
[info] + 599,095,177 ns
[info] + 20,030,206 ops/s
[info] + 79.9 % of CPU usage
[info] +
[info] - Ping latency
[info] + 1,500,000 ops
[info] + 1,976,191,257 ns
[info] + p(0.00000) = 258 ns/op
[info] + p(0.50000) = 1255 ns/op
[info] + p(0.90000) = 1871 ns/op
[info] + p(0.99000) = 2623 ns/op
[info] + p(0.99900) = 7071 ns/op
[info] + p(0.99990) = 13311 ns/op
[info] + p(0.99999) = 37375 ns/op
[info] + p(1.00000) = 765951 ns/op
[info] + 63.5 % of CPU usage
[info] +
[info] - Ping throughput 10K
[info] + 2,000,000 ops
[info] + 930,650,633 ns
[info] + 2,149,034 ops/s
[info] + 99.1 % of CPU usage
[info] +
[info] AkkaSCONonBlockingBoundedActorSpec:
Executor service type: java-forkjoin-pool
[info] - Enqueueing
[info] + 10,000,000 ops
[info] + 684,357,505 ns
[info] + 14,612,245 ops/s
[info] + 13.7 % of CPU usage
[info] + 48 bytes per instance
[info] +
[info] - Dequeueing
[info] + 10,000,000 ops
[info] + 841,184,330 ns
[info] + 11,888,000 ops/s
[info] + 14.4 % of CPU usage
[info] +
[info] - Initiation
[info] + 100,000 ops
[info] + 1,369,472,266 ns
[info] + 13,694 ns/op
[info] + 58.8 % of CPU usage
[info] + 416 bytes per instance
[info] +
[info] - Single-producer sending
[info] + 6,000,000 ops
[info] + 1,182,876,540 ns
[info] + 5,072,380 ops/s
[info] + 23.0 % of CPU usage
[info] +
[info] - Multi-producer sending
[info] + 6,000,000 ops
[info] + 1,693,943,814 ns
[info] + 3,542,030 ops/s
[info] + 81.0 % of CPU usage
[info] +
[info] - Max throughput
[info] + 12,000,000 ops
[info] + 531,590,569 ns
[info] + 22,573,763 ops/s
[info] + 86.5 % of CPU usage
[info] +
[info] - Ping latency
[info] + 1,500,000 ops
[info] + 1,554,560,140 ns
[info] + p(0.00000) = 215 ns/op
[info] + p(0.50000) = 971 ns/op
[info] + p(0.90000) = 1463 ns/op
[info] + p(0.99000) = 2191 ns/op
[info] + p(0.99900) = 6975 ns/op
[info] + p(0.99990) = 12159 ns/op
[info] + p(0.99999) = 48383 ns/op
[info] + p(1.00000) = 622591 ns/op
[info] + 62.2 % of CPU usage
[info] +
[info] - Ping throughput 10K
[info] + 2,000,000 ops
[info] + 813,369,216 ns
[info] + 2,458,907 ops/s
[info] + 98.4 % of CPU usage
[info] +
[info] - Overflow throughput
[info] + 5,000,000 ops
[info] + 553,508,442 ns
[info] + 9,033,285 ops/s
[info] + 21.9 % of CPU usage
[info] +
[info] AkkaSCOUnboundedActorSpec:
Executor service type: java-forkjoin-pool
[info] - Enqueueing
[info] + 10,000,000 ops
[info] + 304,219,215 ns
[info] + 32,871,033 ops/s
[info] + 14.4 % of CPU usage
[info] + 48 bytes per instance
[info] +
[info] - Dequeueing
[info] + 10,000,000 ops
[info] + 832,622,220 ns
[info] + 12,010,248 ops/s
[info] + 15.0 % of CPU usage
[info] +
[info] - Initiation
[info] + 100,000 ops
[info] + 1,477,407,643 ns
[info] + 14,774 ns/op
[info] + 86.4 % of CPU usage
[info] + 607 bytes per instance
[info] +
[info] - Single-producer sending
[info] + 6,000,000 ops
[info] + 778,832,705 ns
[info] + 7,703,836 ops/s
[info] + 23.0 % of CPU usage
[info] +
[info] - Multi-producer sending
[info] + 6,000,000 ops
[info] + 740,858,902 ns
[info] + 8,098,708 ops/s
[info] + 37.3 % of CPU usage
[info] +
[info] - Max throughput
[info] + 12,000,000 ops
[info] + 427,351,311 ns
[info] + 28,079,941 ops/s
[info] + 86.6 % of CPU usage
[info] +
[info] - Ping latency
[info] + 1,500,000 ops
[info] + 1,508,117,011 ns
[info] + p(0.00000) = 209 ns/op
[info] + p(0.50000) = 943 ns/op
[info] + p(0.90000) = 1431 ns/op
[info] + p(0.99000) = 2031 ns/op
[info] + p(0.99900) = 5855 ns/op
[info] + p(0.99990) = 9791 ns/op
[info] + p(0.99999) = 42495 ns/op
[info] + p(1.00000) = 638975 ns/op
[info] + 65.2 % of CPU usage
[info] +
[info] - Ping throughput 10K
[info] + 2,000,000 ops
[info] + 900,765,603 ns
[info] + 2,220,333 ops/s
[info] + 99.8 % of CPU usage
[info] +
[info] AkkaUnboundedActorSpec:
Executor service type: java-forkjoin-pool
[info] - Enqueueing
[info] + 10,000,000 ops
[info] + 475,032,717 ns