MLRun installation issue

I try to install MLRun==1.1.2 via python pip and I got this error message (venv) PS C:\Python\mlrun_remote> pip install mlrun==1.1.2 Collecting mlrun==1.1.2 WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by ‘SSLError(SSLCertVerificationError(1, ‘[SSL: CERTIFICATE_VERIFY_FAILED] cer tificate verify failed: self signed certificate in certificate chain (_ssl.c:1091)’))’: /packages/87/d1/b3f8a382d583647d9dd29e97c128848530f48bc57170c38bed8d9ba2bd11/mlrun-1.1.2-py3-none-any.wh l WARNING: Retrying (Retry(total=3, connect=None, read=None, redirect=None,… Read More MLRun installation issue

Possible data Ingest count issue in FeatureStore

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, CSVSource("mycsv", path="a2.csv"), overwrite=False) and I saw only 3… Read More Possible data Ingest count issue in FeatureStore