Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Invoking HTTP endpoint via functions #65

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions samples/invoke-http-endpoint-python/Readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Build using fn cli
```bash
fn -v deploy --app <app-name>
```

# oci-cli based function invocation
```bash
oci fn function invoke --function-id <function-ocid> --file "-" --body '{"ENDPOINT":"<predict-url>", "PAYLOAD": "<json-payload>"}'
```

## Sample:
```bash
oci fn function invoke --function-id <function-ocid> --file "-" --body '{"ENDPOINT":"https://modeldeployment.us-ashburn-1.oci.customer-oci.com/<md-ocid>/predict", "PAYLOAD": "{\"index\": \"1\"}"}'
```

# fn cli based invocation
```bash
fn invoke <app-name> <function-name>
```

## Sample:
```bash
echo -n '{"ENDPOINT":"https://modeldeployment.us-ashburn-1.oci.customer-oci.com/<md-ocid>/predict", "PAYLOAD": "{\"index\": \"1\"}"}' | fn invoke <app-name> <function-name>
```

# More information
The sample code in [func.py](./func.py) also shows how to get headers and request body. Required headers can also be passed to downstream call, if needed.
Other ways of function invocation can be found [here](https://docs.oracle.com/en-us/iaas/Content/Functions/Tasks/functionsinvokingfunctions.htm)
27 changes: 27 additions & 0 deletions samples/invoke-http-endpoint-python/func.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
import io
import json
import logging
import oci
import requests
from fdk import response


def handler(ctx, data: io.BytesIO = None):
auth = oci.auth.signers.get_resource_principals_signer()
logger = logging.getLogger()
try:
logger.info("Inside function")
body = json.loads(data.getvalue())
logger.info("Body : " + json.dumps(body))
headers = ctx.Headers()
logger.info("Headers: " + json.dumps(headers))
endpoint = body.get("ENDPOINT")
payload = body.get("PAYLOAD")
resp = requests.post(endpoint, json=json.loads(payload), auth=auth)
logger.info("response : " + resp.json())
except (Exception, ValueError) as ex:
logger.error("Failed to call endpoint with ex : {}".format(str(ex)))
return response.Response(
ctx, response_data=resp.json(),
headers={"Content-Type": "application/json"}
)
9 changes: 9 additions & 0 deletions samples/invoke-http-endpoint-python/func.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
schema_version: 20180708
name: api-gw
version: 1.0.26
runtime: python
build_image: fnproject/python:3.9-dev
run_image: fnproject/python:3.9
entrypoint: /python/bin/fdk /function/func.py handler
memory: 256
timeout: 40
3 changes: 3 additions & 0 deletions samples/invoke-http-endpoint-python/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
fdk>=0.1.60
oci>=2.2.18
requests