Support defining cluster topology (used for query scheduling) using network subnets. (#4862)
Improve query performance by reducing worker to worker communication overhead. (#5905, #5949)
Allow disabling client HTTP response compression, which can improve throughput over fast network links.
Compression can be disabled globally via the query-results.compression-enabled config property, for CLI via
the --disable-compression flag, and for the JDBC driver via the disableCompression driver property. (#5818)
Rename rewrite-filtering-semi-join-to-inner-join session property to rewrite_filtering_semi_join_to_inner_join. (#5954)
Throw a user error when session property value cannot be decoded. (#5731)
Fix query failure when expressions that produce values of type row are used in a VALUES clause. (#3398)
Add dynamic filtering support. It can be enabled by setting a non-zero duration value for kudu.dynamic-filtering.wait-timeout config property
or dynamic_filtering_wait_timeout session property. (#5594)
Improve query performance by compacting large pushed down predicates for the PostgreSQL, MySQL, Oracle,
Redshift and SQL Server connectors. Compaction threshold can be changed using the domain-compaction-threshold
config property or domain_compaction_threshold session property. (#6057)
Improve performance for the PostgreSQL, MySQL, SQL Server connectors for certain complex queries involving
aggregation and predicates by pushing the aggregation and predicates computation into the remote database. (#4112)