400k GB-sec and 200k GHz-sec compute 5GB (egress) ▸ 40¢ per 1M req $0.0000025 per GB-s $0.0000100 per GHz-s $0.12/GB outside Google FRAMEWORKS GOOGLE CLOUD FUNCTIONS
serverless! ▸ Ops: still need oversight for monitoring and control ▸ Finance: still cares about spending and forecasting ▸ Business: needs to maintain flexibility
▸ Swapped AWS Lambda for FaaS ▸ Code ran real-time, on private infrastructure, next to data ▸ Used YAML stack format and handers to quickly template app (NodeJS, Python) code: github.com/alexellis/journey-expert code: github.com/alexellis/faas-cli
urlparse import string def handle(st): val = st parts = val.split(" ") bits = [part for part in parts if not urlparse(part).scheme and part != "&" ] val = string.join(bits, " ") print(val) code: github.com/alexellis/faas-cli ▸ Example of chat ops ▸ Swapped AWS Lambda for FaaS ▸ Code ran real-time, on private infrastructure, next to data ▸ Used YAML stack format and handers to quickly template app (NodeJS, Python)