Skip to content

Commit

Permalink
[HOPSWORKS-2183] Add feature group, training dataset, storage connect…
Browse files Browse the repository at this point in the history
…or counters to FeaturestoreDTO summary (#176)
  • Loading branch information
SirOibaf committed Dec 2, 2020
1 parent 05a6ee0 commit 1215325
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions python/hsfs/feature_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,9 @@ def __init__(
offline_featurestore_name,
hive_endpoint,
online_enabled,
num_feature_groups=None,
num_training_datasets=None,
num_storage_connectors=None,
online_featurestore_name=None,
mysql_server_endpoint=None,
online_featurestore_size=None,
Expand All @@ -69,6 +72,9 @@ def __init__(
self._hive_endpoint = hive_endpoint
self._mysql_server_endpoint = mysql_server_endpoint
self._online_enabled = online_enabled
self._num_feature_groups = num_feature_groups
self._num_training_datasets = num_training_datasets
self._num_storage_connectors = num_storage_connectors

self._feature_group_api = feature_group_api.FeatureGroupApi(self._id)
self._storage_connector_api = storage_connector_api.StorageConnectorApi(
Expand Down

0 comments on commit 1215325

Please sign in to comment.