we can do with our easy-entry, highly scalable serverless platforms. • Transform data • React to database changes or incoming data • Work with small volume, trickling data • Work with high volume, streaming data • Handle one-off data transformation or import @lornajane
HTTP request • rule map a trigger to an action • action a function, optionally with parameters • package collect actions and parameters together • sequence more than one action in a row • cold start time to run a fresh action @lornajane
index.js wsk action update --kind nodejs:6 --web true demo/hello1 hello.zip Then get the URL and curl it: wsk action get --url demo/hello1 curl https://172.17.0.1/api/v1/web/guest/demo/hello1 @lornajane
in the samples package: wsk -i action invoke --result /whisk.system/samples/wordCount \ -p payload "A good way to ruin a fine walk" Returns: 8 @lornajane