featurebyte.SourceTable.create_batch_request_table¶
create_batch_request_table( 
name: str, 
columns: Optional[list[str]]=None, 
columns_rename_mapping: Optional[dict[str, str]]=None
) -> BatchRequestTableDescription¶
Creates an BatchRequestTable from the SourceTable. When you specify the columns and the columns_rename_mapping parameters, make sure that the table has a column containing entity values with an accepted serving name.
Parameters¶
- name: str
 Batch request table name.
- columns: Optional[list[str]]
 Include only these columns when creating the batch request table. If None, all columns are included.
- columns_rename_mapping: Optional[dict[str, str]]
 Rename columns in the source table using this mapping from old column names to new column names when creating the batch request table. If None, no columns are renamed.
Returns¶
- BatchRequestTable