You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- FlexFunctions are now FlexConnect
- We will discontinue the old gooddata-flexfun and instead use gooddata-flexconnect
- Renamed everything accordingly
- There should be no sight of FlexFun anywhere now
JIRA: CQ-894
risk: low
Copy file name to clipboardExpand all lines: LICENSE.txt
+1-1
Original file line number
Diff line number
Diff line change
@@ -7,4 +7,4 @@ The above copyright notice and this permission notice shall be included in all c
7
7
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
8
8
-----------------------
9
9
10
-
This repository includes source code for gooddata-api-client, gooddata-fdw, gooddata-pandas, gooddata-sdk, gooddata-flight-server, gooddata-flexfun, and gooddata-dbt, each of which is licensed under the MIT license above. For additional licensing information related to open source packages included in each of these projects, please see the OSS LICENSES directory.
10
+
This repository includes source code for gooddata-api-client, gooddata-fdw, gooddata-pandas, gooddata-sdk, gooddata-flight-server, gooddata-flexconnect, and gooddata-dbt, each of which is licensed under the MIT license above. For additional licensing information related to open source packages included in each of these projects, please see the OSS LICENSES directory.
GoodData FlexConnect allows you to build your own data source for GoodData Cloud or Cloud Native.
4
+
5
+
FlexConnect works with a concept similar to 'table functions' that you may already know
6
+
from database technologies.
7
+
8
+
- To build your own data source, you implement one or more FlexConnect functions. The
9
+
functions compute and return tabular data - how they do it is completely up to you.
10
+
- The functions are hosted and invoked inside a FlexConnect server (which is included in this package).
11
+
- A running FlexConnect server can be added as a data source to your GoodData Cloud or GoodData Cloud Native.
12
+
- The functions available on FlexConnect server will be mapped to data sets within GoodData's Semantic Model
13
+
and from then on can be used during report computation.
14
+
15
+
16
+
## Getting Started using the FlexConnect Template
17
+
18
+
The easiest way to get started writing FlexConnect functions is to use [the template repository](https://github.com/gooddata/gooddata-flexconnect-template).
19
+
It provides a simple example of a FlexConnect function that can be used as a starting point for your own FlexConnect functions with all the necessary infrastructure in place.
20
+
It also has a README that explains how to get started with the template and some general tips on how to write FlexConnect functions.
21
+
22
+
## Getting started using the FlexConnect package directly
23
+
24
+
Install the package alongside the gooddata-flight-server using pip:
0 commit comments