Clojure中的OpenCV AWS Lambda Function目标大于250MB,如何减小它的大小?

时间:2018-03-10 17:32:56

标签: java amazon-web-services opencv clojure aws-lambda

我尝试使用https://opencv.org/通过Origami使用OpenCV 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 deploy production命令期间删除这些构建,那么它应该足够小。

这是我的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)

2 个答案:

答案 0 :(得分:1)

只需使用jar-exclusions:

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

答案 1 :(得分:0)

我不知道lein-lambda是如何工作的(如果它上传jar或uberjar - 它应该是你的第一个焦点),但我想提请你注意不同的方法: