You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently we are using SQLite3 as on SQL DB backend which is fine for initial developer testing.
However, for a production deployment we will need to support for database solutions that can be shared between multiple telemetry server instances.
As a first past we need to add support for using a PostgreSQL DB backend for the Staging, Operational and Telemetry DBs.
The main differences between SQLite3, and PostgreSQL, at least from the perspective of our current relatively simple SQL schemas and usage patterns, are:
SQLite3 uses ? as the placeholder for provided arguments in an SQL statement, whereas PostgreSQL using $1, $2, and so on for it's placeholders.
Table schema specifications for types and constraints may be slightly different
DB Config settings will need to be able to specify credentials.
The text was updated successfully, but these errors were encountered:
Currently we are using SQLite3 as on SQL DB backend which is fine for initial developer testing.
However, for a production deployment we will need to support for database solutions that can be shared between multiple telemetry server instances.
As a first past we need to add support for using a PostgreSQL DB backend for the Staging, Operational and Telemetry DBs.
The main differences between SQLite3, and PostgreSQL, at least from the perspective of our current relatively simple SQL schemas and usage patterns, are:
?
as the placeholder for provided arguments in an SQL statement, whereas PostgreSQL using$1
,$2
, and so on for it's placeholders.The text was updated successfully, but these errors were encountered: