clojure - 为什么使用 onyx 的棱柱模式验证失败(ExceptionInfo 值与模式不匹配)?

标签 clojure amazon-dynamodb leiningen plumatic-schema

有人能解释一下这里发生了什么吗?我已经仔细检查过dynamodb-local使用非onyxian客户端的行为和简单的操作使用 Faraday 。我尝试运行的代码是 here我记录了一个问题 here但还没有得到任何回复。

这是 REPL 的输出:

$ lein repl
WARNING: cat already refers to: #'clojure.core/cat in namespace: clj-uuid.bitmop, being replaced by: #'clojure.core.reducers/cat
nREPL server started on port 44195 on host 127.0.0.1 - nrepl://127.0.0.1:44195
REPL-y 0.3.7, nREPL 0.2.12
Clojure 1.7.0
Java HotSpot(TM) 64-Bit Server VM 1.8.0_25-b18
    Docs: (doc function-name-here)
          (find-doc "part-of-name-here")
  Source: (source function-name-here)
 Javadoc: (javadoc java-object-or-class-here)
    Exit: Control+D or (exit) or (quit)
 Results: Stored in vars *1, *2, *3, an exception in *e

cqrs-server.core=> (start)
ExceptionInfo Value does not match schema: {:onyx/consumption missing-required-key, :onyx/batch-size missing-required-key, :onyx/medium missing-required-key}  schema.core/validate (core.clj:161)

cqrs-server.core=>

使用*e的完整堆栈跟踪如下:-

cqrs-server.core=> *e
#error {
 :cause "Value does not match schema: {:onyx/consumption missing-required-key, :onyx/batch-size missing-
required-key, :onyx/medium missing-required-key}"
 :data {:type :schema.core/error, :schema (conditional #object[onyx.validation$fn__16409 0x6ba7a7e4 "ony
x.validation$fn__16409@6ba7a7e4"] {:onyx/name Keyword, :onyx/type (enum :output :function :input), :onyx
/consumption (enum :concurrent :sequential), :onyx/batch-size (pred pos?), Keyword Any, :onyx/medium Key
word} #object[clojure.core$constantly$fn__4383 0x5a6f89f1 "clojure.core$constantly$fn__4383@5a6f89f1"] {
:onyx/name Keyword, :onyx/type (enum :output :function :input), :onyx/consumption (enum :concurrent :seq
uential), :onyx/batch-size (pred pos?), Keyword Any, :onyx/fn Keyword}), :value {:onyx/name :event/aggre
gate-out, :onyx/type :output}, :error {:onyx/consumption missing-required-key, :onyx/batch-size missing-
required-key, :onyx/medium missing-required-key}}
 :via
 [{:type clojure.lang.ExceptionInfo
   :message "Value does not match schema: {:onyx/consumption missing-required-key, :onyx/batch-size miss
ing-required-key, :onyx/medium missing-required-key}"
   :data {:type :schema.core/error, :schema (conditional #object[onyx.validation$fn__16409 0x6ba7a7e4 "o
nyx.validation$fn__16409@6ba7a7e4"] {:onyx/name Keyword, :onyx/type (enum :output :function :input), :on
yx/consumption (enum :concurrent :sequential), :onyx/batch-size (pred pos?), Keyword Any, :onyx/medium K
eyword} #object[clojure.core$constantly$fn__4383 0x5a6f89f1 "clojure.core$constantly$fn__4383@5a6f89f1"]
 {:onyx/name Keyword, :onyx/type (enum :output :function :input), :onyx/consumption (enum :concurrent :s
equential), :onyx/batch-size (pred pos?), Keyword Any, :onyx/fn Keyword}), :value {:onyx/name :event/agg
regate-out, :onyx/type :output}, :error {:onyx/consumption missing-required-key, :onyx/batch-size missin
g-required-key, :onyx/medium missing-required-key}}
   :at [schema.core$validate invoke "core.clj" 161]}]
 :trace
 [[schema.core$validate invoke "core.clj" 161]
  [onyx.validation$validate_catalog invoke "validation.clj" 48]
  [onyx.validation$validate_job invoke "validation.clj" 122]
  [onyx.api$submit_job invoke "api.clj" 90]
  [cqrs_server.core$start invoke "core.clj" 207]
  [cqrs_server.core$eval19231 invoke "form-init17061160983479843.clj" 1]
  [clojure.lang.Compiler eval "Compiler.java" 6782]
  [clojure.lang.Compiler eval "Compiler.java" 6745]
  [clojure.core$eval invoke "core.clj" 3081]
  [clojure.main$repl$read_eval_print__7099$fn__7102 invoke "main.clj" 240]
  [clojure.main$repl$read_eval_print__7099 invoke "main.clj" 240]
  [clojure.main$repl$fn__7108 invoke "main.clj" 258]
  [clojure.main$repl doInvoke "main.clj" 258]
  [clojure.lang.RestFn invoke "RestFn.java" 1523]
  [clojure.tools.nrepl.middleware.interruptible_eval$evaluate$fn__18624 invoke "interruptible_eval.clj"
87]
  [clojure.lang.AFn applyToHelper "AFn.java" 152]
  [clojure.lang.AFn applyTo "AFn.java" 144]
  [clojure.core$apply invoke "core.clj" 630]
  [clojure.core$with_bindings_STAR_ doInvoke "core.clj" 1868]
  [clojure.lang.RestFn invoke "RestFn.java" 425]
  [clojure.tools.nrepl.middleware.interruptible_eval$evaluate invoke "interruptible_eval.clj" 85]
  [clojure.tools.nrepl.middleware.interruptible_eval$interruptible_eval$fn__18669$fn__18672 invoke "inte
rruptible_eval.clj" 222]
  [clojure.tools.nrepl.middleware.interruptible_eval$run_next$fn__18664 invoke "interruptible_eval.clj"
190]
  [clojure.lang.AFn run "AFn.java" 22]
  [java.util.concurrent.ThreadPoolExecutor runWorker "ThreadPoolExecutor.java" 1142]
  [java.util.concurrent.ThreadPoolExecutor$Worker run "ThreadPoolExecutor.java" 617]
  [java.lang.Thread run "Thread.java" 745]]}
