SlideShare a Scribd company logo
Fast and cost effective geospatial
analysis pipeline with AWS lambda
© Civic Vision UG
Mila Frerichs
© Civic Vision UG
I help civic advocacy groups
© Civic Vision UG
© Civic Vision UG
© Civic Vision UG
© Civic Vision UG
© Civic Vision UG
© Civic Vision UG
© Civic Vision UG
© Civic Vision UG
© Civic Vision UG
© Civic Vision UG
© Civic Vision UG
© Civic Vision UG
© Civic Vision UG
© Civic Vision UG
© Civic Vision UG
Available packages
boto3
botocore
docutils
jmespath
pip
python-dateutil
s3transfer
setuptools
six
© Civic Vision UG
© Civic Vision UG
service: foss4g_oceania
provider:
name: aws
runtime: nodejs6.10
functions:
hello:
handler: handler.hello
© Civic Vision UG
© Civic Vision UG
service: foss4g_oceania
provider:
name: aws
runtime: python2.7
package:
include:
- venv/lib/python2.7/site-packages
- analysis.py
exclude:
- venv
functions:
hello:
handler: handler.hello
© Civic Vision UG
import sys, os, json
here = os.path.dirname(os.path.realpath(__file__))
env_path = os.path.join(here, "./venv/lib/python2.7/site-packages/")
sys.path.append(env_path)
© Civic Vision UG
© Civic Vision UG
plugins:
- serverless-python-requirements
© Civic Vision UG
service: foss4g_oceania
provider:
name: aws
runtime: python3.6
package:
artifact: package.zip
functions:
hello:
handler: handler.hello
© Civic Vision UG
FROM amazonlinux:latest
# Install apt dependencies
RUN yum install -y 
gcc gcc-c++ freetype-devel yum-utils findutils openssl-devel
RUN yum -y groupinstall development
RUN curl https://www.python.org/ftp/python/3.6.1/Python-3.6.1.tar.xz | tar -xJ 
&& cd Python-3.6.1 
&& ./configure --prefix=/usr/local --enable-shared 
&& make 
&& make install 
&& cd .. 
&& rm -rf Python-3.6.1
ENV LD_LIBRARY_PATH=/usr/local/lib:$LD_LIBRARY_PATH
# Install Python dependencies
RUN pip3 install xxx--no-binary -t /tmp/vendored -U
# Reduce Lambda package size to fit the 250Mb limit
# Mostly based on https://github.com/jamesandersen/aws-machine-learning-demo
RUN du -sh /tmp/vendored
# This is the list of available modules on AWS lambda Python 3
# ['boto3', 'botocore', 'docutils', 'jmespath', 'pip', 'python-dateutil', 's3transfer', 'setuptools', 'six']
RUN find /tmp/vendored -name "*-info" -type d -exec rm -rdf {} +
RUN rm -rdf /tmp/vendored/boto3/
RUN rm -rdf /tmp/vendored/botocore/
RUN rm -rdf /tmp/vendored/docutils/
RUN rm -rdf /tmp/vendored/dateutil/
RUN rm -rdf /tmp/vendored/jmespath/
RUN rm -rdf /tmp/vendored/s3transfer/
RUN rm -rdf /tmp/vendored/numpy/doc/
# Leave module precompiles for faster Lambda startup
RUN find /tmp/vendored -type f -name '*.pyc' | while read f; do n=$(echo $f | sed 's/__pycache__///' | sed 's/.cpython-36//'); cp $f $n; done;
RUN find /tmp/vendored -type d -a -name '__pycache__' -print0 | xargs -0 rm -rf
RUN find /tmp/vendored -type f -a -name '*.py' -print0 | xargs -0 rm -f
RUN du -sh /tmp/vendored
COPY app /tmp/vendored/app
# Create archive
RUN cd /tmp/vendored && zip -r9q /tmp/package.zip *
# Cleanup
RUN rm -rf /tmp/vendored/
© Civic Vision UG
# Install Python dependencies
RUN pip3 install xxx--no-binary -t /tmp/vendored -U
# Reduce Lambda package size to fit the 250Mb limit
# Mostly based on https://github.com/jamesandersen/aws-machine-learning-demo
RUN du -sh /tmp/vendored
© Civic Vision UG
Adapted from mapbox/landsat-tiler
© Civic Vision UG
all: build package
build:
docker build --tag fis-server:latest .
package:
docker run 
-w /var/task/ 
--name fis 
-itd 
fis-server:latest
docker cp fis:/tmp/package.zip package.zip
docker stop fis
docker rm fis
deploy:
sls deploy
© Civic Vision UG
© Civic Vision UG
© Civic Vision UG
Divide & Conquer
© Civic Vision UG
© Civic Vision UG
© Civic Vision UG
© Civic Vision UG
© Civic Vision UG
lambci/docker-lambda
© Civic Vision UG
© Civic Vision UG
© Civic Vision UG
© Civic Vision UG
© Civic Vision UG
© Civic Vision UG
questions
Give me your two questions!
© Civic Vision UG
Resources available at
civicvision.de/f4goaws
© Civic Vision UG

