Set of gooddata-flight-server methods to host custom functions for GoodData Cloud
Project description
GoodData FlexFun
The GoodData FlexFun package is a GoodData Flight Server-compatible extension that provides a framework for hosting custom pluggable functions called FlexFuns. These can be used to act as a dataset for GoodData FlightRPC data sources.
What is a FlexFun?
In essence, FlexFun is a class that provides a set of methods that can be called by the GoodData Cloud when data is requested from the corresponding FlightRPC data source dataset.
Each FlexFun provides a name
used to identify the FlexFun in the GoodData Cloud.
FlexFuns can provide a set of metadata
that can further influence when and how they are called by GoodData Cloud.
They also provide a schema
(defined in terms
of pyarrow.Schema)
that describes the shape of data that the FlexFun can provide.
Finally, they provide a set of methods that can be called to provide data in response to queries:
call
- called to provide data in response to a querycancel
- called to cancel a query if GoodData Cloud decides to stop requesting data (e.g. if there is a timeout)on_load
- called when the FlexFun is created before anycall
orcancel
methods are called
Getting Started using the FlexFun Template
The easiest way to get started writing FlexFuns is to use the template repository. It provides a simple example of a FlexFun that can be used as a starting point for your own FlexFun with all the necessary infrastructure in place. It also has a README that explains how to get started with the template and some general tips on how to write FlexFuns.
Getting started using the FlexFun package directly
Install the package alongside the gooddata-flight-server using pip:
pip install gooddata-flight-server gooddata-flexfun
Next, update the GoodData Flight Server configuration to load the FlexFun methods.
[flexfun]
# specify one or more modules that contain your FlexFun implementations
#
functions = [
"flexfun.your_function"
]
Then when running the GoodData Flight Server, use the --methods-provider
option to load the FlexFun methods.
For example:
#!/bin/bash
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
SERVER_CMD="${SCRIPT_DIR}/.venv/bin/gooddata-flight-server"
export PYTHONPATH="${SCRIPT_DIR}/src"
export CONFIG_ENV="${1:-dev}"
$SERVER_CMD start \
--methods-provider gooddata_flexfun \
--config \
config/${CONFIG_ENV}.server.toml \
config/flexfun.config.toml \
--logging-config config/default.logging.ini \
--dev-log
This will start the GoodData Flight Server with the FlexFun methods loaded.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file gooddata_flexfun-1.29.0.tar.gz
.
File metadata
- Download URL: gooddata_flexfun-1.29.0.tar.gz
- Upload date:
- Size: 46.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.20
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5fc98cf24140978d391c4ef96e0b8ce33bbc3e9a6b02b431379374a6428964a8 |
|
MD5 | c48d2abc5d02be82cb56c57203a10c9a |
|
BLAKE2b-256 | 2ed933eb63b88ce9a142a5bc64d73846ee00bc55804eaf048c26f1bca8d0ac59 |
File details
Details for the file gooddata_flexfun-1.29.0-py3-none-any.whl
.
File metadata
- Download URL: gooddata_flexfun-1.29.0-py3-none-any.whl
- Upload date:
- Size: 47.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.20
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 00bd842429f0ba98bd774c628471fbeb1c31af72018b4f61daad8053622c7f77 |
|
MD5 | e490ce801dfb139e905e4eb8f7bb72e5 |
|
BLAKE2b-256 | b32a08c2fff6b840fa490524ca3099b0a36b3339ce305be67dd4c1792964af83 |