class documentation
class AzureBlobCsvDataSource(CodableBatchDataSource, DataFileReference, ColumnFeatureMappable, AzureConfigurable): (source)
Undocumented
Class Method | multi |
Undocumented |
Method | all |
Undocumented |
Method | all |
Undocumented |
Method | features |
Undocumented |
Method | job |
A key defining which sources can be grouped together in one request. |
Async Method | schema |
Returns the schema for the data source |
Async Method | to |
Undocumented |
Async Method | to |
Undocumented |
Method | with |
Undocumented |
Async Method | write |
Undocumented |
Async Method | write |
Undocumented |
Async Method | write |
Undocumented |
Class Variable | config |
Undocumented |
Class Variable | csv |
Undocumented |
Class Variable | date |
Undocumented |
Class Variable | mapping |
Undocumented |
Class Variable | path |
Undocumented |
Class Variable | type |
Undocumented |
Property | storage |
Undocumented |
Property | to |
Undocumented |
Inherited from CodableBatchDataSource
:
Class Method | _deserialize |
Undocumented |
Method | _serialize |
Undocumented |
Inherited from BatchDataSource
(via CodableBatchDataSource
):
Method | __hash__ |
Undocumented |
Method | all |
Undocumented |
Method | all |
Undocumented |
Method | depends |
Undocumented |
Async Method | feature |
Setup the code needed to represent the data source as a feature view |
Method | filter |
Undocumented |
Async Method | freshness |
.table("my_table") .freshness() |
Method | location |
Undocumented |
Method | source |
An id that identifies a source from others. |
Method | tags |
Undocumented |
Method | transform |
Undocumented |
Method | with |
Undocumented |
Inherited from ColumnFeatureMappable
(via CodableBatchDataSource
, BatchDataSource
):
Method | columns |
Undocumented |
Method | feature |
Undocumented |
Method | with |
Undocumented |
@classmethod
def multi_source_features_for(cls, facts:
def multi_source_features_for(cls, facts:
RetrivalJob
, requests: list[ tuple[ AzureBlobCsvDataSource, RetrivalRequest]]
) -> RetrivalJob
:
(source)
¶
Undocumented
def all_between_dates(self, request:
RetrivalRequest
, start_date: datetime
, end_date: datetime
) -> RetrivalJob
:
(source)
¶
Undocumented
Returns the schema for the data source
`python source = FileSource.parquet_at('test_data/titanic.parquet') schema = await source.schema() >>> {'passenger_id': FeatureType(name='int64'), ...} `
- Returns:
- dict[str, FeatureType]: A dictionary containing the column name and the feature type