wilkinson4

wilkinson4 OP

Hello,

We recently did some optimizations on a slow query in our system, and found the following article from dba exchange that has a nice syntax for selecting an array of items per row

This ended up being a more performant solution from what we were using previously. Below is a simple example of what we’re trying to do in raw postgresql

select *
from calls c
  left join lateral (
    select array (
        select cr.id
        from call_recordings cr
        where cr.call_id = c.id
          and cr.s3_key is not null) as call_recording_ids) as call_recordings on true
limit 10;

As far as I can tell there isn’t an easy way to do this in Ecto. The closest translation to Ecto I’ve got so far is this

  def test_select_array do
    call_recordings_query =
      from cr in Recording,
        select: %{
          call_recording_ids:
            fragment(
              "(SELECT ARRAY(SELECT cr.id FROM call_recordings cr WHERE cr.call_id = ? AND cr.s3_key IS NOT NULL))",
              parent_as(:call).id
            )
        }

    from(c in Call,
      as: :call,
      left_lateral_join: cr in subquery(call_recordings_query),
      limit: 10,
      select: %{
        call_id: c.id,
        call_recording_ids: cr
      }
    )
  end

But even that isn’t quite right, and it’s janky. Looking for any ideas/guidance on this. Maybe this is something Ecto supports without a fragment and I’m not aware of it, or could support?

– Will

First 6 of 6 Posts Switch mode

D4no0

D4no0

You could move the fragment to a macro to make the query cleaner, here is an example on how that looks like:

defmacro st_transform(wkt, srid) do
  quote do: fragment("ST_Transform(?, ?)", unquote(wkt), unquote(srid))
end
Schultzer

Schultzer

This is where Ecto start to show it’s brittleness, as one of the best ORM I have ever worked with, it still falls short in a lot of real world cases and especially on a enterprise level where you usually have dedicated DBAs that don’t know Elixir, GitHub - elixir-dbvisor/sql: SQL provides state-of-the-art, high-performance SQL integration for Elixir, built to handle extreme concurrency with unmatched expressiveness and ergonomic query composition. Write safe, composable, parameterized queries directly, without translating to Ecto or any ORM. · GitHub could help you out here, still fresh but the idea is simple, lower the barrier between Elixir and SQL.

wilkinson4

wilkinson4 OP

I appreciate the help on this. I tried the macro route, but I ran into some compilation issues with how I was using it. It almost feels like there should be an array concept in Ecto that expects a subquery so something like this could be written:

    call_recording_query =
      from(cr in CallRecording,
        where: parent_as(:call).id == cr.call_id,
        select: cr.id
      )

    from(c in Call,
      as: :call,
      left_lateral_join: call_recording_ids in array(call_recording_query),
      select: %{
        id: c.id,
        call_recording_ids: call_recording_ids
      }
    )

Maybe something Ecto could support only for lateral joins? I could see this being useful in situations where preloads aren’t an option. I’d be happy to work on a PR to Ecto so.

Fortunately we were able to refactor this query to use preloads where we only selected the fields that we needed. Like so:

    from(c in Call,
      as: :call,
      join: u in assoc(c, :user),
      as: :user,
      left_join: cp in assoc(c, :contact_phone),
      as: :contact_phone,
      left_join: con in assoc(cp, :contact),
      as: :contact,
      left_join: pc in PatientContact,
      on: pc.patient_id == c.patient_id and pc.contact_id == con.id,
      left_join: ca in assoc(c, :call_audit),
      as: :call_audit,
      left_join: au in assoc(ca, :auditor),
      as: :auditor,
      left_join: p in assoc(c, :patient),
      as: :patient,
      left_join: d in assoc(c, :disposition),
      as: :disposition,
      left_join: cr in assoc(c, :call_recordings),
      preload: [
        user: u,
        patient: p,
        disposition: d,
        call_recordings: cr,
        call_audit: {ca, auditor: au},
        contact_phone: {cp, contact: {con, patient_contacts: pc}}
      ],
      order_by: [desc: c.started_at],
      select:
        map(c, [
          :id,
          :zoom_call_id,
          :started_at,
          :ended_at,
          :call_type,
          :purpose,
          :call_uuid,
          :notes,
          :patient_id,
          :thrio_workitem_id,
          :zoom_external_phone_number,
          user: [:id, :first_name, :last_name],
          patient: [:id, :first_name, :last_name, :preferred_language],
          contact_phone: [
            :id,
            :phone_number,
            :status,
            contact: [:id, :name, patient_contacts: [:id, :status]]
          ],
          call_audit: [:id, :status, auditor: [:full_name]],
          call_recordings: [:id, :call_id, :s3_key, :transcript_raw]
        ])
    )
    |> Call.with_duration()
