-
Notifications
You must be signed in to change notification settings - Fork 16
/
out0_poolSize1.txt
2493 lines (2493 loc) · 78.8 KB
/
out0_poolSize1.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:08:41 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: 13 s, completed Jul 12, 2017 9:08:55 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
[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
Exception in thread "pool-3-thread-103" 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$5.run(Actor.scala:86)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at java.lang.Thread.run(Thread.java:745)
[info] - handle messages with previous behaviour after unhandled errors
Exception in thread "pool-3-thread-98" java.lang.NullPointerException
Exception in thread "pool-3-thread-97" java.lang.NullPointerException
Exception in thread "pool-3-thread-100" java.lang.NullPointerException
[info] - don't starve tasks arriving from external submit under high internal traffic
Exception in thread "pool-3-thread-103" 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$5.run(Actor.scala:86)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at java.lang.Thread.run(Thread.java:745)
[info] AkkaBoundedActorSpec:
Executor service type: akka-forkjoin-pool
[info] - Enqueueing
[info] + 10,000,000 ops
[info] + 457,303,581 ns
[info] + 21,867,311 ops/s
[info] + 15.0 % of CPU usage
[info] + 48 bytes per instance
[info] +
[info] - Dequeueing
[info] + 10,000,000 ops
[info] + 979,492,941 ns
[info] + 10,209,364 ops/s
[info] + 14.0 % of CPU usage
[info] +
[info] - Initiation
[info] + 100,000 ops
[info] + 734,291,344 ns
[info] + 7,342 ns/op
[info] + 50.6 % of CPU usage
[info] + 584 bytes per instance
[info] +
[info] - Single-producer sending
[info] + 6,000,000 ops
[info] + 1,486,474,274 ns
[info] + 4,036,396 ops/s
[info] + 23.7 % of CPU usage
[info] +
[info] - Multi-producer sending
[info] + 6,000,000 ops
[info] + 2,223,718,762 ns
[info] + 2,698,182 ops/s
[info] + 37.5 % of CPU usage
[info] +
[info] - Max throughput
[info] + 12,000,000 ops
[info] + 1,417,600,297 ns
[info] + 8,465,009 ops/s
[info] + 22.6 % of CPU usage
[info] +
[info] - Ping latency
[info] + 1,500,000 ops
[info] + 486,328,245 ns
[info] + p(0.00000) = 286 ns/op
[info] + p(0.50000) = 315 ns/op
[info] + p(0.90000) = 329 ns/op
[info] + p(0.99000) = 463 ns/op
[info] + p(0.99900) = 2039 ns/op
[info] + p(0.99990) = 8031 ns/op
[info] + p(0.99999) = 20991 ns/op
[info] + p(1.00000) = 261119 ns/op
[info] + 13.4 % of CPU usage
[info] +
[info] - Ping throughput 10K
[info] + 2,000,000 ops
[info] + 1,737,882,551 ns
[info] + 1,150,825 ops/s
[info] + 20.4 % of CPU usage
[info] +
[info] - Overflow throughput
[info] + 5,000,000 ops
[info] + 699,351,997 ns
[info] + 7,149,475 ops/s
[info] + 16.1 % of CPU usage
[info] +
[info] AkkaMCNonBlockingBoundedActorSpec:
Executor service type: akka-forkjoin-pool
[info] - Enqueueing
[info] + 10,000,000 ops
[info] + 340,823,166 ns
[info] + 29,340,728 ops/s
[info] + 14.7 % of CPU usage
[info] + 48 bytes per instance
[info] +
[info] - Dequeueing
[info] + 10,000,000 ops
[info] + 798,448,324 ns
[info] + 12,524,292 ops/s
[info] + 15.2 % of CPU usage
[info] +
[info] - Initiation
[info] + 100,000 ops
[info] + 649,355,694 ns
[info] + 6,493 ns/op
[info] + 46.2 % of CPU usage
[info] + 379 bytes per instance
[info] +
[info] - Single-producer sending
[info] + 6,000,000 ops
[info] + 839,340,757 ns
[info] + 7,148,467 ops/s
[info] + 23.5 % of CPU usage
[info] +
[info] - Multi-producer sending
[info] + 6,000,000 ops
[info] + 1,189,089,260 ns
[info] + 5,045,878 ops/s
[info] + 81.7 % of CPU usage
[info] +
[info] - Max throughput
[info] + 12,000,000 ops
[info] + 1,016,788,048 ns
[info] + 11,801,869 ops/s
[info] + 23.0 % of CPU usage
[info] +
[info] - Ping latency
[info] + 1,500,000 ops
[info] + 388,282,468 ns
[info] + p(0.00000) = 221 ns/op
[info] + p(0.50000) = 247 ns/op
[info] + p(0.90000) = 263 ns/op
[info] + p(0.99000) = 443 ns/op
[info] + p(0.99900) = 1239 ns/op
[info] + p(0.99990) = 7903 ns/op
[info] + p(0.99999) = 20863 ns/op
[info] + p(1.00000) = 362495 ns/op
[info] + 13.5 % of CPU usage
[info] +
[info] - Ping throughput 10K
[info] + 2,000,000 ops
[info] + 1,546,388,280 ns
[info] + 1,293,336 ops/s
[info] + 21.1 % of CPU usage
[info] +
[info] - Overflow throughput
[info] + 5,000,000 ops
[info] + 681,547,595 ns
[info] + 7,336,244 ops/s
[info] + 15.6 % of CPU usage
[info] +
[info] AkkaMCUnboundedActorSpec:
Executor service type: akka-forkjoin-pool
[info] - Enqueueing
[info] + 10,000,000 ops
[info] + 467,899,153 ns
[info] + 21,372,126 ops/s
[info] + 13.9 % of CPU usage
[info] + 48 bytes per instance
[info] +
[info] - Dequeueing
[info] + 10,000,000 ops
[info] + 775,136,158 ns
[info] + 12,900,959 ops/s
[info] + 14.5 % of CPU usage
[info] +
[info] - Initiation
[info] + 100,000 ops
[info] + 673,169,481 ns
[info] + 6,731 ns/op
[info] + 49.0 % of CPU usage
[info] + 400 bytes per instance
[info] +
[info] - Single-producer sending
[info] + 6,000,000 ops
[info] + 740,915,163 ns
[info] + 8,098,093 ops/s
[info] + 21.3 % of CPU usage
[info] +
[info] - Multi-producer sending
[info] + 6,000,000 ops
[info] + 644,100,238 ns
[info] + 9,315,320 ops/s
[info] + 35.1 % of CPU usage
[info] +
[info] - Max throughput
[info] + 12,000,000 ops
[info] + 999,289,993 ns
[info] + 12,008,526 ops/s
[info] + 19.9 % of CPU usage
[info] +
[info] - Ping latency
[info] + 1,500,000 ops
[info] + 370,308,261 ns
[info] + p(0.00000) = 216 ns/op
[info] + p(0.50000) = 238 ns/op
[info] + p(0.90000) = 247 ns/op
[info] + p(0.99000) = 303 ns/op
[info] + p(0.99900) = 1199 ns/op
[info] + p(0.99990) = 7871 ns/op
[info] + p(0.99999) = 15551 ns/op
[info] + p(1.00000) = 248831 ns/op
[info] + 13.2 % of CPU usage
[info] +
[info] - Ping throughput 10K
[info] + 2,000,000 ops
[info] + 1,638,009,866 ns
[info] + 1,220,993 ops/s
[info] + 23.0 % of CPU usage
[info] +
[info] AkkaSCONonBlockingBoundedActorSpec:
Executor service type: akka-forkjoin-pool
[info] - Enqueueing
[info] + 10,000,000 ops
[info] + 482,639,797 ns
[info] + 20,719,385 ops/s
[info] + 14.0 % of CPU usage
[info] + 48 bytes per instance
[info] +
[info] - Dequeueing
[info] + 10,000,000 ops
[info] + 1,129,847,291 ns
[info] + 8,850,753 ops/s
[info] + 14.9 % of CPU usage
[info] +
[info] - Initiation
[info] + 100,000 ops
[info] + 702,995,349 ns
[info] + 7,029 ns/op
[info] + 46.6 % of CPU usage
[info] + 400 bytes per instance
[info] +
[info] - Single-producer sending
[info] + 6,000,000 ops
[info] + 851,484,587 ns
[info] + 7,046,516 ops/s
[info] + 23.2 % of CPU usage
[info] +
[info] - Multi-producer sending
[info] + 6,000,000 ops
[info] + 1,642,466,226 ns
[info] + 3,653,043 ops/s
[info] + 71.8 % of CPU usage
[info] +
[info] - Max throughput
[info] + 12,000,000 ops
[info] + 1,461,879,384 ns
[info] + 8,208,611 ops/s
[info] + 22.1 % of CPU usage
[info] +
[info] - Ping latency
[info] + 1,500,000 ops
[info] + 554,377,614 ns
[info] + p(0.00000) = 332 ns/op
[info] + p(0.50000) = 355 ns/op
[info] + p(0.90000) = 367 ns/op
[info] + p(0.99000) = 787 ns/op
[info] + p(0.99900) = 1671 ns/op
[info] + p(0.99990) = 5823 ns/op
[info] + p(0.99999) = 27391 ns/op
[info] + p(1.00000) = 389119 ns/op
[info] + 14.0 % of CPU usage
[info] +
[info] - Ping throughput 10K
[info] + 2,000,000 ops
[info] + 1,439,139,755 ns
[info] + 1,389,719 ops/s
[info] + 20.7 % of CPU usage
[info] +
[info] - Overflow throughput
[info] + 5,000,000 ops
[info] + 452,322,877 ns
[info] + 11,054,050 ops/s
[info] + 22.9 % of CPU usage
[info] +
[info] AkkaSCOUnboundedActorSpec:
Executor service type: akka-forkjoin-pool
[info] - Enqueueing
[info] + 10,000,000 ops
[info] + 489,183,247 ns
[info] + 20,442,237 ops/s
[info] + 14.1 % of CPU usage
[info] + 48 bytes per instance
[info] +
[info] - Dequeueing
[info] + 10,000,000 ops
[info] + 771,673,878 ns
[info] + 12,958,842 ops/s
[info] + 14.4 % of CPU usage
[info] +
[info] - Initiation
[info] + 100,000 ops
[info] + 736,275,434 ns
[info] + 7,362 ns/op
[info] + 49.9 % of CPU usage
[info] + 400 bytes per instance
[info] +
[info] - Single-producer sending
[info] + 6,000,000 ops
[info] + 1,065,374,961 ns
[info] + 5,631,819 ops/s
[info] + 23.6 % of CPU usage
[info] +
[info] - Multi-producer sending
[info] + 6,000,000 ops
[info] + 912,280,460 ns
[info] + 6,576,924 ops/s
[info] + 35.8 % of CPU usage
[info] +
[info] - Max throughput
[info] + 12,000,000 ops
[info] + 1,025,182,987 ns
[info] + 11,705,227 ops/s
[info] + 19.9 % of CPU usage
[info] +
[info] - Ping latency
[info] + 1,500,000 ops
[info] + 363,260,690 ns
[info] + p(0.00000) = 210 ns/op
[info] + p(0.50000) = 233 ns/op
[info] + p(0.90000) = 247 ns/op
[info] + p(0.99000) = 333 ns/op
[info] + p(0.99900) = 1815 ns/op
[info] + p(0.99990) = 7903 ns/op
[info] + p(0.99999) = 17663 ns/op
[info] + p(1.00000) = 299007 ns/op
[info] + 13.8 % of CPU usage
[info] +
[info] - Ping throughput 10K
[info] + 2,000,000 ops
[info] + 1,495,165,612 ns
[info] + 1,337,644 ops/s
[info] + 20.4 % of CPU usage
[info] +
Executor service type: akka-forkjoin-pool
[info] AkkaUnboundedActorSpec:
[info] - Enqueueing
[info] + 10,000,000 ops
[info] + 340,411,203 ns
[info] + 29,376,236 ops/s
[info] + 15.4 % of CPU usage
[info] + 48 bytes per instance
[info] +
[info] - Dequeueing
[info] + 10,000,000 ops
[info] + 942,621,895 ns
[info] + 10,608,707 ops/s
[info] + 15.5 % of CPU usage
[info] +
[info] - Initiation
[info] + 100,000 ops
[info] + 695,116,973 ns
[info] + 6,951 ns/op
[info] + 54.7 % of CPU usage
[info] + 379 bytes per instance
[info] +
[info] - Single-producer sending
[info] + 6,000,000 ops
[info] + 807,825,544 ns
[info] + 7,427,346 ops/s
[info] + 22.0 % of CPU usage
[info] +
[info] - Multi-producer sending
[info] + 6,000,000 ops
[info] + 1,095,404,099 ns
[info] + 5,477,430 ops/s
[info] + 64.0 % of CPU usage
[info] +
[info] - Max throughput
[info] + 12,000,000 ops
[info] + 1,195,484,580 ns
[info] + 10,037,770 ops/s
[info] + 19.8 % of CPU usage
[info] +
[info] - Ping latency
[info] + 1,500,000 ops
[info] + 421,967,389 ns
[info] + p(0.00000) = 241 ns/op
[info] + p(0.50000) = 271 ns/op
[info] + p(0.90000) = 289 ns/op
[info] + p(0.99000) = 395 ns/op
[info] + p(0.99900) = 1503 ns/op
[info] + p(0.99990) = 8031 ns/op
[info] + p(0.99999) = 19071 ns/op
[info] + p(1.00000) = 251903 ns/op
[info] + 13.3 % of CPU usage
[info] +
[info] - Ping throughput 10K
[info] + 2,000,000 ops
[info] + 1,596,601,334 ns
[info] + 1,252,660 ops/s
[info] + 22.0 % 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] + 393,078,593 ns
[info] + 25,440,205 ops/s
[info] + 13.7 % of CPU usage
[info] + 23 bytes per instance
[info] +
[info] - Dequeueing
[info] + 10,000,000 ops
[info] + 466,279,464 ns
[info] + 21,446,365 ops/s
[info] + 15.0 % of CPU usage
[info] +
[info] - Initiation
[info] + 10,000,000 ops
[info] + 658,388,701 ns
[info] + 65 ns/op
[info] + 16.1 % of CPU usage
[info] + 72 bytes per instance
[info] +
[info] - Single-producer sending
[info] + 6,000,000 ops
[info] + 864,549,949 ns
[info] + 6,940,027 ops/s
[info] + 29.5 % of CPU usage
[info] +
[info] - Multi-producer sending
[info] + 6,000,000 ops
[info] + 791,176,564 ns
[info] + 7,583,642 ops/s
[info] + 37.9 % of CPU usage
[info] +
[info] - Max throughput
[info] + 12,000,000 ops
[info] + 660,104,559 ns
[info] + 18,178,938 ops/s
[info] + 27.5 % of CPU usage
[info] +
[info] - Ping latency
[info] + 1,500,000 ops
[info] + 743,702,351 ns
[info] + p(0.00000) = 374 ns/op
[info] + p(0.50000) = 415 ns/op
[info] + p(0.90000) = 461 ns/op
[info] + p(0.99000) = 2735 ns/op
[info] + p(0.99900) = 7167 ns/op
[info] + p(0.99990) = 18047 ns/op
[info] + p(0.99999) = 72191 ns/op
[info] + p(1.00000) = 2523135 ns/op
[info] + 17.5 % of CPU usage
[info] +
[info] - Ping throughput 10K
[info] + 2,000,000 ops
[info] + 967,208,587 ns
[info] + 2,067,806 ops/s
[info] + 15.1 % of CPU usage
[info] +
Executor service type: akka-forkjoin-pool
[info] MinimalistActorSpec:
[info] - Enqueueing
[info] + 40,000,000 ops
[info] + 899,898,870 ns
[info] + 44,449,439 ops/s
[info] + 12.6 % of CPU usage
[info] + 24 bytes per instance
[info] +
[info] - Dequeueing
[info] + 40,000,000 ops
[info] + 216,853,593 ns
[info] + 184,456,247 ops/s
[info] + 13.8 % of CPU usage
[info] +
[info] - Initiation
[info] + 2,000,000 ops
[info] + 350,606,823 ns
[info] + 175 ns/op
[info] + 47.1 % of CPU usage
[info] + 44 bytes per instance
[info] +
[info] - Single-producer sending
[info] + 15,000,000 ops
[info] + 484,376,301 ns
[info] + 30,967,658 ops/s
[info] + 29.7 % of CPU usage
[info] +
[info] - Multi-producer sending
[info] + 15,000,000 ops
[info] + 602,386,156 ns
[info] + 24,900,970 ops/s
[info] + 91.5 % of CPU usage
[info] +
[info] - Max throughput
[info] + 30,000,000 ops
[info] + 296,123,458 ns
[info] + 101,309,096 ops/s
[info] + 36.3 % of CPU usage
[info] +
[info] - Ping latency
[info] + 3,000,000 ops
[info] + 446,850,530 ns
[info] + p(0.00000) = 123 ns/op
[info] + p(0.50000) = 134 ns/op
[info] + p(0.90000) = 160 ns/op
[info] + p(0.99000) = 341 ns/op
[info] + p(0.99900) = 691 ns/op
[info] + p(0.99990) = 7679 ns/op
[info] + p(0.99999) = 17151 ns/op
[info] + p(1.00000) = 103423 ns/op
[info] + 16.2 % of CPU usage
[info] +
[info] - Ping throughput 10K
[info] + 6,000,000 ops
[info] + 890,354,087 ns
[info] + 6,738,891 ops/s
[info] + 14.9 % of CPU usage
[info] +
Executor service type: akka-forkjoin-pool
[info] ScalazActorSpec:
[info] - Enqueueing
[info] + 40,000,000 ops
[info] + 901,925,181 ns
[info] + 44,349,576 ops/s
[info] + 12.8 % of CPU usage
[info] + 24 bytes per instance
[info] +
[info] - Dequeueing
[info] + 40,000,000 ops
[info] + 138,108,196 ns
[info] + 289,627,995 ops/s
[info] + 16.3 % of CPU usage
[info] +
[info] - Initiation
[info] + 10,000,000 ops
[info] + 268,317,033 ns
[info] + 26 ns/op
[info] + 22.8 % of CPU usage
[info] + 88 bytes per instance
[info] +
[info] - Single-producer sending
[info] + 15,000,000 ops
[info] + 446,244,975 ns
[info] + 33,613,823 ops/s
[info] + 34.7 % of CPU usage
[info] +
[info] - Multi-producer sending
[info] + 15,000,000 ops
[info] + 498,238,625 ns
[info] + 30,106,056 ops/s
[info] + 87.8 % of CPU usage
[info] +
[info] - Max throughput
[info] + 30,000,000 ops
[info] + 198,309,161 ns
[info] + 151,278,941 ops/s
[info] + 54.2 % of CPU usage
[info] +
[info] - Ping latency
[info] + 3,000,000 ops
[info] + 421,861,406 ns
[info] + p(0.00000) = 102 ns/op
[info] + p(0.50000) = 123 ns/op
[info] + p(0.90000) = 149 ns/op
[info] + p(0.99000) = 511 ns/op
[info] + p(0.99900) = 863 ns/op
[info] + p(0.99990) = 7455 ns/op
[info] + p(0.99999) = 19071 ns/op
[info] + p(1.00000) = 93695 ns/op
[info] + 18.7 % of CPU usage
[info] +
[info] - Ping throughput 10K
[info] + 6,000,000 ops
[info] + 768,622,281 ns
[info] + 7,806,174 ops/s
[info] + 16.8 % of CPU usage
[info] +
[info] Run completed in 2 minutes, 36 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: 157 s, completed Jul 12, 2017 9:11:38 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
[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
Exception in thread "pool-3-thread-103" 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$5.run(Actor.scala:86)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at java.lang.Thread.run(Thread.java:745)
Exception in thread "pool-3-thread-102" java.lang.NullPointerException
Exception in thread "pool-3-thread-103" 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$5.run(Actor.scala:86)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at java.lang.Thread.run(Thread.java:745)
[info] - handle messages with previous behaviour after unhandled errors
[info] - don't starve tasks arriving from external submit under high internal traffic
[info] AkkaBoundedActorSpec:
Executor service type: java-forkjoin-pool
[info] - Enqueueing
[info] + 10,000,000 ops
[info] + 794,760,445 ns
[info] + 12,582,407 ops/s
[info] + 14.2 % of CPU usage
[info] + 48 bytes per instance
[info] +
[info] - Dequeueing
[info] + 10,000,000 ops
[info] + 986,221,753 ns
[info] + 10,139,707 ops/s
[info] + 13.9 % of CPU usage
[info] +
[info] - Initiation
[info] + 100,000 ops
[info] + 818,894,306 ns
[info] + 8,188 ns/op
[info] + 44.9 % of CPU usage
[info] + 563 bytes per instance
[info] +
[info] - Single-producer sending
[info] + 6,000,000 ops
[info] + 1,810,250,957 ns
[info] + 3,314,457 ops/s
[info] + 23.1 % of CPU usage
[info] +
[info] - Multi-producer sending
[info] + 6,000,000 ops
[info] + 1,639,764,304 ns
[info] + 3,659,062 ops/s
[info] + 37.8 % of CPU usage
[info] +
[info] - Max throughput
[info] + 12,000,000 ops
[info] + 1,331,913,929 ns
[info] + 9,009,591 ops/s
[info] + 22.7 % of CPU usage
[info] +
[info] - Ping latency
[info] + 1,500,000 ops
[info] + 590,578,252 ns
[info] + p(0.00000) = 302 ns/op
[info] + p(0.50000) = 329 ns/op
[info] + p(0.90000) = 477 ns/op
[info] + p(0.99000) = 505 ns/op
[info] + p(0.99900) = 1359 ns/op
[info] + p(0.99990) = 8127 ns/op
[info] + p(0.99999) = 49151 ns/op
[info] + p(1.00000) = 585727 ns/op
[info] + 13.1 % of CPU usage
[info] +
[info] - Ping throughput 10K
[info] + 2,000,000 ops
[info] + 2,181,818,021 ns
[info] + 916,666 ops/s
[info] + 22.1 % of CPU usage
[info] +
[info] - Overflow throughput
[info] + 5,000,000 ops
[info] + 709,717,753 ns
[info] + 7,045,054 ops/s
[info] + 18.7 % of CPU usage
[info] +
Executor service type: java-forkjoin-pool
[info] AkkaMCNonBlockingBoundedActorSpec:
[info] - Enqueueing
[info] + 10,000,000 ops
[info] + 418,256,329 ns
[info] + 23,908,783 ops/s
[info] + 14.3 % of CPU usage
[info] + 48 bytes per instance
[info] +
[info] - Dequeueing
[info] + 10,000,000 ops
[info] + 778,143,275 ns
[info] + 12,851,103 ops/s
[info] + 14.5 % of CPU usage
[info] +
[info] - Initiation
[info] + 100,000 ops
[info] + 748,167,384 ns
[info] + 7,481 ns/op
[info] + 48.3 % of CPU usage
[info] + 379 bytes per instance
[info] +
[info] - Single-producer sending
[info] + 6,000,000 ops
[info] + 844,272,761 ns
[info] + 7,106,708 ops/s
[info] + 22.9 % of CPU usage
[info] +
[info] - Multi-producer sending
[info] + 6,000,000 ops
[info] + 1,662,596,064 ns
[info] + 3,608,814 ops/s
[info] + 72.9 % of CPU usage
[info] +
[info] - Max throughput
[info] + 12,000,000 ops
[info] + 1,455,003,856 ns
[info] + 8,247,400 ops/s
[info] + 22.2 % of CPU usage
[info] +
[info] - Ping latency
[info] + 1,500,000 ops
[info] + 406,053,104 ns
[info] + p(0.00000) = 243 ns/op
[info] + p(0.50000) = 261 ns/op
[info] + p(0.90000) = 273 ns/op
[info] + p(0.99000) = 323 ns/op
[info] + p(0.99900) = 2543 ns/op
[info] + p(0.99990) = 7903 ns/op
[info] + p(0.99999) = 21503 ns/op
[info] + p(1.00000) = 254975 ns/op
[info] + 13.2 % of CPU usage
[info] +
[info] - Ping throughput 10K
[info] + 2,000,000 ops
[info] + 1,510,544,431 ns
[info] + 1,324,025 ops/s
[info] + 20.6 % of CPU usage
[info] +
[info] - Overflow throughput
[info] + 5,000,000 ops
[info] + 1,188,010,972 ns
[info] + 4,208,715 ops/s
[info] + 20.7 % of CPU usage
[info] +
[info] AkkaMCUnboundedActorSpec:
Executor service type: java-forkjoin-pool
[info] - Enqueueing
[info] + 10,000,000 ops
[info] + 473,194,802 ns
[info] + 21,132,945 ops/s
[info] + 14.0 % of CPU usage
[info] + 48 bytes per instance
[info] +
[info] - Dequeueing
[info] + 10,000,000 ops
[info] + 772,743,819 ns
[info] + 12,940,899 ops/s
[info] + 13.9 % of CPU usage
[info] +
[info] - Initiation
[info] + 100,000 ops
[info] + 688,258,618 ns
[info] + 6,882 ns/op
[info] + 43.8 % of CPU usage
[info] + 379 bytes per instance
[info] +
[info] - Single-producer sending
[info] + 6,000,000 ops
[info] + 769,427,144 ns
[info] + 7,798,009 ops/s
[info] + 21.9 % of CPU usage
[info] +
[info] - Multi-producer sending
[info] + 6,000,000 ops
[info] + 665,711,167 ns
[info] + 9,012,917 ops/s
[info] + 39.1 % of CPU usage
[info] +
[info] - Max throughput
[info] + 12,000,000 ops
[info] + 1,011,008,928 ns
[info] + 11,869,331 ops/s
[info] + 20.0 % of CPU usage
[info] +
[info] - Ping latency
[info] + 1,500,000 ops
[info] + 380,104,429 ns
[info] + p(0.00000) = 223 ns/op
[info] + p(0.50000) = 242 ns/op
[info] + p(0.90000) = 254 ns/op
[info] + p(0.99000) = 343 ns/op
[info] + p(0.99900) = 1279 ns/op
[info] + p(0.99990) = 7871 ns/op
[info] + p(0.99999) = 17151 ns/op
[info] + p(1.00000) = 331775 ns/op
[info] + 13.2 % of CPU usage
[info] +
[info] - Ping throughput 10K
[info] + 2,000,000 ops
[info] + 1,485,125,384 ns
[info] + 1,346,687 ops/s
[info] + 21.8 % of CPU usage
[info] +
Executor service type: java-forkjoin-pool
[info] AkkaSCONonBlockingBoundedActorSpec:
[info] - Enqueueing
[info] + 10,000,000 ops
[info] + 471,854,065 ns
[info] + 21,192,993 ops/s
[info] + 14.6 % of CPU usage
[info] + 48 bytes per instance
[info] +
[info] - Dequeueing
[info] + 10,000,000 ops
[info] + 792,317,409 ns
[info] + 12,621,204 ops/s
[info] + 14.7 % of CPU usage
[info] +
[info] - Initiation
[info] + 100,000 ops
[info] + 695,174,904 ns
[info] + 6,951 ns/op
[info] + 46.9 % of CPU usage
[info] + 400 bytes per instance
[info] +
[info] - Single-producer sending
[info] + 6,000,000 ops
[info] + 859,360,922 ns
[info] + 6,981,932 ops/s
[info] + 22.8 % of CPU usage
[info] +
[info] - Multi-producer sending
[info] + 6,000,000 ops
[info] + 1,279,039,036 ns
[info] + 4,691,021 ops/s
[info] + 83.9 % of CPU usage
[info] +
[info] - Max throughput
[info] + 12,000,000 ops
[info] + 1,092,486,546 ns
[info] + 10,984,116 ops/s
[info] + 22.9 % of CPU usage
[info] +
[info] - Ping latency
[info] + 1,500,000 ops
[info] + 418,039,557 ns
[info] + p(0.00000) = 247 ns/op
[info] + p(0.50000) = 267 ns/op
[info] + p(0.90000) = 287 ns/op
[info] + p(0.99000) = 483 ns/op
[info] + p(0.99900) = 1735 ns/op
[info] + p(0.99990) = 7839 ns/op
[info] + p(0.99999) = 18943 ns/op
[info] + p(1.00000) = 264191 ns/op
[info] + 13.5 % of CPU usage
[info] +
[info] - Ping throughput 10K
[info] + 2,000,000 ops
[info] + 1,410,841,191 ns
[info] + 1,417,593 ops/s
[info] + 21.2 % of CPU usage
[info] +
[info] - Overflow throughput
[info] + 5,000,000 ops
[info] + 719,300,034 ns
[info] + 6,951,202 ops/s
[info] + 15.1 % of CPU usage
[info] +
[info] AkkaSCOUnboundedActorSpec:
Executor service type: java-forkjoin-pool
[info] - Enqueueing
[info] + 10,000,000 ops
[info] + 436,151,734 ns
[info] + 22,927,800 ops/s
[info] + 14.3 % of CPU usage
[info] + 48 bytes per instance
[info] +
[info] - Dequeueing
[info] + 10,000,000 ops
[info] + 943,144,092 ns
[info] + 10,602,833 ops/s
[info] + 14.3 % of CPU usage
[info] +
[info] - Initiation
[info] + 100,000 ops
[info] + 993,014,176 ns
[info] + 9,930 ns/op
[info] + 35.5 % of CPU usage
[info] + 400 bytes per instance
[info] +
[info] - Single-producer sending
[info] + 6,000,000 ops
[info] + 799,642,051 ns
[info] + 7,503,357 ops/s
[info] + 23.3 % of CPU usage
[info] +
[info] - Multi-producer sending
[info] + 6,000,000 ops
[info] + 725,519,569 ns
[info] + 8,269,935 ops/s
[info] + 40.5 % of CPU usage
[info] +
[info] - Max throughput
[info] + 12,000,000 ops