Skip to content

Commit d892af7

Browse files
authored
DOC-591 | Unified list view (web ui) (#341)
* unified list view web ui * add missig entry to 3.12 folder, fix typo
1 parent ad91ae3 commit d892af7

File tree

3 files changed

+39
-1
lines changed

3 files changed

+39
-1
lines changed

site/content/3.11/release-notes/version-3.11/whats-new-in-3-11.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1306,7 +1306,7 @@ The following startup option has been added:
13061306
- `--server.max-number-detached-threads`: The maximum number of detached scheduler
13071307
threads.
13081308

1309-
The following metric as been added:
1309+
The following metric has been added:
13101310
- `arangodb_scheduler_num_detached_threads`: The number of worker threads
13111311
currently started and detached from the scheduler.
13121312

site/content/3.12/release-notes/version-3.11/whats-new-in-3-11.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1036,6 +1036,27 @@ permanent connectivity issues:
10361036
- `arangodb_network_connectivity_failures_dbservers_total`: Number of failed
10371037
connectivity check requests sent to DB-Servers.
10381038

1039+
### Detached scheduler threads
1040+
1041+
<small>Introduced in: v3.11.5</small>
1042+
1043+
A scheduler thread now has the capability to detach itself from the scheduler
1044+
if it observes the need to perform a potentially long running task, like waiting
1045+
for a lock. This allows a new scheduler thread to be started and prevents
1046+
scenarios where all threads are blocked waiting for a lock, which has previously
1047+
led to deadlock situations.
1048+
1049+
Threads waiting for more than 1 second on a collection lock will detach
1050+
themselves.
1051+
1052+
The following startup option has been added:
1053+
- `--server.max-number-detached-threads`: The maximum number of detached scheduler
1054+
threads.
1055+
1056+
The following metric has been added:
1057+
- `arangodb_scheduler_num_detached_threads`: The number of worker threads
1058+
currently started and detached from the scheduler.
1059+
10391060
## Miscellaneous changes
10401061

10411062
### Write-write conflict improvements

site/content/3.12/release-notes/version-3.12/whats-new-in-3-12.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,23 @@ The updated interface now offers the following options:
4848
- **Move Followers**
4949
- **Include System Collections**
5050

51+
### Unified list view
52+
53+
ArangoDB 3.12 brings a significant enhancement to the display of collections,
54+
Views, graphs, users, services, and databases in the web interface.
55+
The previous tile format has been replaced with a user-friendly tabular
56+
layout, providing a consistent and intuitive experience that is visually
57+
aligned across all components. The existing tabular views have also been
58+
reworked to ensure a seamless transition.
59+
60+
The new tabular format includes the following features:
61+
- **Dynamic filters on columns**: Each column now has a dynamic filter box,
62+
allowing you to efficiently search and filter based on keywords. This makes
63+
it easy to locate specific items within the list.
64+
- **Dynamic sorting on columns**: Sort elements easily based on column data
65+
such as name, date, or size. This functionality provides a flexible way to
66+
organize and view your data.
67+
5168
### Swagger UI
5269

5370
The interactive tool for exploring HTTP APIs has been updated to version 5.4.1.

0 commit comments

Comments
 (0)