cqrs-server.core=>
cqrs-server.core=>

Faraday 客户端 REPL(my-ns 是用于测试的本地命名空间)的输出将连接到本地运行的同一 dynamodb,如下所示:

my-ns=> (far/list-tables client-opts)
(:events)

my-ns=> (far/describe-table client-opts :events)
{:lsindexes nil, :gsindexes [{:name :event-idx, :size 0, :item-count 0, :key-schema [{:name :type, :type :hash} {:name :date, :type :range}], :projection {:projection-type "ALL", :non-key-attributes nil}, :throughput {:read 1, :write 1, :last-decrease nil, :last-increase nil, :num-decreases-today nil}}], :name :events, :throughput {:read 1, :write 1, :last-decrease #inst "1970-01-01T00:00:00.000-00:00", :last-increase #inst "1970-01-01T00:00:00.000-00:00", :num-decreases-today 0}, :prim-keys {:id {:key-type :hash, :data-type :s}, :date {:key-type :range, :data-type :n}, :type {:data-type :s}}, :size 0, :status :active, :item-count 0, :creation-date #inst "2016-03-10T22:53:33.601-00:00", :indexes nil}
my-ns=>

my-ns=> (far/scan client-opts :events)
[]

我已经为 core.clj 创建了一个公共(public)要点 here对于cqrs.cljhere供审查。 我的 project.clj 看起来像 this .

有人可以帮我解决这个问题吗?
TIA

最佳答案

根据您提供的信息和我们的聊天,您问题的直接答案是配置中 :catalog 向量中的最后一个条目缺少键,如架构验证错误所示:

{:onyx/consumationmissing-required-key,:onyx/batch-sizemissing-required-key,:onyx/mediummissing-required-key}

有问题的条目(向量中的最后一个)是:

{:onyx/name :event/aggregate-out, :onyx/type :output}

您需要修复它,以便它包含那些丢失的键:

{:onyx/name :event/aggregate-out,
 :onyx/type :output,
 :onyx/consumption <some value here>,
 :onyx/batch-size <some value here>,
 :onyx/medium <some value here>}

但总的来说,我会重新考虑您的总体方法。您想实现什么目标?

在我看来,不值得为基于“随机”选择的旧提交的框架而奋斗,该旧提交似乎包含处于损坏状态的代码。如果您发现 cqrs-server 中的错误,您将如何支持您的应用程序?您会从该自定义提交开始自己 fork 并支持它吗?

我宁愿从您对问题的要求开始,然后使用更可靠和更好支持的库/框架来评估解决方案,以便您有更好的机会支持您的项目。

关于clojure - 为什么使用 onyx 的棱柱模式验证失败(ExceptionInfo 值与模式不匹配)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35929980/

相关文章:

haskell - Haskell 中的镜头与 Clojure 中使用按键序列之间有哪些异同?

emacs - 如何在 'brave clojure' 引导的 emacs 中更新苹果酒

algorithm - 如何以允许在任何索引处快速插入的方式表示一行音符?

swift - 从 Amazon DynamoDB 的表中检索一个项目,然后将其传递给 numberOfItemsInSection (Swift 4)?

amazon-web-services - 我可以将 AWS CloudFormation 配置为在更新时不修改 DynamoDB 表的 ProvisionedThroughput 吗?

java - 如何在 Clojure REPL 中从 Maven 项目加载 Java 类?

macros - 将 Clojure 宏用于 DSL

go - 使用结构更新值

emacs - 如何在 emacs 和 leiningen 中使用 repl

clojure - 如何使用 emacs 或 lein 添加新的依赖项到 Clojure 项目?