pwplusnick commented on a change in pull request #4850: Add single entrypoint proxy interface documentation URL: https://github.com/apache/openwhisk/pull/4850#discussion_r389901917
########## File path: docs/single_entrypoint_proxy_contract.md ########## @@ -0,0 +1,383 @@ +<!-- +# +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with +# the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +--> +# Action Proxy Single Entrypoint Interface + +The typical endpoints used by the OpenWhisk control plane are not used in single entrypoint execution environments such as Knative. Initialization and running are still essential to how OpenWhisk runtimes function, but they are done in a different methodology than `/init` and `/run` endpoints. The proxy that shapes how the calls are preprocessed and postprocessed to emulate some of the functionality provided by the OpenWhisk control plane. In single entrypoint supported runtime proxy implementations, both initailization and running are done via the `/` root endpoint. The sections below explain the interface the runtime proxy must adhere to initialize and run via a single entrypoint execution environment. + +## Init + +To initialize an undifferintiated stem cell, the interface is to pass a JSON object containing the key `init` to the `/` endpoint. The value corresponding to the `init` key is the same JSON object as the [initialization of standard OpenWhisk actions](actions-new.md#initialization). For example: +```json +{ + "init": { + "name" : "hello", + "main" : "main", + "code" : "function main(params) {return { payload: 'Hello ' + params.name + ' from ' + params.place + '!' };}", + "binary": false, + "env": {} + } +} +``` +Just as with the OpenWhisk control plane, specialized function containers need no explicit initialization. + +## Run + +To run an action, the interface is to pass a JSON object containing the key `activation` to the `/` endpoint. The value corresponding to the `activation` key is largely the same JSON object as the [activation of standard OpenWhisk actions](actions-new.md#activation). The key difference is that `value` is not used under the `activation` key to pass parameters to the underlying function. To see the interface for passing keys to the underlying functions see section below. +Example of an activation: +```json +{ + "activation": { + "namespace": "", + "action_name": "hello", + "api_host": "", + "api_key": "", + "activation_id": "", + "transaction_id": "", + "deadline": 1000000 + }, + "value": { + "name": "Alan Turing", + "place": "England" + } +} +``` +One thing to note is when these values are present outside of the context of the OpenWhisk control plane, they may not actually be used for anything. However, the `activation` key is still necessary to signal the intent to run the function. + +## Passing parameters + +Similar to the description of the `value` key in the `activation` object during the [activation of standard OpenWhisk actions](actions-new.md#activation), a top level `value` key in the JSON object passed to the `/` endpoint (with a corresponding top level `activation` key) is how parameters are passed to the underlying function being run. +In the following example: +```json +{ + "activation": { + "namespace": "", + "action_name": "hello", + "api_host": "", + "api_key": "", + "activation_id": "", + "transaction_id": "", + "deadline": 1000000 + }, + "value": { + "name": "Alan Turing", + "location": "England" + } +} +``` + +The underlying function would recieve a parameters map with the keys `name` and `location` with the values `Alan Turing` and `England` respectively. + +## Init/Run + +OpenWhisk stem cell runtimes being executed in a single entrypoint execution environment can be both initialized and activated at the same time by passing both `init` and `activation` keys in the same JSON object to the `/` endpoint. This will first initialize the runtime, following the same procedures described above, and then subsequently activate the same runtime. +For example: +```json +{ + "init": { + "name" : "hello", + "main" : "main", + "code" : "function main(params) {return { payload: 'Hello ' + params.name + ' from ' + params.place + '!' };}", + "binary": false, + "env": {} + }, + "activation": { + "namespace": "", + "action_name": "hello", + "api_host": "", + "api_key": "", + "activation_id": "", + "transaction_id": "", + "deadline": 1000000 + }, + "value": { + "name": "Alan Turing", + "location": "England" + } +} +``` +The above JSON object would instruct the runtime to be initialized with the function under `init.code` and be run with the function being passed the object `{name: "Alan Turing", location: "England"}`. It would then return the JSON object +```json +{ + "payload": "Hello Alan Turing from England!" +} +``` + +## Example Cases +Below is a table outlining the standardized behaviors that any action proxy implementation needs to fulfill. NodeJS was the sample language used, but corresponding example cases could be written in the language of the corresponding runtime it is showcasing. + + +<table border="2" cellspacing="0" cellpadding="6" rules="groups" frame="hsides"> + + +<colgroup> +<col/> + +<col/> + +<col/> + +<col/> + +<col/> + +<col/> + +<col/> +</colgroup> +<thead> +<tr> +<th scope="col" >Test Name</th> +<th scope="col" >Action Code (In NodeJS)</th> +<th scope="col" >Input</th> Review comment: They are linked further down in the Nodejs table ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
