Skip to content

featurebyte.Table.update_record_creation_timestamp_column

update_record_creation_timestamp_column(
record_creation_timestamp_column: str
)

Description

Determines the column in the table that represents the timestamp for record creation. This information is utilized to analyze feature job settings, and the identified column is treated as a special column that is not meant for feature engineering. By default, any view created from the table will exclude this column.

Parameters

  • record_creation_timestamp_column: str
    The column for the timestamp when a record was created.

Examples

Update record creation timestamp column

>>> event_table = catalog.get_table("GROCERYINVOICE")
>>> event_table.update_record_creation_timestamp_column("record_available_at")