gpt4 book ai didi

java - Clojure AWS Lambda 函数中的 OpenCV 目标大于 250MB,如何减小其大小?

转载 作者:行者123 更新时间:2023-12-02 11:32:12 24 4
gpt4 key购买 nike

我正在尝试使用 OpenCV https://opencv.org/通过 Origami使用lein-lambda部署。然而,我的 target/ 目录最终为 350Mb,而 lambda 要求未压缩上传的最大值为 250Mb。

如果我查看target/的内容

$ tree -L 2 target/
target/
├── classes
│   ├── META-INF
│   ├── cheshire
│   ├── clj_time
│   ├── clojure
│   ├── clout
│   ├── compojure
│   ├── crypto
│   ├── detect-features
│   ├── detect_features
│   ├── instaparse
│   ├── medley
│   ├── opencv3
│   ├── ring
│   └── uswitch
├── clj-opencv-0.1-SNAPSHOT-standalone.jar
├── clj-opencv-0.1-SNAPSHOT.jar
├── native
│   ├── linux
│   ├── macosx
│   └── windows
└── stale
└── leiningen.core.classpath.extract-native-dependencies

我注意到还有针对 macosxwindows 的 OpenCV 版本。如果我可以在 lein lambda 部署生产命令期间删除这些构建,那么它应该足够小。

这是我的project.clj 文件,也许它与uberjar有关:

(defproject clj-opencv "0.1-SNAPSHOT"
:description "Identify key points and edges to use for good looking Delauney triangulation."
:url "https://www.example.com/TODO"
:min-lein-version "2.0.0"
:injections [(clojure.lang.RT/loadLibrary org.opencv.core.Core/NATIVE_LIBRARY_NAME)]
:test-paths ["test"]
:resource-paths ["rsc"]
:plugins [[lein-gorilla "0.4.0"]
[lein-auto "0.1.3"]
[lein-ring "0.9.7"]
[lein-lambda "0.2.0"]]
:auto {:default {:file-pattern #"\.(clj)$"}}
:repositories [["vendredi" "https://repository.hellonico.info/repository/hellonico/"]]
:aliases {"notebook" ["gorilla" ":ip" "0.0.0.0" ":port" "10000"]}
:profiles {:dev {:resource-paths ["resources"]
:dependencies [; used for proto repl
[org.clojure/tools.nrepl "0.2.11"]
; proto repl
[proto-repl "0.3.1"]
; use to start a gorilla repl
[gorilla-repl "0.4.0"]
[seesaw "1.4.5"]
; aws lambda
[javax.servlet/servlet-api "2.5"]
[ring/ring-mock "0.3.1"]]}
:uberjar {:aot :all}}
:dependencies [[org.clojure/clojure "1.8.0"]
[org.clojure/tools.cli "0.3.5"]
[origami "0.1.10"]
[compojure "1.6.0"]
[ring/ring-defaults "0.3.1"]
[ring/ring-json "0.4.0"]
[uswitch/lambda "0.1.2"]
[cheshire "5.7.1"]
[ring-apigw-lambda-proxy "0.3.0"]
[feedme "0.0.3"]
[clj-spotify "0.1.5"]
[rotary "0.4.1"]]
:ring {:handler detect-features.handler/app}
:lambda {:function {:name "lowpoly-detect-features" ; bucket name cannot contain underscores
:handler "detect-features.lambda.LambdaFn"}
:api-gateway {:name "detect-features"}
:stages {"production" {:warmup {:enable true}}
"staging" {}}}
; For local runs. Probably needs to be off in projection.
:main detect-features.lambda)

最佳答案

只需使用 jar 排除:

:jar-exclusions [#"^docs/.*" #"^public/js/.*" #"^example-data/.*"]

关于java - Clojure AWS Lambda 函数中的 OpenCV 目标大于 250MB,如何减小其大小?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49212002/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com