mirror of
https://github.com/bigchaindb/bigchaindb.git
synced 2024-10-13 13:34:05 +00:00
46 lines
1.3 KiB
Python
46 lines
1.3 KiB
Python
import rethinkdb as r
|
|
|
|
from bigchaindb.backend.connection import Connection
|
|
from bigchaindb.backend.exceptions import ConnectionError, OperationError
|
|
|
|
|
|
class RethinkDBConnection(Connection):
|
|
"""
|
|
This class is a proxy to run queries against the database, it is:
|
|
|
|
- lazy, since it creates a connection only when needed
|
|
- resilient, because before raising exceptions it tries
|
|
more times to run the query or open a connection.
|
|
"""
|
|
|
|
def run(self, query):
|
|
"""Run a RethinkDB query.
|
|
|
|
Args:
|
|
query: the RethinkDB query.
|
|
|
|
Raises:
|
|
:exc:`rethinkdb.ReqlDriverError`: After
|
|
:attr:`~.RethinkDBConnection.max_tries`.
|
|
"""
|
|
|
|
try:
|
|
return query.run(self.conn)
|
|
except r.ReqlDriverError as exc:
|
|
raise OperationError from exc
|
|
|
|
def _connect(self):
|
|
"""Set a connection to RethinkDB.
|
|
|
|
The connection is available via :attr:`~.RethinkDBConnection.conn`.
|
|
|
|
Raises:
|
|
:exc:`rethinkdb.ReqlDriverError`: After
|
|
:attr:`~.RethinkDBConnection.max_tries`.
|
|
"""
|
|
|
|
try:
|
|
return r.connect(host=self.host, port=self.port, db=self.dbname)
|
|
except r.ReqlDriverError as exc:
|
|
raise ConnectionError from exc
|