forked from Suri-Feng/DistributedKVStore
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathA12EC2.log
More file actions
4755 lines (4629 loc) · 221 KB
/
A12EC2.log
File metadata and controls
4755 lines (4629 loc) · 221 KB
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
CPEN 431 EVALUATION test Client
Time: Fri Apr 14 04:16:09 UTC 2023
Build Date: Fri Apr 14 04:15:54 UTC 2023
Java process ID: 8089
Assignment ID: 11
Client Version: 1
[Info] A11 client running in SUBMIT mode.
[Info] Starting A11 Tests
[Info] Correct submission information.
[Info] Checking if the test client is running on AWS
[Info] Detected instance type: c5a.16xlarge
[Info] Done building nodes' list.
[Info] The deployment has 40 server nodes.
[Info] Checking SSH connectivity to deployed servers ...
[Info] SSH check passed!
[Info] Checking server deployment.
Deployment information:
c5a.16xlarge
Ubuntu 20.04.6 LTS
qdisc netem 8001: root refcnt 2 limit 1000 delay 5.0ms loss 0.25%
qdisc netem 8002: root refcnt 65 limit 1000 delay 5.0ms loss 0.25%
net-tools 1.60+git20180626.aebd88e-1ubuntu1
[Test isAlive] for 127.0.0.1:43100
Sending GETPID to all servers...
[Info] Server node 127.0.0.143100 has process ID 8059.
[ ... Completed in 0.008 seconds ]
[OK]
Sending GetMembershipCount to all servers...
[Info] Server 127.0.0.1:43100 replied with membership count = 1 (expected count = 1)
[ ... Completed in 0.003 seconds ]
[Ok] All servers returned the expected membership count (1)
Sending WIPE-OUT to all servers...
[ ... Completed in 0.012 seconds ]
[OK]
Waiting for 5 seconds for the cache to be cleared!
[ TEST Basic PUT/GET (PUT -> GET). Value Length = 8 Bytes ]
TEST_PASSED
[ TEST Basic PUT/GET (PUT -> GET). Value Length = 32 Bytes ]
TEST_PASSED
[ TEST Basic PUT/GET (PUT -> GET). Value Length = 2048 Bytes ]
TEST_PASSED
[ TEST Basic PUT/GET (PUT -> GET). Value Length = 10000 Bytes ]
TEST_PASSED
[ TEST Basic KVS with message version (PUT Version 1 -> GET -> PUT Version 2 -> GET). Value Length = 8 Bytes ]
TEST_PASSED
[ TEST Basic KVS with message version (PUT Version 1 -> GET -> PUT Version 2 -> GET). Value Length = 32 Bytes ]
TEST_PASSED
[ TEST Basic KVS with message version (PUT Version 1 -> GET -> PUT Version 2 -> GET). Value Length = 2048 Bytes ]
TEST_PASSED
[ TEST Basic KVS with message version (PUT Version 1 -> GET -> PUT Version 2 -> GET). Value Length = 10000 Bytes ]
TEST_PASSED
[ TEST Basic REMOVE (PUT -> GET -> REM -> GET). Value Length = 32 Bytes. ]
TEST_PASSED
[ TEST Double remove (PUT -> REM -> REM). Value Length = 32 Bytes. ]
TEST_PASSED
[ TEST Invalid Command. ]
TEST_PASSED
[ TEST At-Most-Once Client Policy (PUT -> REM -> REM). Value length = 32 Bytes ]
TEST_PASSED
[ TEST At-Most-Once Client Policy Empty REMs (EMPTY -> REM -> REM) ]
TEST_PASSED
[ TEST At-Most-Once Client Policy Error Return Code (REM -> PUT -> REM) ]
TEST_PASSED
[ TEST At-Most-Once Client Policy (PUT -> REM -> many PUT -> REM). Value length = 32 Bytes ]
Pausing for 10 seconds to wait for the cache to be cleared!
TEST_PASSED
[ TEST At-Most-Once Client Policy For PUTs (PUT1 -> PUT2 -> PUT1 -> GET2) ]
TEST_PASSED
[TEST Invalid Key ]
TEST_PASSED
[TEST Invalid Value ]
TEST_PASSED
[ TEST Single Front-End Performance (1 clients, 60.0 seconds): PUT -> GET (closed loop) ]
Test time limit reached: 60.0s.
Test completed after 316168 closed loops.
[Test isAlive] for 127.0.0.1:43100
[ ... Completed in 0.001 seconds ]
Local Single node: Test Status: TEST_PASSED
Clients: 1
Total Requests (without replies): 632336
Total Requests (including replies): 632336
Successful Responses: 632336
Timeout Responses: 0
Total Failed Responses: 0
% Success: 100.0
% Timeout: 0.0
% Failed: 0.0
Response Time (Successful requests):
[max] 11ms, [min] 0ms
[avg] 0.08126692138356822 ms, [stdev] 0.2860644114180748ms
Throughput: 10538.757687371877 requests per second
Goodput: 10538.757687371877 requests per second
Retry Rate (Successful requests): 1.0
Sending WIPE-OUT to all servers...
[ ... Completed in 0.023 seconds ]
[OK]
Waiting for 5 seconds for the cache to be cleared!
[ ... TEST Completed in 65.536 seconds ]
[ TEST Single Front-End Performance (16 clients, 60.0 seconds): PUT -> GET (closed loop) ]
Test time limit reached: 60.0s.
Test completed after 46942 closed loops.
Test time limit reached: 60.0s.
Test completed after 46904 closed loops.
Test time limit reached: 60.0s.
Test time limit reached: 60.0s.
Test time limit reached: 60.0s.
Test time limit reached: 60.0s.
Test completed after 46911 closed loops.
Test completed after 46929 closed loops.
Test time limit reached: 60.0s.
Test completed after 46928 closed loops.
Test time limit reached: 60.0s.
Test completed after 46940 closed loops.
Test time limit reached: 60.0s.
Test completed after 46923 closed loops.
Test time limit reached: 60.0s.
Test completed after 46951 closed loops.
Test time limit reached: 60.0s.
Test completed after 46950 closed loops.
Test completed after 46914 closed loops.
Test time limit reached: 60.0s.
Test time limit reached: 60.0s.
Test time limit reached: 60.0s.
Test completed after 46915 closed loops.
Test time limit reached: 60.0s.
Test time limit reached: 60.0s.
Test completed after 46953 closed loops.
Test completed after 46931 closed loops.
Test completed after 46945 closed loops.
Test completed after 46933 closed loops.
Test completed after 46883 closed loops.
[Test isAlive] for 127.0.0.1:43100
[ ... Completed in 0.001 seconds ]
Local Single node: Test Status: TEST_PASSED
Clients: 16
Total Requests (without replies): 1501695
Total Requests (including replies): 1501695
Successful Responses: 1501695
Timeout Responses: 0
Total Failed Responses: 0
% Success: 100.0
% Timeout: 0.0
% Failed: 0.0
Response Time (Successful requests):
[max] 15ms, [min] 0ms
[avg] 0.6250703371856469 ms, [stdev] 0.6909067665227075ms
Throughput: 25027.41575280824 requests per second
Goodput: 25027.41575280824 requests per second
Retry Rate (Successful requests): 1.0
Sending WIPE-OUT to all servers...
[ ... Completed in 0.019 seconds ]
[OK]
Waiting for 5 seconds for the cache to be cleared!
[ ... TEST Completed in 65.764 seconds ]
[ TEST Single Front-End Performance (64 clients, 60.0 seconds): PUT -> GET (closed loop) ]
Test time limit reached: 60.0s.
Test time limit reached: 60.0s.
Test time limit reached: 60.0s.
Test completed after 11677 closed loops.
Test time limit reached: 60.0s.
Test completed after 11679 closed loops.
Test time limit reached: 60.0s.
Test completed after 11682 closed loops.
Test time limit reached: 60.0s.
Test time limit reached: 60.0s.
Test time limit reached: 60.0s.
Test time limit reached: 60.0s.
Test time limit reached: 60.0s.
Test completed after 11690 closed loops.
Test time limit reached: 60.0s.
Test time limit reached: 60.0s.
Test time limit reached: 60.0s.
Test completed after 11684 closed loops.
Test time limit reached: 60.0s.
Test time limit reached: 60.0s.
Test completed after 11678 closed loops.
Test time limit reached: 60.0s.
Test completed after 11680 closed loops.
Test time limit reached: 60.0s.
Test time limit reached: 60.0s.
Test completed after 11676 closed loops.
Test time limit reached: 60.0s.
Test completed after 11678 closed loops.
Test time limit reached: 60.0s.
Test completed after 11677 closed loops.
Test time limit reached: 60.0s.
Test completed after 11677 closed loops.
Test time limit reached: 60.0s.
Test completed after 11674 closed loops.
Test time limit reached: 60.0s.
Test time limit reached: 60.0s.
Test completed after 11678 closed loops.
Test time limit reached: 60.0s.
Test completed after 11679 closed loops.
Test time limit reached: 60.0s.
Test completed after 11673 closed loops.
Test time limit reached: 60.0s.
Test time limit reached: 60.0s.
Test time limit reached: 60.0s.
Test completed after 11678 closed loops.
Test time limit reached: 60.0s.
Test time limit reached: 60.0s.
Test completed after 11678 closed loops.
Test time limit reached: 60.0s.
Test time limit reached: 60.0s.
Test completed after 11684 closed loops.
Test time limit reached: 60.0s.
Test completed after 11678 closed loops.
Test time limit reached: 60.0s.
Test completed after 11684 closed loops.
Test time limit reached: 60.0s.
Test time limit reached: 60.0s.
Test completed after 11678 closed loops.
Test time limit reached: 60.0s.
Test completed after 11677 closed loops.
Test time limit reached: 60.0s.
Test completed after 11679 closed loops.
Test time limit reached: 60.0s.
Test completed after 11678 closed loops.
Test time limit reached: 60.0s.
Test completed after 11681 closed loops.
Test time limit reached: 60.0s.
Test completed after 11682 closed loops.
Test time limit reached: 60.0s.
Test completed after 11678 closed loops.
Test time limit reached: 60.0s.
Test completed after 11681 closed loops.
Test time limit reached: 60.0s.
Test completed after 11675 closed loops.
Test time limit reached: 60.0s.
Test completed after 11681 closed loops.
Test time limit reached: 60.0s.
Test completed after 11682 closed loops.
Test time limit reached: 60.0s.
Test completed after 11680 closed loops.
Test time limit reached: 60.0s.
Test completed after 11678 closed loops.
Test time limit reached: 60.0s.
Test completed after 11686 closed loops.
Test time limit reached: 60.0s.
Test completed after 11678 closed loops.
Test completed after 11678 closed loops.
Test time limit reached: 60.0s.
Test completed after 11684 closed loops.
Test time limit reached: 60.0s.
Test time limit reached: 60.0s.
Test time limit reached: 60.0s.
Test completed after 11671 closed loops.
Test completed after 11679 closed loops.
Test completed after 11684 closed loops.
Test completed after 11682 closed loops.
Test completed after 11679 closed loops.
Test completed after 11683 closed loops.
Test completed after 11676 closed loops.
Test completed after 11675 closed loops.
Test completed after 11680 closed loops.
Test time limit reached: 60.0s.
Test time limit reached: 60.0s.
Test completed after 11686 closed loops.
Test completed after 11679 closed loops.
Test completed after 11682 closed loops.
Test time limit reached: 60.0s.
Test time limit reached: 60.0s.
Test completed after 11683 closed loops.
Test completed after 11673 closed loops.
Test completed after 11687 closed loops.
Test time limit reached: 60.0s.
Test completed after 11680 closed loops.
Test completed after 11684 closed loops.
Test time limit reached: 60.0s.
Test completed after 11678 closed loops.
Test time limit reached: 60.0s.
Test time limit reached: 60.0s.
Test completed after 11677 closed loops.
Test completed after 11684 closed loops.
Test completed after 11674 closed loops.
Test time limit reached: 60.0s.
Test completed after 11676 closed loops.
Test completed after 11682 closed loops.
Test completed after 11676 closed loops.
Test completed after 11682 closed loops.
Test completed after 11687 closed loops.
Test completed after 11682 closed loops.
[Test isAlive] for 127.0.0.1:43100
[ ... Completed in 0.001 seconds ]
Local Single node: Test Status: TEST_PASSED
Clients: 64
Total Requests (without replies): 1494969
Total Requests (including replies): 1494969
Successful Responses: 1494969
Timeout Responses: 0
Total Failed Responses: 0
% Success: 100.0
% Timeout: 0.0
% Failed: 0.0
Response Time (Successful requests):
[max] 14ms, [min] 0ms
[avg] 2.547884270509957 ms, [stdev] 0.8855694620435495ms
Throughput: 24913.658634136587 requests per second
Goodput: 24913.658634136587 requests per second
Retry Rate (Successful requests): 1.0
Sending WIPE-OUT to all servers...
[ ... Completed in 0.021 seconds ]
[OK]
Waiting for 5 seconds for the cache to be cleared!
[ ... TEST Completed in 65.769 seconds ]
[ TEST Single Client Capacity (Value Size = 500 bytes, Limit = 146800 PUTs, ~69.99969482421875 MiB) : PUT -> GET (closed loop) ]
Sending WIPE-OUT to all servers...
[ ... Completed in 0.007 seconds ]
[OK]
Waiting for 5 seconds for the cache to be cleared!
ERROR_OUT_OF_SPACE
Received error code after 85084 closed loops (~40.57121276855469 MiB).
PUTs sent = 85084(~40.57121276855469 MiB) , Limit = 146800
[Test isAlive]
Test Passed. Server is ok.
TEST_PASSED
[Info] Shutting down local server(s)!
[Test isAlive] for 127.0.0.1:43100
[ ... Completed in 10.005 seconds ]
[Info] Local tests completed in 257.65 seconds
[Info] Finished tests for the local deployment!
Sending GET PID to all servers (v2) ...
>>> Server node 3.99.144.144:12347 has process ID 5110.
>>> Server node 3.99.144.144:12348 has process ID 5114.
>>> Server node 3.99.144.144:12349 has process ID 5119.
>>> Server node 3.99.144.144:12350 has process ID 5124.
>>> Server node 3.99.144.144:12351 has process ID 5129.
>>> Server node 3.99.144.144:12352 has process ID 5134.
>>> Server node 3.99.144.144:12353 has process ID 5139.
>>> Server node 3.99.144.144:12354 has process ID 5144.
>>> Server node 3.99.144.144:12355 has process ID 5149.
>>> Server node 3.99.144.144:12356 has process ID 5157.
>>> Server node 3.99.144.144:12357 has process ID 5162.
>>> Server node 3.99.144.144:12358 has process ID 5169.
>>> Server node 3.99.144.144:12359 has process ID 5174.
>>> Server node 3.99.144.144:12360 has process ID 5180.
>>> Server node 3.99.144.144:12361 has process ID 5194.
>>> Server node 3.99.144.144:12362 has process ID 5208.
>>> Server node 3.99.144.144:12363 has process ID 5221.
>>> Server node 3.99.144.144:12364 has process ID 5230.
>>> Server node 3.99.144.144:12365 has process ID 5242.
>>> Server node 3.99.144.144:12366 has process ID 5258.
>>> Server node 3.99.144.144:12367 has process ID 5270.
>>> Server node 3.99.144.144:12368 has process ID 5303.
>>> Server node 3.99.144.144:12369 has process ID 5316.
>>> Server node 3.99.144.144:12370 has process ID 5341.
>>> Server node 3.99.144.144:12371 has process ID 5355.
>>> Server node 3.99.144.144:12372 has process ID 5381.
>>> Server node 3.99.144.144:12373 has process ID 5400.
>>> Server node 3.99.144.144:12374 has process ID 5417.
>>> Server node 3.99.144.144:12375 has process ID 5448.
>>> Server node 3.99.144.144:12376 has process ID 5462.
>>> Server node 3.99.144.144:12377 has process ID 5491.
>>> Server node 3.99.144.144:12378 has process ID 5503.
>>> Server node 3.99.144.144:12379 has process ID 5523.
>>> Server node 3.99.144.144:12380 has process ID 5542.
>>> Server node 3.99.144.144:12381 has process ID 5562.
>>> Server node 3.99.144.144:12382 has process ID 5597.
>>> Server node 3.99.144.144:12383 has process ID 5607.
>>> Server node 3.99.144.144:12384 has process ID 5644.
>>> Server node 3.99.144.144:12385 has process ID 5662.
>>> Server node 3.99.144.144:12386 has process ID 5690.
[ ... Completed in 71.327 seconds ]
[OK]
Testing memory usage
Command information:
c5a.16xlarge
Xmx512m
>>> Server node 3.99.144.144:12347 has memory limit of 512M.
Command information:
c5a.16xlarge
Xmx512m
>>> Server node 3.99.144.144:12348 has memory limit of 512M.
Command information:
c5a.16xlarge
Xmx512m
>>> Server node 3.99.144.144:12349 has memory limit of 512M.
Command information:
c5a.16xlarge
Xmx512m
>>> Server node 3.99.144.144:12350 has memory limit of 512M.
Command information:
c5a.16xlarge
Xmx512m
>>> Server node 3.99.144.144:12351 has memory limit of 512M.
Command information:
c5a.16xlarge
Xmx512m
>>> Server node 3.99.144.144:12352 has memory limit of 512M.
Command information:
c5a.16xlarge
Xmx512m
>>> Server node 3.99.144.144:12353 has memory limit of 512M.
Command information:
c5a.16xlarge
Xmx512m
>>> Server node 3.99.144.144:12354 has memory limit of 512M.
Command information:
c5a.16xlarge
Xmx512m
>>> Server node 3.99.144.144:12355 has memory limit of 512M.
Command information:
c5a.16xlarge
Xmx512m
>>> Server node 3.99.144.144:12356 has memory limit of 512M.
Command information:
c5a.16xlarge
Xmx512m
>>> Server node 3.99.144.144:12357 has memory limit of 512M.
Command information:
c5a.16xlarge
Xmx512m
>>> Server node 3.99.144.144:12358 has memory limit of 512M.
Command information:
c5a.16xlarge
Xmx512m
>>> Server node 3.99.144.144:12359 has memory limit of 512M.
Command information:
c5a.16xlarge
Xmx512m
>>> Server node 3.99.144.144:12360 has memory limit of 512M.
Command information:
c5a.16xlarge
Xmx512m
>>> Server node 3.99.144.144:12361 has memory limit of 512M.
Command information:
c5a.16xlarge
Xmx512m
>>> Server node 3.99.144.144:12362 has memory limit of 512M.
Command information:
c5a.16xlarge
Xmx512m
>>> Server node 3.99.144.144:12363 has memory limit of 512M.
Command information:
c5a.16xlarge
Xmx512m
>>> Server node 3.99.144.144:12364 has memory limit of 512M.
Command information:
c5a.16xlarge
Xmx512m
>>> Server node 3.99.144.144:12365 has memory limit of 512M.
Command information:
c5a.16xlarge
Xmx512m
>>> Server node 3.99.144.144:12366 has memory limit of 512M.
Command information:
c5a.16xlarge
Xmx512m
>>> Server node 3.99.144.144:12367 has memory limit of 512M.
Command information:
c5a.16xlarge
Xmx512m
>>> Server node 3.99.144.144:12368 has memory limit of 512M.
Command information:
c5a.16xlarge
Xmx512m
>>> Server node 3.99.144.144:12369 has memory limit of 512M.
Command information:
c5a.16xlarge
Xmx512m
>>> Server node 3.99.144.144:12370 has memory limit of 512M.
Command information:
c5a.16xlarge
Xmx512m
>>> Server node 3.99.144.144:12371 has memory limit of 512M.
Command information:
c5a.16xlarge
Xmx512m
>>> Server node 3.99.144.144:12372 has memory limit of 512M.
Command information:
c5a.16xlarge
Xmx512m
>>> Server node 3.99.144.144:12373 has memory limit of 512M.
Command information:
c5a.16xlarge
Xmx512m
>>> Server node 3.99.144.144:12374 has memory limit of 512M.
Command information:
c5a.16xlarge
Xmx512m
>>> Server node 3.99.144.144:12375 has memory limit of 512M.
Command information:
c5a.16xlarge
Xmx512m
>>> Server node 3.99.144.144:12376 has memory limit of 512M.
Command information:
c5a.16xlarge
Xmx512m
>>> Server node 3.99.144.144:12377 has memory limit of 512M.
Command information:
c5a.16xlarge
Xmx512m
>>> Server node 3.99.144.144:12378 has memory limit of 512M.
Command information:
c5a.16xlarge
Xmx512m
>>> Server node 3.99.144.144:12379 has memory limit of 512M.
Command information:
c5a.16xlarge
Xmx512m
>>> Server node 3.99.144.144:12380 has memory limit of 512M.
Command information:
c5a.16xlarge
Xmx512m
>>> Server node 3.99.144.144:12381 has memory limit of 512M.
Command information:
c5a.16xlarge
Xmx512m
>>> Server node 3.99.144.144:12382 has memory limit of 512M.
Command information:
c5a.16xlarge
Xmx512m
>>> Server node 3.99.144.144:12383 has memory limit of 512M.
Command information:
c5a.16xlarge
Xmx512m
>>> Server node 3.99.144.144:12384 has memory limit of 512M.
Command information:
c5a.16xlarge
Xmx512m
>>> Server node 3.99.144.144:12385 has memory limit of 512M.
Command information:
c5a.16xlarge
Xmx512m
>>> Server node 3.99.144.144:12386 has memory limit of 512M.
[ ... Completed in 61.639 seconds ]
[OK]
Sending GetMembershipCount to all servers...
[Info] Server 3.99.144.144:12347 replied with membership count = 40 (expected count = 40)
[Info] Server 3.99.144.144:12348 replied with membership count = 40 (expected count = 40)
[Info] Server 3.99.144.144:12350 replied with membership count = 40 (expected count = 40)
[Info] Server 3.99.144.144:12349 replied with membership count = 40 (expected count = 40)
[Info] Server 3.99.144.144:12352 replied with membership count = 40 (expected count = 40)
[Info] Server 3.99.144.144:12351 replied with membership count = 40 (expected count = 40)
[Info] Server 3.99.144.144:12353 replied with membership count = 40 (expected count = 40)
[Info] Server 3.99.144.144:12355 replied with membership count = 40 (expected count = 40)
[Info] Server 3.99.144.144:12354 replied with membership count = 40 (expected count = 40)
[Info] Server 3.99.144.144:12357 replied with membership count = 40 (expected count = 40)
[Info] Server 3.99.144.144:12356 replied with membership count = 40 (expected count = 40)
[Info] Server 3.99.144.144:12359 replied with membership count = 40 (expected count = 40)
[Info] Server 3.99.144.144:12358 replied with membership count = 40 (expected count = 40)
[Info] Server 3.99.144.144:12360 replied with membership count = 40 (expected count = 40)
[Info] Server 3.99.144.144:12362 replied with membership count = 40 (expected count = 40)
[Info] Server 3.99.144.144:12361 replied with membership count = 40 (expected count = 40)
[Info] Server 3.99.144.144:12363 replied with membership count = 40 (expected count = 40)
[Info] Server 3.99.144.144:12364 replied with membership count = 40 (expected count = 40)
[Info] Server 3.99.144.144:12366 replied with membership count = 40 (expected count = 40)
[Info] Server 3.99.144.144:12365 replied with membership count = 40 (expected count = 40)
[Info] Server 3.99.144.144:12368 replied with membership count = 40 (expected count = 40)
[Info] Server 3.99.144.144:12367 replied with membership count = 40 (expected count = 40)
[Info] Server 3.99.144.144:12369 replied with membership count = 40 (expected count = 40)
[Info] Server 3.99.144.144:12371 replied with membership count = 40 (expected count = 40)
[Info] Server 3.99.144.144:12372 replied with membership count = 40 (expected count = 40)
[Info] Server 3.99.144.144:12373 replied with membership count = 40 (expected count = 40)
[Info] Server 3.99.144.144:12374 replied with membership count = 40 (expected count = 40)
[Info] Server 3.99.144.144:12375 replied with membership count = 40 (expected count = 40)
[Info] Server 3.99.144.144:12376 replied with membership count = 40 (expected count = 40)
[Info] Server 3.99.144.144:12378 replied with membership count = 40 (expected count = 40)
[Info] Server 3.99.144.144:12377 replied with membership count = 40 (expected count = 40)
[Info] Server 3.99.144.144:12379 replied with membership count = 40 (expected count = 40)
[Info] Server 3.99.144.144:12380 replied with membership count = 40 (expected count = 40)
[Info] Server 3.99.144.144:12381 replied with membership count = 40 (expected count = 40)
[Info] Server 3.99.144.144:12382 replied with membership count = 40 (expected count = 40)
[Info] Server 3.99.144.144:12383 replied with membership count = 40 (expected count = 40)
[Info] Server 3.99.144.144:12384 replied with membership count = 40 (expected count = 40)
[Info] Server 3.99.144.144:12385 replied with membership count = 40 (expected count = 40)
[Info] Server 3.99.144.144:12386 replied with membership count = 40 (expected count = 40)
[Info] Server 3.99.144.144:12370 replied with membership count = 40 (expected count = 40)
[ ... Completed in 0.05 seconds ]
[Ok] All servers returned the expected membership count (40)
Sending WIPE-OUT to all servers...
[ ... Completed in 0.083 seconds ]
[OK]
Waiting for 5 seconds for the cache to be cleared!
[Test isAlive] for 3.99.144.144:12347
[ TEST Basic PUT/GET (PUT -> GET). Value Length = 8 Bytes ]
TEST_PASSED
[ TEST Basic PUT/GET (PUT -> GET). Value Length = 32 Bytes ]
TEST_PASSED
[ TEST Basic PUT/GET (PUT -> GET). Value Length = 512 Bytes ]
TEST_PASSED
[ TEST Basic PUT/GET (PUT -> GET). Value Length = 1024 Bytes ]
TEST_PASSED
Sending WIPE-OUT to all servers...
[ ... Completed in 0.019 seconds ]
[OK]
Waiting for 5 seconds for the cache to be cleared!
[ TEST Basic KVS with message version (PUT Version 1 -> GET -> PUT Version 2 -> GET). Value Length = 8 Bytes ]
TEST_PASSED
[ TEST Basic KVS with message version (PUT Version 1 -> GET -> PUT Version 2 -> GET). Value Length = 32 Bytes ]
TEST_PASSED
[ TEST Basic KVS with message version (PUT Version 1 -> GET -> PUT Version 2 -> GET). Value Length = 512 Bytes ]
TEST_PASSED
[ TEST Basic KVS with message version (PUT Version 1 -> GET -> PUT Version 2 -> GET). Value Length = 1024 Bytes ]
TEST_PASSED
Sending WIPE-OUT to all servers...
[ ... Completed in 0.02 seconds ]
[OK]
Waiting for 5 seconds for the cache to be cleared!
[ TEST Basic REMOVE (PUT -> GET -> REM -> GET). Value Length = 32 Bytes. ]
TEST_PASSED
Sending WIPE-OUT to all servers...
[ ... Completed in 0.023 seconds ]
[OK]
Waiting for 5 seconds for the cache to be cleared!
[ TEST Double remove (PUT -> REM -> REM). Value Length = 32 Bytes. ]
TEST_PASSED
Sending WIPE-OUT to all servers...
[ ... Completed in 0.051 seconds ]
[OK]
Waiting for 5 seconds for the cache to be cleared!
[ TEST Invalid Command. ]
TEST_PASSED
Sending WIPE-OUT to all servers...
[ ... Completed in 0.019 seconds ]
[OK]
Waiting for 5 seconds for the cache to be cleared!
[ TEST At-Most-Once Client Policy (PUT -> REM -> REM). Value length = 32 Bytes ]
TEST_PASSED
Sending WIPE-OUT to all servers...
[ ... Completed in 0.02 seconds ]
[OK]
Waiting for 5 seconds for the cache to be cleared!
[ TEST At-Most-Once Client Policy Empty REMs (EMPTY -> REM -> REM) ]
TEST_PASSED
Sending WIPE-OUT to all servers...
[ ... Completed in 0.018 seconds ]
[OK]
Waiting for 5 seconds for the cache to be cleared!
[ TEST At-Most-Once Client Policy (PUT -> REM -> many PUT -> REM). Value length = 32 Bytes ]
Pausing for 10 seconds to wait for the cache to be cleared!
TEST_PASSED
[ TEST At-Most-Once Client Policy Error Return Code (REM -> PUT -> REM) ]
TEST_PASSED
Sending WIPE-OUT to all servers...
[ ... Completed in 0.02 seconds ]
[OK]
Waiting for 5 seconds for the cache to be cleared!
[ TEST At-Most-Once Client Policy For PUTs (PUT1 -> PUT2 -> PUT1 -> GET2) ]
TEST_PASSED
Sending WIPE-OUT to all servers...
[ ... Completed in 0.048 seconds ]
[OK]
Waiting for 5 seconds for the cache to be cleared!
[TEST Invalid Key ]
TEST_PASSED
Sending WIPE-OUT to all servers...
[ ... Completed in 0.022 seconds ]
[OK]
Waiting for 5 seconds for the cache to be cleared!
[TEST Invalid Value ]
TEST_PASSED
Sending WIPE-OUT to all servers...
[ ... Completed in 0.02 seconds ]
[OK]
Waiting for 5 seconds for the cache to be cleared!
[ TEST Multi Client Crash: PUT -> GET (closed loop) + REM -> WIPEOUT (closed loop) ]
[Test isAlive]
Test Passed. Server is ok.
TEST_PASSED
Sending WIPE-OUT to all servers...
[ ... Completed in 0.019 seconds ]
[OK]
Waiting for 5 seconds for the cache to be cleared!
[ ... TEST Completed in 78.789 seconds ]
[ TEST Random Front-End Basic (PUT -> GET -> REM -> REM -> GET). Value Length = 8 Bytes ]
TEST_PASSED
[ TEST Random Front-End Basic (PUT -> GET -> REM -> REM -> GET). Value Length = 32 Bytes ]
TEST_PASSED
[ TEST Random Front-End Basic (PUT -> GET -> REM -> REM -> GET). Value Length = 512 Bytes ]
TEST_PASSED
[ TEST Random Front-End Basic (PUT -> GET -> REM -> REM -> GET). Value Length = 1024 Bytes ]
TEST_PASSED
[ ... TEST Completed in 0.28 seconds ]
Sending WIPE-OUT to all servers...
[ ... Completed in 0.02 seconds ]
[OK]
Waiting for 5 seconds for the cache to be cleared!
[Info] Pausing for 6 seconds to wait for the cache to be cleared!
[ TEST Random Front-End Performance (1 clients, 60.0 seconds): PUT -> GET (closed loop) ]
[Test isAlive] for 3.99.144.144:12347
[Test isAlive] for 3.99.144.144:12348
[Test isAlive] for 3.99.144.144:12349
[Test isAlive] for 3.99.144.144:12350
[Test isAlive] for 3.99.144.144:12351
[Test isAlive] for 3.99.144.144:12352
[Test isAlive] for 3.99.144.144:12353
[Test isAlive] for 3.99.144.144:12354
[Test isAlive] for 3.99.144.144:12355
[Test isAlive] for 3.99.144.144:12356
[Test isAlive] for 3.99.144.144:12357
[Test isAlive] for 3.99.144.144:12358
[Test isAlive] for 3.99.144.144:12359
[Test isAlive] for 3.99.144.144:12360
[Test isAlive] for 3.99.144.144:12361
[Test isAlive] for 3.99.144.144:12362
[Test isAlive] for 3.99.144.144:12363
[Test isAlive] for 3.99.144.144:12364
[Test isAlive] for 3.99.144.144:12365
[Test isAlive] for 3.99.144.144:12366
[Test isAlive] for 3.99.144.144:12367
[Test isAlive] for 3.99.144.144:12368
[Test isAlive] for 3.99.144.144:12369
[Test isAlive] for 3.99.144.144:12370
[Test isAlive] for 3.99.144.144:12371
[Test isAlive] for 3.99.144.144:12372
[Test isAlive] for 3.99.144.144:12373
[Test isAlive] for 3.99.144.144:12374
[Test isAlive] for 3.99.144.144:12375
[Test isAlive] for 3.99.144.144:12376
[Test isAlive] for 3.99.144.144:12377
[Test isAlive] for 3.99.144.144:12378
[Test isAlive] for 3.99.144.144:12379
[Test isAlive] for 3.99.144.144:12380
[Test isAlive] for 3.99.144.144:12381
[Test isAlive] for 3.99.144.144:12383
[Test isAlive] for 3.99.144.144:12382
[Test isAlive] for 3.99.144.144:12384
[Test isAlive] for 3.99.144.144:12385
[Test isAlive] for 3.99.144.144:12386
[ ... Completed in 0.048 seconds ]
TEST_PASSED
Stage 1 Random Front-End: Test Status: TEST_PASSED
Clients: 1
Total Requests (without replies): 3599
Total Requests (including replies): 3643
Successful Responses: 3599
Timeout Responses: 0
Total Failed Responses: 0
% Success: 100.0
% Timeout: 0.0
% Failed: 0.0
Response Time (Successful requests):
[max] 63ms, [min] 5ms
[avg] 16.626285079188662 ms, [stdev] 7.255476769973824ms
Throughput: 59.96434462420233 requests per second
Goodput: 59.96434462420233 requests per second
Retry Rate (Successful requests): 1.0122256182272853
Sending WIPE-OUT to all servers...
[ ... Completed in 0.049 seconds ]
[OK]
Waiting for 5 seconds for the cache to be cleared!
[ ... TEST Completed in 65.127 seconds ]
[Info] Pausing for 6 seconds to wait for the cache to be cleared!
[ TEST Random Front-End Performance (16 clients, 60.0 seconds): PUT -> GET (closed loop) ]
[Test isAlive] for 3.99.144.144:12347
[Test isAlive] for 3.99.144.144:12348
[Test isAlive] for 3.99.144.144:12349
[Test isAlive] for 3.99.144.144:12350
[Test isAlive] for 3.99.144.144:12351
[Test isAlive] for 3.99.144.144:12352
[Test isAlive] for 3.99.144.144:12353
[Test isAlive] for 3.99.144.144:12354
[Test isAlive] for 3.99.144.144:12355
[Test isAlive] for 3.99.144.144:12356
[Test isAlive] for 3.99.144.144:12357
[Test isAlive] for 3.99.144.144:12358
[Test isAlive] for 3.99.144.144:12359
[Test isAlive] for 3.99.144.144:12360
[Test isAlive] for 3.99.144.144:12361
[Test isAlive] for 3.99.144.144:12362
[Test isAlive] for 3.99.144.144:12363
[Test isAlive] for 3.99.144.144:12364
[Test isAlive] for 3.99.144.144:12365
[Test isAlive] for 3.99.144.144:12366
[Test isAlive] for 3.99.144.144:12367
[Test isAlive] for 3.99.144.144:12368
[Test isAlive] for 3.99.144.144:12369
[Test isAlive] for 3.99.144.144:12370
[Test isAlive] for 3.99.144.144:12371
[Test isAlive] for 3.99.144.144:12372
[Test isAlive] for 3.99.144.144:12373
[Test isAlive] for 3.99.144.144:12374
[Test isAlive] for 3.99.144.144:12375
[Test isAlive] for 3.99.144.144:12376
[Test isAlive] for 3.99.144.144:12377
[Test isAlive] for 3.99.144.144:12378
[Test isAlive] for 3.99.144.144:12379
[Test isAlive] for 3.99.144.144:12380
[Test isAlive] for 3.99.144.144:12381
[Test isAlive] for 3.99.144.144:12382
[Test isAlive] for 3.99.144.144:12383
[Test isAlive] for 3.99.144.144:12384
[Test isAlive] for 3.99.144.144:12385
[Test isAlive] for 3.99.144.144:12386
[ ... Completed in 0.01 seconds ]
TEST_PASSED
Stage 1 Random Front-End: Test Status: TEST_PASSED
Clients: 16
Total Requests (without replies): 59876
Total Requests (including replies): 60620
Successful Responses: 59876
Timeout Responses: 0
Total Failed Responses: 0
% Success: 100.0
% Timeout: 0.0
% Failed: 0.0
Response Time (Successful requests):
[max] 141ms, [min] 5ms
[avg] 16.004509319259803 ms, [stdev] 7.134648766053801ms
Throughput: 997.3681580437752 requests per second
Goodput: 997.3681580437752 requests per second
Retry Rate (Successful requests): 1.0124256797381255
Sending WIPE-OUT to all servers...
[ ... Completed in 0.026 seconds ]
[OK]
Waiting for 5 seconds for the cache to be cleared!
[ ... TEST Completed in 65.199 seconds ]
[Info] Pausing for 6 seconds to wait for the cache to be cleared!
[ TEST Random Front-End Performance (256 clients, 60.0 seconds): PUT -> GET (closed loop) ]
[Test isAlive] for 3.99.144.144:12347
[Test isAlive] for 3.99.144.144:12348
[Test isAlive] for 3.99.144.144:12349
[Test isAlive] for 3.99.144.144:12350
[Test isAlive] for 3.99.144.144:12351
[Test isAlive] for 3.99.144.144:12352
[Test isAlive] for 3.99.144.144:12353
[Test isAlive] for 3.99.144.144:12354
[Test isAlive] for 3.99.144.144:12355
[Test isAlive] for 3.99.144.144:12356
[Test isAlive] for 3.99.144.144:12357
[Test isAlive] for 3.99.144.144:12358
[Test isAlive] for 3.99.144.144:12359
[Test isAlive] for 3.99.144.144:12360
[Test isAlive] for 3.99.144.144:12361
[Test isAlive] for 3.99.144.144:12362
[Test isAlive] for 3.99.144.144:12363
[Test isAlive] for 3.99.144.144:12364
[Test isAlive] for 3.99.144.144:12365
[Test isAlive] for 3.99.144.144:12366
[Test isAlive] for 3.99.144.144:12367
[Test isAlive] for 3.99.144.144:12368
[Test isAlive] for 3.99.144.144:12369
[Test isAlive] for 3.99.144.144:12370
[Test isAlive] for 3.99.144.144:12371
[Test isAlive] for 3.99.144.144:12372
[Test isAlive] for 3.99.144.144:12373
[Test isAlive] for 3.99.144.144:12374
[Test isAlive] for 3.99.144.144:12375
[Test isAlive] for 3.99.144.144:12376
[Test isAlive] for 3.99.144.144:12377
[Test isAlive] for 3.99.144.144:12378
[Test isAlive] for 3.99.144.144:12379
[Test isAlive] for 3.99.144.144:12380
[Test isAlive] for 3.99.144.144:12381
[Test isAlive] for 3.99.144.144:12382
[Test isAlive] for 3.99.144.144:12383
[Test isAlive] for 3.99.144.144:12384
[Test isAlive] for 3.99.144.144:12385
[Test isAlive] for 3.99.144.144:12386
[ ... Completed in 0.01 seconds ]
TEST_PASSED
[ CPU load (loadavg, last one minute) 0.43 ]
Stage 1 Random Front-End: Test Status: TEST_PASSED
Clients: 256
Total Requests (without replies): 964620
Total Requests (including replies): 976791
Successful Responses: 964620
Timeout Responses: 0
Total Failed Responses: 0
% Success: 100.0
% Timeout: 0.0
% Failed: 0.0
Response Time (Successful requests):
[max] 301ms, [min] 5ms
[avg] 15.903286268167776 ms, [stdev] 7.216297607076377ms
Throughput: 16061.206480294377 requests per second
Goodput: 16061.206480294377 requests per second
Retry Rate (Successful requests): 1.0126174037444797
Sending WIPE-OUT to all servers...
[ ... Completed in 0.046 seconds ]
[OK]
Waiting for 5 seconds for the cache to be cleared!
[ ... TEST Completed in 65.47 seconds ]
[Info] Pausing for 6 seconds to wait for the cache to be cleared!
[ TEST Random Front-End Performance (1024 clients, 60.0 seconds): PUT -> GET (closed loop) ]
[Test isAlive] for 3.99.144.144:12347
[Test isAlive] for 3.99.144.144:12348
[Test isAlive] for 3.99.144.144:12349
[Test isAlive] for 3.99.144.144:12350
[Test isAlive] for 3.99.144.144:12351
[Test isAlive] for 3.99.144.144:12352
[Test isAlive] for 3.99.144.144:12353
[Test isAlive] for 3.99.144.144:12354
[Test isAlive] for 3.99.144.144:12355
[Test isAlive] for 3.99.144.144:12356
[Test isAlive] for 3.99.144.144:12357
[Test isAlive] for 3.99.144.144:12358
[Test isAlive] for 3.99.144.144:12359
[Test isAlive] for 3.99.144.144:12360
[Test isAlive] for 3.99.144.144:12361
[Test isAlive] for 3.99.144.144:12362
[Test isAlive] for 3.99.144.144:12363
[Test isAlive] for 3.99.144.144:12364
[Test isAlive] for 3.99.144.144:12365
[Test isAlive] for 3.99.144.144:12366
[Test isAlive] for 3.99.144.144:12367
[Test isAlive] for 3.99.144.144:12368
[Test isAlive] for 3.99.144.144:12369
[Test isAlive] for 3.99.144.144:12370
[Test isAlive] for 3.99.144.144:12371
[Test isAlive] for 3.99.144.144:12372
[Test isAlive] for 3.99.144.144:12373
[Test isAlive] for 3.99.144.144:12374
[Test isAlive] for 3.99.144.144:12375
[Test isAlive] for 3.99.144.144:12376
[Test isAlive] for 3.99.144.144:12377
[Test isAlive] for 3.99.144.144:12378
[Test isAlive] for 3.99.144.144:12379
[Test isAlive] for 3.99.144.144:12380
[Test isAlive] for 3.99.144.144:12381
[Test isAlive] for 3.99.144.144:12382
[Test isAlive] for 3.99.144.144:12383
[Test isAlive] for 3.99.144.144:12384
[Test isAlive] for 3.99.144.144:12385
[Test isAlive] for 3.99.144.144:12386
[ ... Completed in 0.048 seconds ]
TEST_PASSED
[ CPU load (loadavg, last one minute) 4.35 ]
Stage 1 Random Front-End: Test Status: TEST_PASSED
Clients: 1024
Total Requests (without replies): 2392904
Total Requests (including replies): 2759840
Successful Responses: 2390694
Timeout Responses: 2210
Total Failed Responses: 0
% Success: 99.90764359957608
% Timeout: 0.09235640042392006
% Failed: 0.0
Response Time (Successful requests):
[max] 585ms, [min] 5ms
[avg] 24.735254281811056 ms, [stdev] 41.726413359644404ms
Throughput: 39341.44416677627 requests per second