thanosql.resources._query
Module Contents
Classes
Create a collection of name/value pairs. |
|
Service layer for query methods. |
|
Service layer for query log methods. |
|
Service layer for query template methods. |
- class thanosql.resources._query.QueryLog
Bases:
thanosql.resources._model.BaseModel- query_id: str | None
- statement_type: str | None
- start_time: datetime.datetime | None
- end_time: datetime.datetime | None
- query: str
- referer: str
- state: str | None
- destination_table_name: str | None
- destination_schema: str | None
- error_result: str | None
- created_at: datetime.datetime | None
- records: thanosql.resources._record.Records | None
- class thanosql.resources._query.QueryType(*args, **kwds)
Bases:
enum.EnumCreate a collection of name/value pairs.
Example enumeration:
>>> class Color(Enum): ... RED = 1 ... BLUE = 2 ... GREEN = 3
Access them by:
attribute access:
>>> Color.RED <Color.RED: 1>
value lookup:
>>> Color(1) <Color.RED: 1>
name lookup:
>>> Color['RED'] <Color.RED: 1>
Enumerations can be iterated over, and know how many members they have:
>>> len(Color) 3
>>> list(Color) [<Color.RED: 1>, <Color.BLUE: 2>, <Color.GREEN: 3>]
Methods can be added to enumerations, and members can have their own attributes – see the documentation for details.
- THANOSQL = 'thanosql'
- PSQL = 'psql'
- class thanosql.resources._query.QueryService(client: thanosql._client.ThanoSQL)
Bases:
thanosql._service.ThanoSQLServiceService layer for query methods.
- log
The query log service layer to access methods involving query logs.
- Type:
- template
The query template service layer to access methods involving query templates.
- Type:
- execute(query: str | None = None, query_type: str = 'thanosql', template_id: int | None = None, template_name: str | None = None, parameters: dict | None = None, schema: str | None = None, table_name: str | None = None, overwrite: bool | None = None, max_results: int = 100) QueryLog
Executes a query string.
There are three ways of requesting a query:
Using a complete query directly in query, leaving template_id, template_name, and parameters empty.
Using a template query in query and completing it with parameters, leaving template_id and template_name empty.
Recalling a template query from the database using template_id or template_name (but not both) and completing it with parameters, leaving query empty.
One, and only one, of these ways must be chosen. That is, exactly one of query, template_id, or template_name must be specified. If none or more than one way is selected, an error will occur.
- Parameters:
query (str, optional) – The query string or template to be executed.
query_type (str, default "thanosql") – The type of the query to be executed. Can only be one of “thanosql” or “psql”.
template_id (int, optional) – The ID number of the query template to be used. Only relevant when a query template from the database is needed, and query and template_name are not used simultaneously.
template_name (str, optional) – The name of the query template to be used. Only relevant when a query template from the database is needed, and query and template_id are not used simultaneously.
parameters (dict, optional) – A dictionary of parameter names and values to fill in the template. Only relevant when a query template, either from query or the database, is used.
schema (str, optional) – The schema of the table to save the query results in. If not specified and table_name is also empty, it defaults to “qm”. If table_name is specified, it defaults to “public”.
table_name (str, optional) – The name of the table to save the query results in. If not specified while the query produces a result, an automatic table name will be given.
overwrite (bool, optional) – Whether to overwrite the table if a table with the same table_name and schema already exists. If not specified, the value is False.
max_results (int, optional) – The maximum number of records to be returned by the response QueryLog. If not specified, it defaults to 100.
- Returns:
A query log object containing details about the results of the executed query.
- Return type:
- Raises:
- If invalid input combination is provided; that is:
query, template_id, and template_name are all empty, or
more than one of query, template_id, and template_name are non-empty
If a value other than “thanosql” or “psql” is provided as query_type.
If max_results is not between 0 and 100 (inclusive).
If query and parameters are used but the template has invalid format.
If rendering query template by substituting in parameters fails, either by direct query template or templates from the database.
- class thanosql.resources._query.QueryLogService(query: QueryService)
Bases:
thanosql._service.ThanoSQLServiceService layer for query log methods.
Cannot exist without a parent QueryService.
- query
The parent QueryService to connect to the ThanoSQL client.
- Type:
- list(search: str | None = None, offset: int | None = None, limit: int | None = None) dict
Lists the details of stored query logs.
- Parameters:
search (str, optional) – Search keywords that the query strings in the results must contain. If not set, all query logs are returned by default.
offset (int, optional) – When set to n, skips the first n results and excludes them from the output list. Otherwise, starts the list from the first result stored. Must be greater than 0.
limit (int, optional) – When set to n, limits the number of results listed to n. Otherwise, lists up to 100 results per call. Must range between 0 to 100.
- Returns:
A dictionary of results in the format of:
{ "query_logs": ["QueryLog"], "total": 0 }
- Return type:
dict
- Raises:
ThanoSQLValueError – If offset is less than 0 or if limit is not between 0 to 100 (inclusive).
- class thanosql.resources._query.QueryTemplate
Bases:
thanosql.resources._model.BaseModel- id: int | None
- name: str
- query: str
- parameters: List[str] | None = []
- created_at: datetime.datetime | None
- updated_at: datetime.datetime | None
- class thanosql.resources._query.QueryTemplateService(query: QueryService)
Bases:
thanosql._service.ThanoSQLServiceService layer for query template methods.
Cannot exist without a parent QueryService.
- query
The parent QueryService to connect to the ThanoSQL client.
- Type:
- list(search: str | None = None, offset: int | None = None, limit: int | None = None, order_by: str | None = None) List[QueryTemplate]
Lists query templates stored in the workspace.
- Parameters:
search (str, optional) – Search keywords that the query strings in the results must contain. If not set, all query templates are returned by default.
offset (int, optional) – When set to n, skips the first n results and excludes them from the output list. Otherwise, starts the list from the first result stored. Must be greater than 0.
limit (int, optional) – When set to n, limits the number of results listed to n. Otherwise, lists up to 100 results per call. Must range between 0 to 100.
order_by (str, optional) – How to order the results. There are only three possible values: - recent: based on the date of creation, from most recent to oldest - name_asc: based on the name of the template, from A to Z - name_desc: based on the name of the template, from Z to A
- Returns:
A list of QueryTemplate objects.
- Return type:
List[QueryTemplate]
- Raises:
If offset is less than 0 or if limit is not between 0 to 100 (inclusive).
If order_by is not one of “recent”, “name_asc”, or “name_desc”.
- create(name: str | None = None, query: str | None = None, dry_run: bool | None = None) QueryTemplate
Creates a new query template.
- Parameters:
name (str, optional) – The name of the query template to be created. If left empty, an automatic name will be given.
query (str, optional) – The string contents of the template.
dry_run (bool, optional) – Whether to “dry run” the template creation or save it to database. When set to True, only shows whether the query template is valid or not without actually storing it. By default, created query templates will be saved to the workspace database.
- Returns:
QueryTemplate object of the created query template.
- Return type:
- Raises:
If the template name contains invalid characters or is too long.
If the query template contains invalid formatting.
- get(name: str) QueryTemplate
Shows the details of the specified query template.
- Parameters:
name (str) – The name of the query template to be retrieved.
- Returns:
A QueryTemplate object.
- Return type:
- update(current_name: str, new_name: str | None = None, query: str | None = None) QueryTemplate
Updates the specified query template.
- Parameters:
current_name (str) – The current name of the query template to be updated.
new_name (str, optional) – The new name of query template after update. If not set, the name will not be changed.
query (str, optional) – The query contents of the query template after update. If not set, the query string will not be changed.
- Returns:
QueryTemplate object of the new query template after update.
- Return type:
- Raises:
If the new template name is set but is empty or null, contains invalid characters, or is too long.
If the new query template is set but is null or contains invalid formatting.
- delete(name: str) dict
Deletes the specified query template.
- Parameters:
name (str) – The name of the query template to be deleted.
- Returns:
A dictionary containing a success message in the format of:
{ "message": "string" }
- Return type:
dict