diff --git a/src/main/java/ru/vk/itmo/test/osipovdaniil/MergeHandleResult.java b/src/main/java/ru/vk/itmo/test/osipovdaniil/MergeHandleResult.java index 6482076e1..a258e3ee4 100644 --- a/src/main/java/ru/vk/itmo/test/osipovdaniil/MergeHandleResult.java +++ b/src/main/java/ru/vk/itmo/test/osipovdaniil/MergeHandleResult.java @@ -29,7 +29,7 @@ public MergeHandleResult(HttpSession session, int size, int ack) { public boolean add(int index, HandleResult handleResult) { handleResults[index] = handleResult; int valid = validateResultStatus(handleResult.status()) ? countValid.getAndIncrement() : countValid.get(); - if (valid >= ack) { + if (valid == ack) { sendResult(); return true; } diff --git a/src/main/java/ru/vk/itmo/test/osipovdaniil/ServerImpl.java b/src/main/java/ru/vk/itmo/test/osipovdaniil/ServerImpl.java index 6c3db3040..3d30027cb 100644 --- a/src/main/java/ru/vk/itmo/test/osipovdaniil/ServerImpl.java +++ b/src/main/java/ru/vk/itmo/test/osipovdaniil/ServerImpl.java @@ -15,6 +15,7 @@ import ru.vk.itmo.ServiceConfig; import ru.vk.itmo.test.osipovdaniil.dao.ReferenceBaseEntry; import ru.vk.itmo.test.osipovdaniil.dao.ReferenceDao; + import java.io.IOException; import java.lang.foreign.MemorySegment; import java.lang.foreign.ValueLayout; @@ -35,6 +36,7 @@ public class ServerImpl extends HttpServer { + public static final int EXECUTOR_SERVICE_TERMINATION_TIMEOUT = 60; public static final String ENTITY_PATH = "/v0/entity"; public static final String START = "start="; private static final String HEADER_REMOTE = "X-flag-remote-server-to-node"; @@ -43,6 +45,7 @@ public class ServerImpl extends HttpServer { private static final String HEADER_TIMESTAMP_ONE_NIO_HEADER = HEADER_TIMESTAMP + ": "; private static final Logger log = LoggerFactory.getLogger(ServerImpl.class); private static final int THREADS = Runtime.getRuntime().availableProcessors(); + private static final long REMOTE_HEADER_TIMEOUT = 500; public static final String ID = "id="; public static final String ACK = "ack="; public static final String FROM = "from="; @@ -284,7 +287,7 @@ private HandleResult invokeRemote(final String executorNode, final Request reque : HttpRequest.BodyPublishers.ofByteArray(request.getBody()) ) .header(HEADER_REMOTE, "true") - .timeout(Duration.ofMillis(500)) + .timeout(Duration.ofMillis(REMOTE_HEADER_TIMEOUT)) .build(); final HttpResponse httpResponse = httpClient.send(httpRequest, HttpResponse.BodyHandlers.ofByteArray()); final Optional string = httpResponse.headers().firstValue(HEADER_TIMESTAMP); @@ -346,15 +349,15 @@ private int[] getIndexes(final String id, final int count) { int[] maxHashs = new int[count]; for (int i = 0; i < count; i++) { - String url = config.clusterUrls().get(i); - int hash = Hash.murmur3(url + id); + final String url = config.clusterUrls().get(i); + final int hash = Hash.murmur3(url + id); result[i] = i; maxHashs[i] = hash; } for (int i = count; i < config.clusterUrls().size(); i++) { - String url = config.clusterUrls().get(i); - int hash = Hash.murmur3(url + id); + final String url = config.clusterUrls().get(i); + final int hash = Hash.murmur3(url + id); for (int j = 0; j < maxHashs.length; j++) { int maxHash = maxHashs[j]; if (maxHash < hash) { @@ -373,11 +376,12 @@ private interface ERunnable { private void shutdownAndAwaitTermination(ExecutorService pool) { try { - if (!pool.awaitTermination(60, TimeUnit.MILLISECONDS)) { + if (!pool.awaitTermination(EXECUTOR_SERVICE_TERMINATION_TIMEOUT, TimeUnit.MILLISECONDS)) { pool.shutdownNow(); - if (!pool.awaitTermination(60, TimeUnit.MILLISECONDS)) { + if (!pool.awaitTermination(EXECUTOR_SERVICE_TERMINATION_TIMEOUT, TimeUnit.MILLISECONDS)) { log.info("Pool did not terminate"); } + } } catch (InterruptedException ie) { pool.shutdownNow(); diff --git a/src/main/java/ru/vk/itmo/test/osipovdaniil/report5/asyncprof/get_alloc_prof.html b/src/main/java/ru/vk/itmo/test/osipovdaniil/report5/asyncprof/get_alloc_prof.html new file mode 100644 index 000000000..96cb331a1 --- /dev/null +++ b/src/main/java/ru/vk/itmo/test/osipovdaniil/report5/asyncprof/get_alloc_prof.html @@ -0,0 +1,3125 @@ + + + + + + + +

Allocation profile

+
  
+
Produced by async-profiler
+ +
+

+

Matched:

+ diff --git a/src/main/java/ru/vk/itmo/test/osipovdaniil/report5/asyncprof/get_cpu_prof.html b/src/main/java/ru/vk/itmo/test/osipovdaniil/report5/asyncprof/get_cpu_prof.html new file mode 100644 index 000000000..207e31a50 --- /dev/null +++ b/src/main/java/ru/vk/itmo/test/osipovdaniil/report5/asyncprof/get_cpu_prof.html @@ -0,0 +1,9911 @@ + + + + + + + +

CPU profile

+
  
+
Produced by async-profiler
+ +
+

+

Matched:

+ diff --git a/src/main/java/ru/vk/itmo/test/osipovdaniil/report5/asyncprof/get_lock_prof.html b/src/main/java/ru/vk/itmo/test/osipovdaniil/report5/asyncprof/get_lock_prof.html new file mode 100644 index 000000000..3bd9787a2 --- /dev/null +++ b/src/main/java/ru/vk/itmo/test/osipovdaniil/report5/asyncprof/get_lock_prof.html @@ -0,0 +1,1066 @@ + + + + + + + +

Lock profile

+
  
+
Produced by async-profiler
+ +
+

+

Matched:

+ diff --git a/src/main/java/ru/vk/itmo/test/osipovdaniil/report5/asyncprof/put_alloc_prof.html b/src/main/java/ru/vk/itmo/test/osipovdaniil/report5/asyncprof/put_alloc_prof.html new file mode 100644 index 000000000..7dbc22b49 --- /dev/null +++ b/src/main/java/ru/vk/itmo/test/osipovdaniil/report5/asyncprof/put_alloc_prof.html @@ -0,0 +1,3166 @@ + + + + + + + +

Allocation profile

+
  
+
Produced by async-profiler
+ +
+

+

Matched:

+ diff --git a/src/main/java/ru/vk/itmo/test/osipovdaniil/report5/asyncprof/put_cpu_prof.html b/src/main/java/ru/vk/itmo/test/osipovdaniil/report5/asyncprof/put_cpu_prof.html new file mode 100644 index 000000000..a65351af9 --- /dev/null +++ b/src/main/java/ru/vk/itmo/test/osipovdaniil/report5/asyncprof/put_cpu_prof.html @@ -0,0 +1,10526 @@ + + + + + + + +

CPU profile

+
  
+
Produced by async-profiler
+ +
+

+

Matched:

+ diff --git a/src/main/java/ru/vk/itmo/test/osipovdaniil/report5/asyncprof/put_lock_prof.html b/src/main/java/ru/vk/itmo/test/osipovdaniil/report5/asyncprof/put_lock_prof.html new file mode 100644 index 000000000..a1f9fe773 --- /dev/null +++ b/src/main/java/ru/vk/itmo/test/osipovdaniil/report5/asyncprof/put_lock_prof.html @@ -0,0 +1,1046 @@ + + + + + + + +

Lock profile

+
  
+
Produced by async-profiler
+ +
+

+

Matched:

+ diff --git a/src/main/java/ru/vk/itmo/test/osipovdaniil/report5/report5.md b/src/main/java/ru/vk/itmo/test/osipovdaniil/report5/report5.md new file mode 100644 index 000000000..40c8d1a5e --- /dev/null +++ b/src/main/java/ru/vk/itmo/test/osipovdaniil/report5/report5.md @@ -0,0 +1,68 @@ +# Отчёт по 5 стейджу. + +К сожалению, так как 4 стейдж я не делал, сравнений не будет, +так как по сравнению с 3 серьёзные изменения в структуре. + +Также были изменены [скрипты](../scripts) в связи с добавлением +параметров `ack = 2 и from = 3`, а также в скрипты была добавлена +рандомизацией кластера. + +## wrk + +[пример](../report5/wrk/put) +Тестил на 4 тредах и 16 коннекшенах. Точка разладки `12500`, +соответственно тестим на 10000. Стоит отметить стабильную +работу с многопоточкой, и получается заметное улучшение по скорости +относительнно первых стейджей. + +## asyncprof + +### cpu + +[put cpu](../report5/asyncprof/put_cpu_prof.html) +[get cpu](../report5/asyncprof/get_cpu_prof.html) + +Сразу стоит отметить значительное изменение +распределие ресурсов процессора.
+Так `remote` занимает всего около 15% ресурсов процессора, так же как и +обработка таски `completableFeature` и обработка её завершения +в то время как почти вся остальная часть ресурсов уходит на скедулер и пакет +`jdk/internal/net` + +### alloc + +[put alloc](../report5/asyncprof/put_alloc_prof.html) +[get alloc](../report5/asyncprof/get_alloc_prof.html) + +Примерно 30 процентов приходится на всё тот же скедулер, +а аллокации непосредственно обработки запроса (50%) связаны +с хэдерами запросов, примерно 20%. Остальное это аллокации связанные с `CompletableFeature`, +локальными переменными и получением результата. + +### lock + +[put lock](../report5/asyncprof/put_lock_prof.html) +[get lock](../report5/asyncprof/get_lock_prof.html) + +С точки зрения локов картина довольно простая `CompletableFuture` +забирают примерно 80%, что вполне логично. + +## Сравнение с 3 стейджем + +Предлагается отключить 1 шард и посмотреть на количество ответов не 2xx, 3xx + +Для этого в скриптах хосты будут 8080, 8090, 8900. Параметры `ack и from` убираем, +то есть в случае 5 стейджа бужут выставляться дефолтные значения. +А зараним только 8080, 8090. + +[5 стейдж](../report5/wrk/5_4xx) +[3 стейдж](../report5/wrk/3_4xx) + +В случае 5 стейджа +`18733 / 76301 = 0.2455`, а в случае 3 стейджа `70059 / 149816 = 0.4677`. + +Да в 5 стейдже цифры задержки плохие (экспешены вылетали по другому при тестировании), +но это не отменяет логичного и закономерного факта (так как соотношение остаётся). Соотношение плохих ответов +ко всем запросам в 5 стейдже лучше. Потому что, несмотря на то что +один шард отключен, можно получить достаточно положительных ответов с других шардов, +в то время как в 3 стейдже это означает моментальный плохой ответ. diff --git a/src/main/java/ru/vk/itmo/test/osipovdaniil/report5/wrk/3_4xx b/src/main/java/ru/vk/itmo/test/osipovdaniil/report5/wrk/3_4xx new file mode 100644 index 000000000..9eeb76641 --- /dev/null +++ b/src/main/java/ru/vk/itmo/test/osipovdaniil/report5/wrk/3_4xx @@ -0,0 +1,114 @@ +./wrk -d 30 -t 1 -c 16 -R 5000 -L -s /home/sbread/Desktop/labs/HLS/2024-highload-dht/src/main/java/ru/vk/itmo/test/osipovdaniil/scripts/put.lua http://localhost:8080 +Running 30s test @ http://localhost:8080 + 1 threads and 16 connections + Thread calibration: mean lat.: 1.338ms, rate sampling interval: 10ms + Thread Stats Avg Stdev Max +/- Stdev + Latency 1.41ms 1.45ms 38.78ms 98.61% + Req/Sec 5.27k 498.44 13.90k 85.24% + Latency Distribution (HdrHistogram - Recorded Latency) + 50.000% 1.26ms + 75.000% 1.75ms + 90.000% 2.14ms + 99.000% 3.46ms + 99.900% 24.51ms + 99.990% 35.17ms + 99.999% 38.49ms +100.000% 38.81ms + + Detailed Percentile spectrum: + Value Percentile TotalCount 1/(1-Percentile) + + 0.101 0.000000 1 1.00 + 0.596 0.100000 9977 1.11 + 0.776 0.200000 19939 1.25 + 0.931 0.300000 29917 1.43 + 1.088 0.400000 39852 1.67 + 1.259 0.500000 49825 2.00 + 1.349 0.550000 54810 2.22 + 1.440 0.600000 59766 2.50 + 1.538 0.650000 64768 2.86 + 1.638 0.700000 69736 3.33 + 1.745 0.750000 74749 4.00 + 1.804 0.775000 77231 4.44 + 1.859 0.800000 79682 5.00 + 1.924 0.825000 82196 5.71 + 1.991 0.850000 84664 6.67 + 2.065 0.875000 87177 8.00 + 2.105 0.887500 88426 8.89 + 2.145 0.900000 89683 10.00 + 2.191 0.912500 90922 11.43 + 2.243 0.925000 92154 13.33 + 2.299 0.937500 93394 16.00 + 2.331 0.943750 94007 17.78 + 2.367 0.950000 94655 20.00 + 2.407 0.956250 95258 22.86 + 2.453 0.962500 95882 26.67 + 2.513 0.968750 96500 32.00 + 2.543 0.971875 96813 35.56 + 2.579 0.975000 97114 40.00 + 2.627 0.978125 97426 45.71 + 2.689 0.981250 97737 53.33 + 2.787 0.984375 98047 64.00 + 2.857 0.985938 98201 71.11 + 2.997 0.987500 98356 80.00 + 3.231 0.989062 98512 91.43 + 3.705 0.990625 98668 106.67 + 4.739 0.992188 98823 128.00 + 5.351 0.992969 98901 142.22 + 6.319 0.993750 98979 160.00 + 8.095 0.994531 99057 182.86 + 9.951 0.995313 99135 213.33 + 11.895 0.996094 99212 256.00 + 12.735 0.996484 99251 284.44 + 14.071 0.996875 99290 320.00 + 15.519 0.997266 99329 365.71 + 16.943 0.997656 99368 426.67 + 18.767 0.998047 99407 512.00 + 19.887 0.998242 99426 568.89 + 20.991 0.998437 99446 640.00 + 22.015 0.998633 99466 731.43 + 23.375 0.998828 99485 853.33 + 24.703 0.999023 99504 1024.00 + 25.759 0.999121 99514 1137.78 + 26.783 0.999219 99524 1280.00 + 27.519 0.999316 99533 1462.86 + 28.431 0.999414 99544 1706.67 + 29.375 0.999512 99553 2048.00 + 30.127 0.999561 99558 2275.56 + 30.447 0.999609 99564 2560.00 + 31.039 0.999658 99567 2925.71 + 31.759 0.999707 99572 3413.33 + 32.703 0.999756 99577 4096.00 + 33.183 0.999780 99580 4551.11 + 33.407 0.999805 99582 5120.00 + 33.503 0.999829 99584 5851.43 + 34.303 0.999854 99587 6826.67 + 34.527 0.999878 99589 8192.00 + 35.167 0.999890 99591 9102.22 + 35.487 0.999902 99592 10240.00 + 35.871 0.999915 99593 11702.86 + 36.191 0.999927 99594 13653.33 + 36.255 0.999939 99595 16384.00 + 36.479 0.999945 99596 18204.44 + 36.543 0.999951 99597 20480.00 + 36.543 0.999957 99597 23405.71 + 37.279 0.999963 99598 27306.67 + 37.279 0.999969 99598 32768.00 + 38.207 0.999973 99599 36408.89 + 38.207 0.999976 99599 40960.00 + 38.207 0.999979 99599 46811.43 + 38.495 0.999982 99600 54613.33 + 38.495 0.999985 99600 65536.00 + 38.495 0.999986 99600 72817.78 + 38.495 0.999988 99600 81920.00 + 38.495 0.999989 99600 93622.86 + 38.815 0.999991 99601 109226.67 + 38.815 1.000000 99601 inf +#[Mean = 1.415, StdDeviation = 1.448] +#[Max = 38.784, Total count = 99601] +#[Buckets = 27, SubBuckets = 2048] +---------------------------------------------------------- + 149816 requests in 30.00s, 10.54MB read + Non-2xx or 3xx responses: 70059 +Requests/sec: 4993.68 +Transfer/sec: 359.88KB diff --git a/src/main/java/ru/vk/itmo/test/osipovdaniil/report5/wrk/5_4xx b/src/main/java/ru/vk/itmo/test/osipovdaniil/report5/wrk/5_4xx new file mode 100644 index 000000000..f1c463a69 --- /dev/null +++ b/src/main/java/ru/vk/itmo/test/osipovdaniil/report5/wrk/5_4xx @@ -0,0 +1,96 @@ +./wrk -d 30 -t 4 -c 4 -R 10000 -L -s /home/sbread/Desktop/labs/HLS/2024-highload-dht/src/main/java/ru/vk/itmo/test/osipovdaniil/scripts/put.lua http://localhost:8080 +Running 30s test @ http://localhost:8080 + 4 threads and 4 connections + Thread calibration: mean lat.: 4902.109ms, rate sampling interval: 14852ms + Thread calibration: mean lat.: 4880.748ms, rate sampling interval: 14835ms + Thread calibration: mean lat.: 4878.872ms, rate sampling interval: 14827ms + Thread calibration: mean lat.: 4896.315ms, rate sampling interval: 14835ms + Thread Stats Avg Stdev Max +/- Stdev + Latency 15.09s 4.14s 22.38s 58.09% + Req/Sec 696.50 2.06 698.00 75.00% + Latency Distribution (HdrHistogram - Recorded Latency) + 50.000% 15.08s + 75.000% 18.66s + 90.000% 20.79s + 99.000% 22.13s + 99.900% 22.36s + 99.990% 22.40s + 99.999% 22.40s +100.000% 22.40s + + Detailed Percentile spectrum: + Value Percentile TotalCount 1/(1-Percentile) + + 7905.279 0.000000 7 1.00 + 9388.031 0.100000 5548 1.11 + 10821.631 0.200000 11092 1.25 + 12214.271 0.300000 16630 1.43 + 13656.063 0.400000 22163 1.67 + 15081.471 0.500000 27696 2.00 + 15884.287 0.550000 30450 2.22 + 16564.223 0.600000 33223 2.50 + 17285.119 0.650000 36032 2.86 + 17940.479 0.700000 38758 3.33 + 18661.375 0.750000 41574 4.00 + 19005.439 0.775000 42962 4.44 + 19365.887 0.800000 44306 5.00 + 19775.487 0.825000 45683 5.71 + 20119.551 0.850000 47127 6.67 + 20447.231 0.875000 48466 8.00 + 20611.071 0.887500 49208 8.89 + 20791.295 0.900000 49851 10.00 + 20987.903 0.912500 50513 11.43 + 21217.279 0.925000 51241 13.33 + 21413.887 0.937500 51943 16.00 + 21495.807 0.943750 52244 17.78 + 21594.111 0.950000 52612 20.00 + 21676.031 0.956250 52960 22.86 + 21790.719 0.962500 53343 26.67 + 21872.639 0.968750 53689 32.00 + 21905.407 0.971875 53832 35.56 + 21954.559 0.975000 54039 40.00 + 21987.327 0.978125 54181 45.71 + 22020.095 0.981250 54329 53.33 + 22069.247 0.984375 54542 64.00 + 22085.631 0.985938 54609 71.11 + 22102.015 0.987500 54687 80.00 + 22134.783 0.989062 54818 91.43 + 22151.167 0.990625 54886 106.67 + 22167.551 0.992188 54955 128.00 + 22183.935 0.992969 54999 142.22 + 22200.319 0.993750 55022 160.00 + 22233.087 0.994531 55078 182.86 + 22265.855 0.995313 55101 213.33 + 22315.007 0.996094 55161 256.00 + 22331.391 0.996484 55218 284.44 + 22331.391 0.996875 55218 320.00 + 22331.391 0.997266 55218 365.71 + 22347.775 0.997656 55276 426.67 + 22347.775 0.998047 55276 512.00 + 22347.775 0.998242 55276 568.89 + 22347.775 0.998437 55276 640.00 + 22364.159 0.998633 55319 731.43 + 22364.159 0.998828 55319 853.33 + 22364.159 0.999023 55319 1024.00 + 22364.159 0.999121 55319 1137.78 + 22364.159 0.999219 55319 1280.00 + 22364.159 0.999316 55319 1462.86 + 22380.543 0.999414 55346 1706.67 + 22380.543 0.999512 55346 2048.00 + 22380.543 0.999561 55346 2275.56 + 22380.543 0.999609 55346 2560.00 + 22380.543 0.999658 55346 2925.71 + 22380.543 0.999707 55346 3413.33 + 22380.543 0.999756 55346 4096.00 + 22380.543 0.999780 55346 4551.11 + 22380.543 0.999805 55346 5120.00 + 22396.927 0.999829 55356 5851.43 + 22396.927 1.000000 55356 inf +#[Mean = 15093.395, StdDeviation = 4137.094] +#[Max = 22380.544, Total count = 55356] +#[Buckets = 27, SubBuckets = 2048] +---------------------------------------------------------- + 76301 requests in 30.00s, 4.70MB read + Non-2xx or 3xx responses: 18733 +Requests/sec: 2543.33 +Transfer/sec: 160.56KB diff --git a/src/main/java/ru/vk/itmo/test/osipovdaniil/report5/wrk/get b/src/main/java/ru/vk/itmo/test/osipovdaniil/report5/wrk/get new file mode 100644 index 000000000..04e22b83e --- /dev/null +++ b/src/main/java/ru/vk/itmo/test/osipovdaniil/report5/wrk/get @@ -0,0 +1,121 @@ +/wrk -d 30 -t 4 -c 16 -R 10000 -L -s /home/sbread/Desktop/labs/HLS/2024-highload-dht/src/main/java/ru/vk/itmo/test/osipovdaniil/scripts/get.lua http://localhost:8080 +Running 30s test @ http://localhost:8080 + 4 threads and 16 connections + Thread calibration: mean lat.: 1.413ms, rate sampling interval: 10ms + Thread calibration: mean lat.: 1.369ms, rate sampling interval: 10ms + Thread calibration: mean lat.: 1.405ms, rate sampling interval: 10ms + Thread calibration: mean lat.: 1.378ms, rate sampling interval: 10ms + Thread Stats Avg Stdev Max +/- Stdev + Latency 1.58ms 2.27ms 44.00ms 98.69% + Req/Sec 2.63k 236.75 4.55k 80.29% + Latency Distribution (HdrHistogram - Recorded Latency) + 50.000% 1.32ms + 75.000% 1.77ms + 90.000% 2.21ms + 99.000% 5.20ms + 99.900% 38.49ms + 99.990% 42.56ms + 99.999% 43.55ms +100.000% 44.03ms + + Detailed Percentile spectrum: + Value Percentile TotalCount 1/(1-Percentile) + + 0.194 0.000000 1 1.00 + 0.702 0.100000 19992 1.11 + 0.877 0.200000 39985 1.25 + 1.023 0.300000 60009 1.43 + 1.166 0.400000 80055 1.67 + 1.315 0.500000 99965 2.00 + 1.394 0.550000 109939 2.22 + 1.478 0.600000 119966 2.50 + 1.568 0.650000 129905 2.86 + 1.666 0.700000 139942 3.33 + 1.772 0.750000 149863 4.00 + 1.830 0.775000 154863 4.44 + 1.892 0.800000 159889 5.00 + 1.959 0.825000 164901 5.71 + 2.031 0.850000 169865 6.67 + 2.113 0.875000 174931 8.00 + 2.157 0.887500 177393 8.89 + 2.207 0.900000 179830 10.00 + 2.263 0.912500 182392 11.43 + 2.327 0.925000 184852 13.33 + 2.405 0.937500 187361 16.00 + 2.449 0.943750 188567 17.78 + 2.505 0.950000 189855 20.00 + 2.569 0.956250 191084 22.86 + 2.647 0.962500 192318 26.67 + 2.751 0.968750 193573 32.00 + 2.827 0.971875 194188 35.56 + 2.923 0.975000 194811 40.00 + 3.051 0.978125 195436 45.71 + 3.233 0.981250 196054 53.33 + 3.507 0.984375 196680 64.00 + 3.699 0.985938 196992 71.11 + 3.979 0.987500 197303 80.00 + 4.531 0.989062 197615 91.43 + 5.899 0.990625 197927 106.67 + 7.459 0.992188 198242 128.00 + 8.479 0.992969 198396 142.22 + 11.551 0.993750 198552 160.00 + 15.055 0.994531 198708 182.86 + 18.927 0.995313 198865 213.33 + 22.879 0.996094 199020 256.00 + 24.815 0.996484 199100 284.44 + 26.799 0.996875 199177 320.00 + 28.991 0.997266 199254 365.71 + 31.199 0.997656 199333 426.67 + 33.567 0.998047 199410 512.00 + 34.623 0.998242 199450 568.89 + 35.519 0.998437 199488 640.00 + 36.511 0.998633 199527 731.43 + 37.663 0.998828 199568 853.33 + 38.591 0.999023 199609 1024.00 + 39.135 0.999121 199625 1137.78 + 39.551 0.999219 199644 1280.00 + 40.031 0.999316 199667 1462.86 + 40.287 0.999414 199684 1706.67 + 40.831 0.999512 199703 2048.00 + 41.055 0.999561 199713 2275.56 + 41.215 0.999609 199722 2560.00 + 41.375 0.999658 199734 2925.71 + 41.599 0.999707 199742 3413.33 + 41.983 0.999756 199753 4096.00 + 42.047 0.999780 199757 4551.11 + 42.143 0.999805 199763 5120.00 + 42.207 0.999829 199766 5851.43 + 42.335 0.999854 199771 6826.67 + 42.463 0.999878 199778 8192.00 + 42.559 0.999890 199783 9102.22 + 42.559 0.999902 199783 10240.00 + 42.559 0.999915 199783 11702.86 + 42.623 0.999927 199788 13653.33 + 42.623 0.999939 199788 16384.00 + 42.687 0.999945 199791 18204.44 + 42.687 0.999951 199791 20480.00 + 42.719 0.999957 199793 23405.71 + 42.719 0.999963 199793 27306.67 + 42.751 0.999969 199794 32768.00 + 42.911 0.999973 199795 36408.89 + 42.943 0.999976 199796 40960.00 + 42.943 0.999979 199796 46811.43 + 43.103 0.999982 199797 54613.33 + 43.103 0.999985 199797 65536.00 + 43.551 0.999986 199798 72817.78 + 43.551 0.999988 199798 81920.00 + 43.551 0.999989 199798 93622.86 + 43.903 0.999991 199799 109226.67 + 43.903 0.999992 199799 131072.00 + 43.903 0.999993 199799 145635.56 + 43.903 0.999994 199799 163840.00 + 43.903 0.999995 199799 187245.71 + 44.031 0.999995 199800 218453.33 + 44.031 1.000000 199800 inf +#[Mean = 1.575, StdDeviation = 2.271] +#[Max = 44.000, Total count = 199800] +#[Buckets = 27, SubBuckets = 2048] +---------------------------------------------------------- + 299922 requests in 30.00s, 19.94MB read +Requests/sec: 9997.21 +Transfer/sec: 680.65KB diff --git a/src/main/java/ru/vk/itmo/test/osipovdaniil/report5/wrk/put b/src/main/java/ru/vk/itmo/test/osipovdaniil/report5/wrk/put new file mode 100644 index 000000000..891aa39a3 --- /dev/null +++ b/src/main/java/ru/vk/itmo/test/osipovdaniil/report5/wrk/put @@ -0,0 +1,117 @@ +./wrk -d 30 -t 4 -c 16 -R 10000 -L -s /home/sbread/Desktop/labs/HLS/2024-highload-dht/src/main/java/ru/vk/itmo/test/osipovdaniil/scripts/put.lua http://localhost:8080 +Running 30s test @ http://localhost:8080 + 4 threads and 16 connections + Thread calibration: mean lat.: 6.402ms, rate sampling interval: 10ms + Thread calibration: mean lat.: 6.361ms, rate sampling interval: 10ms + Thread calibration: mean lat.: 6.064ms, rate sampling interval: 10ms + Thread calibration: mean lat.: 6.428ms, rate sampling interval: 10ms + Thread Stats Avg Stdev Max +/- Stdev + Latency 1.64ms 1.73ms 34.72ms 96.25% + Req/Sec 2.64k 236.32 4.55k 70.93% + Latency Distribution (HdrHistogram - Recorded Latency) + 50.000% 1.37ms + 75.000% 1.82ms + 90.000% 2.35ms + 99.000% 8.48ms + 99.900% 24.69ms + 99.990% 30.77ms + 99.999% 34.46ms +100.000% 34.75ms + + Detailed Percentile spectrum: + Value Percentile TotalCount 1/(1-Percentile) + + 0.241 0.000000 1 1.00 + 0.738 0.100000 19989 1.11 + 0.922 0.200000 40056 1.25 + 1.078 0.300000 60083 1.43 + 1.225 0.400000 79931 1.67 + 1.370 0.500000 99947 2.00 + 1.444 0.550000 109936 2.22 + 1.522 0.600000 119880 2.50 + 1.609 0.650000 129875 2.86 + 1.706 0.700000 139928 3.33 + 1.822 0.750000 149932 4.00 + 1.886 0.775000 154904 4.44 + 1.955 0.800000 159860 5.00 + 2.033 0.825000 164829 5.71 + 2.121 0.850000 169833 6.67 + 2.225 0.875000 174869 8.00 + 2.283 0.887500 177328 8.89 + 2.351 0.900000 179833 10.00 + 2.433 0.912500 182350 11.43 + 2.531 0.925000 184803 13.33 + 2.675 0.937500 187315 16.00 + 2.783 0.943750 188571 17.78 + 2.919 0.950000 189798 20.00 + 3.113 0.956250 191048 22.86 + 3.371 0.962500 192302 26.67 + 3.721 0.968750 193550 32.00 + 3.919 0.971875 194173 35.56 + 4.159 0.975000 194797 40.00 + 4.487 0.978125 195419 45.71 + 4.999 0.981250 196044 53.33 + 5.891 0.984375 196665 64.00 + 6.499 0.985938 196977 71.11 + 7.175 0.987500 197289 80.00 + 7.931 0.989062 197601 91.43 + 8.935 0.990625 197916 106.67 + 10.319 0.992188 198227 128.00 + 11.255 0.992969 198382 142.22 + 12.343 0.993750 198538 160.00 + 13.543 0.994531 198695 182.86 + 14.791 0.995313 198850 213.33 + 16.255 0.996094 199008 256.00 + 17.087 0.996484 199084 284.44 + 18.047 0.996875 199164 320.00 + 18.847 0.997266 199241 365.71 + 20.239 0.997656 199319 426.67 + 21.519 0.998047 199396 512.00 + 22.111 0.998242 199436 568.89 + 22.767 0.998437 199476 640.00 + 23.455 0.998633 199514 731.43 + 24.127 0.998828 199552 853.33 + 24.751 0.999023 199591 1024.00 + 24.975 0.999121 199612 1137.78 + 25.199 0.999219 199630 1280.00 + 25.439 0.999316 199650 1462.86 + 25.935 0.999414 199670 1706.67 + 26.207 0.999512 199689 2048.00 + 26.431 0.999561 199699 2275.56 + 26.671 0.999609 199708 2560.00 + 26.927 0.999658 199718 2925.71 + 27.359 0.999707 199729 3413.33 + 27.615 0.999756 199738 4096.00 + 27.919 0.999780 199743 4551.11 + 28.079 0.999805 199747 5120.00 + 28.415 0.999829 199752 5851.43 + 28.703 0.999854 199757 6826.67 + 29.119 0.999878 199762 8192.00 + 30.655 0.999890 199765 9102.22 + 30.863 0.999902 199767 10240.00 + 31.247 0.999915 199769 11702.86 + 31.999 0.999927 199772 13653.33 + 32.399 0.999939 199774 16384.00 + 32.895 0.999945 199776 18204.44 + 33.087 0.999951 199777 20480.00 + 33.407 0.999957 199778 23405.71 + 33.535 0.999963 199779 27306.67 + 33.951 0.999969 199780 32768.00 + 34.175 0.999973 199781 36408.89 + 34.239 0.999976 199782 40960.00 + 34.239 0.999979 199782 46811.43 + 34.271 0.999982 199783 54613.33 + 34.271 0.999985 199783 65536.00 + 34.463 0.999986 199784 72817.78 + 34.463 0.999988 199784 81920.00 + 34.463 0.999989 199784 93622.86 + 34.751 0.999991 199786 109226.67 + 34.751 1.000000 199786 inf +#[Mean = 1.644, StdDeviation = 1.726] +#[Max = 34.720, Total count = 199786] +#[Buckets = 27, SubBuckets = 2048] +---------------------------------------------------------- + 299909 requests in 30.00s, 16.87MB read +Requests/sec: 9997.09 +Transfer/sec: 576.00KB + diff --git a/src/main/java/ru/vk/itmo/test/osipovdaniil/scripts/delete.lua b/src/main/java/ru/vk/itmo/test/osipovdaniil/scripts/delete.lua index b9f932bd4..e354828e7 100644 --- a/src/main/java/ru/vk/itmo/test/osipovdaniil/scripts/delete.lua +++ b/src/main/java/ru/vk/itmo/test/osipovdaniil/scripts/delete.lua @@ -5,6 +5,6 @@ function request() id = id + 1 path = "/v0/entity?id=key" .. curId headers = {} - headers["Host"] = "localhost:8080" + headers["Host"] = "localhost:808" .. string.char((math.random(1, 4) - 1) * 10) return wrk.format("DELETE", path, headers) end diff --git a/src/main/java/ru/vk/itmo/test/osipovdaniil/scripts/get.lua b/src/main/java/ru/vk/itmo/test/osipovdaniil/scripts/get.lua index 3ed630fda..daca6dc47 100644 --- a/src/main/java/ru/vk/itmo/test/osipovdaniil/scripts/get.lua +++ b/src/main/java/ru/vk/itmo/test/osipovdaniil/scripts/get.lua @@ -5,6 +5,6 @@ function request() id = id + 1 path = "/v0/entity?id=key" .. curId headers = {} - headers["Host"] = "localhost:8080" + headers["Host"] = "localhost:808" .. string.char((math.random(1, 4) - 1) * 10) return wrk.format("GET", path, headers) end diff --git a/src/main/java/ru/vk/itmo/test/osipovdaniil/scripts/put.lua b/src/main/java/ru/vk/itmo/test/osipovdaniil/scripts/put.lua index f87fed66c..ea90d2bd8 100644 --- a/src/main/java/ru/vk/itmo/test/osipovdaniil/scripts/put.lua +++ b/src/main/java/ru/vk/itmo/test/osipovdaniil/scripts/put.lua @@ -5,7 +5,7 @@ function request() id = id + 1 path = "/v0/entity?id=key" .. curId headers = {} - headers["Host"] = "localhost:8080" + headers["Host"] = "localhost:808" .. string.char((math.random(1, 4) - 1) * 10) value = "value" .. curId return wrk.format("PUT", path, headers, value) end