Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs/_docs/SQL/sql-calcite.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -960,6 +960,8 @@ The Calcite-based SQL engine currently supports the following user-facing functi
|`TABLE(SYSTEM_RANGE(start, end[, increment]))`
|Returns a table with one `BIGINT` column named `X` and one row for each value in the range.

|===

=== Supported Data Types

Below are the data types supported by the Calcite-based SQL engine:
Expand Down
52 changes: 27 additions & 25 deletions docs/_docs/monitoring-metrics/system-views.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -267,34 +267,36 @@ methods. The parameter is empty, if you use `IgniteCompute` APIs that don't targ

This view exposes information about currently running transactions.

Each row in this view represents a transaction object on the node where the view is queried. A distributed transaction can be represented by several transaction objects on different nodes, such as near, DHT-local, and DHT-remote transaction objects. Therefore, rows for the same distributed transaction can differ from node to node.

[{table_opts}]
|===
|NAME | TYPE | DESCRIPTION
|ORIGINATING_NODE_ID | UUID |
|STATE | string |
|XID | UUID |
|LABEL | string |
|START_TIME | long |
|ISOLATION | string |
|CONCURRENCY | string |
|KEYS_COUNT | int |
|CACHE_IDS | string |
|COLOCATED | boolean |
|DHT | boolean |
|DURATION | long |
|IMPLICIT | boolean |
|IMPLICIT_SINGLE | boolean |
|INTERNAL | boolean |
|LOCAL | boolean |
|LOCAL_NODE_ID | UUID |
|NEAR | boolean |
|ONE_PHASE_COMMIT | boolean |
|OTHER_NODE_ID | UUID |
|SUBJECT_ID | UUID |
|SYSTEM | boolean |
|THREAD_ID | long |
|TIMEOUT | long |
|TOP_VER | string |
|ORIGINATING_NODE_ID | UUID | ID of the node that initiated the current transaction object. For a transaction object mapped to a primary partition, this is the transaction initiator node; for a transaction object mapped to a backup partition, this is the node that owns the primary partition
|STATE | string | Current transaction state
|XID | UUID | Unique transaction identifier
|LABEL | string | Transaction label
|START_TIME | long | Start time of the transaction on this node
|ISOLATION | string | Transaction isolation level
|CONCURRENCY | string | Transaction concurrency mode
|KEYS_COUNT | int | Number of cache keys participating in the transaction
|CACHE_IDS | string | Comma-separated IDs of caches participating in the transaction
|COLOCATED | boolean | `True` if the transaction is DHT colocated
|DHT | boolean | `True` if current node has data for this transaction
|DURATION | long | Transaction duration in milliseconds
|IMPLICIT | boolean | `True` if the transaction was started implicitly
|IMPLICIT_SINGLE | boolean | `True` if the transaction is implicit with only one key
|INTERNAL | boolean | `True` if transaction operates with keys related to Ignite internal data structures
|LOCAL | boolean | `True` if this transaction object is on the initiator side or mapped to a primary partition, `false` if it is mapped to a backup partition
|LOCAL_NODE_ID | UUID | Local node ID
|NEAR | boolean | `True` if the transaction is near
|ONE_PHASE_COMMIT | boolean | `True` if the transaction is a one-phase-commit transaction
|OTHER_NODE_ID | UUID | ID of an additional node involved in the transaction
|SUBJECT_ID | UUID | ID of the subject that initiated the transaction
|SYSTEM | boolean | `True` if the transaction was started for a system cache
|THREAD_ID | long | ID of the thread started the transaction
|TIMEOUT | long | Transaction timeout in milliseconds
|TOP_VER | string | Topology version assigned to the transaction. If not assigned explicitly, it is a topology version of the latest partition exchange.
|===

== NODES
Expand Down
Loading