From 7148bc98a35e93c601d29ea4dade26aa60d2ea2f Mon Sep 17 00:00:00 2001 From: Petrik Date: Tue, 2 Jun 2026 20:52:48 +0200 Subject: [PATCH 1/2] [rails] Return database results with symbols instead of strings Reuse symbols instead of creating new strings everytime. --- .../app/controllers/application_controller.rb | 1 + .../app/controllers/benchmark_controller.rb | 16 ++++++++-------- .../rails/app/controllers/items_controller.rb | 16 ++++++++-------- 3 files changed, 17 insertions(+), 16 deletions(-) diff --git a/frameworks/rails/app/controllers/application_controller.rb b/frameworks/rails/app/controllers/application_controller.rb index 05401f9f3..e1ef3b386 100644 --- a/frameworks/rails/app/controllers/application_controller.rb +++ b/frameworks/rails/app/controllers/application_controller.rb @@ -20,6 +20,7 @@ def self.get_async_db return unless ENV['DATABASE_URL'] ConnectionPool.new(size: pool_size, timeout: 5) do db = PG.connect(ENV['DATABASE_URL']) + db.field_name_type = :symbol db.prepare('select', SELECT_QUERY) db.prepare('crud_get', CRUD_GET_SQL) db.prepare('crud_list', CRUD_LIST_SQL) diff --git a/frameworks/rails/app/controllers/benchmark_controller.rb b/frameworks/rails/app/controllers/benchmark_controller.rb index a0c539ae1..3f1e1a3d2 100644 --- a/frameworks/rails/app/controllers/benchmark_controller.rb +++ b/frameworks/rails/app/controllers/benchmark_controller.rb @@ -50,14 +50,14 @@ def async_db items = rows.map do |r| { - id: r['id'], - name: r['name'], - category: r['category'], - price: r['price'], - quantity: r['quantity'], - active: r['active'] == 't', - tags: JSON.parse(r['tags']), - rating: { score: r['rating_score'], count: r['rating_count'] } + id: r[:id], + name: r[:name], + category: r[:category], + price: r[:price], + quantity: r[:quantity], + active: r[:active] == 't', + tags: JSON.parse(r[:tags]), + rating: { score: r[:rating_score], count: r[:rating_count] } } end render json: { items: items, count: items.length } diff --git a/frameworks/rails/app/controllers/items_controller.rb b/frameworks/rails/app/controllers/items_controller.rb index a5a78128a..ea25ca3b2 100644 --- a/frameworks/rails/app/controllers/items_controller.rb +++ b/frameworks/rails/app/controllers/items_controller.rb @@ -96,15 +96,15 @@ def update def map_row(row) mapped_row = { - id: row['id'], - name: row['name'], - category: row['category'], - price: row['price'], - quantity: row['quantity'], - active: row['active'] == 1, + id: row[:id], + name: row[:name], + category: row[:category], + price: row[:price], + quantity: row[:quantity], + active: row[:active] == 1, } - mapped_row[:tags] = JSON.parse(row['tags']) if row['tags'] - mapped_row[:rating] = { score: row['rating_score'], count: row['rating_count'] } if row['rating_score'] && row['rating_count'] + mapped_row[:tags] = JSON.parse(row[:tags]) if row.has_key?(:tags) + mapped_row[:rating] = { score: row[:rating_score], count: row[:rating_count] } if row.has_key?(:rating_score) && row.has_key?(:rating_count) mapped_row end end From 31bf9ace8b743561287c5fa42a3506b72de11ae1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 3 Jun 2026 11:07:16 +0000 Subject: [PATCH 2/2] Benchmark results: rails --- site/data/api-16-1024.json | 24 ++-- site/data/api-4-256.json | 24 ++-- site/data/async-db-1024.json | 18 +-- site/data/baseline-4096.json | 16 +-- site/data/baseline-512.json | 18 +-- site/data/crud-4096.json | 18 +-- site/data/json-4096.json | 18 +-- site/data/json-comp-16384.json | 18 +-- site/data/json-comp-4096.json | 18 +-- site/data/json-comp-512.json | 18 +-- site/data/json-tls-4096.json | 12 +- site/data/limited-conn-4096.json | 18 +-- site/data/limited-conn-512.json | 18 +-- site/data/pipelined-4096.json | 12 +- site/data/pipelined-512.json | 16 +-- site/data/static-1024.json | 14 +-- site/data/static-4096.json | 14 +-- site/data/static-6800.json | 14 +-- site/data/upload-256.json | 18 +-- site/data/upload-32.json | 10 +- site/static/logs/api-16/1024/rails.log | 18 +-- site/static/logs/async-db/1024/rails.log | 126 +++++++++---------- site/static/logs/baseline/4096/rails.log | 50 ++++---- site/static/logs/baseline/512/rails.log | 98 +++++++-------- site/static/logs/crud/4096/rails.log | 62 ++++----- site/static/logs/json-comp/16384/rails.log | 88 ++++++------- site/static/logs/json-comp/4096/rails.log | 94 +++++++------- site/static/logs/json-comp/512/rails.log | 78 ++++++------ site/static/logs/json-tls/4096/rails.log | 84 ++++++------- site/static/logs/json/4096/rails.log | 102 +++++++-------- site/static/logs/limited-conn/4096/rails.log | 84 ++++++------- site/static/logs/limited-conn/512/rails.log | 70 +++++------ site/static/logs/pipelined/4096/rails.log | 88 ++++++------- site/static/logs/pipelined/512/rails.log | 82 ++++++------ site/static/logs/static/1024/rails.log | 92 +++++++------- site/static/logs/static/4096/rails.log | 100 +++++++-------- site/static/logs/static/6800/rails.log | 112 ++++++++--------- site/static/logs/upload/256/rails.log | 104 +++++++-------- site/static/logs/upload/32/rails.log | 56 ++++----- 39 files changed, 962 insertions(+), 962 deletions(-) diff --git a/site/data/api-16-1024.json b/site/data/api-16-1024.json index bdd4f5159..27b60a781 100644 --- a/site/data/api-16-1024.json +++ b/site/data/api-16-1024.json @@ -802,28 +802,28 @@ { "framework": "rails", "language": "Ruby", - "rps": 25015, - "avg_latency": "39.99ms", - "p99_latency": "129.10ms", - "cpu": "1675.4%", - "memory": "874MiB", + "rps": 27271, + "avg_latency": "36.35ms", + "p99_latency": "122.80ms", + "cpu": "1677.7%", + "memory": "1.3GiB", "connections": 1024, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "131.55MB/s", - "input_bw": "1.41MB/s", - "reconnects": 74953, - "status_2xx": 375225, + "bandwidth": "143.48MB/s", + "input_bw": "1.53MB/s", + "reconnects": 81736, + "status_2xx": 409072, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 140651, - "tpl_json": 140741, + "tpl_baseline": 153238, + "tpl_json": 153516, "tpl_db": 0, "tpl_upload": 0, "tpl_static": 0, - "tpl_async_db": 93833 + "tpl_async_db": 102317 }, { "framework": "ring-http-exchange", diff --git a/site/data/api-4-256.json b/site/data/api-4-256.json index da0d2b3e7..bd2e453bd 100644 --- a/site/data/api-4-256.json +++ b/site/data/api-4-256.json @@ -802,28 +802,28 @@ { "framework": "rails", "language": "Ruby", - "rps": 9974, - "avg_latency": "25.24ms", - "p99_latency": "98.90ms", - "cpu": "394.6%", - "memory": "309MiB", + "rps": 10407, + "avg_latency": "24.03ms", + "p99_latency": "95.20ms", + "cpu": "395.4%", + "memory": "438MiB", "connections": 256, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "52.43MB/s", - "input_bw": "574.67KB/s", - "reconnects": 29915, - "status_2xx": 149617, + "bandwidth": "54.69MB/s", + "input_bw": "599.62KB/s", + "reconnects": 31204, + "status_2xx": 156119, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0, - "tpl_baseline": 56124, - "tpl_json": 56125, + "tpl_baseline": 58595, + "tpl_json": 58531, "tpl_db": 0, "tpl_upload": 0, "tpl_static": 0, - "tpl_async_db": 37368 + "tpl_async_db": 38993 }, { "framework": "ring-http-exchange", diff --git a/site/data/async-db-1024.json b/site/data/async-db-1024.json index b78cda91e..ff523b3d3 100644 --- a/site/data/async-db-1024.json +++ b/site/data/async-db-1024.json @@ -636,19 +636,19 @@ { "framework": "rails", "language": "Ruby", - "rps": 70016, - "avg_latency": "14.03ms", - "p99_latency": "30.40ms", - "cpu": "6400.0%", - "memory": "2.9GiB", + "rps": 73527, + "avg_latency": "13.26ms", + "p99_latency": "28.10ms", + "cpu": "6397.6%", + "memory": "3.6GiB", "connections": 1024, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "291.08MB/s", - "input_bw": "4.67MB/s", - "reconnects": 27721, - "status_2xx": 700163, + "bandwidth": "305.51MB/s", + "input_bw": "4.91MB/s", + "reconnects": 29152, + "status_2xx": 735270, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0 diff --git a/site/data/baseline-4096.json b/site/data/baseline-4096.json index 9f5b66982..d9369c9f8 100644 --- a/site/data/baseline-4096.json +++ b/site/data/baseline-4096.json @@ -929,19 +929,19 @@ { "framework": "rails", "language": "Ruby", - "rps": 34491, - "avg_latency": "100.31ms", - "p99_latency": "346.90ms", - "cpu": "5030.2%", - "memory": "6.6GiB", + "rps": 33059, + "avg_latency": "103.88ms", + "p99_latency": "340.50ms", + "cpu": "4844.8%", + "memory": "6.4GiB", "connections": 4096, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "7.27MB/s", - "input_bw": "2.66MB/s", + "bandwidth": "6.96MB/s", + "input_bw": "2.55MB/s", "reconnects": 0, - "status_2xx": 172456, + "status_2xx": 165297, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0 diff --git a/site/data/baseline-512.json b/site/data/baseline-512.json index e6753a4eb..cf3fa3314 100644 --- a/site/data/baseline-512.json +++ b/site/data/baseline-512.json @@ -929,19 +929,19 @@ { "framework": "rails", "language": "Ruby", - "rps": 80896, - "avg_latency": "6.34ms", - "p99_latency": "84.80ms", - "cpu": "5651.8%", - "memory": "6.8GiB", + "rps": 78005, + "avg_latency": "6.59ms", + "p99_latency": "86.90ms", + "cpu": "5834.7%", + "memory": "8.3GiB", "connections": 512, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "17.04MB/s", - "input_bw": "6.25MB/s", - "reconnects": 307, - "status_2xx": 404484, + "bandwidth": "16.44MB/s", + "input_bw": "6.03MB/s", + "reconnects": 295, + "status_2xx": 390028, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0 diff --git a/site/data/crud-4096.json b/site/data/crud-4096.json index e6c88f2ce..871601cde 100644 --- a/site/data/crud-4096.json +++ b/site/data/crud-4096.json @@ -160,19 +160,19 @@ { "framework": "rails", "language": "Ruby", - "rps": 61399, - "avg_latency": "64.18ms", - "p99_latency": "90.80ms", - "cpu": "4424.0%", - "memory": "4.3GiB", + "rps": 59399, + "avg_latency": "66.12ms", + "p99_latency": "90.20ms", + "cpu": "4350.6%", + "memory": "4.2GiB", "connections": 4096, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "27.38MB/s", - "input_bw": "5.27MB/s", - "reconnects": 3877, - "status_2xx": 920997, + "bandwidth": "26.51MB/s", + "input_bw": "5.10MB/s", + "reconnects": 3257, + "status_2xx": 890989, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0 diff --git a/site/data/json-4096.json b/site/data/json-4096.json index d9c54cf96..4a7d05779 100644 --- a/site/data/json-4096.json +++ b/site/data/json-4096.json @@ -716,19 +716,19 @@ { "framework": "rails", "language": "Ruby", - "rps": 120806, - "avg_latency": "30.45ms", - "p99_latency": "89.40ms", - "cpu": "6330.5%", - "memory": "3.7GiB", + "rps": 124367, + "avg_latency": "29.07ms", + "p99_latency": "74.20ms", + "cpu": "6419.2%", + "memory": "4.3GiB", "connections": 4096, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "430.55MB/s", - "input_bw": "5.76MB/s", - "reconnects": 22297, - "status_2xx": 604033, + "bandwidth": "443.16MB/s", + "input_bw": "5.93MB/s", + "reconnects": 23008, + "status_2xx": 621836, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0 diff --git a/site/data/json-comp-16384.json b/site/data/json-comp-16384.json index 33755b8b6..3368d8adb 100644 --- a/site/data/json-comp-16384.json +++ b/site/data/json-comp-16384.json @@ -602,19 +602,19 @@ { "framework": "rails", "language": "Ruby", - "rps": 84414, - "avg_latency": "108.30ms", - "p99_latency": "556.90ms", - "cpu": "6245.2%", - "memory": "4.9GiB", + "rps": 84743, + "avg_latency": "113.19ms", + "p99_latency": "536.00ms", + "cpu": "6483.5%", + "memory": "4.4GiB", "connections": 16384, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "123.36MB/s", - "input_bw": "6.28MB/s", - "reconnects": 11919, - "status_2xx": 422071, + "bandwidth": "123.87MB/s", + "input_bw": "6.30MB/s", + "reconnects": 11214, + "status_2xx": 423719, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0 diff --git a/site/data/json-comp-4096.json b/site/data/json-comp-4096.json index 68178e199..32b13bcfe 100644 --- a/site/data/json-comp-4096.json +++ b/site/data/json-comp-4096.json @@ -602,19 +602,19 @@ { "framework": "rails", "language": "Ruby", - "rps": 82184, - "avg_latency": "44.70ms", - "p99_latency": "115.20ms", - "cpu": "6431.4%", - "memory": "3.8GiB", + "rps": 85272, + "avg_latency": "42.15ms", + "p99_latency": "78.50ms", + "cpu": "6487.5%", + "memory": "4.2GiB", "connections": 4096, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "120.03MB/s", - "input_bw": "6.11MB/s", - "reconnects": 14674, - "status_2xx": 410923, + "bandwidth": "124.80MB/s", + "input_bw": "6.34MB/s", + "reconnects": 15291, + "status_2xx": 427217, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0 diff --git a/site/data/json-comp-512.json b/site/data/json-comp-512.json index 08fa5a5fe..0656918c2 100644 --- a/site/data/json-comp-512.json +++ b/site/data/json-comp-512.json @@ -602,19 +602,19 @@ { "framework": "rails", "language": "Ruby", - "rps": 83902, - "avg_latency": "6.10ms", - "p99_latency": "24.50ms", - "cpu": "6435.9%", - "memory": "3.7GiB", + "rps": 81731, + "avg_latency": "6.26ms", + "p99_latency": "24.60ms", + "cpu": "6435.2%", + "memory": "3.4GiB", "connections": 512, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "122.63MB/s", - "input_bw": "6.24MB/s", - "reconnects": 16740, - "status_2xx": 419511, + "bandwidth": "119.46MB/s", + "input_bw": "6.08MB/s", + "reconnects": 16276, + "status_2xx": 408658, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0 diff --git a/site/data/json-tls-4096.json b/site/data/json-tls-4096.json index d0b996493..8f9637268 100644 --- a/site/data/json-tls-4096.json +++ b/site/data/json-tls-4096.json @@ -348,18 +348,18 @@ { "framework": "rails", "language": "Ruby", - "rps": 111658, - "avg_latency": "36.51ms", - "p99_latency": "36.51ms", - "cpu": "6424.5%", + "rps": 114275, + "avg_latency": "35.76ms", + "p99_latency": "35.76ms", + "cpu": "6461.4%", "memory": "4.2GiB", "connections": 4096, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "398.92MB", + "bandwidth": "408.28MB", "reconnects": 0, - "status_2xx": 569630, + "status_2xx": 582681, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0 diff --git a/site/data/limited-conn-4096.json b/site/data/limited-conn-4096.json index c7d3e254f..feeb6e87e 100644 --- a/site/data/limited-conn-4096.json +++ b/site/data/limited-conn-4096.json @@ -929,19 +929,19 @@ { "framework": "rails", "language": "Ruby", - "rps": 27574, - "avg_latency": "130.29ms", - "p99_latency": "324.20ms", - "cpu": "4619.9%", - "memory": "5.7GiB", + "rps": 27484, + "avg_latency": "130.34ms", + "p99_latency": "266.90ms", + "cpu": "4681.4%", + "memory": "6.6GiB", "connections": 4096, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "5.81MB/s", - "input_bw": "2.13MB/s", - "reconnects": 12010, - "status_2xx": 137871, + "bandwidth": "5.79MB/s", + "input_bw": "2.12MB/s", + "reconnects": 11986, + "status_2xx": 137420, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0 diff --git a/site/data/limited-conn-512.json b/site/data/limited-conn-512.json index 54ebb9fd9..50f8a452b 100644 --- a/site/data/limited-conn-512.json +++ b/site/data/limited-conn-512.json @@ -929,19 +929,19 @@ { "framework": "rails", "language": "Ruby", - "rps": 27780, - "avg_latency": "18.43ms", - "p99_latency": "66.80ms", - "cpu": "4587.0%", - "memory": "5.1GiB", + "rps": 27540, + "avg_latency": "18.59ms", + "p99_latency": "66.90ms", + "cpu": "4597.3%", + "memory": "5.4GiB", "connections": 512, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "5.85MB/s", - "input_bw": "2.15MB/s", - "reconnects": 13789, - "status_2xx": 138901, + "bandwidth": "5.80MB/s", + "input_bw": "2.13MB/s", + "reconnects": 13665, + "status_2xx": 137701, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0 diff --git a/site/data/pipelined-4096.json b/site/data/pipelined-4096.json index 047fbb54e..20f441aaf 100644 --- a/site/data/pipelined-4096.json +++ b/site/data/pipelined-4096.json @@ -893,18 +893,18 @@ { "framework": "rails", "language": "Ruby", - "rps": 299027, - "avg_latency": "190.06ms", - "p99_latency": "331.60ms", - "cpu": "6454.2%", + "rps": 293381, + "avg_latency": "196.47ms", + "p99_latency": "368.80ms", + "cpu": "6417.6%", "memory": "2.3GiB", "connections": 4096, "threads": 64, "duration": "5s", "pipeline": 16, - "bandwidth": "58.73MB/s", + "bandwidth": "57.59MB/s", "reconnects": 1, - "status_2xx": 1495137, + "status_2xx": 1466909, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0 diff --git a/site/data/pipelined-512.json b/site/data/pipelined-512.json index cdaaaa909..4930c1297 100644 --- a/site/data/pipelined-512.json +++ b/site/data/pipelined-512.json @@ -893,18 +893,18 @@ { "framework": "rails", "language": "Ruby", - "rps": 311228, - "avg_latency": "26.14ms", - "p99_latency": "73.00ms", - "cpu": "6484.0%", - "memory": "2.2GiB", + "rps": 303954, + "avg_latency": "26.78ms", + "p99_latency": "73.20ms", + "cpu": "6426.7%", + "memory": "2.4GiB", "connections": 512, "threads": 64, "duration": "5s", "pipeline": 16, - "bandwidth": "61.13MB/s", - "reconnects": 1329, - "status_2xx": 1556141, + "bandwidth": "59.70MB/s", + "reconnects": 1289, + "status_2xx": 1519772, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0 diff --git a/site/data/static-1024.json b/site/data/static-1024.json index a76c89972..3832fb3ed 100644 --- a/site/data/static-1024.json +++ b/site/data/static-1024.json @@ -737,18 +737,18 @@ { "framework": "rails", "language": "Ruby", - "rps": 122232, - "avg_latency": "8.59ms", - "p99_latency": "8.59ms", - "cpu": "6499.5%", - "memory": "5.8GiB", + "rps": 123522, + "avg_latency": "8.49ms", + "p99_latency": "8.49ms", + "cpu": "6514.1%", + "memory": "9.4GiB", "connections": 1024, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "1.87GB", + "bandwidth": "1.89GB", "reconnects": 0, - "status_2xx": 621021, + "status_2xx": 627920, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0 diff --git a/site/data/static-4096.json b/site/data/static-4096.json index 2624ace80..b977a5648 100644 --- a/site/data/static-4096.json +++ b/site/data/static-4096.json @@ -737,18 +737,18 @@ { "framework": "rails", "language": "Ruby", - "rps": 123203, - "avg_latency": "31.86ms", - "p99_latency": "31.86ms", - "cpu": "6487.3%", - "memory": "6.0GiB", + "rps": 124833, + "avg_latency": "31.34ms", + "p99_latency": "31.34ms", + "cpu": "6524.3%", + "memory": "9.5GiB", "connections": 4096, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "1.89GB", + "bandwidth": "1.91GB", "reconnects": 0, - "status_2xx": 629112, + "status_2xx": 637605, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0 diff --git a/site/data/static-6800.json b/site/data/static-6800.json index ebc090753..09d89e23f 100644 --- a/site/data/static-6800.json +++ b/site/data/static-6800.json @@ -737,18 +737,18 @@ { "framework": "rails", "language": "Ruby", - "rps": 122227, - "avg_latency": "53.08ms", - "p99_latency": "53.08ms", - "cpu": "6469.9%", - "memory": "6.0GiB", + "rps": 121170, + "avg_latency": "51.69ms", + "p99_latency": "51.69ms", + "cpu": "6530.6%", + "memory": "9.6GiB", "connections": 6800, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "1.87GB", + "bandwidth": "1.86GB", "reconnects": 0, - "status_2xx": 623584, + "status_2xx": 618296, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0 diff --git a/site/data/upload-256.json b/site/data/upload-256.json index 675be9a87..37877a1ff 100644 --- a/site/data/upload-256.json +++ b/site/data/upload-256.json @@ -661,19 +661,19 @@ { "framework": "rails", "language": "Ruby", - "rps": 903, - "avg_latency": "266.15ms", - "p99_latency": "1.47s", - "cpu": "6349.5%", - "memory": "8.1GiB", + "rps": 893, + "avg_latency": "273.09ms", + "p99_latency": "1.32s", + "cpu": "6356.3%", + "memory": "8.2GiB", "connections": 256, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "199.53KB/s", - "input_bw": "7.16GB/s", - "reconnects": 848, - "status_2xx": 4517, + "bandwidth": "197.75KB/s", + "input_bw": "7.08GB/s", + "reconnects": 822, + "status_2xx": 4478, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0 diff --git a/site/data/upload-32.json b/site/data/upload-32.json index 1657c75f8..b05986c57 100644 --- a/site/data/upload-32.json +++ b/site/data/upload-32.json @@ -663,17 +663,17 @@ "language": "Ruby", "rps": 933, "avg_latency": "34.21ms", - "p99_latency": "145.10ms", - "cpu": "3092.5%", - "memory": "9.8GiB", + "p99_latency": "139.80ms", + "cpu": "3062.6%", + "memory": "10.6GiB", "connections": 32, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "206.25KB/s", + "bandwidth": "206.21KB/s", "input_bw": "7.40GB/s", "reconnects": 926, - "status_2xx": 4669, + "status_2xx": 4668, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0 diff --git a/site/static/logs/api-16/1024/rails.log b/site/static/logs/api-16/1024/rails.log index c45922989..3d331f23b 100644 --- a/site/static/logs/api-16/1024/rails.log +++ b/site/static/logs/api-16/1024/rails.log @@ -21,15 +21,15 @@ [1] - Worker 1 (PID: 13) booted in 0.04s, phase: 0 [1] - Worker 2 (PID: 17) booted in 0.04s, phase: 0 [1] - Worker 3 (PID: 21) booted in 0.04s, phase: 0 -[1] - Worker 4 (PID: 25) booted in 0.03s, phase: 0 +[1] - Worker 4 (PID: 25) booted in 0.04s, phase: 0 [1] - Worker 5 (PID: 29) booted in 0.03s, phase: 0 [1] - Worker 6 (PID: 34) booted in 0.03s, phase: 0 [1] - Worker 7 (PID: 40) booted in 0.03s, phase: 0 -[1] - Worker 8 (PID: 44) booted in 0.02s, phase: 0 -[1] - Worker 9 (PID: 49) booted in 0.02s, phase: 0 -[1] - Worker 10 (PID: 56) booted in 0.02s, phase: 0 -[1] - Worker 11 (PID: 62) booted in 0.02s, phase: 0 -[1] - Worker 12 (PID: 68) booted in 0.01s, phase: 0 -[1] - Worker 13 (PID: 76) booted in 0.01s, phase: 0 -[1] - Worker 14 (PID: 83) booted in 0.01s, phase: 0 -[1] - Worker 15 (PID: 89) booted in 0.01s, phase: 0 +[1] - Worker 8 (PID: 45) booted in 0.03s, phase: 0 +[1] - Worker 9 (PID: 50) booted in 0.02s, phase: 0 +[1] - Worker 10 (PID: 57) booted in 0.02s, phase: 0 +[1] - Worker 11 (PID: 63) booted in 0.02s, phase: 0 +[1] - Worker 12 (PID: 69) booted in 0.02s, phase: 0 +[1] - Worker 13 (PID: 77) booted in 0.01s, phase: 0 +[1] - Worker 14 (PID: 85) booted in 0.01s, phase: 0 +[1] - Worker 15 (PID: 90) booted in 0.01s, phase: 0 diff --git a/site/static/logs/async-db/1024/rails.log b/site/static/logs/async-db/1024/rails.log index d79760a36..9503921d3 100644 --- a/site/static/logs/async-db/1024/rails.log +++ b/site/static/logs/async-db/1024/rails.log @@ -17,67 +17,67 @@ [1] ! WARNING: Detected `RUBY_MN_THREADS=1` [1] ! This setting is known to cause performance regressions with Puma. [1] ! Consider disabling this environment variable: https://github.com/puma/puma/issues/3720 -[1] - Worker 0 (PID: 9) booted in 0.15s, phase: 0 -[1] - Worker 1 (PID: 13) booted in 0.15s, phase: 0 -[1] - Worker 2 (PID: 17) booted in 0.15s, phase: 0 -[1] - Worker 3 (PID: 21) booted in 0.14s, phase: 0 -[1] - Worker 4 (PID: 25) booted in 0.14s, phase: 0 -[1] - Worker 5 (PID: 29) booted in 0.14s, phase: 0 -[1] - Worker 6 (PID: 34) booted in 0.14s, phase: 0 -[1] - Worker 7 (PID: 39) booted in 0.14s, phase: 0 -[1] - Worker 8 (PID: 44) booted in 0.13s, phase: 0 -[1] - Worker 9 (PID: 49) booted in 0.13s, phase: 0 -[1] - Worker 10 (PID: 54) booted in 0.13s, phase: 0 -[1] - Worker 11 (PID: 60) booted in 0.13s, phase: 0 -[1] - Worker 12 (PID: 66) booted in 0.13s, phase: 0 -[1] - Worker 13 (PID: 74) booted in 0.12s, phase: 0 -[1] - Worker 14 (PID: 82) booted in 0.12s, phase: 0 -[1] - Worker 15 (PID: 88) booted in 0.12s, phase: 0 -[1] - Worker 16 (PID: 94) booted in 0.12s, phase: 0 -[1] - Worker 17 (PID: 99) booted in 0.12s, phase: 0 -[1] - Worker 18 (PID: 105) booted in 0.11s, phase: 0 -[1] - Worker 19 (PID: 110) booted in 0.11s, phase: 0 -[1] - Worker 20 (PID: 116) booted in 0.11s, phase: 0 -[1] - Worker 21 (PID: 122) booted in 0.11s, phase: 0 -[1] - Worker 22 (PID: 127) booted in 0.11s, phase: 0 -[1] - Worker 23 (PID: 133) booted in 0.11s, phase: 0 -[1] - Worker 24 (PID: 138) booted in 0.1s, phase: 0 -[1] - Worker 25 (PID: 146) booted in 0.1s, phase: 0 -[1] - Worker 26 (PID: 152) booted in 0.1s, phase: 0 -[1] - Worker 27 (PID: 158) booted in 0.1s, phase: 0 -[1] - Worker 28 (PID: 164) booted in 0.1s, phase: 0 -[1] - Worker 29 (PID: 171) booted in 0.09s, phase: 0 -[1] - Worker 30 (PID: 180) booted in 0.09s, phase: 0 -[1] - Worker 31 (PID: 186) booted in 0.09s, phase: 0 -[1] - Worker 32 (PID: 191) booted in 0.09s, phase: 0 -[1] - Worker 33 (PID: 196) booted in 0.08s, phase: 0 -[1] - Worker 34 (PID: 202) booted in 0.08s, phase: 0 -[1] - Worker 35 (PID: 207) booted in 0.08s, phase: 0 -[1] - Worker 36 (PID: 213) booted in 0.08s, phase: 0 -[1] - Worker 37 (PID: 218) booted in 0.08s, phase: 0 -[1] - Worker 38 (PID: 224) booted in 0.07s, phase: 0 -[1] - Worker 39 (PID: 229) booted in 0.07s, phase: 0 -[1] - Worker 40 (PID: 234) booted in 0.07s, phase: 0 -[1] - Worker 41 (PID: 240) booted in 0.07s, phase: 0 -[1] - Worker 42 (PID: 246) booted in 0.07s, phase: 0 -[1] - Worker 43 (PID: 252) booted in 0.06s, phase: 0 -[1] - Worker 44 (PID: 258) booted in 0.06s, phase: 0 -[1] - Worker 45 (PID: 264) booted in 0.06s, phase: 0 -[1] - Worker 46 (PID: 270) booted in 0.06s, phase: 0 -[1] - Worker 47 (PID: 276) booted in 0.06s, phase: 0 -[1] - Worker 48 (PID: 282) booted in 0.05s, phase: 0 -[1] - Worker 49 (PID: 288) booted in 0.05s, phase: 0 -[1] - Worker 50 (PID: 294) booted in 0.05s, phase: 0 -[1] - Worker 51 (PID: 300) booted in 0.05s, phase: 0 -[1] - Worker 52 (PID: 306) booted in 0.05s, phase: 0 -[1] - Worker 53 (PID: 312) booted in 0.04s, phase: 0 -[1] - Worker 54 (PID: 318) booted in 0.04s, phase: 0 +[1] - Worker 0 (PID: 9) booted in 0.16s, phase: 0 +[1] - Worker 1 (PID: 13) booted in 0.16s, phase: 0 +[1] - Worker 2 (PID: 17) booted in 0.16s, phase: 0 +[1] - Worker 3 (PID: 21) booted in 0.16s, phase: 0 +[1] - Worker 4 (PID: 25) booted in 0.15s, phase: 0 +[1] - Worker 5 (PID: 30) booted in 0.15s, phase: 0 +[1] - Worker 6 (PID: 34) booted in 0.15s, phase: 0 +[1] - Worker 7 (PID: 39) booted in 0.15s, phase: 0 +[1] - Worker 8 (PID: 44) booted in 0.14s, phase: 0 +[1] - Worker 9 (PID: 49) booted in 0.14s, phase: 0 +[1] - Worker 10 (PID: 55) booted in 0.14s, phase: 0 +[1] - Worker 11 (PID: 61) booted in 0.14s, phase: 0 +[1] - Worker 12 (PID: 67) booted in 0.14s, phase: 0 +[1] - Worker 13 (PID: 74) booted in 0.13s, phase: 0 +[1] - Worker 14 (PID: 82) booted in 0.13s, phase: 0 +[1] - Worker 15 (PID: 88) booted in 0.13s, phase: 0 +[1] - Worker 16 (PID: 94) booted in 0.13s, phase: 0 +[1] - Worker 17 (PID: 99) booted in 0.13s, phase: 0 +[1] - Worker 18 (PID: 105) booted in 0.12s, phase: 0 +[1] - Worker 19 (PID: 110) booted in 0.12s, phase: 0 +[1] - Worker 20 (PID: 116) booted in 0.12s, phase: 0 +[1] - Worker 21 (PID: 122) booted in 0.12s, phase: 0 +[1] - Worker 22 (PID: 127) booted in 0.12s, phase: 0 +[1] - Worker 23 (PID: 133) booted in 0.12s, phase: 0 +[1] - Worker 24 (PID: 139) booted in 0.11s, phase: 0 +[1] - Worker 25 (PID: 146) booted in 0.11s, phase: 0 +[1] - Worker 26 (PID: 152) booted in 0.11s, phase: 0 +[1] - Worker 27 (PID: 158) booted in 0.11s, phase: 0 +[1] - Worker 28 (PID: 164) booted in 0.11s, phase: 0 +[1] - Worker 29 (PID: 171) booted in 0.1s, phase: 0 +[1] - Worker 30 (PID: 179) booted in 0.1s, phase: 0 +[1] - Worker 31 (PID: 184) booted in 0.1s, phase: 0 +[1] - Worker 32 (PID: 190) booted in 0.09s, phase: 0 +[1] - Worker 33 (PID: 195) booted in 0.09s, phase: 0 +[1] - Worker 34 (PID: 201) booted in 0.09s, phase: 0 +[1] - Worker 35 (PID: 209) booted in 0.09s, phase: 0 +[1] - Worker 36 (PID: 214) booted in 0.08s, phase: 0 +[1] - Worker 37 (PID: 219) booted in 0.08s, phase: 0 +[1] - Worker 38 (PID: 224) booted in 0.08s, phase: 0 +[1] - Worker 39 (PID: 230) booted in 0.08s, phase: 0 +[1] - Worker 40 (PID: 235) booted in 0.08s, phase: 0 +[1] - Worker 41 (PID: 241) booted in 0.07s, phase: 0 +[1] - Worker 42 (PID: 247) booted in 0.07s, phase: 0 +[1] - Worker 43 (PID: 253) booted in 0.07s, phase: 0 +[1] - Worker 44 (PID: 258) booted in 0.07s, phase: 0 +[1] - Worker 45 (PID: 264) booted in 0.07s, phase: 0 +[1] - Worker 46 (PID: 269) booted in 0.06s, phase: 0 +[1] - Worker 47 (PID: 275) booted in 0.06s, phase: 0 +[1] - Worker 48 (PID: 281) booted in 0.06s, phase: 0 +[1] - Worker 49 (PID: 288) booted in 0.06s, phase: 0 +[1] - Worker 50 (PID: 294) booted in 0.06s, phase: 0 +[1] - Worker 51 (PID: 299) booted in 0.05s, phase: 0 +[1] - Worker 52 (PID: 305) booted in 0.05s, phase: 0 +[1] - Worker 53 (PID: 311) booted in 0.05s, phase: 0 +[1] - Worker 54 (PID: 317) booted in 0.05s, phase: 0 [1] - Worker 55 (PID: 324) booted in 0.04s, phase: 0 -[1] - Worker 56 (PID: 330) booted in 0.04s, phase: 0 -[1] - Worker 57 (PID: 337) booted in 0.04s, phase: 0 -[1] - Worker 58 (PID: 344) booted in 0.03s, phase: 0 -[1] - Worker 59 (PID: 350) booted in 0.04s, phase: 0 -[1] - Worker 60 (PID: 356) booted in 0.04s, phase: 0 -[1] - Worker 61 (PID: 361) booted in 0.03s, phase: 0 -[1] - Worker 62 (PID: 367) booted in 0.03s, phase: 0 -[1] - Worker 63 (PID: 373) booted in 0.03s, phase: 0 +[1] - Worker 56 (PID: 331) booted in 0.04s, phase: 0 +[1] - Worker 57 (PID: 338) booted in 0.04s, phase: 0 +[1] - Worker 58 (PID: 343) booted in 0.04s, phase: 0 +[1] - Worker 59 (PID: 350) booted in 0.03s, phase: 0 +[1] - Worker 60 (PID: 356) booted in 0.03s, phase: 0 +[1] - Worker 61 (PID: 362) booted in 0.03s, phase: 0 +[1] - Worker 62 (PID: 366) booted in 0.03s, phase: 0 +[1] - Worker 63 (PID: 372) booted in 0.02s, phase: 0 diff --git a/site/static/logs/baseline/4096/rails.log b/site/static/logs/baseline/4096/rails.log index 45d5fc0b5..d2b9bdc8d 100644 --- a/site/static/logs/baseline/4096/rails.log +++ b/site/static/logs/baseline/4096/rails.log @@ -21,7 +21,7 @@ [1] - Worker 1 (PID: 13) booted in 0.15s, phase: 0 [1] - Worker 2 (PID: 17) booted in 0.15s, phase: 0 [1] - Worker 3 (PID: 21) booted in 0.15s, phase: 0 -[1] - Worker 4 (PID: 25) booted in 0.14s, phase: 0 +[1] - Worker 4 (PID: 25) booted in 0.15s, phase: 0 [1] - Worker 5 (PID: 29) booted in 0.14s, phase: 0 [1] - Worker 6 (PID: 34) booted in 0.14s, phase: 0 [1] - Worker 7 (PID: 39) booted in 0.14s, phase: 0 @@ -40,28 +40,28 @@ [1] - Worker 20 (PID: 116) booted in 0.11s, phase: 0 [1] - Worker 21 (PID: 122) booted in 0.11s, phase: 0 [1] - Worker 22 (PID: 127) booted in 0.11s, phase: 0 -[1] - Worker 23 (PID: 133) booted in 0.11s, phase: 0 -[1] - Worker 24 (PID: 138) booted in 0.11s, phase: 0 +[1] - Worker 23 (PID: 134) booted in 0.11s, phase: 0 +[1] - Worker 24 (PID: 140) booted in 0.11s, phase: 0 [1] - Worker 25 (PID: 146) booted in 0.1s, phase: 0 [1] - Worker 26 (PID: 152) booted in 0.1s, phase: 0 [1] - Worker 27 (PID: 158) booted in 0.1s, phase: 0 -[1] - Worker 28 (PID: 164) booted in 0.1s, phase: 0 -[1] - Worker 29 (PID: 170) booted in 0.09s, phase: 0 -[1] - Worker 30 (PID: 179) booted in 0.09s, phase: 0 -[1] - Worker 31 (PID: 184) booted in 0.09s, phase: 0 +[1] - Worker 28 (PID: 163) booted in 0.1s, phase: 0 +[1] - Worker 29 (PID: 171) booted in 0.09s, phase: 0 +[1] - Worker 30 (PID: 180) booted in 0.09s, phase: 0 +[1] - Worker 31 (PID: 186) booted in 0.09s, phase: 0 [1] - Worker 32 (PID: 191) booted in 0.09s, phase: 0 -[1] - Worker 33 (PID: 195) booted in 0.09s, phase: 0 +[1] - Worker 33 (PID: 196) booted in 0.08s, phase: 0 [1] - Worker 34 (PID: 201) booted in 0.08s, phase: 0 [1] - Worker 35 (PID: 207) booted in 0.08s, phase: 0 -[1] - Worker 36 (PID: 214) booted in 0.08s, phase: 0 -[1] - Worker 37 (PID: 219) booted in 0.08s, phase: 0 -[1] - Worker 38 (PID: 225) booted in 0.07s, phase: 0 -[1] - Worker 39 (PID: 230) booted in 0.07s, phase: 0 -[1] - Worker 40 (PID: 236) booted in 0.07s, phase: 0 -[1] - Worker 41 (PID: 241) booted in 0.07s, phase: 0 -[1] - Worker 42 (PID: 247) booted in 0.07s, phase: 0 -[1] - Worker 43 (PID: 253) booted in 0.06s, phase: 0 -[1] - Worker 44 (PID: 259) booted in 0.06s, phase: 0 +[1] - Worker 36 (PID: 213) booted in 0.08s, phase: 0 +[1] - Worker 37 (PID: 218) booted in 0.08s, phase: 0 +[1] - Worker 38 (PID: 224) booted in 0.08s, phase: 0 +[1] - Worker 39 (PID: 229) booted in 0.07s, phase: 0 +[1] - Worker 40 (PID: 234) booted in 0.07s, phase: 0 +[1] - Worker 41 (PID: 240) booted in 0.07s, phase: 0 +[1] - Worker 42 (PID: 246) booted in 0.07s, phase: 0 +[1] - Worker 43 (PID: 252) booted in 0.06s, phase: 0 +[1] - Worker 44 (PID: 258) booted in 0.06s, phase: 0 [1] - Worker 45 (PID: 264) booted in 0.06s, phase: 0 [1] - Worker 46 (PID: 270) booted in 0.06s, phase: 0 [1] - Worker 47 (PID: 276) booted in 0.06s, phase: 0 @@ -70,14 +70,14 @@ [1] - Worker 50 (PID: 294) booted in 0.05s, phase: 0 [1] - Worker 51 (PID: 300) booted in 0.05s, phase: 0 [1] - Worker 52 (PID: 306) booted in 0.05s, phase: 0 -[1] - Worker 53 (PID: 312) booted in 0.05s, phase: 0 +[1] - Worker 53 (PID: 312) booted in 0.04s, phase: 0 [1] - Worker 54 (PID: 318) booted in 0.04s, phase: 0 [1] - Worker 55 (PID: 324) booted in 0.04s, phase: 0 [1] - Worker 56 (PID: 330) booted in 0.04s, phase: 0 -[1] - Worker 57 (PID: 338) booted in 0.03s, phase: 0 -[1] - Worker 58 (PID: 344) booted in 0.03s, phase: 0 -[1] - Worker 59 (PID: 350) booted in 0.03s, phase: 0 -[1] - Worker 60 (PID: 356) booted in 0.03s, phase: 0 -[1] - Worker 61 (PID: 362) booted in 0.03s, phase: 0 -[1] - Worker 62 (PID: 367) booted in 0.03s, phase: 0 -[1] - Worker 63 (PID: 373) booted in 0.03s, phase: 0 +[1] - Worker 57 (PID: 336) booted in 0.04s, phase: 0 +[1] - Worker 58 (PID: 342) booted in 0.03s, phase: 0 +[1] - Worker 59 (PID: 348) booted in 0.03s, phase: 0 +[1] - Worker 60 (PID: 354) booted in 0.03s, phase: 0 +[1] - Worker 61 (PID: 360) booted in 0.03s, phase: 0 +[1] - Worker 62 (PID: 366) booted in 0.03s, phase: 0 +[1] - Worker 63 (PID: 372) booted in 0.02s, phase: 0 diff --git a/site/static/logs/baseline/512/rails.log b/site/static/logs/baseline/512/rails.log index 0b5a22f96..a43cd3beb 100644 --- a/site/static/logs/baseline/512/rails.log +++ b/site/static/logs/baseline/512/rails.log @@ -17,67 +17,67 @@ [1] ! WARNING: Detected `RUBY_MN_THREADS=1` [1] ! This setting is known to cause performance regressions with Puma. [1] ! Consider disabling this environment variable: https://github.com/puma/puma/issues/3720 -[1] - Worker 0 (PID: 9) booted in 0.15s, phase: 0 -[1] - Worker 1 (PID: 13) booted in 0.15s, phase: 0 -[1] - Worker 2 (PID: 17) booted in 0.14s, phase: 0 -[1] - Worker 3 (PID: 21) booted in 0.14s, phase: 0 -[1] - Worker 4 (PID: 25) booted in 0.14s, phase: 0 -[1] - Worker 5 (PID: 29) booted in 0.14s, phase: 0 +[1] - Worker 0 (PID: 9) booted in 0.16s, phase: 0 +[1] - Worker 1 (PID: 13) booted in 0.16s, phase: 0 +[1] - Worker 2 (PID: 17) booted in 0.15s, phase: 0 +[1] - Worker 3 (PID: 21) booted in 0.15s, phase: 0 +[1] - Worker 4 (PID: 25) booted in 0.15s, phase: 0 +[1] - Worker 5 (PID: 29) booted in 0.15s, phase: 0 [1] - Worker 6 (PID: 34) booted in 0.14s, phase: 0 -[1] - Worker 7 (PID: 39) booted in 0.13s, phase: 0 -[1] - Worker 8 (PID: 44) booted in 0.13s, phase: 0 -[1] - Worker 9 (PID: 49) booted in 0.13s, phase: 0 -[1] - Worker 10 (PID: 54) booted in 0.13s, phase: 0 -[1] - Worker 11 (PID: 60) booted in 0.13s, phase: 0 -[1] - Worker 12 (PID: 66) booted in 0.12s, phase: 0 -[1] - Worker 13 (PID: 75) booted in 0.12s, phase: 0 -[1] - Worker 14 (PID: 82) booted in 0.12s, phase: 0 -[1] - Worker 15 (PID: 88) booted in 0.12s, phase: 0 +[1] - Worker 7 (PID: 39) booted in 0.14s, phase: 0 +[1] - Worker 8 (PID: 44) booted in 0.14s, phase: 0 +[1] - Worker 9 (PID: 49) booted in 0.14s, phase: 0 +[1] - Worker 10 (PID: 55) booted in 0.14s, phase: 0 +[1] - Worker 11 (PID: 61) booted in 0.13s, phase: 0 +[1] - Worker 12 (PID: 67) booted in 0.13s, phase: 0 +[1] - Worker 13 (PID: 75) booted in 0.13s, phase: 0 +[1] - Worker 14 (PID: 82) booted in 0.13s, phase: 0 +[1] - Worker 15 (PID: 88) booted in 0.13s, phase: 0 [1] - Worker 16 (PID: 94) booted in 0.12s, phase: 0 -[1] - Worker 17 (PID: 99) booted in 0.11s, phase: 0 -[1] - Worker 18 (PID: 105) booted in 0.11s, phase: 0 -[1] - Worker 19 (PID: 110) booted in 0.11s, phase: 0 -[1] - Worker 20 (PID: 116) booted in 0.11s, phase: 0 -[1] - Worker 21 (PID: 122) booted in 0.11s, phase: 0 +[1] - Worker 17 (PID: 99) booted in 0.12s, phase: 0 +[1] - Worker 18 (PID: 105) booted in 0.12s, phase: 0 +[1] - Worker 19 (PID: 110) booted in 0.12s, phase: 0 +[1] - Worker 20 (PID: 116) booted in 0.12s, phase: 0 +[1] - Worker 21 (PID: 122) booted in 0.12s, phase: 0 [1] - Worker 22 (PID: 127) booted in 0.11s, phase: 0 -[1] - Worker 23 (PID: 133) booted in 0.1s, phase: 0 -[1] - Worker 24 (PID: 138) booted in 0.1s, phase: 0 -[1] - Worker 25 (PID: 146) booted in 0.1s, phase: 0 -[1] - Worker 26 (PID: 152) booted in 0.1s, phase: 0 +[1] - Worker 23 (PID: 133) booted in 0.11s, phase: 0 +[1] - Worker 24 (PID: 138) booted in 0.11s, phase: 0 +[1] - Worker 25 (PID: 145) booted in 0.11s, phase: 0 +[1] - Worker 26 (PID: 152) booted in 0.11s, phase: 0 [1] - Worker 27 (PID: 158) booted in 0.1s, phase: 0 -[1] - Worker 28 (PID: 164) booted in 0.09s, phase: 0 -[1] - Worker 29 (PID: 171) booted in 0.09s, phase: 0 +[1] - Worker 28 (PID: 164) booted in 0.1s, phase: 0 +[1] - Worker 29 (PID: 171) booted in 0.1s, phase: 0 [1] - Worker 30 (PID: 180) booted in 0.09s, phase: 0 -[1] - Worker 31 (PID: 186) booted in 0.09s, phase: 0 -[1] - Worker 32 (PID: 191) booted in 0.08s, phase: 0 -[1] - Worker 33 (PID: 196) booted in 0.08s, phase: 0 -[1] - Worker 34 (PID: 202) booted in 0.08s, phase: 0 -[1] - Worker 35 (PID: 207) booted in 0.08s, phase: 0 -[1] - Worker 36 (PID: 213) booted in 0.08s, phase: 0 -[1] - Worker 37 (PID: 218) booted in 0.07s, phase: 0 -[1] - Worker 38 (PID: 223) booted in 0.07s, phase: 0 -[1] - Worker 39 (PID: 229) booted in 0.07s, phase: 0 -[1] - Worker 40 (PID: 234) booted in 0.07s, phase: 0 +[1] - Worker 31 (PID: 185) booted in 0.09s, phase: 0 +[1] - Worker 32 (PID: 190) booted in 0.09s, phase: 0 +[1] - Worker 33 (PID: 196) booted in 0.09s, phase: 0 +[1] - Worker 34 (PID: 201) booted in 0.09s, phase: 0 +[1] - Worker 35 (PID: 206) booted in 0.08s, phase: 0 +[1] - Worker 36 (PID: 212) booted in 0.08s, phase: 0 +[1] - Worker 37 (PID: 217) booted in 0.08s, phase: 0 +[1] - Worker 38 (PID: 222) booted in 0.08s, phase: 0 +[1] - Worker 39 (PID: 228) booted in 0.08s, phase: 0 +[1] - Worker 40 (PID: 233) booted in 0.08s, phase: 0 [1] - Worker 41 (PID: 240) booted in 0.07s, phase: 0 -[1] - Worker 42 (PID: 246) booted in 0.06s, phase: 0 -[1] - Worker 43 (PID: 252) booted in 0.06s, phase: 0 -[1] - Worker 44 (PID: 258) booted in 0.06s, phase: 0 -[1] - Worker 45 (PID: 264) booted in 0.06s, phase: 0 -[1] - Worker 46 (PID: 270) booted in 0.06s, phase: 0 +[1] - Worker 42 (PID: 246) booted in 0.07s, phase: 0 +[1] - Worker 43 (PID: 251) booted in 0.07s, phase: 0 +[1] - Worker 44 (PID: 259) booted in 0.07s, phase: 0 +[1] - Worker 45 (PID: 266) booted in 0.06s, phase: 0 +[1] - Worker 46 (PID: 272) booted in 0.06s, phase: 0 [1] - Worker 47 (PID: 276) booted in 0.06s, phase: 0 -[1] - Worker 48 (PID: 282) booted in 0.05s, phase: 0 +[1] - Worker 48 (PID: 283) booted in 0.06s, phase: 0 [1] - Worker 49 (PID: 288) booted in 0.05s, phase: 0 [1] - Worker 50 (PID: 294) booted in 0.05s, phase: 0 -[1] - Worker 51 (PID: 300) booted in 0.05s, phase: 0 -[1] - Worker 52 (PID: 306) booted in 0.05s, phase: 0 -[1] - Worker 53 (PID: 312) booted in 0.04s, phase: 0 +[1] - Worker 51 (PID: 301) booted in 0.05s, phase: 0 +[1] - Worker 52 (PID: 305) booted in 0.05s, phase: 0 +[1] - Worker 53 (PID: 312) booted in 0.05s, phase: 0 [1] - Worker 54 (PID: 318) booted in 0.04s, phase: 0 [1] - Worker 55 (PID: 324) booted in 0.04s, phase: 0 -[1] - Worker 56 (PID: 330) booted in 0.04s, phase: 0 +[1] - Worker 56 (PID: 329) booted in 0.04s, phase: 0 [1] - Worker 57 (PID: 336) booted in 0.04s, phase: 0 -[1] - Worker 58 (PID: 342) booted in 0.03s, phase: 0 +[1] - Worker 58 (PID: 341) booted in 0.04s, phase: 0 [1] - Worker 59 (PID: 348) booted in 0.03s, phase: 0 [1] - Worker 60 (PID: 354) booted in 0.03s, phase: 0 [1] - Worker 61 (PID: 360) booted in 0.03s, phase: 0 -[1] - Worker 62 (PID: 366) booted in 0.03s, phase: 0 -[1] - Worker 63 (PID: 372) booted in 0.03s, phase: 0 +[1] - Worker 62 (PID: 365) booted in 0.03s, phase: 0 +[1] - Worker 63 (PID: 371) booted in 0.02s, phase: 0 diff --git a/site/static/logs/crud/4096/rails.log b/site/static/logs/crud/4096/rails.log index a43557eaf..459a81303 100644 --- a/site/static/logs/crud/4096/rails.log +++ b/site/static/logs/crud/4096/rails.log @@ -17,65 +17,65 @@ [1] ! WARNING: Detected `RUBY_MN_THREADS=1` [1] ! This setting is known to cause performance regressions with Puma. [1] ! Consider disabling this environment variable: https://github.com/puma/puma/issues/3720 -[1] - Worker 0 (PID: 9) booted in 0.15s, phase: 0 +[1] - Worker 0 (PID: 9) booted in 0.16s, phase: 0 [1] - Worker 1 (PID: 13) booted in 0.15s, phase: 0 [1] - Worker 2 (PID: 17) booted in 0.15s, phase: 0 [1] - Worker 3 (PID: 21) booted in 0.15s, phase: 0 -[1] - Worker 4 (PID: 25) booted in 0.14s, phase: 0 +[1] - Worker 4 (PID: 25) booted in 0.15s, phase: 0 [1] - Worker 5 (PID: 30) booted in 0.14s, phase: 0 [1] - Worker 6 (PID: 35) booted in 0.14s, phase: 0 [1] - Worker 7 (PID: 40) booted in 0.14s, phase: 0 -[1] - Worker 8 (PID: 45) booted in 0.13s, phase: 0 -[1] - Worker 9 (PID: 50) booted in 0.13s, phase: 0 +[1] - Worker 8 (PID: 45) booted in 0.14s, phase: 0 +[1] - Worker 9 (PID: 51) booted in 0.14s, phase: 0 [1] - Worker 10 (PID: 57) booted in 0.13s, phase: 0 -[1] - Worker 11 (PID: 61) booted in 0.13s, phase: 0 +[1] - Worker 11 (PID: 63) booted in 0.13s, phase: 0 [1] - Worker 12 (PID: 68) booted in 0.13s, phase: 0 -[1] - Worker 13 (PID: 75) booted in 0.12s, phase: 0 +[1] - Worker 13 (PID: 75) booted in 0.13s, phase: 0 [1] - Worker 14 (PID: 82) booted in 0.12s, phase: 0 [1] - Worker 15 (PID: 88) booted in 0.12s, phase: 0 [1] - Worker 16 (PID: 94) booted in 0.12s, phase: 0 [1] - Worker 17 (PID: 99) booted in 0.12s, phase: 0 -[1] - Worker 18 (PID: 105) booted in 0.11s, phase: 0 -[1] - Worker 19 (PID: 110) booted in 0.11s, phase: 0 +[1] - Worker 18 (PID: 105) booted in 0.12s, phase: 0 +[1] - Worker 19 (PID: 110) booted in 0.12s, phase: 0 [1] - Worker 20 (PID: 116) booted in 0.11s, phase: 0 [1] - Worker 21 (PID: 122) booted in 0.11s, phase: 0 [1] - Worker 22 (PID: 127) booted in 0.11s, phase: 0 [1] - Worker 23 (PID: 133) booted in 0.11s, phase: 0 -[1] - Worker 24 (PID: 138) booted in 0.1s, phase: 0 +[1] - Worker 24 (PID: 139) booted in 0.11s, phase: 0 [1] - Worker 25 (PID: 146) booted in 0.1s, phase: 0 [1] - Worker 26 (PID: 152) booted in 0.1s, phase: 0 [1] - Worker 27 (PID: 158) booted in 0.1s, phase: 0 [1] - Worker 28 (PID: 164) booted in 0.1s, phase: 0 [1] - Worker 29 (PID: 171) booted in 0.09s, phase: 0 -[1] - Worker 30 (PID: 180) booted in 0.09s, phase: 0 -[1] - Worker 31 (PID: 185) booted in 0.09s, phase: 0 -[1] - Worker 32 (PID: 190) booted in 0.08s, phase: 0 +[1] - Worker 30 (PID: 179) booted in 0.09s, phase: 0 +[1] - Worker 31 (PID: 184) booted in 0.09s, phase: 0 +[1] - Worker 32 (PID: 190) booted in 0.09s, phase: 0 [1] - Worker 33 (PID: 195) booted in 0.08s, phase: 0 -[1] - Worker 34 (PID: 202) booted in 0.08s, phase: 0 +[1] - Worker 34 (PID: 201) booted in 0.08s, phase: 0 [1] - Worker 35 (PID: 206) booted in 0.08s, phase: 0 [1] - Worker 36 (PID: 212) booted in 0.08s, phase: 0 [1] - Worker 37 (PID: 217) booted in 0.08s, phase: 0 -[1] - Worker 38 (PID: 222) booted in 0.07s, phase: 0 -[1] - Worker 39 (PID: 228) booted in 0.07s, phase: 0 -[1] - Worker 40 (PID: 233) booted in 0.07s, phase: 0 -[1] - Worker 41 (PID: 240) booted in 0.07s, phase: 0 -[1] - Worker 42 (PID: 245) booted in 0.06s, phase: 0 -[1] - Worker 43 (PID: 251) booted in 0.06s, phase: 0 -[1] - Worker 44 (PID: 257) booted in 0.06s, phase: 0 -[1] - Worker 45 (PID: 263) booted in 0.06s, phase: 0 -[1] - Worker 46 (PID: 269) booted in 0.06s, phase: 0 -[1] - Worker 47 (PID: 275) booted in 0.05s, phase: 0 -[1] - Worker 48 (PID: 281) booted in 0.05s, phase: 0 +[1] - Worker 38 (PID: 225) booted in 0.07s, phase: 0 +[1] - Worker 39 (PID: 230) booted in 0.07s, phase: 0 +[1] - Worker 40 (PID: 235) booted in 0.07s, phase: 0 +[1] - Worker 41 (PID: 241) booted in 0.07s, phase: 0 +[1] - Worker 42 (PID: 247) booted in 0.06s, phase: 0 +[1] - Worker 43 (PID: 253) booted in 0.06s, phase: 0 +[1] - Worker 44 (PID: 258) booted in 0.06s, phase: 0 +[1] - Worker 45 (PID: 264) booted in 0.06s, phase: 0 +[1] - Worker 46 (PID: 270) booted in 0.06s, phase: 0 +[1] - Worker 47 (PID: 277) booted in 0.05s, phase: 0 +[1] - Worker 48 (PID: 283) booted in 0.05s, phase: 0 [1] - Worker 49 (PID: 287) booted in 0.05s, phase: 0 [1] - Worker 50 (PID: 293) booted in 0.05s, phase: 0 -[1] - Worker 51 (PID: 299) booted in 0.05s, phase: 0 -[1] - Worker 52 (PID: 306) booted in 0.04s, phase: 0 +[1] - Worker 51 (PID: 299) booted in 0.04s, phase: 0 +[1] - Worker 52 (PID: 305) booted in 0.04s, phase: 0 [1] - Worker 53 (PID: 311) booted in 0.04s, phase: 0 -[1] - Worker 54 (PID: 318) booted in 0.04s, phase: 0 -[1] - Worker 55 (PID: 323) booted in 0.04s, phase: 0 -[1] - Worker 56 (PID: 330) booted in 0.04s, phase: 0 +[1] - Worker 54 (PID: 317) booted in 0.04s, phase: 0 +[1] - Worker 55 (PID: 324) booted in 0.04s, phase: 0 +[1] - Worker 56 (PID: 330) booted in 0.03s, phase: 0 [1] - Worker 57 (PID: 335) booted in 0.03s, phase: 0 [1] - Worker 58 (PID: 342) booted in 0.03s, phase: 0 [1] - Worker 59 (PID: 347) booted in 0.03s, phase: 0 -[1] - Worker 60 (PID: 353) booted in 0.03s, phase: 0 -[1] - Worker 61 (PID: 360) booted in 0.03s, phase: 0 +[1] - Worker 60 (PID: 354) booted in 0.03s, phase: 0 +[1] - Worker 61 (PID: 360) booted in 0.02s, phase: 0 diff --git a/site/static/logs/json-comp/16384/rails.log b/site/static/logs/json-comp/16384/rails.log index 5b5432f52..ca296e78c 100644 --- a/site/static/logs/json-comp/16384/rails.log +++ b/site/static/logs/json-comp/16384/rails.log @@ -17,67 +17,67 @@ [1] ! WARNING: Detected `RUBY_MN_THREADS=1` [1] ! This setting is known to cause performance regressions with Puma. [1] ! Consider disabling this environment variable: https://github.com/puma/puma/issues/3720 -[1] - Worker 0 (PID: 9) booted in 0.15s, phase: 0 +[1] - Worker 0 (PID: 9) booted in 0.16s, phase: 0 [1] - Worker 1 (PID: 13) booted in 0.15s, phase: 0 [1] - Worker 2 (PID: 17) booted in 0.15s, phase: 0 [1] - Worker 3 (PID: 21) booted in 0.15s, phase: 0 -[1] - Worker 4 (PID: 25) booted in 0.14s, phase: 0 -[1] - Worker 5 (PID: 29) booted in 0.14s, phase: 0 +[1] - Worker 4 (PID: 25) booted in 0.15s, phase: 0 +[1] - Worker 5 (PID: 29) booted in 0.15s, phase: 0 [1] - Worker 6 (PID: 34) booted in 0.14s, phase: 0 [1] - Worker 7 (PID: 39) booted in 0.14s, phase: 0 [1] - Worker 8 (PID: 44) booted in 0.14s, phase: 0 -[1] - Worker 9 (PID: 49) booted in 0.13s, phase: 0 -[1] - Worker 10 (PID: 56) booted in 0.13s, phase: 0 +[1] - Worker 9 (PID: 49) booted in 0.14s, phase: 0 +[1] - Worker 10 (PID: 55) booted in 0.14s, phase: 0 [1] - Worker 11 (PID: 61) booted in 0.13s, phase: 0 [1] - Worker 12 (PID: 67) booted in 0.13s, phase: 0 -[1] - Worker 13 (PID: 76) booted in 0.12s, phase: 0 -[1] - Worker 14 (PID: 83) booted in 0.12s, phase: 0 -[1] - Worker 15 (PID: 88) booted in 0.12s, phase: 0 -[1] - Worker 16 (PID: 95) booted in 0.12s, phase: 0 +[1] - Worker 13 (PID: 74) booted in 0.13s, phase: 0 +[1] - Worker 14 (PID: 82) booted in 0.13s, phase: 0 +[1] - Worker 15 (PID: 88) booted in 0.13s, phase: 0 +[1] - Worker 16 (PID: 94) booted in 0.12s, phase: 0 [1] - Worker 17 (PID: 99) booted in 0.12s, phase: 0 -[1] - Worker 18 (PID: 105) booted in 0.11s, phase: 0 -[1] - Worker 19 (PID: 110) booted in 0.11s, phase: 0 -[1] - Worker 20 (PID: 116) booted in 0.11s, phase: 0 +[1] - Worker 18 (PID: 105) booted in 0.12s, phase: 0 +[1] - Worker 19 (PID: 110) booted in 0.12s, phase: 0 +[1] - Worker 20 (PID: 116) booted in 0.12s, phase: 0 [1] - Worker 21 (PID: 122) booted in 0.11s, phase: 0 [1] - Worker 22 (PID: 127) booted in 0.11s, phase: 0 [1] - Worker 23 (PID: 133) booted in 0.11s, phase: 0 -[1] - Worker 24 (PID: 138) booted in 0.11s, phase: 0 -[1] - Worker 25 (PID: 145) booted in 0.1s, phase: 0 +[1] - Worker 24 (PID: 139) booted in 0.11s, phase: 0 +[1] - Worker 25 (PID: 146) booted in 0.11s, phase: 0 [1] - Worker 26 (PID: 152) booted in 0.1s, phase: 0 -[1] - Worker 27 (PID: 157) booted in 0.1s, phase: 0 +[1] - Worker 27 (PID: 158) booted in 0.1s, phase: 0 [1] - Worker 28 (PID: 164) booted in 0.1s, phase: 0 -[1] - Worker 29 (PID: 171) booted in 0.09s, phase: 0 +[1] - Worker 29 (PID: 171) booted in 0.1s, phase: 0 [1] - Worker 30 (PID: 179) booted in 0.09s, phase: 0 -[1] - Worker 31 (PID: 185) booted in 0.09s, phase: 0 -[1] - Worker 32 (PID: 191) booted in 0.09s, phase: 0 -[1] - Worker 33 (PID: 196) booted in 0.08s, phase: 0 +[1] - Worker 31 (PID: 186) booted in 0.09s, phase: 0 +[1] - Worker 32 (PID: 190) booted in 0.09s, phase: 0 +[1] - Worker 33 (PID: 195) booted in 0.09s, phase: 0 [1] - Worker 34 (PID: 202) booted in 0.08s, phase: 0 -[1] - Worker 35 (PID: 207) booted in 0.08s, phase: 0 -[1] - Worker 36 (PID: 213) booted in 0.08s, phase: 0 -[1] - Worker 37 (PID: 218) booted in 0.08s, phase: 0 +[1] - Worker 35 (PID: 206) booted in 0.08s, phase: 0 +[1] - Worker 36 (PID: 212) booted in 0.08s, phase: 0 +[1] - Worker 37 (PID: 217) booted in 0.08s, phase: 0 [1] - Worker 38 (PID: 223) booted in 0.08s, phase: 0 -[1] - Worker 39 (PID: 229) booted in 0.07s, phase: 0 -[1] - Worker 40 (PID: 234) booted in 0.07s, phase: 0 -[1] - Worker 41 (PID: 240) booted in 0.07s, phase: 0 -[1] - Worker 42 (PID: 246) booted in 0.07s, phase: 0 -[1] - Worker 43 (PID: 252) booted in 0.06s, phase: 0 -[1] - Worker 44 (PID: 258) booted in 0.06s, phase: 0 -[1] - Worker 45 (PID: 264) booted in 0.06s, phase: 0 -[1] - Worker 46 (PID: 271) booted in 0.06s, phase: 0 -[1] - Worker 47 (PID: 276) booted in 0.06s, phase: 0 -[1] - Worker 48 (PID: 282) booted in 0.05s, phase: 0 -[1] - Worker 49 (PID: 288) booted in 0.05s, phase: 0 -[1] - Worker 50 (PID: 294) booted in 0.05s, phase: 0 -[1] - Worker 51 (PID: 300) booted in 0.05s, phase: 0 -[1] - Worker 52 (PID: 306) booted in 0.05s, phase: 0 -[1] - Worker 53 (PID: 312) booted in 0.04s, phase: 0 +[1] - Worker 39 (PID: 228) booted in 0.08s, phase: 0 +[1] - Worker 40 (PID: 233) booted in 0.07s, phase: 0 +[1] - Worker 41 (PID: 239) booted in 0.07s, phase: 0 +[1] - Worker 42 (PID: 245) booted in 0.07s, phase: 0 +[1] - Worker 43 (PID: 251) booted in 0.07s, phase: 0 +[1] - Worker 44 (PID: 257) booted in 0.07s, phase: 0 +[1] - Worker 45 (PID: 263) booted in 0.06s, phase: 0 +[1] - Worker 46 (PID: 269) booted in 0.06s, phase: 0 +[1] - Worker 47 (PID: 275) booted in 0.06s, phase: 0 +[1] - Worker 48 (PID: 281) booted in 0.06s, phase: 0 +[1] - Worker 49 (PID: 287) booted in 0.05s, phase: 0 +[1] - Worker 50 (PID: 293) booted in 0.05s, phase: 0 +[1] - Worker 51 (PID: 299) booted in 0.05s, phase: 0 +[1] - Worker 52 (PID: 305) booted in 0.05s, phase: 0 +[1] - Worker 53 (PID: 311) booted in 0.05s, phase: 0 [1] - Worker 54 (PID: 318) booted in 0.04s, phase: 0 -[1] - Worker 55 (PID: 324) booted in 0.04s, phase: 0 -[1] - Worker 56 (PID: 330) booted in 0.04s, phase: 0 +[1] - Worker 55 (PID: 323) booted in 0.04s, phase: 0 +[1] - Worker 56 (PID: 329) booted in 0.04s, phase: 0 [1] - Worker 57 (PID: 336) booted in 0.04s, phase: 0 -[1] - Worker 58 (PID: 342) booted in 0.03s, phase: 0 +[1] - Worker 58 (PID: 341) booted in 0.04s, phase: 0 [1] - Worker 59 (PID: 348) booted in 0.03s, phase: 0 -[1] - Worker 60 (PID: 354) booted in 0.04s, phase: 0 -[1] - Worker 61 (PID: 360) booted in 0.03s, phase: 0 -[1] - Worker 62 (PID: 366) booted in 0.03s, phase: 0 -[1] - Worker 63 (PID: 372) booted in 0.03s, phase: 0 +[1] - Worker 60 (PID: 354) booted in 0.03s, phase: 0 +[1] - Worker 61 (PID: 359) booted in 0.03s, phase: 0 +[1] - Worker 62 (PID: 365) booted in 0.03s, phase: 0 +[1] - Worker 63 (PID: 372) booted in 0.02s, phase: 0 diff --git a/site/static/logs/json-comp/4096/rails.log b/site/static/logs/json-comp/4096/rails.log index 0e2e15203..0517963bd 100644 --- a/site/static/logs/json-comp/4096/rails.log +++ b/site/static/logs/json-comp/4096/rails.log @@ -17,67 +17,67 @@ [1] ! WARNING: Detected `RUBY_MN_THREADS=1` [1] ! This setting is known to cause performance regressions with Puma. [1] ! Consider disabling this environment variable: https://github.com/puma/puma/issues/3720 -[1] - Worker 0 (PID: 9) booted in 0.15s, phase: 0 +[1] - Worker 0 (PID: 9) booted in 0.16s, phase: 0 [1] - Worker 1 (PID: 13) booted in 0.15s, phase: 0 -[1] - Worker 2 (PID: 17) booted in 0.14s, phase: 0 -[1] - Worker 3 (PID: 21) booted in 0.14s, phase: 0 -[1] - Worker 4 (PID: 25) booted in 0.14s, phase: 0 -[1] - Worker 5 (PID: 29) booted in 0.14s, phase: 0 +[1] - Worker 2 (PID: 17) booted in 0.15s, phase: 0 +[1] - Worker 3 (PID: 21) booted in 0.15s, phase: 0 +[1] - Worker 4 (PID: 25) booted in 0.15s, phase: 0 +[1] - Worker 5 (PID: 29) booted in 0.15s, phase: 0 [1] - Worker 6 (PID: 34) booted in 0.14s, phase: 0 [1] - Worker 7 (PID: 39) booted in 0.14s, phase: 0 -[1] - Worker 8 (PID: 44) booted in 0.13s, phase: 0 -[1] - Worker 9 (PID: 49) booted in 0.13s, phase: 0 -[1] - Worker 10 (PID: 55) booted in 0.13s, phase: 0 -[1] - Worker 11 (PID: 62) booted in 0.13s, phase: 0 -[1] - Worker 12 (PID: 67) booted in 0.12s, phase: 0 -[1] - Worker 13 (PID: 75) booted in 0.12s, phase: 0 -[1] - Worker 14 (PID: 82) booted in 0.12s, phase: 0 -[1] - Worker 15 (PID: 88) booted in 0.12s, phase: 0 +[1] - Worker 8 (PID: 44) booted in 0.14s, phase: 0 +[1] - Worker 9 (PID: 49) booted in 0.14s, phase: 0 +[1] - Worker 10 (PID: 55) booted in 0.14s, phase: 0 +[1] - Worker 11 (PID: 61) booted in 0.13s, phase: 0 +[1] - Worker 12 (PID: 67) booted in 0.13s, phase: 0 +[1] - Worker 13 (PID: 75) booted in 0.13s, phase: 0 +[1] - Worker 14 (PID: 82) booted in 0.13s, phase: 0 +[1] - Worker 15 (PID: 88) booted in 0.13s, phase: 0 [1] - Worker 16 (PID: 94) booted in 0.12s, phase: 0 -[1] - Worker 17 (PID: 99) booted in 0.11s, phase: 0 -[1] - Worker 18 (PID: 105) booted in 0.11s, phase: 0 -[1] - Worker 19 (PID: 110) booted in 0.11s, phase: 0 -[1] - Worker 20 (PID: 116) booted in 0.11s, phase: 0 +[1] - Worker 17 (PID: 99) booted in 0.12s, phase: 0 +[1] - Worker 18 (PID: 105) booted in 0.12s, phase: 0 +[1] - Worker 19 (PID: 110) booted in 0.12s, phase: 0 +[1] - Worker 20 (PID: 116) booted in 0.12s, phase: 0 [1] - Worker 21 (PID: 122) booted in 0.11s, phase: 0 [1] - Worker 22 (PID: 127) booted in 0.11s, phase: 0 -[1] - Worker 23 (PID: 133) booted in 0.1s, phase: 0 -[1] - Worker 24 (PID: 139) booted in 0.1s, phase: 0 -[1] - Worker 25 (PID: 146) booted in 0.1s, phase: 0 +[1] - Worker 23 (PID: 133) booted in 0.11s, phase: 0 +[1] - Worker 24 (PID: 139) booted in 0.11s, phase: 0 +[1] - Worker 25 (PID: 146) booted in 0.11s, phase: 0 [1] - Worker 26 (PID: 152) booted in 0.1s, phase: 0 [1] - Worker 27 (PID: 158) booted in 0.1s, phase: 0 -[1] - Worker 28 (PID: 164) booted in 0.09s, phase: 0 -[1] - Worker 29 (PID: 171) booted in 0.09s, phase: 0 -[1] - Worker 30 (PID: 180) booted in 0.09s, phase: 0 -[1] - Worker 31 (PID: 186) booted in 0.09s, phase: 0 -[1] - Worker 32 (PID: 191) booted in 0.08s, phase: 0 -[1] - Worker 33 (PID: 196) booted in 0.08s, phase: 0 -[1] - Worker 34 (PID: 202) booted in 0.08s, phase: 0 -[1] - Worker 35 (PID: 207) booted in 0.08s, phase: 0 +[1] - Worker 28 (PID: 164) booted in 0.1s, phase: 0 +[1] - Worker 29 (PID: 171) booted in 0.1s, phase: 0 +[1] - Worker 30 (PID: 179) booted in 0.09s, phase: 0 +[1] - Worker 31 (PID: 185) booted in 0.09s, phase: 0 +[1] - Worker 32 (PID: 190) booted in 0.09s, phase: 0 +[1] - Worker 33 (PID: 195) booted in 0.09s, phase: 0 +[1] - Worker 34 (PID: 201) booted in 0.08s, phase: 0 +[1] - Worker 35 (PID: 206) booted in 0.08s, phase: 0 [1] - Worker 36 (PID: 212) booted in 0.08s, phase: 0 -[1] - Worker 37 (PID: 218) booted in 0.07s, phase: 0 -[1] - Worker 38 (PID: 223) booted in 0.07s, phase: 0 -[1] - Worker 39 (PID: 229) booted in 0.07s, phase: 0 -[1] - Worker 40 (PID: 234) booted in 0.07s, phase: 0 -[1] - Worker 41 (PID: 240) booted in 0.07s, phase: 0 -[1] - Worker 42 (PID: 246) booted in 0.06s, phase: 0 -[1] - Worker 43 (PID: 252) booted in 0.06s, phase: 0 -[1] - Worker 44 (PID: 258) booted in 0.06s, phase: 0 -[1] - Worker 45 (PID: 264) booted in 0.06s, phase: 0 +[1] - Worker 37 (PID: 217) booted in 0.08s, phase: 0 +[1] - Worker 38 (PID: 222) booted in 0.08s, phase: 0 +[1] - Worker 39 (PID: 228) booted in 0.08s, phase: 0 +[1] - Worker 40 (PID: 233) booted in 0.07s, phase: 0 +[1] - Worker 41 (PID: 239) booted in 0.07s, phase: 0 +[1] - Worker 42 (PID: 245) booted in 0.07s, phase: 0 +[1] - Worker 43 (PID: 252) booted in 0.07s, phase: 0 +[1] - Worker 44 (PID: 257) booted in 0.06s, phase: 0 +[1] - Worker 45 (PID: 263) booted in 0.06s, phase: 0 [1] - Worker 46 (PID: 270) booted in 0.06s, phase: 0 -[1] - Worker 47 (PID: 276) booted in 0.05s, phase: 0 -[1] - Worker 48 (PID: 282) booted in 0.05s, phase: 0 -[1] - Worker 49 (PID: 288) booted in 0.05s, phase: 0 -[1] - Worker 50 (PID: 294) booted in 0.05s, phase: 0 +[1] - Worker 47 (PID: 276) booted in 0.06s, phase: 0 +[1] - Worker 48 (PID: 281) booted in 0.06s, phase: 0 +[1] - Worker 49 (PID: 287) booted in 0.05s, phase: 0 +[1] - Worker 50 (PID: 293) booted in 0.05s, phase: 0 [1] - Worker 51 (PID: 300) booted in 0.05s, phase: 0 -[1] - Worker 52 (PID: 306) booted in 0.04s, phase: 0 -[1] - Worker 53 (PID: 312) booted in 0.04s, phase: 0 +[1] - Worker 52 (PID: 305) booted in 0.05s, phase: 0 +[1] - Worker 53 (PID: 311) booted in 0.05s, phase: 0 [1] - Worker 54 (PID: 318) booted in 0.04s, phase: 0 [1] - Worker 55 (PID: 324) booted in 0.04s, phase: 0 -[1] - Worker 56 (PID: 330) booted in 0.04s, phase: 0 -[1] - Worker 57 (PID: 336) booted in 0.03s, phase: 0 -[1] - Worker 58 (PID: 342) booted in 0.03s, phase: 0 +[1] - Worker 56 (PID: 329) booted in 0.04s, phase: 0 +[1] - Worker 57 (PID: 335) booted in 0.04s, phase: 0 +[1] - Worker 58 (PID: 341) booted in 0.03s, phase: 0 [1] - Worker 59 (PID: 348) booted in 0.03s, phase: 0 [1] - Worker 60 (PID: 354) booted in 0.03s, phase: 0 [1] - Worker 61 (PID: 360) booted in 0.03s, phase: 0 [1] - Worker 62 (PID: 366) booted in 0.03s, phase: 0 -[1] - Worker 63 (PID: 372) booted in 0.03s, phase: 0 +[1] - Worker 63 (PID: 372) booted in 0.02s, phase: 0 diff --git a/site/static/logs/json-comp/512/rails.log b/site/static/logs/json-comp/512/rails.log index fc0edf831..cd308f47b 100644 --- a/site/static/logs/json-comp/512/rails.log +++ b/site/static/logs/json-comp/512/rails.log @@ -17,67 +17,67 @@ [1] ! WARNING: Detected `RUBY_MN_THREADS=1` [1] ! This setting is known to cause performance regressions with Puma. [1] ! Consider disabling this environment variable: https://github.com/puma/puma/issues/3720 -[1] - Worker 0 (PID: 9) booted in 0.15s, phase: 0 +[1] - Worker 0 (PID: 9) booted in 0.16s, phase: 0 [1] - Worker 1 (PID: 13) booted in 0.15s, phase: 0 [1] - Worker 2 (PID: 17) booted in 0.15s, phase: 0 -[1] - Worker 3 (PID: 21) booted in 0.14s, phase: 0 -[1] - Worker 4 (PID: 25) booted in 0.14s, phase: 0 -[1] - Worker 5 (PID: 29) booted in 0.14s, phase: 0 +[1] - Worker 3 (PID: 21) booted in 0.15s, phase: 0 +[1] - Worker 4 (PID: 25) booted in 0.15s, phase: 0 +[1] - Worker 5 (PID: 29) booted in 0.15s, phase: 0 [1] - Worker 6 (PID: 34) booted in 0.14s, phase: 0 [1] - Worker 7 (PID: 39) booted in 0.14s, phase: 0 -[1] - Worker 8 (PID: 44) booted in 0.13s, phase: 0 -[1] - Worker 9 (PID: 49) booted in 0.13s, phase: 0 -[1] - Worker 10 (PID: 54) booted in 0.13s, phase: 0 -[1] - Worker 11 (PID: 60) booted in 0.13s, phase: 0 -[1] - Worker 12 (PID: 66) booted in 0.12s, phase: 0 -[1] - Worker 13 (PID: 74) booted in 0.12s, phase: 0 -[1] - Worker 14 (PID: 82) booted in 0.12s, phase: 0 -[1] - Worker 15 (PID: 88) booted in 0.12s, phase: 0 -[1] - Worker 16 (PID: 94) booted in 0.12s, phase: 0 +[1] - Worker 8 (PID: 45) booted in 0.14s, phase: 0 +[1] - Worker 9 (PID: 52) booted in 0.14s, phase: 0 +[1] - Worker 10 (PID: 58) booted in 0.13s, phase: 0 +[1] - Worker 11 (PID: 64) booted in 0.13s, phase: 0 +[1] - Worker 12 (PID: 69) booted in 0.13s, phase: 0 +[1] - Worker 13 (PID: 77) booted in 0.13s, phase: 0 +[1] - Worker 14 (PID: 84) booted in 0.12s, phase: 0 +[1] - Worker 15 (PID: 89) booted in 0.12s, phase: 0 +[1] - Worker 16 (PID: 95) booted in 0.12s, phase: 0 [1] - Worker 17 (PID: 99) booted in 0.12s, phase: 0 -[1] - Worker 18 (PID: 105) booted in 0.11s, phase: 0 -[1] - Worker 19 (PID: 110) booted in 0.11s, phase: 0 +[1] - Worker 18 (PID: 105) booted in 0.12s, phase: 0 +[1] - Worker 19 (PID: 110) booted in 0.12s, phase: 0 [1] - Worker 20 (PID: 116) booted in 0.11s, phase: 0 [1] - Worker 21 (PID: 122) booted in 0.11s, phase: 0 [1] - Worker 22 (PID: 127) booted in 0.11s, phase: 0 [1] - Worker 23 (PID: 133) booted in 0.11s, phase: 0 -[1] - Worker 24 (PID: 138) booted in 0.1s, phase: 0 +[1] - Worker 24 (PID: 138) booted in 0.11s, phase: 0 [1] - Worker 25 (PID: 146) booted in 0.1s, phase: 0 [1] - Worker 26 (PID: 152) booted in 0.1s, phase: 0 [1] - Worker 27 (PID: 158) booted in 0.1s, phase: 0 -[1] - Worker 28 (PID: 163) booted in 0.1s, phase: 0 +[1] - Worker 28 (PID: 164) booted in 0.1s, phase: 0 [1] - Worker 29 (PID: 171) booted in 0.09s, phase: 0 -[1] - Worker 30 (PID: 178) booted in 0.09s, phase: 0 +[1] - Worker 30 (PID: 180) booted in 0.09s, phase: 0 [1] - Worker 31 (PID: 186) booted in 0.09s, phase: 0 -[1] - Worker 32 (PID: 191) booted in 0.08s, phase: 0 -[1] - Worker 33 (PID: 197) booted in 0.08s, phase: 0 +[1] - Worker 32 (PID: 191) booted in 0.09s, phase: 0 +[1] - Worker 33 (PID: 196) booted in 0.09s, phase: 0 [1] - Worker 34 (PID: 202) booted in 0.08s, phase: 0 -[1] - Worker 35 (PID: 208) booted in 0.08s, phase: 0 +[1] - Worker 35 (PID: 207) booted in 0.08s, phase: 0 [1] - Worker 36 (PID: 213) booted in 0.08s, phase: 0 -[1] - Worker 37 (PID: 218) booted in 0.07s, phase: 0 -[1] - Worker 38 (PID: 224) booted in 0.07s, phase: 0 +[1] - Worker 37 (PID: 218) booted in 0.08s, phase: 0 +[1] - Worker 38 (PID: 224) booted in 0.08s, phase: 0 [1] - Worker 39 (PID: 229) booted in 0.07s, phase: 0 -[1] - Worker 40 (PID: 235) booted in 0.07s, phase: 0 -[1] - Worker 41 (PID: 240) booted in 0.07s, phase: 0 -[1] - Worker 42 (PID: 246) booted in 0.07s, phase: 0 -[1] - Worker 43 (PID: 252) booted in 0.06s, phase: 0 -[1] - Worker 44 (PID: 258) booted in 0.06s, phase: 0 -[1] - Worker 45 (PID: 264) booted in 0.06s, phase: 0 -[1] - Worker 46 (PID: 270) booted in 0.06s, phase: 0 -[1] - Worker 47 (PID: 276) booted in 0.05s, phase: 0 -[1] - Worker 48 (PID: 282) booted in 0.05s, phase: 0 -[1] - Worker 49 (PID: 288) booted in 0.05s, phase: 0 -[1] - Worker 50 (PID: 294) booted in 0.05s, phase: 0 -[1] - Worker 51 (PID: 300) booted in 0.05s, phase: 0 -[1] - Worker 52 (PID: 306) booted in 0.04s, phase: 0 +[1] - Worker 40 (PID: 234) booted in 0.07s, phase: 0 +[1] - Worker 41 (PID: 241) booted in 0.07s, phase: 0 +[1] - Worker 42 (PID: 247) booted in 0.07s, phase: 0 +[1] - Worker 43 (PID: 252) booted in 0.07s, phase: 0 +[1] - Worker 44 (PID: 259) booted in 0.06s, phase: 0 +[1] - Worker 45 (PID: 265) booted in 0.06s, phase: 0 +[1] - Worker 46 (PID: 271) booted in 0.06s, phase: 0 +[1] - Worker 47 (PID: 277) booted in 0.06s, phase: 0 +[1] - Worker 48 (PID: 283) booted in 0.05s, phase: 0 +[1] - Worker 49 (PID: 289) booted in 0.05s, phase: 0 +[1] - Worker 50 (PID: 295) booted in 0.05s, phase: 0 +[1] - Worker 51 (PID: 301) booted in 0.05s, phase: 0 +[1] - Worker 52 (PID: 307) booted in 0.05s, phase: 0 [1] - Worker 53 (PID: 312) booted in 0.04s, phase: 0 -[1] - Worker 54 (PID: 318) booted in 0.04s, phase: 0 +[1] - Worker 54 (PID: 319) booted in 0.04s, phase: 0 [1] - Worker 55 (PID: 324) booted in 0.04s, phase: 0 [1] - Worker 56 (PID: 330) booted in 0.04s, phase: 0 -[1] - Worker 57 (PID: 336) booted in 0.03s, phase: 0 +[1] - Worker 57 (PID: 336) booted in 0.04s, phase: 0 [1] - Worker 58 (PID: 342) booted in 0.03s, phase: 0 [1] - Worker 59 (PID: 348) booted in 0.03s, phase: 0 [1] - Worker 60 (PID: 354) booted in 0.03s, phase: 0 [1] - Worker 61 (PID: 360) booted in 0.03s, phase: 0 [1] - Worker 62 (PID: 366) booted in 0.03s, phase: 0 -[1] - Worker 63 (PID: 372) booted in 0.03s, phase: 0 +[1] - Worker 63 (PID: 372) booted in 0.02s, phase: 0 diff --git a/site/static/logs/json-tls/4096/rails.log b/site/static/logs/json-tls/4096/rails.log index a79130c22..287fad32d 100644 --- a/site/static/logs/json-tls/4096/rails.log +++ b/site/static/logs/json-tls/4096/rails.log @@ -17,67 +17,67 @@ [1] ! WARNING: Detected `RUBY_MN_THREADS=1` [1] ! This setting is known to cause performance regressions with Puma. [1] ! Consider disabling this environment variable: https://github.com/puma/puma/issues/3720 -[1] - Worker 0 (PID: 9) booted in 0.15s, phase: 0 +[1] - Worker 0 (PID: 9) booted in 0.16s, phase: 0 [1] - Worker 1 (PID: 13) booted in 0.15s, phase: 0 [1] - Worker 2 (PID: 17) booted in 0.15s, phase: 0 -[1] - Worker 3 (PID: 21) booted in 0.14s, phase: 0 -[1] - Worker 4 (PID: 25) booted in 0.14s, phase: 0 -[1] - Worker 5 (PID: 29) booted in 0.14s, phase: 0 +[1] - Worker 3 (PID: 21) booted in 0.15s, phase: 0 +[1] - Worker 4 (PID: 25) booted in 0.15s, phase: 0 +[1] - Worker 5 (PID: 29) booted in 0.15s, phase: 0 [1] - Worker 6 (PID: 34) booted in 0.14s, phase: 0 [1] - Worker 7 (PID: 39) booted in 0.14s, phase: 0 -[1] - Worker 8 (PID: 44) booted in 0.13s, phase: 0 -[1] - Worker 9 (PID: 49) booted in 0.13s, phase: 0 -[1] - Worker 10 (PID: 54) booted in 0.13s, phase: 0 +[1] - Worker 8 (PID: 44) booted in 0.14s, phase: 0 +[1] - Worker 9 (PID: 49) booted in 0.14s, phase: 0 +[1] - Worker 10 (PID: 55) booted in 0.14s, phase: 0 [1] - Worker 11 (PID: 60) booted in 0.13s, phase: 0 -[1] - Worker 12 (PID: 66) booted in 0.12s, phase: 0 -[1] - Worker 13 (PID: 74) booted in 0.12s, phase: 0 -[1] - Worker 14 (PID: 82) booted in 0.12s, phase: 0 -[1] - Worker 15 (PID: 88) booted in 0.12s, phase: 0 +[1] - Worker 12 (PID: 66) booted in 0.13s, phase: 0 +[1] - Worker 13 (PID: 74) booted in 0.13s, phase: 0 +[1] - Worker 14 (PID: 82) booted in 0.13s, phase: 0 +[1] - Worker 15 (PID: 88) booted in 0.13s, phase: 0 [1] - Worker 16 (PID: 94) booted in 0.12s, phase: 0 [1] - Worker 17 (PID: 99) booted in 0.12s, phase: 0 -[1] - Worker 18 (PID: 105) booted in 0.11s, phase: 0 -[1] - Worker 19 (PID: 110) booted in 0.11s, phase: 0 -[1] - Worker 20 (PID: 116) booted in 0.11s, phase: 0 -[1] - Worker 21 (PID: 122) booted in 0.11s, phase: 0 -[1] - Worker 22 (PID: 127) booted in 0.11s, phase: 0 -[1] - Worker 23 (PID: 133) booted in 0.1s, phase: 0 -[1] - Worker 24 (PID: 139) booted in 0.1s, phase: 0 -[1] - Worker 25 (PID: 146) booted in 0.1s, phase: 0 -[1] - Worker 26 (PID: 152) booted in 0.1s, phase: 0 -[1] - Worker 27 (PID: 158) booted in 0.1s, phase: 0 -[1] - Worker 28 (PID: 164) booted in 0.09s, phase: 0 +[1] - Worker 18 (PID: 105) booted in 0.12s, phase: 0 +[1] - Worker 19 (PID: 110) booted in 0.12s, phase: 0 +[1] - Worker 20 (PID: 116) booted in 0.12s, phase: 0 +[1] - Worker 21 (PID: 123) booted in 0.11s, phase: 0 +[1] - Worker 22 (PID: 129) booted in 0.11s, phase: 0 +[1] - Worker 23 (PID: 135) booted in 0.11s, phase: 0 +[1] - Worker 24 (PID: 140) booted in 0.11s, phase: 0 +[1] - Worker 25 (PID: 147) booted in 0.1s, phase: 0 +[1] - Worker 26 (PID: 153) booted in 0.1s, phase: 0 +[1] - Worker 27 (PID: 159) booted in 0.1s, phase: 0 +[1] - Worker 28 (PID: 165) booted in 0.1s, phase: 0 [1] - Worker 29 (PID: 171) booted in 0.09s, phase: 0 -[1] - Worker 30 (PID: 179) booted in 0.09s, phase: 0 +[1] - Worker 30 (PID: 180) booted in 0.09s, phase: 0 [1] - Worker 31 (PID: 186) booted in 0.09s, phase: 0 -[1] - Worker 32 (PID: 191) booted in 0.08s, phase: 0 -[1] - Worker 33 (PID: 197) booted in 0.08s, phase: 0 +[1] - Worker 32 (PID: 191) booted in 0.09s, phase: 0 +[1] - Worker 33 (PID: 196) booted in 0.09s, phase: 0 [1] - Worker 34 (PID: 202) booted in 0.08s, phase: 0 -[1] - Worker 35 (PID: 208) booted in 0.08s, phase: 0 +[1] - Worker 35 (PID: 207) booted in 0.08s, phase: 0 [1] - Worker 36 (PID: 213) booted in 0.08s, phase: 0 -[1] - Worker 37 (PID: 218) booted in 0.07s, phase: 0 -[1] - Worker 38 (PID: 224) booted in 0.07s, phase: 0 -[1] - Worker 39 (PID: 229) booted in 0.07s, phase: 0 -[1] - Worker 40 (PID: 235) booted in 0.07s, phase: 0 -[1] - Worker 41 (PID: 240) booted in 0.07s, phase: 0 -[1] - Worker 42 (PID: 246) booted in 0.06s, phase: 0 -[1] - Worker 43 (PID: 252) booted in 0.06s, phase: 0 -[1] - Worker 44 (PID: 258) booted in 0.06s, phase: 0 -[1] - Worker 45 (PID: 264) booted in 0.06s, phase: 0 -[1] - Worker 46 (PID: 270) booted in 0.06s, phase: 0 -[1] - Worker 47 (PID: 276) booted in 0.05s, phase: 0 -[1] - Worker 48 (PID: 282) booted in 0.05s, phase: 0 +[1] - Worker 37 (PID: 218) booted in 0.08s, phase: 0 +[1] - Worker 38 (PID: 224) booted in 0.08s, phase: 0 +[1] - Worker 39 (PID: 230) booted in 0.07s, phase: 0 +[1] - Worker 40 (PID: 236) booted in 0.07s, phase: 0 +[1] - Worker 41 (PID: 242) booted in 0.07s, phase: 0 +[1] - Worker 42 (PID: 248) booted in 0.07s, phase: 0 +[1] - Worker 43 (PID: 254) booted in 0.06s, phase: 0 +[1] - Worker 44 (PID: 259) booted in 0.06s, phase: 0 +[1] - Worker 45 (PID: 265) booted in 0.06s, phase: 0 +[1] - Worker 46 (PID: 271) booted in 0.06s, phase: 0 +[1] - Worker 47 (PID: 277) booted in 0.06s, phase: 0 +[1] - Worker 48 (PID: 283) booted in 0.05s, phase: 0 [1] - Worker 49 (PID: 288) booted in 0.05s, phase: 0 [1] - Worker 50 (PID: 294) booted in 0.05s, phase: 0 [1] - Worker 51 (PID: 300) booted in 0.05s, phase: 0 -[1] - Worker 52 (PID: 306) booted in 0.04s, phase: 0 +[1] - Worker 52 (PID: 306) booted in 0.05s, phase: 0 [1] - Worker 53 (PID: 312) booted in 0.04s, phase: 0 [1] - Worker 54 (PID: 318) booted in 0.04s, phase: 0 [1] - Worker 55 (PID: 324) booted in 0.04s, phase: 0 [1] - Worker 56 (PID: 330) booted in 0.04s, phase: 0 -[1] - Worker 57 (PID: 336) booted in 0.03s, phase: 0 +[1] - Worker 57 (PID: 336) booted in 0.04s, phase: 0 [1] - Worker 58 (PID: 342) booted in 0.03s, phase: 0 [1] - Worker 59 (PID: 348) booted in 0.03s, phase: 0 [1] - Worker 60 (PID: 354) booted in 0.03s, phase: 0 [1] - Worker 61 (PID: 360) booted in 0.03s, phase: 0 -[1] - Worker 62 (PID: 366) booted in 0.03s, phase: 0 -[1] - Worker 63 (PID: 372) booted in 0.03s, phase: 0 +[1] - Worker 62 (PID: 366) booted in 0.02s, phase: 0 +[1] - Worker 63 (PID: 372) booted in 0.02s, phase: 0 diff --git a/site/static/logs/json/4096/rails.log b/site/static/logs/json/4096/rails.log index 22176db88..0a1b49673 100644 --- a/site/static/logs/json/4096/rails.log +++ b/site/static/logs/json/4096/rails.log @@ -17,67 +17,67 @@ [1] ! WARNING: Detected `RUBY_MN_THREADS=1` [1] ! This setting is known to cause performance regressions with Puma. [1] ! Consider disabling this environment variable: https://github.com/puma/puma/issues/3720 -[1] - Worker 0 (PID: 9) booted in 0.15s, phase: 0 +[1] - Worker 0 (PID: 9) booted in 0.16s, phase: 0 [1] - Worker 1 (PID: 13) booted in 0.15s, phase: 0 [1] - Worker 2 (PID: 17) booted in 0.15s, phase: 0 -[1] - Worker 3 (PID: 21) booted in 0.14s, phase: 0 -[1] - Worker 4 (PID: 25) booted in 0.14s, phase: 0 -[1] - Worker 5 (PID: 29) booted in 0.14s, phase: 0 -[1] - Worker 6 (PID: 34) booted in 0.14s, phase: 0 -[1] - Worker 7 (PID: 39) booted in 0.14s, phase: 0 -[1] - Worker 8 (PID: 44) booted in 0.13s, phase: 0 -[1] - Worker 9 (PID: 49) booted in 0.13s, phase: 0 -[1] - Worker 10 (PID: 54) booted in 0.13s, phase: 0 -[1] - Worker 11 (PID: 60) booted in 0.13s, phase: 0 -[1] - Worker 12 (PID: 66) booted in 0.12s, phase: 0 -[1] - Worker 13 (PID: 74) booted in 0.12s, phase: 0 +[1] - Worker 3 (PID: 20) booted in 0.15s, phase: 0 +[1] - Worker 4 (PID: 25) booted in 0.15s, phase: 0 +[1] - Worker 5 (PID: 30) booted in 0.14s, phase: 0 +[1] - Worker 6 (PID: 35) booted in 0.14s, phase: 0 +[1] - Worker 7 (PID: 40) booted in 0.14s, phase: 0 +[1] - Worker 8 (PID: 45) booted in 0.14s, phase: 0 +[1] - Worker 9 (PID: 49) booted in 0.14s, phase: 0 +[1] - Worker 10 (PID: 55) booted in 0.13s, phase: 0 +[1] - Worker 11 (PID: 61) booted in 0.13s, phase: 0 +[1] - Worker 12 (PID: 66) booted in 0.13s, phase: 0 +[1] - Worker 13 (PID: 76) booted in 0.13s, phase: 0 [1] - Worker 14 (PID: 82) booted in 0.12s, phase: 0 -[1] - Worker 15 (PID: 88) booted in 0.12s, phase: 0 -[1] - Worker 16 (PID: 94) booted in 0.12s, phase: 0 -[1] - Worker 17 (PID: 99) booted in 0.12s, phase: 0 -[1] - Worker 18 (PID: 105) booted in 0.11s, phase: 0 -[1] - Worker 19 (PID: 110) booted in 0.11s, phase: 0 +[1] - Worker 15 (PID: 89) booted in 0.12s, phase: 0 +[1] - Worker 16 (PID: 95) booted in 0.12s, phase: 0 +[1] - Worker 17 (PID: 100) booted in 0.12s, phase: 0 +[1] - Worker 18 (PID: 105) booted in 0.12s, phase: 0 +[1] - Worker 19 (PID: 110) booted in 0.12s, phase: 0 [1] - Worker 20 (PID: 116) booted in 0.11s, phase: 0 [1] - Worker 21 (PID: 122) booted in 0.11s, phase: 0 [1] - Worker 22 (PID: 127) booted in 0.11s, phase: 0 [1] - Worker 23 (PID: 133) booted in 0.11s, phase: 0 -[1] - Worker 24 (PID: 138) booted in 0.1s, phase: 0 +[1] - Worker 24 (PID: 138) booted in 0.11s, phase: 0 [1] - Worker 25 (PID: 146) booted in 0.1s, phase: 0 [1] - Worker 26 (PID: 152) booted in 0.1s, phase: 0 [1] - Worker 27 (PID: 157) booted in 0.1s, phase: 0 [1] - Worker 28 (PID: 164) booted in 0.1s, phase: 0 [1] - Worker 29 (PID: 171) booted in 0.09s, phase: 0 -[1] - Worker 30 (PID: 180) booted in 0.09s, phase: 0 -[1] - Worker 31 (PID: 186) booted in 0.09s, phase: 0 -[1] - Worker 32 (PID: 191) booted in 0.09s, phase: 0 -[1] - Worker 33 (PID: 196) booted in 0.08s, phase: 0 -[1] - Worker 34 (PID: 202) booted in 0.08s, phase: 0 -[1] - Worker 35 (PID: 207) booted in 0.08s, phase: 0 -[1] - Worker 36 (PID: 213) booted in 0.08s, phase: 0 -[1] - Worker 37 (PID: 218) booted in 0.08s, phase: 0 -[1] - Worker 38 (PID: 224) booted in 0.07s, phase: 0 -[1] - Worker 39 (PID: 229) booted in 0.07s, phase: 0 -[1] - Worker 40 (PID: 234) booted in 0.07s, phase: 0 -[1] - Worker 41 (PID: 240) booted in 0.07s, phase: 0 -[1] - Worker 42 (PID: 246) booted in 0.07s, phase: 0 -[1] - Worker 43 (PID: 252) booted in 0.06s, phase: 0 -[1] - Worker 44 (PID: 258) booted in 0.06s, phase: 0 -[1] - Worker 45 (PID: 264) booted in 0.06s, phase: 0 -[1] - Worker 46 (PID: 270) booted in 0.06s, phase: 0 -[1] - Worker 47 (PID: 276) booted in 0.06s, phase: 0 -[1] - Worker 48 (PID: 282) booted in 0.05s, phase: 0 -[1] - Worker 49 (PID: 288) booted in 0.05s, phase: 0 +[1] - Worker 30 (PID: 179) booted in 0.09s, phase: 0 +[1] - Worker 31 (PID: 184) booted in 0.09s, phase: 0 +[1] - Worker 32 (PID: 190) booted in 0.09s, phase: 0 +[1] - Worker 33 (PID: 195) booted in 0.09s, phase: 0 +[1] - Worker 34 (PID: 200) booted in 0.08s, phase: 0 +[1] - Worker 35 (PID: 206) booted in 0.08s, phase: 0 +[1] - Worker 36 (PID: 211) booted in 0.08s, phase: 0 +[1] - Worker 37 (PID: 217) booted in 0.08s, phase: 0 +[1] - Worker 38 (PID: 222) booted in 0.08s, phase: 0 +[1] - Worker 39 (PID: 228) booted in 0.07s, phase: 0 +[1] - Worker 40 (PID: 233) booted in 0.07s, phase: 0 +[1] - Worker 41 (PID: 239) booted in 0.07s, phase: 0 +[1] - Worker 42 (PID: 245) booted in 0.07s, phase: 0 +[1] - Worker 43 (PID: 251) booted in 0.07s, phase: 0 +[1] - Worker 44 (PID: 257) booted in 0.06s, phase: 0 +[1] - Worker 45 (PID: 263) booted in 0.06s, phase: 0 +[1] - Worker 46 (PID: 269) booted in 0.06s, phase: 0 +[1] - Worker 47 (PID: 275) booted in 0.06s, phase: 0 +[1] - Worker 48 (PID: 281) booted in 0.06s, phase: 0 +[1] - Worker 49 (PID: 287) booted in 0.05s, phase: 0 [1] - Worker 50 (PID: 294) booted in 0.05s, phase: 0 -[1] - Worker 51 (PID: 300) booted in 0.05s, phase: 0 -[1] - Worker 52 (PID: 306) booted in 0.05s, phase: 0 -[1] - Worker 53 (PID: 312) booted in 0.04s, phase: 0 -[1] - Worker 54 (PID: 318) booted in 0.04s, phase: 0 -[1] - Worker 55 (PID: 324) booted in 0.04s, phase: 0 -[1] - Worker 56 (PID: 330) booted in 0.04s, phase: 0 -[1] - Worker 57 (PID: 336) booted in 0.04s, phase: 0 -[1] - Worker 58 (PID: 342) booted in 0.03s, phase: 0 -[1] - Worker 59 (PID: 348) booted in 0.03s, phase: 0 -[1] - Worker 60 (PID: 354) booted in 0.04s, phase: 0 -[1] - Worker 61 (PID: 360) booted in 0.03s, phase: 0 -[1] - Worker 62 (PID: 366) booted in 0.03s, phase: 0 -[1] - Worker 63 (PID: 372) booted in 0.03s, phase: 0 +[1] - Worker 51 (PID: 299) booted in 0.05s, phase: 0 +[1] - Worker 52 (PID: 305) booted in 0.05s, phase: 0 +[1] - Worker 53 (PID: 311) booted in 0.05s, phase: 0 +[1] - Worker 54 (PID: 317) booted in 0.04s, phase: 0 +[1] - Worker 55 (PID: 323) booted in 0.04s, phase: 0 +[1] - Worker 56 (PID: 329) booted in 0.04s, phase: 0 +[1] - Worker 57 (PID: 335) booted in 0.04s, phase: 0 +[1] - Worker 58 (PID: 341) booted in 0.04s, phase: 0 +[1] - Worker 59 (PID: 347) booted in 0.03s, phase: 0 +[1] - Worker 60 (PID: 354) booted in 0.03s, phase: 0 +[1] - Worker 61 (PID: 359) booted in 0.03s, phase: 0 +[1] - Worker 62 (PID: 365) booted in 0.03s, phase: 0 +[1] - Worker 63 (PID: 371) booted in 0.02s, phase: 0 diff --git a/site/static/logs/limited-conn/4096/rails.log b/site/static/logs/limited-conn/4096/rails.log index 543e72e2e..bdafaf294 100644 --- a/site/static/logs/limited-conn/4096/rails.log +++ b/site/static/logs/limited-conn/4096/rails.log @@ -17,67 +17,67 @@ [1] ! WARNING: Detected `RUBY_MN_THREADS=1` [1] ! This setting is known to cause performance regressions with Puma. [1] ! Consider disabling this environment variable: https://github.com/puma/puma/issues/3720 -[1] - Worker 0 (PID: 9) booted in 0.15s, phase: 0 +[1] - Worker 0 (PID: 9) booted in 0.16s, phase: 0 [1] - Worker 1 (PID: 13) booted in 0.15s, phase: 0 [1] - Worker 2 (PID: 17) booted in 0.15s, phase: 0 -[1] - Worker 3 (PID: 21) booted in 0.14s, phase: 0 -[1] - Worker 4 (PID: 25) booted in 0.14s, phase: 0 -[1] - Worker 5 (PID: 29) booted in 0.14s, phase: 0 +[1] - Worker 3 (PID: 21) booted in 0.15s, phase: 0 +[1] - Worker 4 (PID: 25) booted in 0.15s, phase: 0 +[1] - Worker 5 (PID: 29) booted in 0.15s, phase: 0 [1] - Worker 6 (PID: 34) booted in 0.14s, phase: 0 [1] - Worker 7 (PID: 39) booted in 0.14s, phase: 0 -[1] - Worker 8 (PID: 44) booted in 0.13s, phase: 0 -[1] - Worker 9 (PID: 49) booted in 0.13s, phase: 0 -[1] - Worker 10 (PID: 54) booted in 0.13s, phase: 0 -[1] - Worker 11 (PID: 60) booted in 0.13s, phase: 0 -[1] - Worker 12 (PID: 66) booted in 0.13s, phase: 0 -[1] - Worker 13 (PID: 74) booted in 0.12s, phase: 0 -[1] - Worker 14 (PID: 82) booted in 0.12s, phase: 0 -[1] - Worker 15 (PID: 88) booted in 0.12s, phase: 0 +[1] - Worker 8 (PID: 44) booted in 0.14s, phase: 0 +[1] - Worker 9 (PID: 49) booted in 0.14s, phase: 0 +[1] - Worker 10 (PID: 55) booted in 0.14s, phase: 0 +[1] - Worker 11 (PID: 61) booted in 0.13s, phase: 0 +[1] - Worker 12 (PID: 67) booted in 0.13s, phase: 0 +[1] - Worker 13 (PID: 74) booted in 0.13s, phase: 0 +[1] - Worker 14 (PID: 82) booted in 0.13s, phase: 0 +[1] - Worker 15 (PID: 88) booted in 0.13s, phase: 0 [1] - Worker 16 (PID: 94) booted in 0.12s, phase: 0 [1] - Worker 17 (PID: 99) booted in 0.12s, phase: 0 [1] - Worker 18 (PID: 105) booted in 0.12s, phase: 0 -[1] - Worker 19 (PID: 110) booted in 0.11s, phase: 0 -[1] - Worker 20 (PID: 116) booted in 0.11s, phase: 0 -[1] - Worker 21 (PID: 122) booted in 0.11s, phase: 0 +[1] - Worker 19 (PID: 110) booted in 0.12s, phase: 0 +[1] - Worker 20 (PID: 116) booted in 0.12s, phase: 0 +[1] - Worker 21 (PID: 122) booted in 0.12s, phase: 0 [1] - Worker 22 (PID: 127) booted in 0.11s, phase: 0 [1] - Worker 23 (PID: 133) booted in 0.11s, phase: 0 -[1] - Worker 24 (PID: 138) booted in 0.11s, phase: 0 -[1] - Worker 25 (PID: 146) booted in 0.1s, phase: 0 +[1] - Worker 24 (PID: 139) booted in 0.11s, phase: 0 +[1] - Worker 25 (PID: 146) booted in 0.11s, phase: 0 [1] - Worker 26 (PID: 152) booted in 0.1s, phase: 0 [1] - Worker 27 (PID: 158) booted in 0.1s, phase: 0 [1] - Worker 28 (PID: 164) booted in 0.1s, phase: 0 -[1] - Worker 29 (PID: 171) booted in 0.09s, phase: 0 -[1] - Worker 30 (PID: 179) booted in 0.09s, phase: 0 +[1] - Worker 29 (PID: 171) booted in 0.1s, phase: 0 +[1] - Worker 30 (PID: 180) booted in 0.09s, phase: 0 [1] - Worker 31 (PID: 185) booted in 0.09s, phase: 0 -[1] - Worker 32 (PID: 191) booted in 0.09s, phase: 0 -[1] - Worker 33 (PID: 196) booted in 0.08s, phase: 0 -[1] - Worker 34 (PID: 202) booted in 0.08s, phase: 0 +[1] - Worker 32 (PID: 190) booted in 0.09s, phase: 0 +[1] - Worker 33 (PID: 195) booted in 0.09s, phase: 0 +[1] - Worker 34 (PID: 202) booted in 0.09s, phase: 0 [1] - Worker 35 (PID: 206) booted in 0.08s, phase: 0 -[1] - Worker 36 (PID: 212) booted in 0.08s, phase: 0 -[1] - Worker 37 (PID: 218) booted in 0.08s, phase: 0 +[1] - Worker 36 (PID: 213) booted in 0.08s, phase: 0 +[1] - Worker 37 (PID: 217) booted in 0.08s, phase: 0 [1] - Worker 38 (PID: 223) booted in 0.08s, phase: 0 -[1] - Worker 39 (PID: 229) booted in 0.07s, phase: 0 -[1] - Worker 40 (PID: 234) booted in 0.07s, phase: 0 -[1] - Worker 41 (PID: 240) booted in 0.07s, phase: 0 -[1] - Worker 42 (PID: 248) booted in 0.07s, phase: 0 -[1] - Worker 43 (PID: 254) booted in 0.06s, phase: 0 -[1] - Worker 44 (PID: 260) booted in 0.06s, phase: 0 -[1] - Worker 45 (PID: 266) booted in 0.06s, phase: 0 -[1] - Worker 46 (PID: 272) booted in 0.06s, phase: 0 -[1] - Worker 47 (PID: 277) booted in 0.06s, phase: 0 -[1] - Worker 48 (PID: 283) booted in 0.05s, phase: 0 -[1] - Worker 49 (PID: 289) booted in 0.05s, phase: 0 -[1] - Worker 50 (PID: 295) booted in 0.05s, phase: 0 -[1] - Worker 51 (PID: 301) booted in 0.05s, phase: 0 -[1] - Worker 52 (PID: 306) booted in 0.05s, phase: 0 -[1] - Worker 53 (PID: 312) booted in 0.04s, phase: 0 +[1] - Worker 39 (PID: 228) booted in 0.08s, phase: 0 +[1] - Worker 40 (PID: 233) booted in 0.07s, phase: 0 +[1] - Worker 41 (PID: 239) booted in 0.07s, phase: 0 +[1] - Worker 42 (PID: 246) booted in 0.07s, phase: 0 +[1] - Worker 43 (PID: 252) booted in 0.07s, phase: 0 +[1] - Worker 44 (PID: 257) booted in 0.07s, phase: 0 +[1] - Worker 45 (PID: 263) booted in 0.06s, phase: 0 +[1] - Worker 46 (PID: 270) booted in 0.06s, phase: 0 +[1] - Worker 47 (PID: 275) booted in 0.06s, phase: 0 +[1] - Worker 48 (PID: 281) booted in 0.06s, phase: 0 +[1] - Worker 49 (PID: 287) booted in 0.05s, phase: 0 +[1] - Worker 50 (PID: 293) booted in 0.05s, phase: 0 +[1] - Worker 51 (PID: 300) booted in 0.05s, phase: 0 +[1] - Worker 52 (PID: 305) booted in 0.05s, phase: 0 +[1] - Worker 53 (PID: 311) booted in 0.05s, phase: 0 [1] - Worker 54 (PID: 318) booted in 0.04s, phase: 0 -[1] - Worker 55 (PID: 324) booted in 0.04s, phase: 0 +[1] - Worker 55 (PID: 323) booted in 0.04s, phase: 0 [1] - Worker 56 (PID: 330) booted in 0.04s, phase: 0 [1] - Worker 57 (PID: 336) booted in 0.04s, phase: 0 [1] - Worker 58 (PID: 342) booted in 0.03s, phase: 0 -[1] - Worker 59 (PID: 348) booted in 0.03s, phase: 0 +[1] - Worker 59 (PID: 349) booted in 0.03s, phase: 0 [1] - Worker 60 (PID: 354) booted in 0.03s, phase: 0 [1] - Worker 61 (PID: 360) booted in 0.03s, phase: 0 [1] - Worker 62 (PID: 366) booted in 0.03s, phase: 0 -[1] - Worker 63 (PID: 372) booted in 0.03s, phase: 0 +[1] - Worker 63 (PID: 373) booted in 0.02s, phase: 0 diff --git a/site/static/logs/limited-conn/512/rails.log b/site/static/logs/limited-conn/512/rails.log index 3e4728394..6ff25069c 100644 --- a/site/static/logs/limited-conn/512/rails.log +++ b/site/static/logs/limited-conn/512/rails.log @@ -20,64 +20,64 @@ [1] - Worker 0 (PID: 9) booted in 0.15s, phase: 0 [1] - Worker 1 (PID: 13) booted in 0.15s, phase: 0 [1] - Worker 2 (PID: 17) booted in 0.15s, phase: 0 -[1] - Worker 3 (PID: 21) booted in 0.14s, phase: 0 -[1] - Worker 4 (PID: 25) booted in 0.14s, phase: 0 +[1] - Worker 3 (PID: 21) booted in 0.15s, phase: 0 +[1] - Worker 4 (PID: 25) booted in 0.15s, phase: 0 [1] - Worker 5 (PID: 29) booted in 0.14s, phase: 0 [1] - Worker 6 (PID: 34) booted in 0.14s, phase: 0 -[1] - Worker 7 (PID: 39) booted in 0.14s, phase: 0 -[1] - Worker 8 (PID: 44) booted in 0.13s, phase: 0 -[1] - Worker 9 (PID: 49) booted in 0.13s, phase: 0 -[1] - Worker 10 (PID: 55) booted in 0.13s, phase: 0 +[1] - Worker 7 (PID: 40) booted in 0.14s, phase: 0 +[1] - Worker 8 (PID: 44) booted in 0.14s, phase: 0 +[1] - Worker 9 (PID: 50) booted in 0.14s, phase: 0 +[1] - Worker 10 (PID: 56) booted in 0.13s, phase: 0 [1] - Worker 11 (PID: 62) booted in 0.13s, phase: 0 -[1] - Worker 12 (PID: 68) booted in 0.12s, phase: 0 -[1] - Worker 13 (PID: 76) booted in 0.12s, phase: 0 -[1] - Worker 14 (PID: 82) booted in 0.12s, phase: 0 +[1] - Worker 12 (PID: 68) booted in 0.13s, phase: 0 +[1] - Worker 13 (PID: 76) booted in 0.13s, phase: 0 +[1] - Worker 14 (PID: 83) booted in 0.12s, phase: 0 [1] - Worker 15 (PID: 88) booted in 0.12s, phase: 0 [1] - Worker 16 (PID: 94) booted in 0.12s, phase: 0 -[1] - Worker 17 (PID: 99) booted in 0.11s, phase: 0 -[1] - Worker 18 (PID: 105) booted in 0.11s, phase: 0 -[1] - Worker 19 (PID: 110) booted in 0.11s, phase: 0 +[1] - Worker 17 (PID: 99) booted in 0.12s, phase: 0 +[1] - Worker 18 (PID: 105) booted in 0.12s, phase: 0 +[1] - Worker 19 (PID: 110) booted in 0.12s, phase: 0 [1] - Worker 20 (PID: 116) booted in 0.11s, phase: 0 [1] - Worker 21 (PID: 122) booted in 0.11s, phase: 0 [1] - Worker 22 (PID: 127) booted in 0.11s, phase: 0 -[1] - Worker 23 (PID: 133) booted in 0.1s, phase: 0 -[1] - Worker 24 (PID: 138) booted in 0.1s, phase: 0 -[1] - Worker 25 (PID: 145) booted in 0.1s, phase: 0 -[1] - Worker 26 (PID: 151) booted in 0.1s, phase: 0 +[1] - Worker 23 (PID: 133) booted in 0.11s, phase: 0 +[1] - Worker 24 (PID: 138) booted in 0.11s, phase: 0 +[1] - Worker 25 (PID: 146) booted in 0.1s, phase: 0 +[1] - Worker 26 (PID: 152) booted in 0.1s, phase: 0 [1] - Worker 27 (PID: 158) booted in 0.1s, phase: 0 -[1] - Worker 28 (PID: 164) booted in 0.09s, phase: 0 +[1] - Worker 28 (PID: 164) booted in 0.1s, phase: 0 [1] - Worker 29 (PID: 171) booted in 0.09s, phase: 0 [1] - Worker 30 (PID: 179) booted in 0.09s, phase: 0 -[1] - Worker 31 (PID: 185) booted in 0.09s, phase: 0 -[1] - Worker 32 (PID: 191) booted in 0.08s, phase: 0 -[1] - Worker 33 (PID: 196) booted in 0.08s, phase: 0 -[1] - Worker 34 (PID: 201) booted in 0.08s, phase: 0 -[1] - Worker 35 (PID: 206) booted in 0.08s, phase: 0 +[1] - Worker 31 (PID: 186) booted in 0.09s, phase: 0 +[1] - Worker 32 (PID: 191) booted in 0.09s, phase: 0 +[1] - Worker 33 (PID: 196) booted in 0.09s, phase: 0 +[1] - Worker 34 (PID: 202) booted in 0.08s, phase: 0 +[1] - Worker 35 (PID: 207) booted in 0.08s, phase: 0 [1] - Worker 36 (PID: 213) booted in 0.08s, phase: 0 -[1] - Worker 37 (PID: 218) booted in 0.07s, phase: 0 -[1] - Worker 38 (PID: 223) booted in 0.07s, phase: 0 +[1] - Worker 37 (PID: 218) booted in 0.08s, phase: 0 +[1] - Worker 38 (PID: 223) booted in 0.08s, phase: 0 [1] - Worker 39 (PID: 229) booted in 0.07s, phase: 0 [1] - Worker 40 (PID: 234) booted in 0.07s, phase: 0 [1] - Worker 41 (PID: 240) booted in 0.07s, phase: 0 [1] - Worker 42 (PID: 246) booted in 0.07s, phase: 0 -[1] - Worker 43 (PID: 252) booted in 0.06s, phase: 0 +[1] - Worker 43 (PID: 252) booted in 0.07s, phase: 0 [1] - Worker 44 (PID: 258) booted in 0.06s, phase: 0 [1] - Worker 45 (PID: 264) booted in 0.06s, phase: 0 [1] - Worker 46 (PID: 270) booted in 0.06s, phase: 0 -[1] - Worker 47 (PID: 276) booted in 0.05s, phase: 0 -[1] - Worker 48 (PID: 282) booted in 0.05s, phase: 0 +[1] - Worker 47 (PID: 276) booted in 0.06s, phase: 0 +[1] - Worker 48 (PID: 282) booted in 0.06s, phase: 0 [1] - Worker 49 (PID: 288) booted in 0.05s, phase: 0 [1] - Worker 50 (PID: 294) booted in 0.05s, phase: 0 [1] - Worker 51 (PID: 300) booted in 0.05s, phase: 0 -[1] - Worker 52 (PID: 306) booted in 0.04s, phase: 0 +[1] - Worker 52 (PID: 306) booted in 0.05s, phase: 0 [1] - Worker 53 (PID: 312) booted in 0.04s, phase: 0 [1] - Worker 54 (PID: 318) booted in 0.04s, phase: 0 [1] - Worker 55 (PID: 324) booted in 0.04s, phase: 0 [1] - Worker 56 (PID: 330) booted in 0.04s, phase: 0 -[1] - Worker 57 (PID: 336) booted in 0.03s, phase: 0 -[1] - Worker 58 (PID: 342) booted in 0.03s, phase: 0 -[1] - Worker 59 (PID: 348) booted in 0.04s, phase: 0 -[1] - Worker 60 (PID: 354) booted in 0.03s, phase: 0 -[1] - Worker 61 (PID: 360) booted in 0.03s, phase: 0 -[1] - Worker 62 (PID: 366) booted in 0.03s, phase: 0 -[1] - Worker 63 (PID: 372) booted in 0.03s, phase: 0 +[1] - Worker 57 (PID: 337) booted in 0.04s, phase: 0 +[1] - Worker 58 (PID: 344) booted in 0.03s, phase: 0 +[1] - Worker 59 (PID: 350) booted in 0.03s, phase: 0 +[1] - Worker 60 (PID: 356) booted in 0.03s, phase: 0 +[1] - Worker 61 (PID: 362) booted in 0.03s, phase: 0 +[1] - Worker 62 (PID: 367) booted in 0.02s, phase: 0 +[1] - Worker 63 (PID: 373) booted in 0.02s, phase: 0 diff --git a/site/static/logs/pipelined/4096/rails.log b/site/static/logs/pipelined/4096/rails.log index d2d82d4be..8fac1ac78 100644 --- a/site/static/logs/pipelined/4096/rails.log +++ b/site/static/logs/pipelined/4096/rails.log @@ -20,64 +20,64 @@ [1] - Worker 0 (PID: 9) booted in 0.15s, phase: 0 [1] - Worker 1 (PID: 13) booted in 0.15s, phase: 0 [1] - Worker 2 (PID: 17) booted in 0.15s, phase: 0 -[1] - Worker 3 (PID: 21) booted in 0.14s, phase: 0 -[1] - Worker 4 (PID: 25) booted in 0.14s, phase: 0 -[1] - Worker 5 (PID: 30) booted in 0.14s, phase: 0 -[1] - Worker 6 (PID: 35) booted in 0.14s, phase: 0 -[1] - Worker 7 (PID: 40) booted in 0.14s, phase: 0 -[1] - Worker 8 (PID: 45) booted in 0.13s, phase: 0 -[1] - Worker 9 (PID: 49) booted in 0.13s, phase: 0 -[1] - Worker 10 (PID: 55) booted in 0.13s, phase: 0 -[1] - Worker 11 (PID: 61) booted in 0.13s, phase: 0 -[1] - Worker 12 (PID: 67) booted in 0.12s, phase: 0 -[1] - Worker 13 (PID: 74) booted in 0.12s, phase: 0 -[1] - Worker 14 (PID: 82) booted in 0.12s, phase: 0 +[1] - Worker 3 (PID: 21) booted in 0.15s, phase: 0 +[1] - Worker 4 (PID: 25) booted in 0.15s, phase: 0 +[1] - Worker 5 (PID: 29) booted in 0.14s, phase: 0 +[1] - Worker 6 (PID: 34) booted in 0.14s, phase: 0 +[1] - Worker 7 (PID: 39) booted in 0.14s, phase: 0 +[1] - Worker 8 (PID: 44) booted in 0.14s, phase: 0 +[1] - Worker 9 (PID: 49) booted in 0.14s, phase: 0 +[1] - Worker 10 (PID: 54) booted in 0.13s, phase: 0 +[1] - Worker 11 (PID: 60) booted in 0.13s, phase: 0 +[1] - Worker 12 (PID: 67) booted in 0.13s, phase: 0 +[1] - Worker 13 (PID: 75) booted in 0.13s, phase: 0 +[1] - Worker 14 (PID: 82) booted in 0.13s, phase: 0 [1] - Worker 15 (PID: 88) booted in 0.12s, phase: 0 [1] - Worker 16 (PID: 94) booted in 0.12s, phase: 0 -[1] - Worker 17 (PID: 99) booted in 0.11s, phase: 0 -[1] - Worker 18 (PID: 105) booted in 0.11s, phase: 0 -[1] - Worker 19 (PID: 110) booted in 0.11s, phase: 0 -[1] - Worker 20 (PID: 116) booted in 0.11s, phase: 0 +[1] - Worker 17 (PID: 99) booted in 0.12s, phase: 0 +[1] - Worker 18 (PID: 105) booted in 0.12s, phase: 0 +[1] - Worker 19 (PID: 110) booted in 0.12s, phase: 0 +[1] - Worker 20 (PID: 116) booted in 0.12s, phase: 0 [1] - Worker 21 (PID: 122) booted in 0.11s, phase: 0 [1] - Worker 22 (PID: 127) booted in 0.11s, phase: 0 -[1] - Worker 23 (PID: 133) booted in 0.1s, phase: 0 -[1] - Worker 24 (PID: 138) booted in 0.1s, phase: 0 -[1] - Worker 25 (PID: 146) booted in 0.1s, phase: 0 +[1] - Worker 23 (PID: 133) booted in 0.11s, phase: 0 +[1] - Worker 24 (PID: 140) booted in 0.11s, phase: 0 +[1] - Worker 25 (PID: 146) booted in 0.11s, phase: 0 [1] - Worker 26 (PID: 152) booted in 0.1s, phase: 0 [1] - Worker 27 (PID: 158) booted in 0.1s, phase: 0 -[1] - Worker 28 (PID: 163) booted in 0.1s, phase: 0 -[1] - Worker 29 (PID: 171) booted in 0.09s, phase: 0 -[1] - Worker 30 (PID: 179) booted in 0.09s, phase: 0 +[1] - Worker 28 (PID: 164) booted in 0.1s, phase: 0 +[1] - Worker 29 (PID: 171) booted in 0.1s, phase: 0 +[1] - Worker 30 (PID: 180) booted in 0.09s, phase: 0 [1] - Worker 31 (PID: 185) booted in 0.09s, phase: 0 -[1] - Worker 32 (PID: 191) booted in 0.08s, phase: 0 -[1] - Worker 33 (PID: 195) booted in 0.08s, phase: 0 -[1] - Worker 34 (PID: 202) booted in 0.08s, phase: 0 -[1] - Worker 35 (PID: 206) booted in 0.08s, phase: 0 -[1] - Worker 36 (PID: 212) booted in 0.08s, phase: 0 -[1] - Worker 37 (PID: 218) booted in 0.07s, phase: 0 -[1] - Worker 38 (PID: 223) booted in 0.07s, phase: 0 -[1] - Worker 39 (PID: 229) booted in 0.07s, phase: 0 -[1] - Worker 40 (PID: 234) booted in 0.07s, phase: 0 -[1] - Worker 41 (PID: 240) booted in 0.07s, phase: 0 -[1] - Worker 42 (PID: 246) booted in 0.07s, phase: 0 -[1] - Worker 43 (PID: 252) booted in 0.06s, phase: 0 -[1] - Worker 44 (PID: 258) booted in 0.06s, phase: 0 -[1] - Worker 45 (PID: 264) booted in 0.06s, phase: 0 -[1] - Worker 46 (PID: 269) booted in 0.06s, phase: 0 -[1] - Worker 47 (PID: 276) booted in 0.06s, phase: 0 -[1] - Worker 48 (PID: 282) booted in 0.05s, phase: 0 +[1] - Worker 32 (PID: 191) booted in 0.09s, phase: 0 +[1] - Worker 33 (PID: 196) booted in 0.09s, phase: 0 +[1] - Worker 34 (PID: 202) booted in 0.09s, phase: 0 +[1] - Worker 35 (PID: 207) booted in 0.08s, phase: 0 +[1] - Worker 36 (PID: 213) booted in 0.08s, phase: 0 +[1] - Worker 37 (PID: 219) booted in 0.08s, phase: 0 +[1] - Worker 38 (PID: 225) booted in 0.08s, phase: 0 +[1] - Worker 39 (PID: 230) booted in 0.07s, phase: 0 +[1] - Worker 40 (PID: 236) booted in 0.07s, phase: 0 +[1] - Worker 41 (PID: 242) booted in 0.07s, phase: 0 +[1] - Worker 42 (PID: 247) booted in 0.07s, phase: 0 +[1] - Worker 43 (PID: 253) booted in 0.07s, phase: 0 +[1] - Worker 44 (PID: 259) booted in 0.06s, phase: 0 +[1] - Worker 45 (PID: 265) booted in 0.06s, phase: 0 +[1] - Worker 46 (PID: 271) booted in 0.06s, phase: 0 +[1] - Worker 47 (PID: 277) booted in 0.06s, phase: 0 +[1] - Worker 48 (PID: 282) booted in 0.06s, phase: 0 [1] - Worker 49 (PID: 288) booted in 0.05s, phase: 0 -[1] - Worker 50 (PID: 294) booted in 0.05s, phase: 0 +[1] - Worker 50 (PID: 295) booted in 0.05s, phase: 0 [1] - Worker 51 (PID: 300) booted in 0.05s, phase: 0 [1] - Worker 52 (PID: 306) booted in 0.05s, phase: 0 -[1] - Worker 53 (PID: 312) booted in 0.04s, phase: 0 -[1] - Worker 54 (PID: 318) booted in 0.04s, phase: 0 +[1] - Worker 53 (PID: 312) booted in 0.05s, phase: 0 +[1] - Worker 54 (PID: 319) booted in 0.04s, phase: 0 [1] - Worker 55 (PID: 324) booted in 0.04s, phase: 0 [1] - Worker 56 (PID: 330) booted in 0.04s, phase: 0 -[1] - Worker 57 (PID: 336) booted in 0.03s, phase: 0 +[1] - Worker 57 (PID: 336) booted in 0.04s, phase: 0 [1] - Worker 58 (PID: 342) booted in 0.03s, phase: 0 [1] - Worker 59 (PID: 348) booted in 0.03s, phase: 0 [1] - Worker 60 (PID: 354) booted in 0.03s, phase: 0 [1] - Worker 61 (PID: 360) booted in 0.03s, phase: 0 [1] - Worker 62 (PID: 366) booted in 0.03s, phase: 0 -[1] - Worker 63 (PID: 372) booted in 0.03s, phase: 0 +[1] - Worker 63 (PID: 372) booted in 0.02s, phase: 0 diff --git a/site/static/logs/pipelined/512/rails.log b/site/static/logs/pipelined/512/rails.log index b8d0c5a63..f30473457 100644 --- a/site/static/logs/pipelined/512/rails.log +++ b/site/static/logs/pipelined/512/rails.log @@ -18,66 +18,66 @@ [1] ! This setting is known to cause performance regressions with Puma. [1] ! Consider disabling this environment variable: https://github.com/puma/puma/issues/3720 [1] - Worker 0 (PID: 9) booted in 0.15s, phase: 0 -[1] - Worker 1 (PID: 13) booted in 0.14s, phase: 0 -[1] - Worker 2 (PID: 17) booted in 0.14s, phase: 0 -[1] - Worker 3 (PID: 21) booted in 0.14s, phase: 0 -[1] - Worker 4 (PID: 25) booted in 0.14s, phase: 0 +[1] - Worker 1 (PID: 13) booted in 0.15s, phase: 0 +[1] - Worker 2 (PID: 17) booted in 0.15s, phase: 0 +[1] - Worker 3 (PID: 21) booted in 0.15s, phase: 0 +[1] - Worker 4 (PID: 25) booted in 0.15s, phase: 0 [1] - Worker 5 (PID: 29) booted in 0.14s, phase: 0 -[1] - Worker 6 (PID: 34) booted in 0.13s, phase: 0 -[1] - Worker 7 (PID: 39) booted in 0.13s, phase: 0 -[1] - Worker 8 (PID: 44) booted in 0.13s, phase: 0 +[1] - Worker 6 (PID: 34) booted in 0.14s, phase: 0 +[1] - Worker 7 (PID: 39) booted in 0.14s, phase: 0 +[1] - Worker 8 (PID: 44) booted in 0.14s, phase: 0 [1] - Worker 9 (PID: 49) booted in 0.13s, phase: 0 -[1] - Worker 10 (PID: 55) booted in 0.13s, phase: 0 -[1] - Worker 11 (PID: 60) booted in 0.12s, phase: 0 -[1] - Worker 12 (PID: 66) booted in 0.12s, phase: 0 -[1] - Worker 13 (PID: 74) booted in 0.12s, phase: 0 +[1] - Worker 10 (PID: 56) booted in 0.13s, phase: 0 +[1] - Worker 11 (PID: 62) booted in 0.13s, phase: 0 +[1] - Worker 12 (PID: 67) booted in 0.13s, phase: 0 +[1] - Worker 13 (PID: 76) booted in 0.13s, phase: 0 [1] - Worker 14 (PID: 82) booted in 0.12s, phase: 0 [1] - Worker 15 (PID: 88) booted in 0.12s, phase: 0 -[1] - Worker 16 (PID: 94) booted in 0.11s, phase: 0 -[1] - Worker 17 (PID: 99) booted in 0.11s, phase: 0 -[1] - Worker 18 (PID: 105) booted in 0.11s, phase: 0 -[1] - Worker 19 (PID: 110) booted in 0.11s, phase: 0 -[1] - Worker 20 (PID: 116) booted in 0.11s, phase: 0 +[1] - Worker 16 (PID: 94) booted in 0.12s, phase: 0 +[1] - Worker 17 (PID: 99) booted in 0.12s, phase: 0 +[1] - Worker 18 (PID: 105) booted in 0.12s, phase: 0 +[1] - Worker 19 (PID: 110) booted in 0.12s, phase: 0 +[1] - Worker 20 (PID: 117) booted in 0.11s, phase: 0 [1] - Worker 21 (PID: 122) booted in 0.11s, phase: 0 -[1] - Worker 22 (PID: 127) booted in 0.1s, phase: 0 -[1] - Worker 23 (PID: 133) booted in 0.1s, phase: 0 -[1] - Worker 24 (PID: 138) booted in 0.1s, phase: 0 +[1] - Worker 22 (PID: 127) booted in 0.11s, phase: 0 +[1] - Worker 23 (PID: 134) booted in 0.11s, phase: 0 +[1] - Worker 24 (PID: 139) booted in 0.11s, phase: 0 [1] - Worker 25 (PID: 146) booted in 0.1s, phase: 0 [1] - Worker 26 (PID: 152) booted in 0.1s, phase: 0 [1] - Worker 27 (PID: 158) booted in 0.1s, phase: 0 -[1] - Worker 28 (PID: 163) booted in 0.09s, phase: 0 -[1] - Worker 29 (PID: 170) booted in 0.09s, phase: 0 -[1] - Worker 30 (PID: 179) booted in 0.09s, phase: 0 -[1] - Worker 31 (PID: 185) booted in 0.09s, phase: 0 -[1] - Worker 32 (PID: 191) booted in 0.08s, phase: 0 -[1] - Worker 33 (PID: 195) booted in 0.08s, phase: 0 -[1] - Worker 34 (PID: 201) booted in 0.08s, phase: 0 -[1] - Worker 35 (PID: 206) booted in 0.08s, phase: 0 -[1] - Worker 36 (PID: 212) booted in 0.08s, phase: 0 -[1] - Worker 37 (PID: 218) booted in 0.07s, phase: 0 -[1] - Worker 38 (PID: 223) booted in 0.07s, phase: 0 +[1] - Worker 28 (PID: 164) booted in 0.1s, phase: 0 +[1] - Worker 29 (PID: 171) booted in 0.09s, phase: 0 +[1] - Worker 30 (PID: 180) booted in 0.09s, phase: 0 +[1] - Worker 31 (PID: 186) booted in 0.09s, phase: 0 +[1] - Worker 32 (PID: 191) booted in 0.09s, phase: 0 +[1] - Worker 33 (PID: 196) booted in 0.08s, phase: 0 +[1] - Worker 34 (PID: 202) booted in 0.08s, phase: 0 +[1] - Worker 35 (PID: 207) booted in 0.08s, phase: 0 +[1] - Worker 36 (PID: 213) booted in 0.08s, phase: 0 +[1] - Worker 37 (PID: 218) booted in 0.08s, phase: 0 +[1] - Worker 38 (PID: 224) booted in 0.07s, phase: 0 [1] - Worker 39 (PID: 229) booted in 0.07s, phase: 0 [1] - Worker 40 (PID: 234) booted in 0.07s, phase: 0 [1] - Worker 41 (PID: 240) booted in 0.07s, phase: 0 -[1] - Worker 42 (PID: 246) booted in 0.06s, phase: 0 +[1] - Worker 42 (PID: 246) booted in 0.07s, phase: 0 [1] - Worker 43 (PID: 252) booted in 0.06s, phase: 0 [1] - Worker 44 (PID: 258) booted in 0.06s, phase: 0 [1] - Worker 45 (PID: 264) booted in 0.06s, phase: 0 [1] - Worker 46 (PID: 270) booted in 0.06s, phase: 0 -[1] - Worker 47 (PID: 276) booted in 0.05s, phase: 0 +[1] - Worker 47 (PID: 276) booted in 0.06s, phase: 0 [1] - Worker 48 (PID: 282) booted in 0.05s, phase: 0 [1] - Worker 49 (PID: 288) booted in 0.05s, phase: 0 [1] - Worker 50 (PID: 294) booted in 0.05s, phase: 0 [1] - Worker 51 (PID: 300) booted in 0.05s, phase: 0 [1] - Worker 52 (PID: 306) booted in 0.05s, phase: 0 [1] - Worker 53 (PID: 312) booted in 0.04s, phase: 0 -[1] - Worker 54 (PID: 318) booted in 0.04s, phase: 0 -[1] - Worker 55 (PID: 324) booted in 0.04s, phase: 0 -[1] - Worker 56 (PID: 330) booted in 0.04s, phase: 0 -[1] - Worker 57 (PID: 336) booted in 0.04s, phase: 0 -[1] - Worker 58 (PID: 342) booted in 0.03s, phase: 0 -[1] - Worker 59 (PID: 348) booted in 0.04s, phase: 0 +[1] - Worker 54 (PID: 319) booted in 0.04s, phase: 0 +[1] - Worker 55 (PID: 325) booted in 0.04s, phase: 0 +[1] - Worker 56 (PID: 331) booted in 0.04s, phase: 0 +[1] - Worker 57 (PID: 337) booted in 0.03s, phase: 0 +[1] - Worker 58 (PID: 343) booted in 0.03s, phase: 0 +[1] - Worker 59 (PID: 348) booted in 0.03s, phase: 0 [1] - Worker 60 (PID: 354) booted in 0.03s, phase: 0 -[1] - Worker 61 (PID: 360) booted in 0.03s, phase: 0 -[1] - Worker 62 (PID: 366) booted in 0.03s, phase: 0 -[1] - Worker 63 (PID: 372) booted in 0.03s, phase: 0 +[1] - Worker 61 (PID: 361) booted in 0.03s, phase: 0 +[1] - Worker 62 (PID: 366) booted in 0.02s, phase: 0 +[1] - Worker 63 (PID: 372) booted in 0.02s, phase: 0 diff --git a/site/static/logs/static/1024/rails.log b/site/static/logs/static/1024/rails.log index d2c4b44fc..f351fd9eb 100644 --- a/site/static/logs/static/1024/rails.log +++ b/site/static/logs/static/1024/rails.log @@ -17,67 +17,67 @@ [1] ! WARNING: Detected `RUBY_MN_THREADS=1` [1] ! This setting is known to cause performance regressions with Puma. [1] ! Consider disabling this environment variable: https://github.com/puma/puma/issues/3720 -[1] - Worker 0 (PID: 9) booted in 0.15s, phase: 0 +[1] - Worker 0 (PID: 9) booted in 0.16s, phase: 0 [1] - Worker 1 (PID: 13) booted in 0.15s, phase: 0 -[1] - Worker 2 (PID: 17) booted in 0.14s, phase: 0 -[1] - Worker 3 (PID: 21) booted in 0.14s, phase: 0 -[1] - Worker 4 (PID: 25) booted in 0.14s, phase: 0 -[1] - Worker 5 (PID: 29) booted in 0.14s, phase: 0 +[1] - Worker 2 (PID: 17) booted in 0.15s, phase: 0 +[1] - Worker 3 (PID: 21) booted in 0.15s, phase: 0 +[1] - Worker 4 (PID: 25) booted in 0.15s, phase: 0 +[1] - Worker 5 (PID: 29) booted in 0.15s, phase: 0 [1] - Worker 6 (PID: 34) booted in 0.14s, phase: 0 -[1] - Worker 7 (PID: 39) booted in 0.13s, phase: 0 -[1] - Worker 8 (PID: 44) booted in 0.13s, phase: 0 -[1] - Worker 9 (PID: 49) booted in 0.13s, phase: 0 -[1] - Worker 10 (PID: 55) booted in 0.13s, phase: 0 +[1] - Worker 7 (PID: 39) booted in 0.14s, phase: 0 +[1] - Worker 8 (PID: 44) booted in 0.14s, phase: 0 +[1] - Worker 9 (PID: 49) booted in 0.14s, phase: 0 +[1] - Worker 10 (PID: 55) booted in 0.14s, phase: 0 [1] - Worker 11 (PID: 61) booted in 0.13s, phase: 0 -[1] - Worker 12 (PID: 67) booted in 0.12s, phase: 0 -[1] - Worker 13 (PID: 76) booted in 0.12s, phase: 0 -[1] - Worker 14 (PID: 82) booted in 0.12s, phase: 0 +[1] - Worker 12 (PID: 66) booted in 0.13s, phase: 0 +[1] - Worker 13 (PID: 76) booted in 0.13s, phase: 0 +[1] - Worker 14 (PID: 82) booted in 0.13s, phase: 0 [1] - Worker 15 (PID: 88) booted in 0.12s, phase: 0 [1] - Worker 16 (PID: 94) booted in 0.12s, phase: 0 -[1] - Worker 17 (PID: 99) booted in 0.11s, phase: 0 -[1] - Worker 18 (PID: 105) booted in 0.11s, phase: 0 -[1] - Worker 19 (PID: 110) booted in 0.11s, phase: 0 -[1] - Worker 20 (PID: 116) booted in 0.11s, phase: 0 +[1] - Worker 17 (PID: 99) booted in 0.12s, phase: 0 +[1] - Worker 18 (PID: 105) booted in 0.12s, phase: 0 +[1] - Worker 19 (PID: 110) booted in 0.12s, phase: 0 +[1] - Worker 20 (PID: 116) booted in 0.12s, phase: 0 [1] - Worker 21 (PID: 122) booted in 0.11s, phase: 0 [1] - Worker 22 (PID: 127) booted in 0.11s, phase: 0 -[1] - Worker 23 (PID: 133) booted in 0.1s, phase: 0 -[1] - Worker 24 (PID: 138) booted in 0.1s, phase: 0 -[1] - Worker 25 (PID: 146) booted in 0.1s, phase: 0 +[1] - Worker 23 (PID: 133) booted in 0.11s, phase: 0 +[1] - Worker 24 (PID: 139) booted in 0.11s, phase: 0 +[1] - Worker 25 (PID: 146) booted in 0.11s, phase: 0 [1] - Worker 26 (PID: 152) booted in 0.1s, phase: 0 [1] - Worker 27 (PID: 158) booted in 0.1s, phase: 0 [1] - Worker 28 (PID: 164) booted in 0.1s, phase: 0 -[1] - Worker 29 (PID: 171) booted in 0.09s, phase: 0 -[1] - Worker 30 (PID: 180) booted in 0.09s, phase: 0 -[1] - Worker 31 (PID: 186) booted in 0.09s, phase: 0 -[1] - Worker 32 (PID: 191) booted in 0.08s, phase: 0 -[1] - Worker 33 (PID: 195) booted in 0.08s, phase: 0 -[1] - Worker 34 (PID: 202) booted in 0.08s, phase: 0 -[1] - Worker 35 (PID: 207) booted in 0.08s, phase: 0 +[1] - Worker 29 (PID: 171) booted in 0.1s, phase: 0 +[1] - Worker 30 (PID: 179) booted in 0.09s, phase: 0 +[1] - Worker 31 (PID: 185) booted in 0.09s, phase: 0 +[1] - Worker 32 (PID: 190) booted in 0.09s, phase: 0 +[1] - Worker 33 (PID: 195) booted in 0.09s, phase: 0 +[1] - Worker 34 (PID: 201) booted in 0.08s, phase: 0 +[1] - Worker 35 (PID: 206) booted in 0.08s, phase: 0 [1] - Worker 36 (PID: 212) booted in 0.08s, phase: 0 -[1] - Worker 37 (PID: 218) booted in 0.07s, phase: 0 -[1] - Worker 38 (PID: 223) booted in 0.07s, phase: 0 -[1] - Worker 39 (PID: 229) booted in 0.07s, phase: 0 -[1] - Worker 40 (PID: 234) booted in 0.07s, phase: 0 +[1] - Worker 37 (PID: 217) booted in 0.08s, phase: 0 +[1] - Worker 38 (PID: 222) booted in 0.08s, phase: 0 +[1] - Worker 39 (PID: 228) booted in 0.08s, phase: 0 +[1] - Worker 40 (PID: 233) booted in 0.07s, phase: 0 [1] - Worker 41 (PID: 240) booted in 0.07s, phase: 0 -[1] - Worker 42 (PID: 246) booted in 0.07s, phase: 0 -[1] - Worker 43 (PID: 252) booted in 0.06s, phase: 0 -[1] - Worker 44 (PID: 258) booted in 0.06s, phase: 0 -[1] - Worker 45 (PID: 264) booted in 0.06s, phase: 0 -[1] - Worker 46 (PID: 270) booted in 0.06s, phase: 0 -[1] - Worker 47 (PID: 276) booted in 0.06s, phase: 0 -[1] - Worker 48 (PID: 282) booted in 0.05s, phase: 0 +[1] - Worker 42 (PID: 245) booted in 0.07s, phase: 0 +[1] - Worker 43 (PID: 251) booted in 0.07s, phase: 0 +[1] - Worker 44 (PID: 257) booted in 0.06s, phase: 0 +[1] - Worker 45 (PID: 263) booted in 0.06s, phase: 0 +[1] - Worker 46 (PID: 269) booted in 0.06s, phase: 0 +[1] - Worker 47 (PID: 275) booted in 0.06s, phase: 0 +[1] - Worker 48 (PID: 281) booted in 0.06s, phase: 0 [1] - Worker 49 (PID: 288) booted in 0.05s, phase: 0 -[1] - Worker 50 (PID: 294) booted in 0.05s, phase: 0 -[1] - Worker 51 (PID: 300) booted in 0.05s, phase: 0 +[1] - Worker 50 (PID: 293) booted in 0.05s, phase: 0 +[1] - Worker 51 (PID: 299) booted in 0.05s, phase: 0 [1] - Worker 52 (PID: 306) booted in 0.05s, phase: 0 -[1] - Worker 53 (PID: 312) booted in 0.04s, phase: 0 +[1] - Worker 53 (PID: 311) booted in 0.05s, phase: 0 [1] - Worker 54 (PID: 318) booted in 0.04s, phase: 0 -[1] - Worker 55 (PID: 324) booted in 0.04s, phase: 0 -[1] - Worker 56 (PID: 330) booted in 0.04s, phase: 0 -[1] - Worker 57 (PID: 336) booted in 0.04s, phase: 0 -[1] - Worker 58 (PID: 342) booted in 0.03s, phase: 0 -[1] - Worker 59 (PID: 348) booted in 0.03s, phase: 0 +[1] - Worker 55 (PID: 323) booted in 0.04s, phase: 0 +[1] - Worker 56 (PID: 329) booted in 0.04s, phase: 0 +[1] - Worker 57 (PID: 335) booted in 0.04s, phase: 0 +[1] - Worker 58 (PID: 341) booted in 0.04s, phase: 0 +[1] - Worker 59 (PID: 347) booted in 0.03s, phase: 0 [1] - Worker 60 (PID: 353) booted in 0.03s, phase: 0 -[1] - Worker 61 (PID: 360) booted in 0.03s, phase: 0 +[1] - Worker 61 (PID: 359) booted in 0.03s, phase: 0 [1] - Worker 62 (PID: 366) booted in 0.03s, phase: 0 [1] - Worker 63 (PID: 372) booted in 0.02s, phase: 0 diff --git a/site/static/logs/static/4096/rails.log b/site/static/logs/static/4096/rails.log index 9d9a1fdb1..b20465151 100644 --- a/site/static/logs/static/4096/rails.log +++ b/site/static/logs/static/4096/rails.log @@ -17,67 +17,67 @@ [1] ! WARNING: Detected `RUBY_MN_THREADS=1` [1] ! This setting is known to cause performance regressions with Puma. [1] ! Consider disabling this environment variable: https://github.com/puma/puma/issues/3720 -[1] - Worker 0 (PID: 9) booted in 0.15s, phase: 0 +[1] - Worker 0 (PID: 9) booted in 0.16s, phase: 0 [1] - Worker 1 (PID: 13) booted in 0.15s, phase: 0 -[1] - Worker 2 (PID: 17) booted in 0.14s, phase: 0 -[1] - Worker 3 (PID: 21) booted in 0.14s, phase: 0 -[1] - Worker 4 (PID: 25) booted in 0.14s, phase: 0 -[1] - Worker 5 (PID: 29) booted in 0.14s, phase: 0 +[1] - Worker 2 (PID: 17) booted in 0.15s, phase: 0 +[1] - Worker 3 (PID: 21) booted in 0.15s, phase: 0 +[1] - Worker 4 (PID: 25) booted in 0.15s, phase: 0 +[1] - Worker 5 (PID: 29) booted in 0.15s, phase: 0 [1] - Worker 6 (PID: 34) booted in 0.14s, phase: 0 [1] - Worker 7 (PID: 39) booted in 0.14s, phase: 0 -[1] - Worker 8 (PID: 44) booted in 0.13s, phase: 0 -[1] - Worker 9 (PID: 49) booted in 0.13s, phase: 0 -[1] - Worker 10 (PID: 54) booted in 0.13s, phase: 0 -[1] - Worker 11 (PID: 60) booted in 0.13s, phase: 0 -[1] - Worker 12 (PID: 66) booted in 0.12s, phase: 0 -[1] - Worker 13 (PID: 74) booted in 0.12s, phase: 0 -[1] - Worker 14 (PID: 82) booted in 0.12s, phase: 0 +[1] - Worker 8 (PID: 44) booted in 0.14s, phase: 0 +[1] - Worker 9 (PID: 49) booted in 0.14s, phase: 0 +[1] - Worker 10 (PID: 55) booted in 0.14s, phase: 0 +[1] - Worker 11 (PID: 62) booted in 0.13s, phase: 0 +[1] - Worker 12 (PID: 67) booted in 0.13s, phase: 0 +[1] - Worker 13 (PID: 76) booted in 0.13s, phase: 0 +[1] - Worker 14 (PID: 82) booted in 0.13s, phase: 0 [1] - Worker 15 (PID: 88) booted in 0.12s, phase: 0 [1] - Worker 16 (PID: 94) booted in 0.12s, phase: 0 -[1] - Worker 17 (PID: 99) booted in 0.12s, phase: 0 -[1] - Worker 18 (PID: 105) booted in 0.11s, phase: 0 -[1] - Worker 19 (PID: 110) booted in 0.11s, phase: 0 -[1] - Worker 20 (PID: 116) booted in 0.11s, phase: 0 +[1] - Worker 17 (PID: 100) booted in 0.12s, phase: 0 +[1] - Worker 18 (PID: 105) booted in 0.12s, phase: 0 +[1] - Worker 19 (PID: 110) booted in 0.12s, phase: 0 +[1] - Worker 20 (PID: 116) booted in 0.12s, phase: 0 [1] - Worker 21 (PID: 122) booted in 0.11s, phase: 0 [1] - Worker 22 (PID: 127) booted in 0.11s, phase: 0 [1] - Worker 23 (PID: 133) booted in 0.11s, phase: 0 -[1] - Worker 24 (PID: 138) booted in 0.1s, phase: 0 -[1] - Worker 25 (PID: 146) booted in 0.1s, phase: 0 -[1] - Worker 26 (PID: 151) booted in 0.1s, phase: 0 -[1] - Worker 27 (PID: 157) booted in 0.1s, phase: 0 +[1] - Worker 24 (PID: 138) booted in 0.11s, phase: 0 +[1] - Worker 25 (PID: 146) booted in 0.11s, phase: 0 +[1] - Worker 26 (PID: 152) booted in 0.1s, phase: 0 +[1] - Worker 27 (PID: 158) booted in 0.1s, phase: 0 [1] - Worker 28 (PID: 164) booted in 0.1s, phase: 0 -[1] - Worker 29 (PID: 171) booted in 0.09s, phase: 0 +[1] - Worker 29 (PID: 171) booted in 0.1s, phase: 0 [1] - Worker 30 (PID: 179) booted in 0.09s, phase: 0 -[1] - Worker 31 (PID: 185) booted in 0.09s, phase: 0 -[1] - Worker 32 (PID: 191) booted in 0.08s, phase: 0 -[1] - Worker 33 (PID: 196) booted in 0.08s, phase: 0 -[1] - Worker 34 (PID: 202) booted in 0.08s, phase: 0 -[1] - Worker 35 (PID: 207) booted in 0.08s, phase: 0 -[1] - Worker 36 (PID: 213) booted in 0.08s, phase: 0 +[1] - Worker 31 (PID: 184) booted in 0.09s, phase: 0 +[1] - Worker 32 (PID: 190) booted in 0.09s, phase: 0 +[1] - Worker 33 (PID: 195) booted in 0.09s, phase: 0 +[1] - Worker 34 (PID: 201) booted in 0.08s, phase: 0 +[1] - Worker 35 (PID: 206) booted in 0.08s, phase: 0 +[1] - Worker 36 (PID: 212) booted in 0.08s, phase: 0 [1] - Worker 37 (PID: 218) booted in 0.08s, phase: 0 -[1] - Worker 38 (PID: 224) booted in 0.07s, phase: 0 -[1] - Worker 39 (PID: 229) booted in 0.07s, phase: 0 -[1] - Worker 40 (PID: 234) booted in 0.07s, phase: 0 -[1] - Worker 41 (PID: 240) booted in 0.07s, phase: 0 -[1] - Worker 42 (PID: 246) booted in 0.07s, phase: 0 -[1] - Worker 43 (PID: 252) booted in 0.06s, phase: 0 -[1] - Worker 44 (PID: 258) booted in 0.06s, phase: 0 -[1] - Worker 45 (PID: 264) booted in 0.06s, phase: 0 -[1] - Worker 46 (PID: 270) booted in 0.06s, phase: 0 -[1] - Worker 47 (PID: 276) booted in 0.06s, phase: 0 -[1] - Worker 48 (PID: 282) booted in 0.05s, phase: 0 -[1] - Worker 49 (PID: 288) booted in 0.05s, phase: 0 -[1] - Worker 50 (PID: 294) booted in 0.05s, phase: 0 -[1] - Worker 51 (PID: 300) booted in 0.05s, phase: 0 -[1] - Worker 52 (PID: 306) booted in 0.05s, phase: 0 -[1] - Worker 53 (PID: 312) booted in 0.04s, phase: 0 -[1] - Worker 54 (PID: 318) booted in 0.04s, phase: 0 -[1] - Worker 55 (PID: 324) booted in 0.04s, phase: 0 -[1] - Worker 56 (PID: 330) booted in 0.04s, phase: 0 -[1] - Worker 57 (PID: 336) booted in 0.04s, phase: 0 -[1] - Worker 58 (PID: 342) booted in 0.03s, phase: 0 -[1] - Worker 59 (PID: 348) booted in 0.04s, phase: 0 +[1] - Worker 38 (PID: 222) booted in 0.08s, phase: 0 +[1] - Worker 39 (PID: 228) booted in 0.08s, phase: 0 +[1] - Worker 40 (PID: 233) booted in 0.07s, phase: 0 +[1] - Worker 41 (PID: 239) booted in 0.07s, phase: 0 +[1] - Worker 42 (PID: 245) booted in 0.07s, phase: 0 +[1] - Worker 43 (PID: 251) booted in 0.07s, phase: 0 +[1] - Worker 44 (PID: 257) booted in 0.07s, phase: 0 +[1] - Worker 45 (PID: 263) booted in 0.06s, phase: 0 +[1] - Worker 46 (PID: 269) booted in 0.06s, phase: 0 +[1] - Worker 47 (PID: 275) booted in 0.06s, phase: 0 +[1] - Worker 48 (PID: 282) booted in 0.06s, phase: 0 +[1] - Worker 49 (PID: 287) booted in 0.05s, phase: 0 +[1] - Worker 50 (PID: 293) booted in 0.05s, phase: 0 +[1] - Worker 51 (PID: 299) booted in 0.05s, phase: 0 +[1] - Worker 52 (PID: 305) booted in 0.05s, phase: 0 +[1] - Worker 53 (PID: 311) booted in 0.05s, phase: 0 +[1] - Worker 54 (PID: 317) booted in 0.04s, phase: 0 +[1] - Worker 55 (PID: 323) booted in 0.04s, phase: 0 +[1] - Worker 56 (PID: 329) booted in 0.04s, phase: 0 +[1] - Worker 57 (PID: 335) booted in 0.04s, phase: 0 +[1] - Worker 58 (PID: 341) booted in 0.04s, phase: 0 +[1] - Worker 59 (PID: 348) booted in 0.03s, phase: 0 [1] - Worker 60 (PID: 354) booted in 0.03s, phase: 0 [1] - Worker 61 (PID: 360) booted in 0.03s, phase: 0 [1] - Worker 62 (PID: 366) booted in 0.03s, phase: 0 -[1] - Worker 63 (PID: 372) booted in 0.03s, phase: 0 +[1] - Worker 63 (PID: 371) booted in 0.02s, phase: 0 diff --git a/site/static/logs/static/6800/rails.log b/site/static/logs/static/6800/rails.log index e02f33b45..f94585fe8 100644 --- a/site/static/logs/static/6800/rails.log +++ b/site/static/logs/static/6800/rails.log @@ -17,67 +17,67 @@ [1] ! WARNING: Detected `RUBY_MN_THREADS=1` [1] ! This setting is known to cause performance regressions with Puma. [1] ! Consider disabling this environment variable: https://github.com/puma/puma/issues/3720 -[1] - Worker 0 (PID: 9) booted in 0.15s, phase: 0 -[1] - Worker 1 (PID: 13) booted in 0.15s, phase: 0 -[1] - Worker 2 (PID: 17) booted in 0.14s, phase: 0 -[1] - Worker 3 (PID: 21) booted in 0.14s, phase: 0 -[1] - Worker 4 (PID: 25) booted in 0.14s, phase: 0 -[1] - Worker 5 (PID: 29) booted in 0.14s, phase: 0 -[1] - Worker 6 (PID: 34) booted in 0.14s, phase: 0 -[1] - Worker 7 (PID: 39) booted in 0.13s, phase: 0 -[1] - Worker 8 (PID: 44) booted in 0.13s, phase: 0 -[1] - Worker 9 (PID: 49) booted in 0.13s, phase: 0 -[1] - Worker 10 (PID: 54) booted in 0.13s, phase: 0 -[1] - Worker 11 (PID: 60) booted in 0.13s, phase: 0 -[1] - Worker 12 (PID: 66) booted in 0.12s, phase: 0 -[1] - Worker 13 (PID: 74) booted in 0.12s, phase: 0 -[1] - Worker 14 (PID: 82) booted in 0.12s, phase: 0 -[1] - Worker 15 (PID: 88) booted in 0.12s, phase: 0 -[1] - Worker 16 (PID: 94) booted in 0.12s, phase: 0 -[1] - Worker 17 (PID: 99) booted in 0.11s, phase: 0 -[1] - Worker 18 (PID: 104) booted in 0.11s, phase: 0 -[1] - Worker 19 (PID: 110) booted in 0.11s, phase: 0 -[1] - Worker 20 (PID: 116) booted in 0.11s, phase: 0 -[1] - Worker 21 (PID: 122) booted in 0.11s, phase: 0 +[1] - Worker 0 (PID: 9) booted in 0.16s, phase: 0 +[1] - Worker 1 (PID: 13) booted in 0.16s, phase: 0 +[1] - Worker 2 (PID: 17) booted in 0.15s, phase: 0 +[1] - Worker 3 (PID: 21) booted in 0.15s, phase: 0 +[1] - Worker 4 (PID: 25) booted in 0.15s, phase: 0 +[1] - Worker 5 (PID: 29) booted in 0.15s, phase: 0 +[1] - Worker 6 (PID: 34) booted in 0.15s, phase: 0 +[1] - Worker 7 (PID: 39) booted in 0.14s, phase: 0 +[1] - Worker 8 (PID: 44) booted in 0.14s, phase: 0 +[1] - Worker 9 (PID: 49) booted in 0.14s, phase: 0 +[1] - Worker 10 (PID: 54) booted in 0.14s, phase: 0 +[1] - Worker 11 (PID: 61) booted in 0.14s, phase: 0 +[1] - Worker 12 (PID: 67) booted in 0.13s, phase: 0 +[1] - Worker 13 (PID: 75) booted in 0.13s, phase: 0 +[1] - Worker 14 (PID: 82) booted in 0.13s, phase: 0 +[1] - Worker 15 (PID: 88) booted in 0.13s, phase: 0 +[1] - Worker 16 (PID: 94) booted in 0.13s, phase: 0 +[1] - Worker 17 (PID: 99) booted in 0.12s, phase: 0 +[1] - Worker 18 (PID: 105) booted in 0.12s, phase: 0 +[1] - Worker 19 (PID: 110) booted in 0.12s, phase: 0 +[1] - Worker 20 (PID: 116) booted in 0.12s, phase: 0 +[1] - Worker 21 (PID: 122) booted in 0.12s, phase: 0 [1] - Worker 22 (PID: 127) booted in 0.11s, phase: 0 -[1] - Worker 23 (PID: 133) booted in 0.1s, phase: 0 -[1] - Worker 24 (PID: 138) booted in 0.1s, phase: 0 -[1] - Worker 25 (PID: 146) booted in 0.1s, phase: 0 -[1] - Worker 26 (PID: 152) booted in 0.1s, phase: 0 +[1] - Worker 23 (PID: 133) booted in 0.11s, phase: 0 +[1] - Worker 24 (PID: 139) booted in 0.11s, phase: 0 +[1] - Worker 25 (PID: 146) booted in 0.11s, phase: 0 +[1] - Worker 26 (PID: 152) booted in 0.11s, phase: 0 [1] - Worker 27 (PID: 158) booted in 0.1s, phase: 0 -[1] - Worker 28 (PID: 164) booted in 0.09s, phase: 0 -[1] - Worker 29 (PID: 171) booted in 0.09s, phase: 0 -[1] - Worker 30 (PID: 179) booted in 0.09s, phase: 0 +[1] - Worker 28 (PID: 164) booted in 0.1s, phase: 0 +[1] - Worker 29 (PID: 171) booted in 0.1s, phase: 0 +[1] - Worker 30 (PID: 180) booted in 0.1s, phase: 0 [1] - Worker 31 (PID: 185) booted in 0.09s, phase: 0 -[1] - Worker 32 (PID: 191) booted in 0.08s, phase: 0 -[1] - Worker 33 (PID: 195) booted in 0.08s, phase: 0 -[1] - Worker 34 (PID: 202) booted in 0.08s, phase: 0 +[1] - Worker 32 (PID: 190) booted in 0.09s, phase: 0 +[1] - Worker 33 (PID: 195) booted in 0.09s, phase: 0 +[1] - Worker 34 (PID: 201) booted in 0.09s, phase: 0 [1] - Worker 35 (PID: 206) booted in 0.08s, phase: 0 -[1] - Worker 36 (PID: 213) booted in 0.08s, phase: 0 -[1] - Worker 37 (PID: 218) booted in 0.07s, phase: 0 -[1] - Worker 38 (PID: 223) booted in 0.07s, phase: 0 -[1] - Worker 39 (PID: 229) booted in 0.07s, phase: 0 -[1] - Worker 40 (PID: 234) booted in 0.07s, phase: 0 -[1] - Worker 41 (PID: 240) booted in 0.07s, phase: 0 -[1] - Worker 42 (PID: 246) booted in 0.06s, phase: 0 -[1] - Worker 43 (PID: 252) booted in 0.06s, phase: 0 -[1] - Worker 44 (PID: 258) booted in 0.06s, phase: 0 -[1] - Worker 45 (PID: 264) booted in 0.06s, phase: 0 -[1] - Worker 46 (PID: 270) booted in 0.06s, phase: 0 -[1] - Worker 47 (PID: 276) booted in 0.05s, phase: 0 -[1] - Worker 48 (PID: 282) booted in 0.05s, phase: 0 -[1] - Worker 49 (PID: 288) booted in 0.05s, phase: 0 -[1] - Worker 50 (PID: 294) booted in 0.05s, phase: 0 -[1] - Worker 51 (PID: 300) booted in 0.05s, phase: 0 -[1] - Worker 52 (PID: 306) booted in 0.04s, phase: 0 -[1] - Worker 53 (PID: 312) booted in 0.04s, phase: 0 -[1] - Worker 54 (PID: 318) booted in 0.04s, phase: 0 -[1] - Worker 55 (PID: 324) booted in 0.04s, phase: 0 -[1] - Worker 56 (PID: 330) booted in 0.04s, phase: 0 -[1] - Worker 57 (PID: 336) booted in 0.03s, phase: 0 +[1] - Worker 36 (PID: 212) booted in 0.08s, phase: 0 +[1] - Worker 37 (PID: 217) booted in 0.08s, phase: 0 +[1] - Worker 38 (PID: 223) booted in 0.08s, phase: 0 +[1] - Worker 39 (PID: 228) booted in 0.08s, phase: 0 +[1] - Worker 40 (PID: 233) booted in 0.08s, phase: 0 +[1] - Worker 41 (PID: 239) booted in 0.07s, phase: 0 +[1] - Worker 42 (PID: 245) booted in 0.07s, phase: 0 +[1] - Worker 43 (PID: 251) booted in 0.07s, phase: 0 +[1] - Worker 44 (PID: 257) booted in 0.07s, phase: 0 +[1] - Worker 45 (PID: 263) booted in 0.06s, phase: 0 +[1] - Worker 46 (PID: 269) booted in 0.06s, phase: 0 +[1] - Worker 47 (PID: 275) booted in 0.06s, phase: 0 +[1] - Worker 48 (PID: 281) booted in 0.06s, phase: 0 +[1] - Worker 49 (PID: 288) booted in 0.06s, phase: 0 +[1] - Worker 50 (PID: 293) booted in 0.05s, phase: 0 +[1] - Worker 51 (PID: 299) booted in 0.05s, phase: 0 +[1] - Worker 52 (PID: 305) booted in 0.05s, phase: 0 +[1] - Worker 53 (PID: 314) booted in 0.04s, phase: 0 +[1] - Worker 54 (PID: 321) booted in 0.04s, phase: 0 +[1] - Worker 55 (PID: 326) booted in 0.04s, phase: 0 +[1] - Worker 56 (PID: 332) booted in 0.04s, phase: 0 +[1] - Worker 57 (PID: 338) booted in 0.04s, phase: 0 [1] - Worker 58 (PID: 342) booted in 0.03s, phase: 0 -[1] - Worker 59 (PID: 348) booted in 0.04s, phase: 0 +[1] - Worker 59 (PID: 348) booted in 0.03s, phase: 0 [1] - Worker 60 (PID: 354) booted in 0.03s, phase: 0 [1] - Worker 61 (PID: 360) booted in 0.03s, phase: 0 [1] - Worker 62 (PID: 366) booted in 0.03s, phase: 0 -[1] - Worker 63 (PID: 372) booted in 0.03s, phase: 0 +[1] - Worker 63 (PID: 371) booted in 0.02s, phase: 0 diff --git a/site/static/logs/upload/256/rails.log b/site/static/logs/upload/256/rails.log index 0836c2609..788d2c78e 100644 --- a/site/static/logs/upload/256/rails.log +++ b/site/static/logs/upload/256/rails.log @@ -17,67 +17,67 @@ [1] ! WARNING: Detected `RUBY_MN_THREADS=1` [1] ! This setting is known to cause performance regressions with Puma. [1] ! Consider disabling this environment variable: https://github.com/puma/puma/issues/3720 -[1] - Worker 0 (PID: 9) booted in 0.15s, phase: 0 -[1] - Worker 1 (PID: 13) booted in 0.15s, phase: 0 +[1] - Worker 0 (PID: 9) booted in 0.16s, phase: 0 +[1] - Worker 1 (PID: 13) booted in 0.16s, phase: 0 [1] - Worker 2 (PID: 17) booted in 0.15s, phase: 0 -[1] - Worker 3 (PID: 21) booted in 0.14s, phase: 0 -[1] - Worker 4 (PID: 25) booted in 0.14s, phase: 0 -[1] - Worker 5 (PID: 29) booted in 0.14s, phase: 0 -[1] - Worker 6 (PID: 34) booted in 0.14s, phase: 0 +[1] - Worker 3 (PID: 21) booted in 0.15s, phase: 0 +[1] - Worker 4 (PID: 25) booted in 0.15s, phase: 0 +[1] - Worker 5 (PID: 29) booted in 0.15s, phase: 0 +[1] - Worker 6 (PID: 34) booted in 0.15s, phase: 0 [1] - Worker 7 (PID: 39) booted in 0.14s, phase: 0 -[1] - Worker 8 (PID: 44) booted in 0.13s, phase: 0 -[1] - Worker 9 (PID: 49) booted in 0.13s, phase: 0 -[1] - Worker 10 (PID: 54) booted in 0.13s, phase: 0 -[1] - Worker 11 (PID: 60) booted in 0.13s, phase: 0 -[1] - Worker 12 (PID: 66) booted in 0.13s, phase: 0 -[1] - Worker 13 (PID: 74) booted in 0.12s, phase: 0 -[1] - Worker 14 (PID: 82) booted in 0.12s, phase: 0 -[1] - Worker 15 (PID: 88) booted in 0.12s, phase: 0 -[1] - Worker 16 (PID: 94) booted in 0.12s, phase: 0 -[1] - Worker 17 (PID: 99) booted in 0.12s, phase: 0 -[1] - Worker 18 (PID: 105) booted in 0.12s, phase: 0 -[1] - Worker 19 (PID: 110) booted in 0.11s, phase: 0 -[1] - Worker 20 (PID: 116) booted in 0.11s, phase: 0 -[1] - Worker 21 (PID: 122) booted in 0.11s, phase: 0 -[1] - Worker 22 (PID: 127) booted in 0.11s, phase: 0 -[1] - Worker 23 (PID: 134) booted in 0.11s, phase: 0 -[1] - Worker 24 (PID: 138) booted in 0.1s, phase: 0 -[1] - Worker 25 (PID: 146) booted in 0.1s, phase: 0 +[1] - Worker 8 (PID: 44) booted in 0.14s, phase: 0 +[1] - Worker 9 (PID: 49) booted in 0.14s, phase: 0 +[1] - Worker 10 (PID: 55) booted in 0.14s, phase: 0 +[1] - Worker 11 (PID: 61) booted in 0.14s, phase: 0 +[1] - Worker 12 (PID: 67) booted in 0.13s, phase: 0 +[1] - Worker 13 (PID: 75) booted in 0.13s, phase: 0 +[1] - Worker 14 (PID: 82) booted in 0.13s, phase: 0 +[1] - Worker 15 (PID: 88) booted in 0.13s, phase: 0 +[1] - Worker 16 (PID: 95) booted in 0.12s, phase: 0 +[1] - Worker 17 (PID: 100) booted in 0.12s, phase: 0 +[1] - Worker 18 (PID: 106) booted in 0.12s, phase: 0 +[1] - Worker 19 (PID: 112) booted in 0.12s, phase: 0 +[1] - Worker 20 (PID: 117) booted in 0.12s, phase: 0 +[1] - Worker 21 (PID: 122) booted in 0.12s, phase: 0 +[1] - Worker 22 (PID: 128) booted in 0.11s, phase: 0 +[1] - Worker 23 (PID: 133) booted in 0.11s, phase: 0 +[1] - Worker 24 (PID: 139) booted in 0.11s, phase: 0 +[1] - Worker 25 (PID: 146) booted in 0.11s, phase: 0 [1] - Worker 26 (PID: 152) booted in 0.1s, phase: 0 [1] - Worker 27 (PID: 158) booted in 0.1s, phase: 0 [1] - Worker 28 (PID: 164) booted in 0.1s, phase: 0 -[1] - Worker 29 (PID: 171) booted in 0.09s, phase: 0 +[1] - Worker 29 (PID: 171) booted in 0.1s, phase: 0 [1] - Worker 30 (PID: 179) booted in 0.09s, phase: 0 -[1] - Worker 31 (PID: 186) booted in 0.09s, phase: 0 -[1] - Worker 32 (PID: 191) booted in 0.09s, phase: 0 -[1] - Worker 33 (PID: 197) booted in 0.08s, phase: 0 -[1] - Worker 34 (PID: 202) booted in 0.08s, phase: 0 -[1] - Worker 35 (PID: 208) booted in 0.08s, phase: 0 -[1] - Worker 36 (PID: 213) booted in 0.08s, phase: 0 -[1] - Worker 37 (PID: 218) booted in 0.08s, phase: 0 -[1] - Worker 38 (PID: 224) booted in 0.07s, phase: 0 -[1] - Worker 39 (PID: 229) booted in 0.07s, phase: 0 -[1] - Worker 40 (PID: 235) booted in 0.07s, phase: 0 -[1] - Worker 41 (PID: 240) booted in 0.07s, phase: 0 -[1] - Worker 42 (PID: 246) booted in 0.07s, phase: 0 -[1] - Worker 43 (PID: 252) booted in 0.06s, phase: 0 -[1] - Worker 44 (PID: 258) booted in 0.06s, phase: 0 +[1] - Worker 31 (PID: 184) booted in 0.09s, phase: 0 +[1] - Worker 32 (PID: 190) booted in 0.09s, phase: 0 +[1] - Worker 33 (PID: 195) booted in 0.09s, phase: 0 +[1] - Worker 34 (PID: 201) booted in 0.09s, phase: 0 +[1] - Worker 35 (PID: 206) booted in 0.08s, phase: 0 +[1] - Worker 36 (PID: 212) booted in 0.08s, phase: 0 +[1] - Worker 37 (PID: 217) booted in 0.08s, phase: 0 +[1] - Worker 38 (PID: 222) booted in 0.08s, phase: 0 +[1] - Worker 39 (PID: 229) booted in 0.08s, phase: 0 +[1] - Worker 40 (PID: 233) booted in 0.07s, phase: 0 +[1] - Worker 41 (PID: 239) booted in 0.07s, phase: 0 +[1] - Worker 42 (PID: 245) booted in 0.07s, phase: 0 +[1] - Worker 43 (PID: 251) booted in 0.07s, phase: 0 +[1] - Worker 44 (PID: 258) booted in 0.07s, phase: 0 [1] - Worker 45 (PID: 264) booted in 0.06s, phase: 0 [1] - Worker 46 (PID: 270) booted in 0.06s, phase: 0 -[1] - Worker 47 (PID: 276) booted in 0.06s, phase: 0 -[1] - Worker 48 (PID: 282) booted in 0.05s, phase: 0 -[1] - Worker 49 (PID: 288) booted in 0.05s, phase: 0 -[1] - Worker 50 (PID: 294) booted in 0.05s, phase: 0 +[1] - Worker 47 (PID: 275) booted in 0.06s, phase: 0 +[1] - Worker 48 (PID: 282) booted in 0.06s, phase: 0 +[1] - Worker 49 (PID: 289) booted in 0.05s, phase: 0 +[1] - Worker 50 (PID: 293) booted in 0.05s, phase: 0 [1] - Worker 51 (PID: 300) booted in 0.05s, phase: 0 -[1] - Worker 52 (PID: 306) booted in 0.05s, phase: 0 -[1] - Worker 53 (PID: 312) booted in 0.04s, phase: 0 -[1] - Worker 54 (PID: 318) booted in 0.04s, phase: 0 -[1] - Worker 55 (PID: 324) booted in 0.04s, phase: 0 -[1] - Worker 56 (PID: 330) booted in 0.04s, phase: 0 -[1] - Worker 57 (PID: 336) booted in 0.04s, phase: 0 -[1] - Worker 58 (PID: 342) booted in 0.03s, phase: 0 +[1] - Worker 52 (PID: 307) booted in 0.05s, phase: 0 +[1] - Worker 53 (PID: 312) booted in 0.05s, phase: 0 +[1] - Worker 54 (PID: 317) booted in 0.04s, phase: 0 +[1] - Worker 55 (PID: 323) booted in 0.04s, phase: 0 +[1] - Worker 56 (PID: 329) booted in 0.04s, phase: 0 +[1] - Worker 57 (PID: 335) booted in 0.04s, phase: 0 +[1] - Worker 58 (PID: 341) booted in 0.04s, phase: 0 [1] - Worker 59 (PID: 348) booted in 0.03s, phase: 0 -[1] - Worker 60 (PID: 354) booted in 0.04s, phase: 0 +[1] - Worker 60 (PID: 354) booted in 0.03s, phase: 0 [1] - Worker 61 (PID: 360) booted in 0.03s, phase: 0 [1] - Worker 62 (PID: 366) booted in 0.03s, phase: 0 -[1] - Worker 63 (PID: 372) booted in 0.03s, phase: 0 +[1] - Worker 63 (PID: 372) booted in 0.02s, phase: 0 diff --git a/site/static/logs/upload/32/rails.log b/site/static/logs/upload/32/rails.log index e365ee1df..99cede908 100644 --- a/site/static/logs/upload/32/rails.log +++ b/site/static/logs/upload/32/rails.log @@ -20,64 +20,64 @@ [1] - Worker 0 (PID: 9) booted in 0.15s, phase: 0 [1] - Worker 1 (PID: 13) booted in 0.15s, phase: 0 [1] - Worker 2 (PID: 17) booted in 0.15s, phase: 0 -[1] - Worker 3 (PID: 21) booted in 0.14s, phase: 0 -[1] - Worker 4 (PID: 25) booted in 0.14s, phase: 0 +[1] - Worker 3 (PID: 21) booted in 0.15s, phase: 0 +[1] - Worker 4 (PID: 25) booted in 0.15s, phase: 0 [1] - Worker 5 (PID: 29) booted in 0.14s, phase: 0 [1] - Worker 6 (PID: 34) booted in 0.14s, phase: 0 [1] - Worker 7 (PID: 39) booted in 0.14s, phase: 0 -[1] - Worker 8 (PID: 44) booted in 0.13s, phase: 0 -[1] - Worker 9 (PID: 49) booted in 0.13s, phase: 0 +[1] - Worker 8 (PID: 44) booted in 0.14s, phase: 0 +[1] - Worker 9 (PID: 49) booted in 0.14s, phase: 0 [1] - Worker 10 (PID: 54) booted in 0.13s, phase: 0 -[1] - Worker 11 (PID: 60) booted in 0.13s, phase: 0 -[1] - Worker 12 (PID: 66) booted in 0.12s, phase: 0 -[1] - Worker 13 (PID: 74) booted in 0.12s, phase: 0 +[1] - Worker 11 (PID: 62) booted in 0.13s, phase: 0 +[1] - Worker 12 (PID: 67) booted in 0.13s, phase: 0 +[1] - Worker 13 (PID: 76) booted in 0.13s, phase: 0 [1] - Worker 14 (PID: 82) booted in 0.12s, phase: 0 [1] - Worker 15 (PID: 88) booted in 0.12s, phase: 0 [1] - Worker 16 (PID: 94) booted in 0.12s, phase: 0 [1] - Worker 17 (PID: 99) booted in 0.12s, phase: 0 -[1] - Worker 18 (PID: 105) booted in 0.11s, phase: 0 -[1] - Worker 19 (PID: 110) booted in 0.11s, phase: 0 -[1] - Worker 20 (PID: 116) booted in 0.11s, phase: 0 +[1] - Worker 18 (PID: 105) booted in 0.12s, phase: 0 +[1] - Worker 19 (PID: 110) booted in 0.12s, phase: 0 +[1] - Worker 20 (PID: 116) booted in 0.12s, phase: 0 [1] - Worker 21 (PID: 122) booted in 0.11s, phase: 0 [1] - Worker 22 (PID: 127) booted in 0.11s, phase: 0 [1] - Worker 23 (PID: 133) booted in 0.11s, phase: 0 -[1] - Worker 24 (PID: 138) booted in 0.1s, phase: 0 +[1] - Worker 24 (PID: 139) booted in 0.11s, phase: 0 [1] - Worker 25 (PID: 146) booted in 0.1s, phase: 0 [1] - Worker 26 (PID: 152) booted in 0.1s, phase: 0 [1] - Worker 27 (PID: 158) booted in 0.1s, phase: 0 [1] - Worker 28 (PID: 164) booted in 0.1s, phase: 0 [1] - Worker 29 (PID: 171) booted in 0.09s, phase: 0 -[1] - Worker 30 (PID: 179) booted in 0.09s, phase: 0 -[1] - Worker 31 (PID: 185) booted in 0.09s, phase: 0 -[1] - Worker 32 (PID: 191) booted in 0.08s, phase: 0 -[1] - Worker 33 (PID: 195) booted in 0.08s, phase: 0 +[1] - Worker 30 (PID: 180) booted in 0.09s, phase: 0 +[1] - Worker 31 (PID: 186) booted in 0.09s, phase: 0 +[1] - Worker 32 (PID: 191) booted in 0.09s, phase: 0 +[1] - Worker 33 (PID: 196) booted in 0.09s, phase: 0 [1] - Worker 34 (PID: 202) booted in 0.08s, phase: 0 [1] - Worker 35 (PID: 207) booted in 0.08s, phase: 0 [1] - Worker 36 (PID: 213) booted in 0.08s, phase: 0 -[1] - Worker 37 (PID: 218) booted in 0.07s, phase: 0 -[1] - Worker 38 (PID: 225) booted in 0.07s, phase: 0 +[1] - Worker 37 (PID: 218) booted in 0.08s, phase: 0 +[1] - Worker 38 (PID: 225) booted in 0.08s, phase: 0 [1] - Worker 39 (PID: 230) booted in 0.07s, phase: 0 -[1] - Worker 40 (PID: 235) booted in 0.07s, phase: 0 -[1] - Worker 41 (PID: 241) booted in 0.07s, phase: 0 -[1] - Worker 42 (PID: 247) booted in 0.06s, phase: 0 -[1] - Worker 43 (PID: 253) booted in 0.06s, phase: 0 +[1] - Worker 40 (PID: 236) booted in 0.07s, phase: 0 +[1] - Worker 41 (PID: 242) booted in 0.07s, phase: 0 +[1] - Worker 42 (PID: 247) booted in 0.07s, phase: 0 +[1] - Worker 43 (PID: 253) booted in 0.07s, phase: 0 [1] - Worker 44 (PID: 259) booted in 0.06s, phase: 0 -[1] - Worker 45 (PID: 264) booted in 0.06s, phase: 0 -[1] - Worker 46 (PID: 270) booted in 0.06s, phase: 0 -[1] - Worker 47 (PID: 276) booted in 0.05s, phase: 0 +[1] - Worker 45 (PID: 265) booted in 0.06s, phase: 0 +[1] - Worker 46 (PID: 271) booted in 0.06s, phase: 0 +[1] - Worker 47 (PID: 277) booted in 0.06s, phase: 0 [1] - Worker 48 (PID: 282) booted in 0.05s, phase: 0 [1] - Worker 49 (PID: 288) booted in 0.05s, phase: 0 [1] - Worker 50 (PID: 294) booted in 0.05s, phase: 0 [1] - Worker 51 (PID: 300) booted in 0.05s, phase: 0 -[1] - Worker 52 (PID: 306) booted in 0.04s, phase: 0 +[1] - Worker 52 (PID: 306) booted in 0.05s, phase: 0 [1] - Worker 53 (PID: 312) booted in 0.04s, phase: 0 [1] - Worker 54 (PID: 318) booted in 0.04s, phase: 0 [1] - Worker 55 (PID: 324) booted in 0.04s, phase: 0 [1] - Worker 56 (PID: 330) booted in 0.04s, phase: 0 -[1] - Worker 57 (PID: 336) booted in 0.03s, phase: 0 +[1] - Worker 57 (PID: 336) booted in 0.04s, phase: 0 [1] - Worker 58 (PID: 342) booted in 0.03s, phase: 0 -[1] - Worker 59 (PID: 348) booted in 0.04s, phase: 0 +[1] - Worker 59 (PID: 348) booted in 0.03s, phase: 0 [1] - Worker 60 (PID: 354) booted in 0.03s, phase: 0 [1] - Worker 61 (PID: 360) booted in 0.03s, phase: 0 [1] - Worker 62 (PID: 366) booted in 0.03s, phase: 0 -[1] - Worker 63 (PID: 372) booted in 0.03s, phase: 0 +[1] - Worker 63 (PID: 372) booted in 0.02s, phase: 0