You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -196,6 +197,7 @@ The web console now supports the Kinesis input format.
196
197
- You can now display both raw and formatted JSON in tables, making the data easier to read and troubleshoot [#16632](https://github.com/apache/druid/pull/16632)
197
198
- You can now configure the maximum number of tasks through a menu [#16991](https://github.com/apache/druid/pull/16991)
198
199
- You can now specify the Delta snapshot version in the web console [#17023](https://github.com/apache/druid/pull/17023)
200
+
- Added a column for CPU counters in the query stages detail view when they are present. Also added tooltips to expose potentially hidden data like CPU time [#17132](https://github.com/apache/druid/pull/17132)
199
201
- Added hooks to customize the workbench view [#16749](https://github.com/apache/druid/pull/16749)
200
202
- Added the ability to hide workbench view toolbar in the **Query** view [#16785](https://github.com/apache/druid/pull/16785)
201
203
- Added the ability to submit a suspended supervisor using the SQL data loader [#16696](https://github.com/apache/druid/pull/16696)
@@ -206,12 +208,14 @@ The web console now supports the Kinesis input format.
206
208
- Added Delta snapshot version [#17023](https://github.com/apache/druid/pull/17023)
207
209
- Added the Delta tile to the data loader for SQL-based batch and classic batch ingestion methods [#17160](https://github.com/apache/druid/pull/17160)
208
210
- Improved how the web console detects durable storage [#16493](https://github.com/apache/druid/pull/16493)
211
+
- Added a graph visualization to illustrate the flow of query stages [#17135](https://github.com/apache/druid/pull/17135)
209
212
- Made the following web console improvements:
210
213
- Added titles to action menus
211
214
- Improved the query-based ingestion counter calculation
212
215
- Removed the filter clause on `__time`
213
216
- Fixed scrolling in the `loadRules` editor [#16735](https://github.com/apache/druid/pull/16735)
214
217
- Restored the default WHERE filter to auto-generated SQL queries [#16608](https://github.com/apache/druid/pull/16608)
218
+
- Updated the Web Console to use array mode by default for schema discovery [#17133](https://github.com/apache/druid/pull/17133)
215
219
- Fixed NPE due to null values in numeric columns [#16760](https://github.com/apache/druid/pull/16760)
216
220
217
221
### Ingestion
@@ -359,6 +363,7 @@ Added the following fields from the query-based ingestion task report to the res
359
363
- Improved query filtering to correctly process cases where both an IN expression and an equality (`=`) filter are applied to the same string value [#16597](https://github.com/apache/druid/pull/16597)
360
364
- Improved the speed of SQL IN queries that use the SCALAR_IN_ARRAY function [#16388](https://github.com/apache/druid/pull/16388)
361
365
- Improved the ARRAY_TO_MV function to handle cases where an object selector encounters a multi-value string [#17162](https://github.com/apache/druid/pull/17162)
366
+
- Improved query filtering so that Druid tries to arrange query filters based on the computational cost of bitmap indexes, prioritizing less expensive filters for computation first. Filters with high compute costs relative to the number of rows they can filter might be omitted. [#17055](https://github.com/apache/druid/pull/17055)[#17125](https://github.com/apache/druid/pull/17125)
362
367
- Updated the deserialization of dimensions in GROUP BY queries to operate on all dimensions at once rather than deserializing individual dimensions [#16740](https://github.com/apache/druid/pull/16740)
363
368
- Fixed an issue that caused `maxSubqueryBytes` to fail when segments had missing columns [#16619](https://github.com/apache/druid/pull/16619)
364
369
- Fixed an issue with the array type selector that caused the array aggregation over window frame to fail [#16653](https://github.com/apache/druid/pull/16653)
0 commit comments