Schultzer

Schultzer

Those two queries are very different, and over time different user might experience different performance.

But that said, if you are a young startup, then you can easily kick this can down the road.

LostKobrakai

LostKobrakai

Bare selects are not supported by ecto queries. That’s your issue, not necessarily the array part.

LostKobrakai

LostKobrakai

import Ecto.Query

array_query = 
  from cr in "call_recordings",
    where: cr.call_id == parent_as(:call).id,
    where: not is_nil(cr.s3_key),
    select: %{
      id: cr.id
    }

call_recordings_query =
      from cr in subquery(array_query),
        select: %{
          call_recording_ids: fragment("array_agg(?)", cr.id)
        }
query = 
  from(c in "calls",
    as: :call,
    left_lateral_join: cr in subquery(call_recordings_query), on: true,
    limit: 10,
    select: %{
      call_id: c.id,
      call_recording_ids: cr
    }
  )

{sql, _} = Repo.to_sql(:all, query)
IO.puts(sql)
# SELECT c0."id", s1."call_recording_ids" 
# FROM "calls" AS c0 
# LEFT OUTER JOIN LATERAL (
#   SELECT array_agg(ss0."id") AS "call_recording_ids" 
#   FROM (
#     SELECT ssc0."id" AS "id" 
#     FROM "call_recordings" AS ssc0 
#     WHERE (ssc0."call_id" = c0."id") AND (NOT (ssc0."s3_key" IS NULL))
#   ) AS ss0
# ) AS s1 ON TRUE 
# LIMIT 10

Functionally this should yield the same result as the requested query

— All posts loaded —

Where Next? Top

Trending in Questions Top

stjefim
Hello! Suppose you are building workflow (order / task / payment) processing system with the following requirements: Each workflow con...
New
jonnycharles
I’m in search of an Elixir library that offers PDF generation capabilities similar to Ruby’s Prawn. While there have been discussions abo...
New
spammy
I’m looking to build a personal workflow to quickly deploy web applications written in elixir/phoenix, for local consumption (ie not on t...
New
dli
Before I dive in myself, did anyone successfully sprinkle Hologram into their existing LiveView app? Looking for hints regarding: Addi...
New
bottlenecked
Hi all, I wanted to ask how the community is dealing with post-release steps. Today we have Ecto migrations, which make sure that the db...
New
roeland
Kia ora, We have been using elixir-google-api to connect to Google Drive. However, with the updates to Tesla due to CVEs this is now bro...
New
michallepicki
I am using Oban and occasionally, shortly after a deployment, a handful of jobs can fail because of dependency on other parts of the syst...
New

Other Trending Topics Top

JesseHerrick
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
jimsynz
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Damirados
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve. They are GUI (Emerge) and State management (S...
New
netoum
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
ausimian
Emily is an Elixir library that runs Nx computations on Apple’s MLX. Install it as the default Nx backend and Nx, defn, Axon, Nx.Serving,...
New
type1fool
I just stumbled on a newly redesigned elixir-lang.org. :tada: It looks like @Software_Mansion did the work, and I think it is generally a...
New

We're in Beta

About us Mission Statement