|
@@ -134,7 +134,7 @@ class MongodbHandler:
|
|
"Parameter 'direction' must be a string type"
|
|
"Parameter 'direction' must be a string type"
|
|
|
|
|
|
self._database[collection_name].create_index([(key, direction)], name=key)
|
|
self._database[collection_name].create_index([(key, direction)], name=key)
|
|
- #collection.create_index([('field_i_want_to_index', pymongo.TEXT)], name='search_index', default_language='english')
|
|
|
|
|
|
+
|
|
|
|
|
|
def set_collection_schema(self, collection_name: str, schema_path: str,
|
|
def set_collection_schema(self, collection_name: str, schema_path: str,
|
|
validation_level: str = 'moderate',validation_action: str = 'error'):
|
|
validation_level: str = 'moderate',validation_action: str = 'error'):
|
|
@@ -257,7 +257,7 @@ class MongodbHandler:
|
|
data = self._database[collection_name].find({attribute: {comparison_operator: attribute_value}})
|
|
data = self._database[collection_name].find({attribute: {comparison_operator: attribute_value}})
|
|
|
|
|
|
except Exception as error:
|
|
except Exception as error:
|
|
- self._log.log_and_raise_error(('An error occured trying to query data from {}, with query {}: {}:{}. \nError:{}').format(collection_name, attribute_value, comparison_operator, attribute_value, error))
|
|
|
|
|
|
+ self._log.log_and_raise_error(('An error occured trying to query data from {}, with query {}: {}:{}. \nError:{}').format(collection_name, attribute, comparison_operator, attribute_value, error))
|
|
|
|
|
|
return self.convert_mongo_data_into_dataframe(data, index, collection_name)
|
|
return self.convert_mongo_data_into_dataframe(data, index, collection_name)
|
|
|
|
|