forked from plokhotnyuk/actors
-
Notifications
You must be signed in to change notification settings - Fork 0
/
out0.txt
1065 lines (945 loc) · 29.9 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] Scanning for projects...
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building Actors 1.0-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-clean-plugin:2.4.1:clean (default-clean) @ actors ---
[INFO] Deleting C:\Users\Andriy\Projects\com\github\plokhotnyuk\actors\target
[INFO]
[INFO] --- maven-resources-plugin:2.5:resources (default-resources) @ actors ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory C:\Users\Andriy\Projects\com\github\plokhotnyuk\actors\src\main\resources
[INFO]
[INFO] --- scala-maven-plugin:3.1.3:compile (compile) @ actors ---
[WARNING] Expected all dependencies to require Scala version: 2.10.2
[WARNING] com.github.plokhotnyuk.actors:actors:1.0-SNAPSHOT requires scala version: 2.10.2
[WARNING] com.typesafe.akka:akka-actor_2.10:2.2.0 requires scala version: 2.10.2
[WARNING] net.liftweb:lift-common_2.10:2.5.1 requires scala version: 2.10.0
[WARNING] Multiple versions of scala libraries detected!
[WARNING] No source files found.
[INFO]
[INFO] --- maven-resources-plugin:2.5:testResources (default-testResources) @ actors ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory C:\Users\Andriy\Projects\com\github\plokhotnyuk\actors\src\test\resources
[INFO]
[INFO] --- scala-maven-plugin:3.1.3:testCompile (testCompile) @ actors ---
[WARNING] Expected all dependencies to require Scala version: 2.10.2
[WARNING] com.github.plokhotnyuk.actors:actors:1.0-SNAPSHOT requires scala version: 2.10.2
[WARNING] com.typesafe.akka:akka-actor_2.10:2.2.0 requires scala version: 2.10.2
[WARNING] net.liftweb:lift-common_2.10:2.5.1 requires scala version: 2.10.0
[WARNING] Multiple versions of scala libraries detected!
[INFO] C:\Users\Andriy\Projects\com\github\plokhotnyuk\actors\src\test\scala:-1: info: compiling
[INFO] Compiling 9 source files to C:\Users\Andriy\Projects\com\github\plokhotnyuk\actors\target\test-classes at 1373562858394
[WARNING] Java HotSpot(TM) 64-Bit Server VM warning: ignoring option PermSize=128m; support was removed in 8.0
[WARNING] Java HotSpot(TM) 64-Bit Server VM warning: ignoring option MaxPermSize=128m; support was removed in 8.0
[INFO] prepare-compile in 0 s
[INFO] compile in 10 s
[INFO]
[INFO] --- maven-surefire-plugin:2.13:test (default-test) @ actors ---
[INFO] Tests are skipped.
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 12.074s
[INFO] Finished at: Thu Jul 11 20:14:28 EEST 2013
[INFO] Final Memory: 16M/1024M
[INFO] ------------------------------------------------------------------------
[INFO] Scanning for projects...
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building Actors 1.0-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-resources-plugin:2.5:resources (default-resources) @ actors ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory C:\Users\Andriy\Projects\com\github\plokhotnyuk\actors\src\main\resources
[INFO]
[INFO] --- scala-maven-plugin:3.1.3:compile (compile) @ actors ---
[WARNING] Expected all dependencies to require Scala version: 2.10.2
[WARNING] com.github.plokhotnyuk.actors:actors:1.0-SNAPSHOT requires scala version: 2.10.2
[WARNING] com.typesafe.akka:akka-actor_2.10:2.2.0 requires scala version: 2.10.2
[WARNING] net.liftweb:lift-common_2.10:2.5.1 requires scala version: 2.10.0
[WARNING] Multiple versions of scala libraries detected!
[WARNING] No source files found.
[INFO]
[INFO] --- maven-resources-plugin:2.5:testResources (default-testResources) @ actors ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory C:\Users\Andriy\Projects\com\github\plokhotnyuk\actors\src\test\resources
[INFO]
[INFO] --- scala-maven-plugin:3.1.3:testCompile (testCompile) @ actors ---
[WARNING] Expected all dependencies to require Scala version: 2.10.2
[WARNING] com.github.plokhotnyuk.actors:actors:1.0-SNAPSHOT requires scala version: 2.10.2
[WARNING] com.typesafe.akka:akka-actor_2.10:2.2.0 requires scala version: 2.10.2
[WARNING] net.liftweb:lift-common_2.10:2.5.1 requires scala version: 2.10.0
[WARNING] Multiple versions of scala libraries detected!
[INFO] Nothing to compile - all classes are up to date
[INFO]
[INFO] --- maven-surefire-plugin:2.13:test (default-test) @ actors ---
[INFO] Surefire report directory: C:\Users\Andriy\Projects\com\github\plokhotnyuk\actors\target\surefire-reports
-------------------------------------------------------
T E S T S
-------------------------------------------------------
-------------------------------------------------------
T E S T S
-------------------------------------------------------
Running com.github.plokhotnyuk.actors.AkkaActorSpec
Executor service type: fixed-thread-pool
Single-producer sending:
40,000,000 ops
3,183 ms
79 ns/op
12,566,760 ops/s
50.2 % of CPU usage
Multi-producer sending:
20,000,000 ops
1,716 ms
85 ns/op
11,655,011 ops/s
60.2 % of CPU usage
Max throughput:
40,000,000 ops
1,358 ms
33 ns/op
29,455,081 ops/s
96.8 % of CPU usage
Ping latency:
10,000,000 ops
4,789 ms
478 ns/op
2,088,118 ops/s
48.5 % of CPU usage
Ping throughput 1K:
10,000,000 ops
1,560 ms
156 ns/op
6,410,256 ops/s
94.0 % of CPU usage
Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 14.29 sec
Java HotSpot(TM) 64-Bit Server VM warning: ignoring option PermSize=128m; support was removed in 8.0
Java HotSpot(TM) 64-Bit Server VM warning: ignoring option MaxPermSize=128m; support was removed in 8.0
Running com.github.plokhotnyuk.actors.LiftActorSpec
Executor service type: fixed-thread-pool
Single-producer sending:
20,000,000 ops
1,685 ms
84 ns/op
11,869,436 ops/s
38.4 % of CPU usage
Multi-producer sending:
20,000,000 ops
1,918 ms
95 ns/op
10,427,528 ops/s
43.1 % of CPU usage
Max throughput:
20,000,000 ops
1,607 ms
80 ns/op
12,445,550 ops/s
95.6 % of CPU usage
Ping latency:
2,000,000 ops
2,824 ms
1,412 ns/op
708,215 ops/s
51.2 % of CPU usage
Ping throughput 1K:
5,000,000 ops
1,872 ms
374 ns/op
2,670,940 ops/s
25.0 % of CPU usage
Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 10.873 sec
Java HotSpot(TM) 64-Bit Server VM warning: ignoring option PermSize=128m; support was removed in 8.0
Java HotSpot(TM) 64-Bit Server VM warning: ignoring option MaxPermSize=128m; support was removed in 8.0
Running com.github.plokhotnyuk.actors.ProxyActorsActorSpec
Executor service type: fixed-thread-pool
Single-producer sending:
10,000,000 ops
1,716 ms
171 ns/op
5,827,505 ops/s
73.4 % of CPU usage
Multi-producer sending:
10,000,000 ops
1,700 ms
170 ns/op
5,882,352 ops/s
64.9 % of CPU usage
Max throughput:
5,000,000 ops
796 ms
159 ns/op
6,281,407 ops/s
59.3 % of CPU usage
Ping latency:
10,000,000 ops
5,601 ms
560 ns/op
1,785,395 ops/s
49.3 % of CPU usage
Ping throughput 1K:
100,000 ops
2,106 ms
21,060 ns/op
47,483 ops/s
62.6 % of CPU usage
Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 17.129 sec
Java HotSpot(TM) 64-Bit Server VM warning: ignoring option PermSize=128m; support was removed in 8.0
Java HotSpot(TM) 64-Bit Server VM warning: ignoring option MaxPermSize=128m; support was removed in 8.0
Running com.github.plokhotnyuk.actors.ScalaActorSpec
Executor service type: fixed-thread-pool
Single-producer sending:
1,000,000 ops
3,572 ms
3,572 ns/op
279,955 ops/s
57.3 % of CPU usage
Multi-producer sending:
1,000,000 ops
3,838 ms
3,838 ns/op
260,552 ops/s
59.5 % of CPU usage
Max throughput:
5,000,000 ops
6,318 ms
1,263 ns/op
791,389 ops/s
26.2 % of CPU usage
Ping latency:
1,000,000 ops
3,759 ms
3,759 ns/op
266,028 ops/s
72.1 % of CPU usage
Ping throughput 1K:
2,000,000 ops
3,635 ms
1,817 ns/op
550,206 ops/s
25.0 % of CPU usage
Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 22.168 sec
Java HotSpot(TM) 64-Bit Server VM warning: ignoring option PermSize=128m; support was removed in 8.0
Java HotSpot(TM) 64-Bit Server VM warning: ignoring option MaxPermSize=128m; support was removed in 8.0
Running com.github.plokhotnyuk.actors.ScalazActorSpec
Executor service type: fixed-thread-pool
Single-producer sending:
100,000,000 ops
2,964 ms
29 ns/op
33,738,191 ops/s
71.2 % of CPU usage
Multi-producer sending:
50,000,000 ops
2,153 ms
43 ns/op
23,223,409 ops/s
98.7 % of CPU usage
Max throughput:
200,000,000 ops
2,434 ms
12 ns/op
82,169,268 ops/s
96.8 % of CPU usage
Ping latency:
20,000,000 ops
4,336 ms
216 ns/op
4,612,546 ops/s
48.3 % of CPU usage
Ping throughput 1K:
20,000,000 ops
2,324 ms
116 ns/op
8,605,851 ops/s
50.0 % of CPU usage
Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 15.179 sec
Java HotSpot(TM) 64-Bit Server VM warning: ignoring option PermSize=128m; support was removed in 8.0
Java HotSpot(TM) 64-Bit Server VM warning: ignoring option MaxPermSize=128m; support was removed in 8.0
Results :
Tests run: 25, Failures: 0, Errors: 0, Skipped: 0
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 1:33.787s
[INFO] Finished at: Thu Jul 11 20:16:04 EEST 2013
[INFO] Final Memory: 19M/1024M
[INFO] ------------------------------------------------------------------------
[INFO] Scanning for projects...
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building Actors 1.0-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-resources-plugin:2.5:resources (default-resources) @ actors ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory C:\Users\Andriy\Projects\com\github\plokhotnyuk\actors\src\main\resources
[INFO]
[INFO] --- scala-maven-plugin:3.1.3:compile (compile) @ actors ---
[WARNING] Expected all dependencies to require Scala version: 2.10.2
[WARNING] com.github.plokhotnyuk.actors:actors:1.0-SNAPSHOT requires scala version: 2.10.2
[WARNING] com.typesafe.akka:akka-actor_2.10:2.2.0 requires scala version: 2.10.2
[WARNING] net.liftweb:lift-common_2.10:2.5.1 requires scala version: 2.10.0
[WARNING] Multiple versions of scala libraries detected!
[WARNING] No source files found.
[INFO]
[INFO] --- maven-resources-plugin:2.5:testResources (default-testResources) @ actors ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory C:\Users\Andriy\Projects\com\github\plokhotnyuk\actors\src\test\resources
[INFO]
[INFO] --- scala-maven-plugin:3.1.3:testCompile (testCompile) @ actors ---
[WARNING] Expected all dependencies to require Scala version: 2.10.2
[WARNING] com.github.plokhotnyuk.actors:actors:1.0-SNAPSHOT requires scala version: 2.10.2
[WARNING] com.typesafe.akka:akka-actor_2.10:2.2.0 requires scala version: 2.10.2
[WARNING] net.liftweb:lift-common_2.10:2.5.1 requires scala version: 2.10.0
[WARNING] Multiple versions of scala libraries detected!
[INFO] Nothing to compile - all classes are up to date
[INFO]
[INFO] --- maven-surefire-plugin:2.13:test (default-test) @ actors ---
[INFO] Surefire report directory: C:\Users\Andriy\Projects\com\github\plokhotnyuk\actors\target\surefire-reports
-------------------------------------------------------
T E S T S
-------------------------------------------------------
-------------------------------------------------------
T E S T S
-------------------------------------------------------
Running com.github.plokhotnyuk.actors.AkkaActorSpec
Executor service type: scala-forkjoin-pool
Single-producer sending:
40,000,000 ops
3,104 ms
77 ns/op
12,886,597 ops/s
55.5 % of CPU usage
Multi-producer sending:
20,000,000 ops
1,638 ms
81 ns/op
12,210,012 ops/s
60.7 % of CPU usage
Max throughput:
40,000,000 ops
1,404 ms
35 ns/op
28,490,028 ops/s
92.5 % of CPU usage
Ping latency:
10,000,000 ops
3,167 ms
316 ns/op
3,157,562 ops/s
97.0 % of CPU usage
Ping throughput 1K:
10,000,000 ops
1,575 ms
157 ns/op
6,349,206 ops/s
98.6 % of CPU usage
Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 12.589 sec
Java HotSpot(TM) 64-Bit Server VM warning: ignoring option PermSize=128m; support was removed in 8.0
Java HotSpot(TM) 64-Bit Server VM warning: ignoring option MaxPermSize=128m; support was removed in 8.0
Running com.github.plokhotnyuk.actors.LiftActorSpec
Executor service type: scala-forkjoin-pool
Single-producer sending:
20,000,000 ops
1,732 ms
86 ns/op
11,547,344 ops/s
40.3 % of CPU usage
Multi-producer sending:
20,000,000 ops
2,091 ms
104 ns/op
9,564,801 ops/s
52.8 % of CPU usage
Max throughput:
20,000,000 ops
1,435 ms
71 ns/op
13,937,282 ops/s
94.9 % of CPU usage
Ping latency:
2,000,000 ops
1,373 ms
686 ns/op
1,456,664 ops/s
97.1 % of CPU usage
Ping throughput 1K:
5,000,000 ops
1,279 ms
255 ns/op
3,909,304 ops/s
97.9 % of CPU usage
Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 8.923 sec
Java HotSpot(TM) 64-Bit Server VM warning: ignoring option PermSize=128m; support was removed in 8.0
Java HotSpot(TM) 64-Bit Server VM warning: ignoring option MaxPermSize=128m; support was removed in 8.0
Running com.github.plokhotnyuk.actors.ProxyActorsActorSpec
Executor service type: scala-forkjoin-pool
Single-producer sending:
10,000,000 ops
2,854 ms
285 ns/op
3,503,854 ops/s
67.8 % of CPU usage
Multi-producer sending:
10,000,000 ops
3,073 ms
307 ns/op
3,254,149 ops/s
62.8 % of CPU usage
Max throughput:
5,000,000 ops
718 ms
143 ns/op
6,963,788 ops/s
95.6 % of CPU usage
Ping latency:
10,000,000 ops
2,698 ms
269 ns/op
3,706,449 ops/s
98.4 % of CPU usage
Ping throughput 1K:
100,000 ops
1,778 ms
17,780 ns/op
56,242 ops/s
70.0 % of CPU usage
Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 16.318 sec
Java HotSpot(TM) 64-Bit Server VM warning: ignoring option PermSize=128m; support was removed in 8.0
Java HotSpot(TM) 64-Bit Server VM warning: ignoring option MaxPermSize=128m; support was removed in 8.0
Running com.github.plokhotnyuk.actors.ScalaActorSpec
Executor service type: scala-forkjoin-pool
Single-producer sending:
1,000,000 ops
1,529 ms
1,529 ns/op
654,022 ops/s
94.1 % of CPU usage
Multi-producer sending:
1,000,000 ops
1,279 ms
1,279 ns/op
781,860 ops/s
99.1 % of CPU usage
Max throughput:
5,000,000 ops
2,808 ms
561 ns/op
1,780,626 ops/s
99.2 % of CPU usage
Ping latency:
1,000,000 ops
1,528 ms
1,528 ns/op
654,450 ops/s
98.3 % of CPU usage
Ping throughput 1K:
2,000,000 ops
1,778 ms
889 ns/op
1,124,859 ops/s
98.7 % of CPU usage
Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 9.984 sec
Java HotSpot(TM) 64-Bit Server VM warning: ignoring option PermSize=128m; support was removed in 8.0
Java HotSpot(TM) 64-Bit Server VM warning: ignoring option MaxPermSize=128m; support was removed in 8.0
Running com.github.plokhotnyuk.actors.ScalazActorSpec
Executor service type: scala-forkjoin-pool
Single-producer sending:
100,000,000 ops
3,635 ms
36 ns/op
27,510,316 ops/s
98.1 % of CPU usage
Multi-producer sending:
50,000,000 ops
2,402 ms
48 ns/op
20,815,986 ops/s
99.5 % of CPU usage
Max throughput:
200,000,000 ops
4,649 ms
23 ns/op
43,020,004 ops/s
98.6 % of CPU usage
Ping latency:
20,000,000 ops
4,165 ms
208 ns/op
4,801,920 ops/s
99.4 % of CPU usage
Ping throughput 1K:
20,000,000 ops
2,153 ms
107 ns/op
9,289,363 ops/s
99.4 % of CPU usage
Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 17.987 sec
Java HotSpot(TM) 64-Bit Server VM warning: ignoring option PermSize=128m; support was removed in 8.0
Java HotSpot(TM) 64-Bit Server VM warning: ignoring option MaxPermSize=128m; support was removed in 8.0
Results :
Tests run: 25, Failures: 0, Errors: 0, Skipped: 0
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 1:20.044s
[INFO] Finished at: Thu Jul 11 20:17:25 EEST 2013
[INFO] Final Memory: 19M/1024M
[INFO] ------------------------------------------------------------------------
[INFO] Scanning for projects...
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building Actors 1.0-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-resources-plugin:2.5:resources (default-resources) @ actors ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory C:\Users\Andriy\Projects\com\github\plokhotnyuk\actors\src\main\resources
[INFO]
[INFO] --- scala-maven-plugin:3.1.3:compile (compile) @ actors ---
[WARNING] Expected all dependencies to require Scala version: 2.10.2
[WARNING] com.github.plokhotnyuk.actors:actors:1.0-SNAPSHOT requires scala version: 2.10.2
[WARNING] com.typesafe.akka:akka-actor_2.10:2.2.0 requires scala version: 2.10.2
[WARNING] net.liftweb:lift-common_2.10:2.5.1 requires scala version: 2.10.0
[WARNING] Multiple versions of scala libraries detected!
[WARNING] No source files found.
[INFO]
[INFO] --- maven-resources-plugin:2.5:testResources (default-testResources) @ actors ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory C:\Users\Andriy\Projects\com\github\plokhotnyuk\actors\src\test\resources
[INFO]
[INFO] --- scala-maven-plugin:3.1.3:testCompile (testCompile) @ actors ---
[WARNING] Expected all dependencies to require Scala version: 2.10.2
[WARNING] com.github.plokhotnyuk.actors:actors:1.0-SNAPSHOT requires scala version: 2.10.2
[WARNING] com.typesafe.akka:akka-actor_2.10:2.2.0 requires scala version: 2.10.2
[WARNING] net.liftweb:lift-common_2.10:2.5.1 requires scala version: 2.10.0
[WARNING] Multiple versions of scala libraries detected!
[INFO] Nothing to compile - all classes are up to date
[INFO]
[INFO] --- maven-surefire-plugin:2.13:test (default-test) @ actors ---
[INFO] Surefire report directory: C:\Users\Andriy\Projects\com\github\plokhotnyuk\actors\target\surefire-reports
-------------------------------------------------------
T E S T S
-------------------------------------------------------
-------------------------------------------------------
T E S T S
-------------------------------------------------------
Running com.github.plokhotnyuk.actors.AkkaActorSpec
Executor service type: java-forkjoin-pool
Single-producer sending:
40,000,000 ops
3,120 ms
78 ns/op
12,820,512 ops/s
52.6 % of CPU usage
Multi-producer sending:
20,000,000 ops
1,685 ms
84 ns/op
11,869,436 ops/s
58.8 % of CPU usage
Max throughput:
40,000,000 ops
1,451 ms
36 ns/op
27,567,195 ops/s
93.3 % of CPU usage
Ping latency:
10,000,000 ops
2,932 ms
293 ns/op
3,410,641 ops/s
99.4 % of CPU usage
Ping throughput 1K:
10,000,000 ops
1,513 ms
151 ns/op
6,609,385 ops/s
99.0 % of CPU usage
Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 12.387 sec
Java HotSpot(TM) 64-Bit Server VM warning: ignoring option PermSize=128m; support was removed in 8.0
Java HotSpot(TM) 64-Bit Server VM warning: ignoring option MaxPermSize=128m; support was removed in 8.0
Running com.github.plokhotnyuk.actors.LiftActorSpec
Executor service type: java-forkjoin-pool
Single-producer sending:
20,000,000 ops
1,701 ms
85 ns/op
11,757,789 ops/s
39.7 % of CPU usage
Multi-producer sending:
20,000,000 ops
2,200 ms
110 ns/op
9,090,909 ops/s
50.2 % of CPU usage
Max throughput:
20,000,000 ops
1,528 ms
76 ns/op
13,089,005 ops/s
92.7 % of CPU usage
Ping latency:
2,000,000 ops
1,311 ms
655 ns/op
1,525,553 ops/s
91.9 % of CPU usage
Ping throughput 1K:
5,000,000 ops
1,202 ms
240 ns/op
4,159,733 ops/s
98.0 % of CPU usage
Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 8.955 sec
Java HotSpot(TM) 64-Bit Server VM warning: ignoring option PermSize=128m; support was removed in 8.0
Java HotSpot(TM) 64-Bit Server VM warning: ignoring option MaxPermSize=128m; support was removed in 8.0
Running com.github.plokhotnyuk.actors.ProxyActorsActorSpec
Executor service type: java-forkjoin-pool
Single-producer sending:
10,000,000 ops
2,730 ms
273 ns/op
3,663,003 ops/s
67.9 % of CPU usage
Multi-producer sending:
10,000,000 ops
3,728 ms
372 ns/op
2,682,403 ops/s
59.2 % of CPU usage
Max throughput:
5,000,000 ops
967 ms
193 ns/op
5,170,630 ops/s
75.0 % of CPU usage
Ping latency:
10,000,000 ops
2,917 ms
291 ns/op
3,428,179 ops/s
99.1 % of CPU usage
Ping throughput 1K:
100,000 ops
1,825 ms
18,250 ns/op
54,794 ops/s
63.7 % of CPU usage
Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 17.503 sec
Java HotSpot(TM) 64-Bit Server VM warning: ignoring option PermSize=128m; support was removed in 8.0
Java HotSpot(TM) 64-Bit Server VM warning: ignoring option MaxPermSize=128m; support was removed in 8.0
Running com.github.plokhotnyuk.actors.ScalaActorSpec
Executor service type: java-forkjoin-pool
Single-producer sending:
1,000,000 ops
1,279 ms
1,279 ns/op
781,860 ops/s
92.7 % of CPU usage
Multi-producer sending:
1,000,000 ops
1,154 ms
1,154 ns/op
866,551 ops/s
99.4 % of CPU usage
Max throughput:
5,000,000 ops
2,372 ms
474 ns/op
2,107,925 ops/s
99.3 % of CPU usage
Ping latency:
1,000,000 ops
1,326 ms
1,326 ns/op
754,147 ops/s
97.9 % of CPU usage
Ping throughput 1K:
2,000,000 ops
1,669 ms
834 ns/op
1,198,322 ops/s
98.8 % of CPU usage
Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 8.861 sec
Java HotSpot(TM) 64-Bit Server VM warning: ignoring option PermSize=128m; support was removed in 8.0
Java HotSpot(TM) 64-Bit Server VM warning: ignoring option MaxPermSize=128m; support was removed in 8.0
Running com.github.plokhotnyuk.actors.ScalazActorSpec
Executor service type: java-forkjoin-pool
Single-producer sending:
100,000,000 ops
3,822 ms
38 ns/op
26,164,311 ops/s
98.7 % of CPU usage
Multi-producer sending:
50,000,000 ops
2,293 ms
45 ns/op
21,805,494 ops/s
99.2 % of CPU usage
Max throughput:
200,000,000 ops
4,431 ms
22 ns/op
45,136,538 ops/s
98.9 % of CPU usage
Ping latency:
20,000,000 ops
4,633 ms
231 ns/op
4,316,857 ops/s
99.4 % of CPU usage
Ping throughput 1K:
20,000,000 ops
2,246 ms
112 ns/op
8,904,719 ops/s
98.8 % of CPU usage
Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 18.423 sec
Java HotSpot(TM) 64-Bit Server VM warning: ignoring option PermSize=128m; support was removed in 8.0
Java HotSpot(TM) 64-Bit Server VM warning: ignoring option MaxPermSize=128m; support was removed in 8.0
Results :
Tests run: 25, Failures: 0, Errors: 0, Skipped: 0
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 1:20.293s
[INFO] Finished at: Thu Jul 11 20:18:47 EEST 2013
[INFO] Final Memory: 19M/1024M
[INFO] ------------------------------------------------------------------------
[INFO] Scanning for projects...
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building Actors 1.0-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-resources-plugin:2.5:resources (default-resources) @ actors ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory C:\Users\Andriy\Projects\com\github\plokhotnyuk\actors\src\main\resources
[INFO]
[INFO] --- scala-maven-plugin:3.1.3:compile (compile) @ actors ---
[WARNING] Expected all dependencies to require Scala version: 2.10.2
[WARNING] com.github.plokhotnyuk.actors:actors:1.0-SNAPSHOT requires scala version: 2.10.2
[WARNING] com.typesafe.akka:akka-actor_2.10:2.2.0 requires scala version: 2.10.2
[WARNING] net.liftweb:lift-common_2.10:2.5.1 requires scala version: 2.10.0
[WARNING] Multiple versions of scala libraries detected!
[WARNING] No source files found.
[INFO]
[INFO] --- maven-resources-plugin:2.5:testResources (default-testResources) @ actors ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory C:\Users\Andriy\Projects\com\github\plokhotnyuk\actors\src\test\resources
[INFO]
[INFO] --- scala-maven-plugin:3.1.3:testCompile (testCompile) @ actors ---
[WARNING] Expected all dependencies to require Scala version: 2.10.2
[WARNING] com.github.plokhotnyuk.actors:actors:1.0-SNAPSHOT requires scala version: 2.10.2
[WARNING] com.typesafe.akka:akka-actor_2.10:2.2.0 requires scala version: 2.10.2
[WARNING] net.liftweb:lift-common_2.10:2.5.1 requires scala version: 2.10.0
[WARNING] Multiple versions of scala libraries detected!
[INFO] Nothing to compile - all classes are up to date
[INFO]
[INFO] --- maven-surefire-plugin:2.13:test (default-test) @ actors ---
[INFO] Surefire report directory: C:\Users\Andriy\Projects\com\github\plokhotnyuk\actors\target\surefire-reports
-------------------------------------------------------
T E S T S
-------------------------------------------------------
-------------------------------------------------------
T E S T S
-------------------------------------------------------
Running com.github.plokhotnyuk.actors.AkkaActorSpec
Executor service type: thread-pool
Single-producer sending:
40,000,000 ops
3,401 ms
85 ns/op
11,761,246 ops/s
54.7 % of CPU usage
Multi-producer sending:
20,000,000 ops
1,731 ms
86 ns/op
11,554,015 ops/s
58.6 % of CPU usage
Max throughput:
40,000,000 ops
1,358 ms
33 ns/op
29,455,081 ops/s
94.8 % of CPU usage
Ping latency:
10,000,000 ops
11,403 ms
1,140 ns/op
876,962 ops/s
32.7 % of CPU usage
Ping throughput 1K:
10,000,000 ops
3,822 ms
382 ns/op
2,616,431 ops/s
61.7 % of CPU usage
Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 23.384 sec
Java HotSpot(TM) 64-Bit Server VM warning: ignoring option PermSize=128m; support was removed in 8.0
Java HotSpot(TM) 64-Bit Server VM warning: ignoring option MaxPermSize=128m; support was removed in 8.0
Running com.github.plokhotnyuk.actors.LiftActorSpec
Executor service type: thread-pool
Single-producer sending:
20,000,000 ops
1,654 ms
82 ns/op
12,091,898 ops/s
38.9 % of CPU usage
Multi-producer sending:
20,000,000 ops
1,701 ms
85 ns/op
11,757,789 ops/s
39.9 % of CPU usage
Max throughput:
20,000,000 ops
1,279 ms
63 ns/op
15,637,216 ops/s
92.4 % of CPU usage
Ping latency:
2,000,000 ops
3,463 ms
1,731 ns/op
577,533 ops/s
40.4 % of CPU usage
Ping throughput 1K:
5,000,000 ops
1,997 ms
399 ns/op
2,503,755 ops/s
70.5 % of CPU usage
Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 11.154 sec
Java HotSpot(TM) 64-Bit Server VM warning: ignoring option PermSize=128m; support was removed in 8.0
Java HotSpot(TM) 64-Bit Server VM warning: ignoring option MaxPermSize=128m; support was removed in 8.0
Running com.github.plokhotnyuk.actors.ProxyActorsActorSpec
Executor service type: thread-pool
Single-producer sending:
10,000,000 ops
3,089 ms
308 ns/op
3,237,293 ops/s
56.2 % of CPU usage
Multi-producer sending:
10,000,000 ops
3,479 ms
347 ns/op
2,874,389 ops/s
70.4 % of CPU usage
Max throughput:
5,000,000 ops
1,762 ms
352 ns/op
2,837,684 ops/s
69.1 % of CPU usage
Ping latency:
10,000,000 ops
12,230 ms
1,223 ns/op
817,661 ops/s
37.3 % of CPU usage
Ping throughput 1K:
100,000 ops
1,872 ms
18,720 ns/op
53,418 ops/s
67.1 % of CPU usage
Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 27.643 sec
Java HotSpot(TM) 64-Bit Server VM warning: ignoring option PermSize=128m; support was removed in 8.0
Java HotSpot(TM) 64-Bit Server VM warning: ignoring option MaxPermSize=128m; support was removed in 8.0
Running com.github.plokhotnyuk.actors.ScalaActorSpec
Executor service type: thread-pool
Single-producer sending:
1,000,000 ops
4,056 ms
4,056 ns/op
246,548 ops/s
53.1 % of CPU usage
Multi-producer sending:
1,000,000 ops
3,292 ms
3,292 ns/op
303,766 ops/s
52.4 % of CPU usage
Max throughput:
5,000,000 ops
6,287 ms
1,257 ns/op
795,291 ops/s
79.5 % of CPU usage
Ping latency:
1,000,000 ops
4,056 ms