A feature Group Export Job
| KEY | TYPE | Description |
|---|---|---|
| featureGroupExportId | str | Unique identifier for this export. |
| failedWrites | int | Number of failed writes. |
| totalWrites | int | Total number of writes. |
| featureGroupVersion | str | Version of the feature group being exported. |
| connectorType | str | The type of connector |
| outputLocation | str | File Connector location the feature group is being written to. |
| fileFormat | str | File format being written to `output_location`. |
| databaseConnectorId | str | Database connector ID used. |
| objectName | str | Database connector's object to write to. |
| writeMode | str | `UPSERT` or `INSERT` for writing to the database connector. |
| databaseFeatureMapping | dict | Column/feature pairs mapping the features to the database columns. |
| idColumn | str | ID column to use as the upsert key. |
| status | str | Current status of the export. |
| createdAt | str | Timestamp at which the export was created (ISO-8601 format). |
| exportCompletedAt | str | Timestamp at which the export completed (ISO-8601 format). |
| additionalIdColumns | List[str] | For database connectors which support it, additional ID columns to use as a complex key for upserting. |
| error | str | If `status` is `FAILED`, this field will be populated with an error. |
| databaseOutputError | bool | If `True`, there were errors reported by the database connector while writing. |
| projectConfig | ProjectConfig | Project config for this feature group. |