-
Notifications
You must be signed in to change notification settings - Fork 16
/
out0.txt
2468 lines (2468 loc) · 76.8 KB
/
out0.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:42:23 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: 14 s, completed Jul 12, 2017 9:42:37 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-1" 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 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
Exception in thread "pool-3-thread-97" java.lang.NullPointerException
[info] - don't starve tasks arriving from external submit under high internal traffic
Exception in thread "pool-3-thread-98" java.lang.NullPointerException
Exception in thread "pool-3-thread-99" java.lang.NullPointerException
Exception in thread "pool-3-thread-102" java.lang.NullPointerException
Executor service type: akka-forkjoin-pool
[info] AkkaBoundedActorSpec:
[info] - Enqueueing
[info] + 10,000,000 ops
[info] + 734,978,714 ns
[info] + 13,605,836 ops/s
[info] + 14.1 % of CPU usage
[info] + 48 bytes per instance
[info] +
[info] - Dequeueing
[info] + 10,000,000 ops
[info] + 992,696,617 ns
[info] + 10,073,571 ops/s
[info] + 14.6 % of CPU usage
[info] +
[info] - Initiation
[info] + 100,000 ops
[info] + 1,016,871,244 ns
[info] + 10,168 ns/op
[info] + 63.1 % of CPU usage
[info] + 588 bytes per instance
[info] +
[info] - Single-producer sending
[info] + 6,000,000 ops
[info] + 1,408,857,790 ns
[info] + 4,258,769 ops/s
[info] + 25.1 % of CPU usage
[info] +
[info] - Multi-producer sending
[info] + 6,000,000 ops
[info] + 1,271,414,398 ns
[info] + 4,719,153 ops/s
[info] + 37.4 % of CPU usage
[info] +
[info] - Max throughput
[info] + 12,000,000 ops
[info] + 496,675,715 ns
[info] + 24,160,633 ops/s
[info] + 92.9 % of CPU usage
[info] +
[info] - Ping latency
[info] + 1,500,000 ops
[info] + 824,194,888 ns
[info] + p(0.00000) = 262 ns/op
[info] + p(0.50000) = 527 ns/op
[info] + p(0.90000) = 603 ns/op
[info] + p(0.99000) = 887 ns/op
[info] + p(0.99900) = 2735 ns/op
[info] + p(0.99990) = 8703 ns/op
[info] + p(0.99999) = 30463 ns/op
[info] + p(1.00000) = 145407 ns/op
[info] + 98.4 % of CPU usage
[info] +
[info] - Ping throughput 10K
[info] + 2,000,000 ops
[info] + 486,430,765 ns
[info] + 4,111,582 ops/s
[info] + 96.1 % of CPU usage
[info] +
[info] - Overflow throughput
[info] + 5,000,000 ops
[info] + 532,795,209 ns
[info] + 9,384,468 ops/s
[info] + 17.6 % of CPU usage
[info] +
[info] AkkaMCNonBlockingBoundedActorSpec:
Executor service type: akka-forkjoin-pool
[info] - Enqueueing
[info] + 10,000,000 ops
[info] + 464,166,684 ns
[info] + 21,543,984 ops/s
[info] + 14.0 % of CPU usage
[info] + 48 bytes per instance
[info] +
[info] - Dequeueing
[info] + 10,000,000 ops
[info] + 808,461,086 ns
[info] + 12,369,179 ops/s
[info] + 14.8 % of CPU usage
[info] +
[info] - Initiation
[info] + 100,000 ops
[info] + 891,059,869 ns
[info] + 8,910 ns/op
[info] + 75.5 % of CPU usage
[info] + 383 bytes per instance
[info] +
[info] - Single-producer sending
[info] + 6,000,000 ops
[info] + 835,990,284 ns
[info] + 7,177,116 ops/s
[info] + 23.2 % of CPU usage
[info] +
[info] - Multi-producer sending
[info] + 6,000,000 ops
[info] + 1,404,114,999 ns
[info] + 4,273,154 ops/s
[info] + 74.6 % of CPU usage
[info] +
[info] - Max throughput
[info] + 12,000,000 ops
[info] + 419,097,705 ns
[info] + 28,632,941 ops/s
[info] + 90.1 % of CPU usage
[info] +
[info] - Ping latency
[info] + 1,500,000 ops
[info] + 729,873,583 ns
[info] + p(0.00000) = 194 ns/op
[info] + p(0.50000) = 465 ns/op
[info] + p(0.90000) = 535 ns/op
[info] + p(0.99000) = 755 ns/op
[info] + p(0.99900) = 2959 ns/op
[info] + p(0.99990) = 8511 ns/op
[info] + p(0.99999) = 36607 ns/op
[info] + p(1.00000) = 276479 ns/op
[info] + 97.6 % of CPU usage
[info] +
[info] - Ping throughput 10K
[info] + 2,000,000 ops
[info] + 386,609,735 ns
[info] + 5,173,175 ops/s
[info] + 93.8 % of CPU usage
[info] +
[info] - Overflow throughput
[info] + 5,000,000 ops
[info] + 701,407,324 ns
[info] + 7,128,525 ops/s
[info] + 28.2 % of CPU usage
[info] +
[info] AkkaMCUnboundedActorSpec:
Executor service type: akka-forkjoin-pool
[info] - Enqueueing
[info] + 10,000,000 ops
[info] + 436,970,640 ns
[info] + 22,884,832 ops/s
[info] + 14.3 % of CPU usage
[info] + 48 bytes per instance
[info] +
[info] - Dequeueing
[info] + 10,000,000 ops
[info] + 798,997,063 ns
[info] + 12,515,690 ops/s
[info] + 14.7 % of CPU usage
[info] +
[info] - Initiation
[info] + 100,000 ops
[info] + 976,061,205 ns
[info] + 9,760 ns/op
[info] + 61.0 % of CPU usage
[info] + 403 bytes per instance
[info] +
[info] - Single-producer sending
[info] + 6,000,000 ops
[info] + 978,244,934 ns
[info] + 6,133,433 ops/s
[info] + 21.5 % of CPU usage
[info] +
[info] - Multi-producer sending
[info] + 6,000,000 ops
[info] + 906,684,088 ns
[info] + 6,617,519 ops/s
[info] + 35.0 % of CPU usage
[info] +
[info] - Max throughput
[info] + 12,000,000 ops
[info] + 435,546,784 ns
[info] + 27,551,575 ops/s
[info] + 91.0 % of CPU usage
[info] +
[info] - Ping latency
[info] + 1,500,000 ops
[info] + 810,489,696 ns
[info] + p(0.00000) = 179 ns/op
[info] + p(0.50000) = 503 ns/op
[info] + p(0.90000) = 663 ns/op
[info] + p(0.99000) = 919 ns/op
[info] + p(0.99900) = 3199 ns/op
[info] + p(0.99990) = 10559 ns/op
[info] + p(0.99999) = 41215 ns/op
[info] + p(1.00000) = 565247 ns/op
[info] + 97.9 % of CPU usage
[info] +
[info] - Ping throughput 10K
[info] + 2,000,000 ops
[info] + 405,181,932 ns
[info] + 4,936,054 ops/s
[info] + 96.3 % of CPU usage
[info] +
[info] AkkaSCONonBlockingBoundedActorSpec:
Executor service type: akka-forkjoin-pool
[info] - Enqueueing
[info] + 10,000,000 ops
[info] + 682,638,335 ns
[info] + 14,649,045 ops/s
[info] + 13.6 % of CPU usage
[info] + 48 bytes per instance
[info] +
[info] - Dequeueing
[info] + 10,000,000 ops
[info] + 832,412,240 ns
[info] + 12,013,278 ops/s
[info] + 14.4 % of CPU usage
[info] +
[info] - Initiation
[info] + 100,000 ops
[info] + 957,004,174 ns
[info] + 9,570 ns/op
[info] + 75.8 % of CPU usage
[info] + 383 bytes per instance
[info] +
[info] - Single-producer sending
[info] + 6,000,000 ops
[info] + 1,120,810,430 ns
[info] + 5,353,269 ops/s
[info] + 23.2 % of CPU usage
[info] +
[info] - Multi-producer sending
[info] + 6,000,000 ops
[info] + 1,691,213,850 ns
[info] + 3,547,747 ops/s
[info] + 81.0 % of CPU usage
[info] +
[info] - Max throughput
[info] + 12,000,000 ops
[info] + 446,219,429 ns
[info] + 26,892,598 ops/s
[info] + 90.5 % of CPU usage
[info] +
[info] - Ping latency
[info] + 1,500,000 ops
[info] + 786,313,155 ns
[info] + p(0.00000) = 213 ns/op
[info] + p(0.50000) = 489 ns/op
[info] + p(0.90000) = 635 ns/op
[info] + p(0.99000) = 831 ns/op
[info] + p(0.99900) = 2559 ns/op
[info] + p(0.99990) = 8383 ns/op
[info] + p(0.99999) = 30847 ns/op
[info] + p(1.00000) = 1949695 ns/op
[info] + 97.8 % of CPU usage
[info] +
[info] - Ping throughput 10K
[info] + 2,000,000 ops
[info] + 500,060,340 ns
[info] + 3,999,517 ops/s
[info] + 94.0 % of CPU usage
[info] +
[info] - Overflow throughput
[info] + 5,000,000 ops
[info] + 680,893,145 ns
[info] + 7,343,296 ops/s
[info] + 17.8 % of CPU usage
[info] +
[info] AkkaSCOUnboundedActorSpec:
Executor service type: akka-forkjoin-pool
[info] - Enqueueing
[info] + 10,000,000 ops
[info] + 364,258,626 ns
[info] + 27,453,021 ops/s
[info] + 14.4 % of CPU usage
[info] + 48 bytes per instance
[info] +
[info] - Dequeueing
[info] + 10,000,000 ops
[info] + 1,072,392,432 ns
[info] + 9,324,944 ops/s
[info] + 14.7 % of CPU usage
[info] +
[info] - Initiation
[info] + 100,000 ops
[info] + 1,208,596,773 ns
[info] + 12,085 ns/op
[info] + 61.2 % of CPU usage
[info] + 404 bytes per instance
[info] +
[info] - Single-producer sending
[info] + 6,000,000 ops
[info] + 1,064,582,681 ns
[info] + 5,636,011 ops/s
[info] + 23.1 % of CPU usage
[info] +
[info] - Multi-producer sending
[info] + 6,000,000 ops
[info] + 728,747,677 ns
[info] + 8,233,302 ops/s
[info] + 38.3 % of CPU usage
[info] +
[info] - Max throughput
[info] + 12,000,000 ops
[info] + 366,029,682 ns
[info] + 32,784,226 ops/s
[info] + 92.2 % of CPU usage
[info] +
[info] - Ping latency
[info] + 1,500,000 ops
[info] + 746,061,386 ns
[info] + p(0.00000) = 171 ns/op
[info] + p(0.50000) = 473 ns/op
[info] + p(0.90000) = 575 ns/op
[info] + p(0.99000) = 803 ns/op
[info] + p(0.99900) = 2575 ns/op
[info] + p(0.99990) = 8255 ns/op
[info] + p(0.99999) = 29823 ns/op
[info] + p(1.00000) = 95743 ns/op
[info] + 98.2 % of CPU usage
[info] +
[info] - Ping throughput 10K
[info] + 2,000,000 ops
[info] + 461,714,827 ns
[info] + 4,331,678 ops/s
[info] + 97.5 % of CPU usage
[info] +
[info] AkkaUnboundedActorSpec:
Executor service type: akka-forkjoin-pool
[info] - Enqueueing
[info] + 10,000,000 ops
[info] + 334,542,242 ns
[info] + 29,891,591 ops/s
[info] + 15.7 % of CPU usage
[info] + 48 bytes per instance
[info] +
[info] - Dequeueing
[info] + 10,000,000 ops
[info] + 944,380,693 ns
[info] + 10,588,950 ops/s
[info] + 14.7 % of CPU usage
[info] +
[info] - Initiation
[info] + 100,000 ops
[info] + 946,269,677 ns
[info] + 9,462 ns/op
[info] + 71.5 % of CPU usage
[info] + 382 bytes per instance
[info] +
[info] - Single-producer sending
[info] + 6,000,000 ops
[info] + 854,557,484 ns
[info] + 7,021,177 ops/s
[info] + 22.7 % of CPU usage
[info] +
[info] - Multi-producer sending
[info] + 6,000,000 ops
[info] + 921,033,536 ns
[info] + 6,514,420 ops/s
[info] + 68.8 % of CPU usage
[info] +
[info] - Max throughput
[info] + 12,000,000 ops
[info] + 393,482,430 ns
[info] + 30,496,914 ops/s
[info] + 94.3 % of CPU usage
[info] +
[info] - Ping latency
[info] + 1,500,000 ops
[info] + 754,131,052 ns
[info] + p(0.00000) = 227 ns/op
[info] + p(0.50000) = 481 ns/op
[info] + p(0.90000) = 559 ns/op
[info] + p(0.99000) = 799 ns/op
[info] + p(0.99900) = 2399 ns/op
[info] + p(0.99990) = 8511 ns/op
[info] + p(0.99999) = 30335 ns/op
[info] + p(1.00000) = 290815 ns/op
[info] + 98.0 % of CPU usage
[info] +
[info] - Ping throughput 10K
[info] + 2,000,000 ops
[info] + 443,887,465 ns
[info] + 4,505,646 ops/s
[info] + 95.2 % 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] + 386,362,547 ns
[info] + 25,882,425 ops/s
[info] + 13.6 % of CPU usage
[info] + 23 bytes per instance
[info] +
[info] - Dequeueing
[info] + 10,000,000 ops
[info] + 506,852,355 ns
[info] + 19,729,611 ops/s
[info] + 15.8 % of CPU usage
[info] +
[info] - Initiation
[info] + 10,000,000 ops
[info] + 1,006,172,142 ns
[info] + 100 ns/op
[info] + 15.4 % of CPU usage
[info] + 72 bytes per instance
[info] +
[info] - Single-producer sending
[info] + 6,000,000 ops
[info] + 689,476,441 ns
[info] + 8,702,255 ops/s
[info] + 31.0 % of CPU usage
[info] +
[info] - Multi-producer sending
[info] + 6,000,000 ops
[info] + 825,003,454 ns
[info] + 7,272,696 ops/s
[info] + 36.2 % of CPU usage
[info] +
[info] - Max throughput
[info] + 12,000,000 ops
[info] + 313,371,649 ns
[info] + 38,293,189 ops/s
[info] + 86.6 % of CPU usage
[info] +
[info] - Ping latency
[info] + 1,500,000 ops
[info] + 1,642,120,146 ns
[info] + p(0.00000) = 580 ns/op
[info] + p(0.50000) = 967 ns/op
[info] + p(0.90000) = 1271 ns/op
[info] + p(0.99000) = 3119 ns/op
[info] + p(0.99900) = 9151 ns/op
[info] + p(0.99990) = 35071 ns/op
[info] + p(0.99999) = 93695 ns/op
[info] + p(1.00000) = 442367 ns/op
[info] + 97.1 % of CPU usage
[info] +
[info] - Ping throughput 10K
[info] + 2,000,000 ops
[info] + 670,480,422 ns
[info] + 2,982,935 ops/s
[info] + 66.7 % of CPU usage
[info] +
Executor service type: akka-forkjoin-pool
[info] MinimalistActorSpec:
[info] - Enqueueing
[info] + 40,000,000 ops
[info] + 626,762,788 ns
[info] + 63,819,998 ops/s
[info] + 12.8 % of CPU usage
[info] + 24 bytes per instance
[info] +
[info] - Dequeueing
[info] + 40,000,000 ops
[info] + 243,349,792 ns
[info] + 164,372,443 ops/s
[info] + 23.6 % of CPU usage
[info] +
[info] - Initiation
[info] + 2,000,000 ops
[info] + 370,575,919 ns
[info] + 185 ns/op
[info] + 96.8 % of CPU usage
[info] + 25 bytes per instance
[info] +
[info] - Single-producer sending
[info] + 15,000,000 ops
[info] + 241,468,644 ns
[info] + 62,119,866 ops/s
[info] + 31.1 % of CPU usage
[info] +
[info] - Multi-producer sending
[info] + 15,000,000 ops
[info] + 445,837,876 ns
[info] + 33,644,517 ops/s
[info] + 97.3 % of CPU usage
[info] +
[info] - Max throughput
[info] + 30,000,000 ops
[info] + 227,130,867 ns
[info] + 132,082,443 ops/s
[info] + 92.5 % of CPU usage
[info] +
[info] - Ping latency
[info] + 3,000,000 ops
[info] + 1,554,538,303 ns
[info] + p(0.00000) = 110 ns/op
[info] + p(0.50000) = 487 ns/op
[info] + p(0.90000) = 735 ns/op
[info] + p(0.99000) = 1079 ns/op
[info] + p(0.99900) = 2863 ns/op
[info] + p(0.99990) = 8703 ns/op
[info] + p(0.99999) = 34559 ns/op
[info] + p(1.00000) = 876543 ns/op
[info] + 98.8 % of CPU usage
[info] +
[info] - Ping throughput 10K
[info] + 6,000,000 ops
[info] + 708,328,140 ns
[info] + 8,470,650 ops/s
[info] + 98.5 % of CPU usage
[info] +
Executor service type: akka-forkjoin-pool
[info] ScalazActorSpec:
[info] - Enqueueing
[info] + 40,000,000 ops
[info] + 637,048,718 ns
[info] + 62,789,546 ops/s
[info] + 12.8 % of CPU usage
[info] + 24 bytes per instance
[info] +
[info] - Dequeueing
[info] + 40,000,000 ops
[info] + 238,131,991 ns
[info] + 167,974,071 ops/s
[info] + 61.4 % of CPU usage
[info] +
[info] - Initiation
[info] + 10,000,000 ops
[info] + 301,739,805 ns
[info] + 30 ns/op
[info] + 21.1 % of CPU usage
[info] + 88 bytes per instance
[info] +
[info] - Single-producer sending
[info] + 15,000,000 ops
[info] + 444,820,719 ns
[info] + 33,721,450 ops/s
[info] + 92.5 % of CPU usage
[info] +
[info] - Multi-producer sending
[info] + 15,000,000 ops
[info] + 446,683,097 ns
[info] + 33,580,854 ops/s
[info] + 96.8 % of CPU usage
[info] +
[info] - Max throughput
[info] + 30,000,000 ops
[info] + 264,064,707 ns
[info] + 113,608,517 ops/s
[info] + 87.6 % of CPU usage
[info] +
[info] - Ping latency
[info] + 3,000,000 ops
[info] + 1,175,674,559 ns
[info] + p(0.00000) = 112 ns/op
[info] + p(0.50000) = 335 ns/op
[info] + p(0.90000) = 519 ns/op
[info] + p(0.99000) = 1231 ns/op
[info] + p(0.99900) = 3327 ns/op
[info] + p(0.99990) = 7327 ns/op
[info] + p(0.99999) = 42239 ns/op
[info] + p(1.00000) = 4030463 ns/op
[info] + 98.6 % of CPU usage
[info] +
[info] - Ping throughput 10K
[info] + 6,000,000 ops
[info] + 579,686,351 ns
[info] + 10,350,424 ops/s
[info] + 96.4 % of CPU usage
[info] +
[info] Run completed in 2 minutes, 33 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: 155 s, completed Jul 12, 2017 9:45:17 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
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 errorsException in thread "ForkJoinPool-1-worker-2"
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] - 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
Exception in thread "pool-3-thread-51" java.lang.NullPointerException
Exception in thread "pool-3-thread-101" 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-50" java.lang.NullPointerException
Executor service type: java-forkjoin-pool
[info] AkkaBoundedActorSpec:
[info] - Enqueueing
[info] + 10,000,000 ops
[info] + 926,567,929 ns
[info] + 10,792,516 ops/s
[info] + 14.6 % of CPU usage
[info] + 48 bytes per instance
[info] +
[info] - Dequeueing
[info] + 10,000,000 ops
[info] + 1,091,533,206 ns
[info] + 9,161,425 ops/s
[info] + 14.3 % of CPU usage
[info] +
[info] - Initiation
[info] + 100,000 ops
[info] + 1,231,566,168 ns
[info] + 12,315 ns/op
[info] + 49.4 % of CPU usage
[info] + 587 bytes per instance
[info] +
[info] - Single-producer sending
[info] + 6,000,000 ops
[info] + 1,608,742,373 ns
[info] + 3,729,621 ops/s
[info] + 25.5 % of CPU usage
[info] +
[info] - Multi-producer sending
[info] + 6,000,000 ops
[info] + 1,723,345,531 ns
[info] + 3,481,600 ops/s
[info] + 35.9 % of CPU usage
[info] +
[info] - Max throughput
[info] + 12,000,000 ops
[info] + 520,578,472 ns
[info] + 23,051,279 ops/s
[info] + 95.1 % of CPU usage
[info] +
[info] - Ping latency
[info] + 1,500,000 ops
[info] + 2,549,003,169 ns
[info] + p(0.00000) = 352 ns/op
[info] + p(0.50000) = 1567 ns/op
[info] + p(0.90000) = 2687 ns/op
[info] + p(0.99000) = 3775 ns/op
[info] + p(0.99900) = 7679 ns/op
[info] + p(0.99990) = 13375 ns/op
[info] + p(0.99999) = 42495 ns/op
[info] + p(1.00000) = 145407 ns/op
[info] + 32.7 % of CPU usage
[info] +
[info] - Ping throughput 10K
[info] + 2,000,000 ops
[info] + 502,945,982 ns
[info] + 3,976,570 ops/s
[info] + 97.7 % of CPU usage
[info] +
[info] - Overflow throughput
[info] + 5,000,000 ops
[info] + 535,866,924 ns
[info] + 9,330,674 ops/s
[info] + 16.3 % of CPU usage
[info] +
Executor service type: java-forkjoin-pool
[info] AkkaMCNonBlockingBoundedActorSpec:
[info] - Enqueueing
[info] + 10,000,000 ops
[info] + 666,030,011 ns
[info] + 15,014,338 ops/s
[info] + 13.9 % of CPU usage
[info] + 48 bytes per instance
[info] +
[info] - Dequeueing
[info] + 10,000,000 ops
[info] + 801,654,144 ns
[info] + 12,474,207 ops/s
[info] + 14.2 % of CPU usage
[info] +
[info] - Initiation
[info] + 100,000 ops
[info] + 950,917,066 ns
[info] + 9,509 ns/op
[info] + 50.6 % of CPU usage
[info] + 404 bytes per instance
[info] +
[info] - Single-producer sending
[info] + 6,000,000 ops
[info] + 1,222,484,905 ns
[info] + 4,908,036 ops/s
[info] + 25.2 % of CPU usage
[info] +
[info] - Multi-producer sending
[info] + 6,000,000 ops
[info] + 1,638,061,799 ns
[info] + 3,662,865 ops/s
[info] + 78.1 % of CPU usage
[info] +
[info] - Max throughput
[info] + 12,000,000 ops
[info] + 403,688,269 ns
[info] + 29,725,907 ops/s
[info] + 94.1 % of CPU usage
[info] +
[info] - Ping latency
[info] + 1,500,000 ops
[info] + 1,739,646,200 ns
[info] + p(0.00000) = 204 ns/op
[info] + p(0.50000) = 1055 ns/op
[info] + p(0.90000) = 1895 ns/op
[info] + p(0.99000) = 2623 ns/op
[info] + p(0.99900) = 4031 ns/op
[info] + p(0.99990) = 9087 ns/op
[info] + p(0.99999) = 27391 ns/op
[info] + p(1.00000) = 219135 ns/op
[info] + 33.3 % of CPU usage
[info] +
[info] - Ping throughput 10K
[info] + 2,000,000 ops
[info] + 467,696,609 ns
[info] + 4,276,276 ops/s
[info] + 97.0 % of CPU usage
[info] +
[info] - Overflow throughput
[info] + 5,000,000 ops
[info] + 672,092,612 ns
[info] + 7,439,450 ops/s
[info] + 19.9 % of CPU usage
[info] +
Executor service type: java-forkjoin-pool
[info] AkkaMCUnboundedActorSpec:
[info] - Enqueueing
[info] + 10,000,000 ops
[info] + 464,402,504 ns
[info] + 21,533,044 ops/s
[info] + 13.7 % of CPU usage
[info] + 48 bytes per instance
[info] +
[info] - Dequeueing
[info] + 10,000,000 ops
[info] + 1,120,556,690 ns
[info] + 8,924,135 ops/s
[info] + 14.1 % of CPU usage
[info] +
[info] - Initiation
[info] + 100,000 ops
[info] + 1,265,495,536 ns
[info] + 12,654 ns/op
[info] + 46.2 % of CPU usage
[info] + 383 bytes per instance
[info] +
[info] - Single-producer sending
[info] + 6,000,000 ops
[info] + 804,749,263 ns
[info] + 7,455,738 ops/s
[info] + 21.7 % of CPU usage
[info] +
[info] - Multi-producer sending
[info] + 6,000,000 ops
[info] + 694,459,820 ns
[info] + 8,639,808 ops/s
[info] + 35.6 % of CPU usage
[info] +
[info] - Max throughput
[info] + 12,000,000 ops
[info] + 381,147,657 ns
[info] + 31,483,861 ops/s
[info] + 85.9 % of CPU usage
[info] +
[info] - Ping latency
[info] + 1,500,000 ops
[info] + 2,259,141,750 ns
[info] + p(0.00000) = 201 ns/op
[info] + p(0.50000) = 1351 ns/op
[info] + p(0.90000) = 2511 ns/op
[info] + p(0.99000) = 3423 ns/op
[info] + p(0.99900) = 4479 ns/op
[info] + p(0.99990) = 11583 ns/op
[info] + p(0.99999) = 33023 ns/op
[info] + p(1.00000) = 79871 ns/op
[info] + 33.5 % of CPU usage
[info] +
[info] - Ping throughput 10K
[info] + 2,000,000 ops
[info] + 578,334,028 ns
[info] + 3,458,209 ops/s
[info] + 96.6 % of CPU usage
[info] +
[info] AkkaSCONonBlockingBoundedActorSpec:
Executor service type: java-forkjoin-pool
[info] - Enqueueing
[info] + 10,000,000 ops
[info] + 474,603,401 ns
[info] + 21,070,224 ops/s
[info] + 13.7 % of CPU usage
[info] + 48 bytes per instance
[info] +
[info] - Dequeueing
[info] + 10,000,000 ops
[info] + 1,056,856,342 ns
[info] + 9,462,023 ops/s
[info] + 14.8 % of CPU usage
[info] +
[info] - Initiation
[info] + 100,000 ops
[info] + 868,970,103 ns
[info] + 8,689 ns/op
[info] + 47.9 % of CPU usage
[info] + 404 bytes per instance
[info] +
[info] - Single-producer sending
[info] + 6,000,000 ops
[info] + 849,416,538 ns
[info] + 7,063,672 ops/s
[info] + 22.2 % of CPU usage
[info] +
[info] - Multi-producer sending
[info] + 6,000,000 ops
[info] + 1,879,292,652 ns
[info] + 3,192,690 ops/s
[info] + 71.6 % of CPU usage
[info] +
[info] - Max throughput
[info] + 12,000,000 ops
[info] + 545,464,726 ns
[info] + 21,999,589 ops/s
[info] + 93.7 % of CPU usage
[info] +
[info] - Ping latency
[info] + 1,500,000 ops
[info] + 1,923,920,288 ns
[info] + p(0.00000) = 250 ns/op
[info] + p(0.50000) = 1167 ns/op
[info] + p(0.90000) = 2111 ns/op
[info] + p(0.99000) = 3103 ns/op
[info] + p(0.99900) = 5439 ns/op
[info] + p(0.99990) = 11391 ns/op
[info] + p(0.99999) = 39167 ns/op
[info] + p(1.00000) = 152575 ns/op
[info] + 33.3 % of CPU usage
[info] +
[info] - Ping throughput 10K
[info] + 2,000,000 ops
[info] + 381,633,645 ns
[info] + 5,240,628 ops/s
[info] + 96.0 % of CPU usage
[info] +
[info] - Overflow throughput
[info] + 5,000,000 ops
[info] + 504,074,051 ns
[info] + 9,919,177 ops/s
[info] + 20.3 % of CPU usage
[info] +
[info] AkkaSCOUnboundedActorSpec:
Executor service type: java-forkjoin-pool
[info] - Enqueueing
[info] + 10,000,000 ops
[info] + 309,334,016 ns
[info] + 32,327,514 ops/s
[info] + 15.0 % of CPU usage
[info] + 48 bytes per instance
[info] +
[info] - Dequeueing
[info] + 10,000,000 ops
[info] + 822,270,972 ns
[info] + 12,161,441 ops/s
[info] + 14.7 % of CPU usage
[info] +
[info] - Initiation
[info] + 100,000 ops
[info] + 893,179,639 ns
[info] + 8,931 ns/op
[info] + 50.0 % of CPU usage
[info] + 383 bytes per instance
[info] +
[info] - Single-producer sending
[info] + 6,000,000 ops
[info] + 1,059,773,620 ns
[info] + 5,661,586 ops/s
[info] + 23.4 % of CPU usage
[info] +
[info] - Multi-producer sending
[info] + 6,000,000 ops
[info] + 903,407,312 ns
[info] + 6,641,522 ops/s
[info] + 36.3 % of CPU usage
[info] +
[info] - Max throughput
[info] + 12,000,000 ops
[info] + 442,038,285 ns
[info] + 27,146,969 ops/s
[info] + 90.2 % of CPU usage
[info] +
[info] - Ping latency
[info] + 1,500,000 ops
[info] + 2,189,116,897 ns
[info] + p(0.00000) = 256 ns/op
[info] + p(0.50000) = 1271 ns/op
[info] + p(0.90000) = 2495 ns/op
[info] + p(0.99000) = 3455 ns/op
[info] + p(0.99900) = 5631 ns/op
[info] + p(0.99990) = 12863 ns/op
[info] + p(0.99999) = 38655 ns/op
[info] + p(1.00000) = 268287 ns/op
[info] + 33.6 % of CPU usage
[info] +
[info] - Ping throughput 10K