ApiImpalaQueryResponse Data Model

The response contains a list of queries and warnings.

Properties
name data type description
queries array of ApiImpalaQuery The list of queries for this response.
warnings array of string This list of warnings for this response.

Example

{
  "queries" : [ {
    "queryId" : "...",
    "statement" : "...",
    "queryType" : "...",
    "queryState" : "...",
    "startTime" : "...",
    "endTime" : "...",
    "rowsProduced" : 12345,
    "attributes" : {
      "property1" : "...",
      "property2" : "..."
    },
    "user" : "...",
    "coordinator" : {
      "hostId" : "...",
      "hostname" : "..."
    },
    "detailsAvailable" : true,
    "database" : "...",
    "durationMillis" : 12345
  }, {
    "queryId" : "...",
    "statement" : "...",
    "queryType" : "...",
    "queryState" : "...",
    "startTime" : "...",
    "endTime" : "...",
    "rowsProduced" : 12345,
    "attributes" : {
      "property1" : "...",
      "property2" : "..."
    },
    "user" : "...",
    "coordinator" : {
      "hostId" : "...",
      "hostname" : "..."
    },
    "detailsAvailable" : true,
    "database" : "...",
    "durationMillis" : 12345
  } ],
  "warnings" : [ "...", "..." ]
}