feature-store

Is it possible to remove specific items from Parquet and NoSQL Targets?

Is it possible to remove specific items from Parquet and NoSQL Targets? Question: Is it possible to remove specific items from Parquet and NoSQL Targets in MLRun? I did not find relevant methods and I checked FeatureStore, ParquetTarget and NoSQLTarget. I only saw ability to remove whole featureset from metastore (from DB) without touch of …

Total answers: 1

Issue with the aggregation function in the pipeline during online ingest

Issue with the aggregation function in the pipeline during online ingest Question: I see issue in the aggregation function (part of pipeline) during the online ingest, because aggregation output is invalid (output is different then expectation, I got value 0 instead of 6). The pipeline is really very simple: See part of code (Python and …

Total answers: 1

Possible data Ingest count issue in FeatureStore

Possible data Ingest count issue in FeatureStore Question: I see mistake, that count of values in FeatureStore Statistic do not fit with amount of ingested values, see sample … project_name = ‘test-load’ project = mlrun.get_or_create_project(project_name, context=’./’, user_project=True) .. fset = fstore.FeatureSet("test01", entities=[‘id’]) # ingest 3 values fstore.ingest(fset, CSVSource("mycsv", path="a1.csv"), overwrite=False) # ingest 3 values fstore.ingest(fset, …

Total answers: 1