Active Queries

Hydrolix maintains a system table storing query information for the last 5 minutes. Query it in the project hdx like any other table.

Example:

SELECT
  query_start,
  query_end,
  query,
  active,
  admin_comment,
  comment,
  (query_end - query_start) AS query_duration
FROM hdx.active_queries
ORDER BY query_start DESC

Columns available in hdx.active_queries:

ColumnDescription
query_starttimestamp query received
query_endtimestamp query responded
querybody of the query
useruser placing the query request
commenttext provided by the hdx_query_comment
admin_commenttext provided by the hdx_query_admin_comment
activeboolean for if the query running or not
hydrolix_versionHydrolix version active when query was received
turbine_revisionTurbine revision active when query was received

Common uses are to add the name of the user running the query or indicate a scheduled query for some particular reason.

Example Active Queries for Last 5 Minutes