Class QueryInsightsResponse

    • Method Detail

      • querySpatialCoverage

        public final QuerySpatialCoverage querySpatialCoverage()

        Provides insights into the spatial coverage of the query, including the table with sub-optimal (max) spatial pruning. This information can help you identify areas for improvement in your partitioning strategy to enhance spatial pruning.

        Returns:
        Provides insights into the spatial coverage of the query, including the table with sub-optimal (max) spatial pruning. This information can help you identify areas for improvement in your partitioning strategy to enhance spatial pruning.
      • queryTemporalRange

        public final QueryTemporalRange queryTemporalRange()

        Provides insights into the temporal range of the query, including the table with the largest (max) time range. Following are some of the potential options for optimizing time-based pruning:

        • Add missing time-predicates.

        • Remove functions around the time predicates.

        • Add time predicates to all the sub-queries.

        Returns:
        Provides insights into the temporal range of the query, including the table with the largest (max) time range. Following are some of the potential options for optimizing time-based pruning:

        • Add missing time-predicates.

        • Remove functions around the time predicates.

        • Add time predicates to all the sub-queries.

      • queryTableCount

        public final Long queryTableCount()

        Indicates the number of tables in the query.

        Returns:
        Indicates the number of tables in the query.
      • outputRows

        public final Long outputRows()

        Indicates the total number of rows returned as part of the query result set. You can use this data to validate if the number of rows in the result set have changed as part of the query tuning exercise.

        Returns:
        Indicates the total number of rows returned as part of the query result set. You can use this data to validate if the number of rows in the result set have changed as part of the query tuning exercise.
      • outputBytes

        public final Long outputBytes()

        Indicates the size of query result set in bytes. You can use this data to validate if the result set has changed as part of the query tuning exercise.

        Returns:
        Indicates the size of query result set in bytes. You can use this data to validate if the result set has changed as part of the query tuning exercise.
      • unloadPartitionCount

        public final Long unloadPartitionCount()

        Indicates the partitions created by the Unload operation.

        Returns:
        Indicates the partitions created by the Unload operation.
      • unloadWrittenRows

        public final Long unloadWrittenRows()

        Indicates the rows written by the Unload query.

        Returns:
        Indicates the rows written by the Unload query.
      • unloadWrittenBytes

        public final Long unloadWrittenBytes()

        Indicates the size, in bytes, written by the Unload operation.

        Returns:
        Indicates the size, in bytes, written by the Unload operation.
      • hashCode

        public final int hashCode()
        Overrides:
        hashCode in class Object
      • equals

        public final boolean equals​(Object obj)
        Overrides:
        equals in class Object
      • toString

        public final String toString()
        Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be redacted from this string using a placeholder value.
        Overrides:
        toString in class Object
      • getValueForField

        public final <T> Optional<T> getValueForField​(String fieldName,
                                                      Class<T> clazz)