Skip to content

Commit

Permalink
Improve absinthe batch logging, add useful information on what module…
Browse files Browse the repository at this point in the history
…, what function with what parameters is failing when timeout occures

Instead of calling Task.await/2 which kills process after timeout has expired, use Task.yield/2, if it timeouts, kill task and log which function failed to resolve, after which we continue to act like Task.await and kill calling process (self).
  • Loading branch information
VladoPlavsic committed Feb 14, 2024
1 parent b2d68df commit 468294b
Show file tree
Hide file tree
Showing 2 changed files with 61 additions and 9 deletions.
31 changes: 22 additions & 9 deletions lib/absinthe/middleware/batch.ex
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@ defmodule Absinthe.Middleware.Batch do
@behaviour Absinthe.Middleware
@behaviour Absinthe.Plugin

require Logger

@typedoc """
The function to be called with the aggregate batch information.
Expand Down Expand Up @@ -143,18 +145,29 @@ defmodule Absinthe.Middleware.Batch do

metadata = emit_start_event(system_time, batch_fun, batch_opts, batch_data)

{batch_opts, task, start_time_mono, metadata}
{batch_opts, task, start_time_mono, metadata, batch_fun}
end)
|> Map.new(fn {batch_opts, task, start_time_mono, metadata} ->
timeout = Keyword.get(batch_opts, :timeout, 5_000)
result = Task.await(task, timeout)
|> Map.new(&yield_batching_result/1)
end

end_time_mono = System.monotonic_time()
duration = end_time_mono - start_time_mono
emit_stop_event(duration, end_time_mono, metadata, result)
defp yield_batching_result({batch_opts, task, start_time_mono, metadata, batch_fun}) do
timeout = Keyword.get(batch_opts, :timeout, 5_000)

result
end)
case Task.yield(task, timeout) || Task.shutdown(task) do
{:ok, result} ->
end_time_mono = System.monotonic_time()
duration = end_time_mono - start_time_mono
emit_stop_event(duration, end_time_mono, metadata, result)

result

_ ->
Logger.error(
"Failed to get batching result in #{timeout}ms for\nfn: #{inspect(batch_fun)}"
)

Process.exit(self(), :timeout)
end
end

@batch_start [:absinthe, :middleware, :batch, :start]
Expand Down
39 changes: 39 additions & 0 deletions test/absinthe/middleware/batch_test.exs
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
defmodule Absinthe.Middleware.BatchTest do
use Absinthe.Case, async: true

import ExUnit.CaptureLog

defmodule TimeoutModule do
def arbitrary_fn_name(_, _) do
:timer.sleep(2000)
end
end

defmodule Schema do
use Absinthe.Schema

Expand Down Expand Up @@ -60,6 +68,17 @@ defmodule Absinthe.Middleware.BatchTest do
end)
end
end

field :timeout, :string do
resolve fn _, _, _ ->
batch(
{TimeoutModule, :arbitrary_fn_name, %{arbitrary: :data}},
nil,
fn batch -> {:ok, batch} end,
timeout: 1
)
end
end
end

def by_id(_, ids) do
Expand Down Expand Up @@ -150,4 +169,24 @@ defmodule Absinthe.Middleware.BatchTest do

assert {:ok, %{data: %{"ctx" => "some_value"}}} == Absinthe.run(doc, Schema)
end

test "when batch task timeouts it logs batching options" do
doc = """
{timeout}
"""

assert capture_log(fn ->
pid =
spawn(fn ->
Absinthe.run(doc, Schema)
end)

wait_for_process_to_exit(pid)
end) =~ "fn: {Absinthe.Middleware.BatchTest.TimeoutModule, :arbitrary_fn_name, %{arbitrary: :data}}"
end

defp wait_for_process_to_exit(pid) do
:timer.sleep(1)
if Process.alive?(pid), do: wait_for_process_to_exit(pid)
end
end

0 comments on commit 468294b

Please sign in to comment.