More Related Content

PDF
Ruby 2.0 at the Ruby drink-up of Sophia, February 2013
PPTX
Improving go-git performance
PPTX
Comets notes
PPTX
Puppet barcampexercises.jzt
PPTX
Pig workshop
PDF
37562259 top-consuming-process
PDF
Practical pig
PPTX
15 map reduce on azure
Ruby 2.0 at the Ruby drink-up of Sophia, February 2013
Improving go-git performance
Comets notes
Puppet barcampexercises.jzt
Pig workshop
37562259 top-consuming-process
Practical pig
15 map reduce on azure

What's hot (18)

PDF
multi-line record grep
TXT
Find and zip files
PDF
GoLang & GoatCore
PDF
Git for beginners
PDF
Building a DSL with GraalVM (VoxxedDays Luxembourg)
PDF
The Art of Command Line (2021)
PDF
Mastering the Unix Command Line
PDF
Raspberry pi a la cfml
PDF
How to admin
PDF
Introduction to ns2
PDF
Go初心者がGoでコマンドラインツールの作成に挑戦した話
PDF
KubeCon EU 2016: Custom Volume Plugins
PPTX
Beyond Lists - Functional Kats Conf Dublin 2015
PDF
Docker tips & tricks
PDF
Phil Bartie QGIS PLPython
PDF
Gogo shell
PDF
Chapter21 separate-header-and-implementation-files
PPTX
Ordered Record Collection
multi-line record grep
Find and zip files
GoLang & GoatCore
Git for beginners
Building a DSL with GraalVM (VoxxedDays Luxembourg)
The Art of Command Line (2021)
Mastering the Unix Command Line
Raspberry pi a la cfml
How to admin
Introduction to ns2
Go初心者がGoでコマンドラインツールの作成に挑戦した話
KubeCon EU 2016: Custom Volume Plugins
Beyond Lists - Functional Kats Conf Dublin 2015
Docker tips & tricks
Phil Bartie QGIS PLPython
Gogo shell
Chapter21 separate-header-and-implementation-files
Ordered Record Collection
Ad

Recently uploaded (20)

PDF
EN-Survey-Report-SAP-LeanIX-EA-Insights-2025.pdf
PDF
Why TechBuilder is the Future of Pickup and Delivery App Development (1).pdf
PDF
top salesforce developer skills in 2025.pdf
PDF
Wondershare Filmora 15 Crack With Activation Key [2025
PDF
Claude Code: Everyone is a 10x Developer - A Comprehensive AI-Powered CLI Tool
PDF
Cost to Outsource Software Development in 2025
PDF
Designing Intelligence for the Shop Floor.pdf
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025
PPTX
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
PPTX
assetexplorer- product-overview - presentation
PPTX
Computer Software and OS of computer science of grade 11.pptx
PDF
Which alternative to Crystal Reports is best for small or large businesses.pdf
PDF
iTop VPN Free 5.6.0.5262 Crack latest version 2025
PDF
SAP S4 Hana Brochure 3 (PTS SYSTEMS AND SOLUTIONS)
PDF
Navsoft: AI-Powered Business Solutions & Custom Software Development
PDF
Product Update: Alluxio AI 3.7 Now with Sub-Millisecond Latency
PPTX
Log360_SIEM_Solutions Overview PPT_Feb 2020.pptx
PPTX
Operating system designcfffgfgggggggvggggggggg
PDF
Addressing The Cult of Project Management Tools-Why Disconnected Work is Hold...
PPTX
L1 - Introduction to python Backend.pptx
EN-Survey-Report-SAP-LeanIX-EA-Insights-2025.pdf
Why TechBuilder is the Future of Pickup and Delivery App Development (1).pdf
top salesforce developer skills in 2025.pdf
Wondershare Filmora 15 Crack With Activation Key [2025
Claude Code: Everyone is a 10x Developer - A Comprehensive AI-Powered CLI Tool
Cost to Outsource Software Development in 2025
Designing Intelligence for the Shop Floor.pdf
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
assetexplorer- product-overview - presentation
Computer Software and OS of computer science of grade 11.pptx
Which alternative to Crystal Reports is best for small or large businesses.pdf
iTop VPN Free 5.6.0.5262 Crack latest version 2025
SAP S4 Hana Brochure 3 (PTS SYSTEMS AND SOLUTIONS)
Navsoft: AI-Powered Business Solutions & Custom Software Development
Product Update: Alluxio AI 3.7 Now with Sub-Millisecond Latency
Log360_SIEM_Solutions Overview PPT_Feb 2020.pptx
Operating system designcfffgfgggggggvggggggggg
Addressing The Cult of Project Management Tools-Why Disconnected Work is Hold...
L1 - Introduction to python Backend.pptx
Ad

Fast and cost effective geospatial analysis pipeline with AWS lambda