如何在自定义混合任务中从Ecto获取数据

时间:2016-07-06 13:36:14

标签: elixir phoenix-framework mix

我想在自定义混音任务中通过Ecto显示我的数据库中的数据。如何在我的任务中获得Ecto仓库(或启动它)?

我试过这样的事情,但它没有工作:

defmodule Mix.Tasks.Users.List do


use Mix.Task
  use Mix.Config
  use Ecto.Repo, otp_app: :app

  @shortdoc "List active users"
  @moduledoc """
    List active users
  """
  def run(_) do
    import Ecto.Query, only: [from: 1]

    Mix.shell.info "=== Active users ==="
    query = from u in "users"
    sync = all(query)
    Enum.each(users, fn(s) -> IO.puts(u.name) end)
  end

end

当我启动mix users.list:

时,这会给我以下输出
** (ArgumentError) repo Mix.Tasks.Users.List is not started, please ensure it is part of your supervision tree
    lib/ecto/query/planner.ex:64: Ecto.Query.Planner.query_lookup/5
    lib/ecto/query/planner.ex:48: Ecto.Query.Planner.query_with_cache/6
    lib/ecto/repo/queryable.ex:119: Ecto.Repo.Queryable.execute/5

任何想法或其他方法来解决这个问题?

4 个答案:

答案 0 :(得分:14)

Ecto 3.x:

ensure_started已从Ecto中移除。围绕这个主题存在很多混淆。有关详情,请参见此处https://github.com/elixir-ecto/ecto/pull/2829#issuecomment-456313417。 José建议使用Mix.Task.run "app.start"启动应用,或使用MyApp.Repo.start_link(...)运行回购。

Ecto 2.x:

这曾经在2.x中工作,但显然Mix.Ecto不被视为公共API的一部分。

实际上有一个辅助模块Mix.Ectohttps://github.com/elixir-ecto/ecto/blob/master/lib/mix/ecto.ex)可以更轻松地编写使用ecto的混合任务:

defmodule Mix.Tasks.Users.List do
  use Mix.Task
  import Mix.Ecto

  def run(args) do
    repos = parse_repo(args)

    Enum.each repos, fn repo ->
      Mix.shell.info "=== Active users ==="

      ensure_repo(repo, args)
      ensure_started(repo, [])
      users = repo.all(Ectotask.User)

      Enum.each(users, fn(s) -> IO.puts(s.name) end)
    end
  end
end

通过此帮助,您可以访问parse_repo/1ensure_repo/2ensure_started/1parse_repo会让你的任务很好地适应其他ecto mix任务,例如它会让你传递-r来指定不同的repo。

➤ mix users.list
=== Active users ===
Adam
➤ mix users.list -r Ectotask.Repo22
=== Active users ===
** (Mix) could not load Ectotask.Repo22, error: :nofile. Please pass a repo with the -r option.

ensure_started确保回购正在运行,而您缺少。

有关指导和灵感,您可以在https://github.com/elixir-ecto/ecto/tree/master/lib/mix/tasks

查看其他ecto混合任务的实施方式

答案 1 :(得分:7)

作为Jason Harrelson回答的补充:还需要启动PostgrexEcto

[:postgrex, :ecto]
|> Enum.each(&Application.ensure_all_started/1)

MyApp.Repo.start_link

更新:

另一种方法是使用mix任务来启动应用程序:

Mix.Task.run "app.start", []

答案 2 :(得分:2)

您需要确保在使用回购之前启动回购

MyApp.Repo.start_link

答案 3 :(得分:0)

我在与凤凰城合作时也找到了另一种解决方案。我在Enum.GetName(typeof(MyColors), 1)创建了一个新文件:

priv/repo

然后我从我的项目根目录defmodule Users.List do def run() do Mix.shell.info "=== Active users ===" users = App.Repo.all(App.User) Enum.each(users, fn(s) -> Mix.shell.info("#{s.name}") end) end end Users.List.run 运行它。