Method
setFeatureGroupExportConnectorConfig POST
Copy POST

Sets FG export config for the given feature group.

Arguments:

REQUIRED KEY TYPE DESCRIPTION
Yes featureGroupId ID The unique ID associated with the pre-existing Feature Group for which export config is to be set.
No featureGroupExportConfig FeatureGroupExportConfig The export config to be set for the given feature group.
KEY TYPE Description
outputLocation str The File Connector location to which the feature group is being written.
fileFormat str The file format being written to output_location.
databaseConnectorId str The unique string identifier of the database connector used.
objectName str The object in the database connector to which the feature group is being written.
writeMode str UPSERT or INSERT for writing to the database connector.
databaseFeatureMapping dict The column/feature pairs mapping the features to the database columns.
idColumn str The id column to use as the upsert key.
additionalIdColumns str For database connectors which support it, additional ID columns to use as a complex key for upserting.
Note: The arguments for the API methods follow camelCase but for Python SDK underscore_case is followed.

Response:

KEY TYPE DESCRIPTION
success Boolean true if the call succeeded, false if there was an error

Exceptions:

TYPE WHEN
DataNotFoundError

featureGroupId is not found.

Language: