ElasticSearchDB
This class a wrapper around elasticsearch-py. It is used to query Elasticsearch instances.
- class DIRAC.Core.Utilities.ElasticSearchDB.ElasticSearchDB(host, port, user=None, password=None, indexPrefix='', useSSL=True, useCRT=False, ca_certs=None, client_key=None, client_cert=None)
Bases:
object
- class ElasticSearchDB
- Parameters:
- RESULT_SIZE = 10000
- __init__(host, port, user=None, password=None, indexPrefix='', useSSL=True, useCRT=False, ca_certs=None, client_key=None, client_cert=None)
c’tor
- Parameters:
self – self reference
host (str) – name of the database for example: MonitoringDB
port (str) – The full name of the database for example: ‘Monitoring/MonitoringDB’
user (str) – user name to access the db
password (str) – if the db is password protected we need to provide a password
indexPrefix (str) – it is the indexPrefix used to get all indexes
useSSL (bool) – We can disable using secure connection. By default we use secure connection.
useCRT (bool) – Use certificates.
ca_certs (str) – CA certificates bundle.
client_key (str) – Client key.
client_cert (str) – Client certificate.
- bulk_index(indexPrefix, data=None, mapping=None, period='day', withTimeStamp=True)
- Parameters:
- Returns:
S_OK/S_ERROR
- clusterName = ''
- createIndex(indexPrefix, mapping=None, period='day')
- deleteByQuery(indexName, query)
Delete data by query (careful!)
- deleteDoc(index: str, docID: str)
Deletes a document in an index.
- Parameters:
index – name of the index
docID – document ID
- existingIndex(indexName)
Checks the existance of an index, by its name
- Parameters:
indexName (str) – the name of the index
- Returns:
S_OK/S_ERROR if the request is successful
- existsDoc(index: str, docID: str) bool
Returns information about whether a document exists in an index.
- Parameters:
index – name of the index
docID – document ID
- static generateFullIndexName(indexName, period)
Given an index prefix we create the actual index name.
- getDoc(index: str, docID: str) dict
Retrieves a document in an index.
- Parameters:
index – name of the index
docID – document ID
- getDocTypes(indexName)
Returns mappings, by index.
- Parameters:
indexName (str) – is the name of the index…
- Returns:
S_OK or S_ERROR
- getDocs(indexFunc, docIDs: list[str]) list[dict]
Efficiently retrieve many documents from an index.
- Parameters:
index – name of the index
docIDs – document IDs
- getIndexPrefix()
It returns the DIRAC setup.
- getIndexes(indexName=None)
It returns the available indexes…
- getUniqueValue(indexName, key, orderBy=False)
- index(indexName, body=None, docID=None, op_type='index')
- pingDB()
Try to connect to the database
- Returns:
S_OK(TRUE/FALSE)
- update(index: str, query=None, updateByQuery: bool = True, docID: str = None)
Executes an update of a document, and returns S_OK/S_ERROR
- Parameters:
index – index name
query – It is the query in ElasticSearch DSL language
updateByQuery – A bool to determine update by query or index values using index function.
docID – ID for the document to be created.
- DIRAC.Core.Utilities.ElasticSearchDB.generateDocs(data, withTimeStamp=True)
Generator for fast bulk indexing, yields docs
- DIRAC.Core.Utilities.ElasticSearchDB.ifConnected(method)
Decorator for checking that the connection is established.