-
Notifications
You must be signed in to change notification settings - Fork 114
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch to poll-based ConnectionPool.get_connection_metrics implementa…
…tion
- Loading branch information
Gleb Ivanov
committed
May 22, 2024
1 parent
69fd868
commit 5c7808b
Showing
4 changed files
with
202 additions
and
197 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,169 @@ | ||
defmodule TestPoolMetrics do | ||
use ExUnit.Case, async: true | ||
|
||
alias TestPool, as: P | ||
alias TestAgent, as: A | ||
alias TestQuery, as: Q | ||
alias TestResult, as: R | ||
|
||
test "considers checkin/checkout in metrics when ready" do | ||
stack = [ | ||
{:ok, :state}, | ||
fn _, _, _, _ -> | ||
receive do | ||
:continue -> {:ok, %Q{}, %R{}, :state} | ||
end | ||
end | ||
] | ||
|
||
{:ok, agent} = A.start_link(stack) | ||
{:ok, pool} = P.start_link(agent: agent, parent: self()) | ||
|
||
poll(fn -> | ||
assert %{checkout_queue_length: 0, ready_conn_count: 1} = P.get_connection_metrics(pool) | ||
end) | ||
|
||
query = | ||
spawn_link(fn -> | ||
Process.put(:agent, agent) | ||
P.execute(pool, %Q{}, [:client]) | ||
end) | ||
|
||
poll(fn -> | ||
assert %{checkout_queue_length: 0, ready_conn_count: 0} = P.get_connection_metrics(pool) | ||
end) | ||
|
||
send(query, :continue) | ||
|
||
poll(fn -> | ||
assert %{checkout_queue_length: 0, ready_conn_count: 1} = P.get_connection_metrics(pool) | ||
end) | ||
|
||
assert [ | ||
connect: [_], | ||
handle_execute: [%Q{}, [:client], _, :state] | ||
] = A.record(agent) | ||
end | ||
|
||
test "considers idle connections on idle timeout in metrics" do | ||
stack = [ | ||
{:ok, :state}, | ||
{:ok, :state} | ||
] | ||
|
||
idle_interval = 100 | ||
|
||
{:ok, agent} = A.start_link(stack) | ||
{:ok, pool} = P.start_link(agent: agent, parent: self(), idle_interval: idle_interval) | ||
|
||
poll(fn -> | ||
assert %{checkout_queue_length: 0, ready_conn_count: 1} = P.get_connection_metrics(pool) | ||
end) | ||
|
||
:timer.sleep(idle_interval) | ||
|
||
poll(fn -> | ||
assert %{checkout_queue_length: 0, ready_conn_count: 1} = P.get_connection_metrics(pool) | ||
end) | ||
|
||
assert [ | ||
connect: [_], | ||
ping: [:state] | ||
] = A.record(agent) | ||
end | ||
|
||
test "considers enqueue/dequeue in metrics when busy" do | ||
stack = [ | ||
{:ok, :state}, | ||
{:ok, :state}, | ||
fn _, _, _, _ -> | ||
receive do | ||
:continue -> {:ok, %Q{}, %R{}, :state} | ||
end | ||
end, | ||
fn _, _, _, _ -> | ||
receive do | ||
:continue -> {:ok, %Q{}, %R{}, :state} | ||
end | ||
end, | ||
fn _, _, _, _ -> | ||
receive do | ||
:continue -> {:ok, %Q{}, %R{}, :state} | ||
end | ||
end | ||
] | ||
|
||
{:ok, agent} = A.start_link(stack) | ||
{:ok, pool} = P.start_link(agent: agent, parent: self(), pool_size: 2) | ||
|
||
poll(fn -> | ||
assert %{checkout_queue_length: 0, ready_conn_count: 2} = P.get_connection_metrics(pool) | ||
end) | ||
|
||
run_query = fn -> | ||
spawn_link(fn -> | ||
Process.put(:agent, agent) | ||
assert P.execute(pool, %Q{}, [:client]) | ||
end) | ||
end | ||
|
||
queries = [run_query.()] | ||
|
||
poll(fn -> | ||
assert %{checkout_queue_length: 0, ready_conn_count: 1} = P.get_connection_metrics(pool) | ||
end) | ||
|
||
queries = [run_query.() | queries] | ||
|
||
poll(fn -> | ||
assert %{checkout_queue_length: 0, ready_conn_count: 0} = P.get_connection_metrics(pool) | ||
end) | ||
|
||
queries = [run_query.() | queries] | ||
|
||
poll(fn -> | ||
assert %{checkout_queue_length: 1, ready_conn_count: 0} = P.get_connection_metrics(pool) | ||
end) | ||
|
||
[query3, query2, query1] = queries | ||
send(query1, :continue) | ||
|
||
poll(fn -> | ||
assert %{checkout_queue_length: 0, ready_conn_count: 0} = P.get_connection_metrics(pool) | ||
end) | ||
|
||
send(query2, :continue) | ||
|
||
poll(fn -> | ||
assert %{checkout_queue_length: 0, ready_conn_count: 1} = P.get_connection_metrics(pool) | ||
end) | ||
|
||
send(query3, :continue) | ||
|
||
poll(fn -> | ||
assert %{checkout_queue_length: 0, ready_conn_count: 2} = P.get_connection_metrics(pool) | ||
end) | ||
|
||
assert [ | ||
connect: [_], | ||
connect: [_], | ||
handle_execute: [%Q{}, [:client], _, :state], | ||
handle_execute: [%Q{}, [:client], _, :state], | ||
handle_execute: [%Q{}, [:client], _, :state] | ||
] = A.record(agent) | ||
end | ||
|
||
def poll(fun, attempts \\ 5) do | ||
try do | ||
fun.() | ||
rescue | ||
e -> | ||
if attempts > 0 do | ||
:timer.sleep(50) | ||
poll(fun, attempts - 1) | ||
else | ||
reraise e, __STACKTRACE__ | ||
end | ||
end | ||
end | ||
end |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.