I am getting the following error while saving a delta table in the feature store
WARNING databricks.feature_store._catalog_client_helper: Failed to record data sources in the catalog. Exception: {'error_code': 'INVALID_PARAMETER_VALUE', 'message': 'Too many sources. It cannot be more than 100'}
The code:
from databricks.feature_store import FeatureStoreClient
fs = FeatureStoreClient()
feature_table = fs.create_table(
name='feature_db.feature_delta_df',
df= pydf,
primary_keys=['key_1','key_2','key_3'],
schema=pydf.schema,
description='BB customer analytics record'
)