We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae8e17b commit 688889aCopy full SHA for 688889a
dataikuapi/dss/dataset.py
@@ -163,6 +163,13 @@ def synchronize_hive_metastore(self):
163
self.client._perform_empty(
164
"POST" , "/projects/%s/datasets/%s/actions/synchronizeHiveMetastore" %(self.project_key, self.dataset_name))
165
166
+ def update_from_hive(self):
167
+ """
168
+ Resynchronize this dataset from its Hive definition
169
170
+ self.client._perform_empty(
171
+ "POST", "/projects/%s/datasets/%s/actions/updateFromHive" %(self.project_key, self.dataset_name))
172
+
173
def compute_metrics(self, partition='', metric_ids=None, probes=None):
174
"""
175
Compute metrics on a partition of this dataset.
0 commit comments