-
Notifications
You must be signed in to change notification settings - Fork 25.2k
[DOCS] Defines data frame transform stats API objects #44197
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 4 commits
befca79
c95538d
ee6097d
c07e37c
92335b4
5e28e9d
29e27d9
fdd53d7
cb5a77b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -83,11 +83,34 @@ informational; you cannot update their values. | |
`checkpointing`.`last`::: | ||
(object) Contains statistics about the last completed checkpoint. | ||
`checkpointing`.`last`.`checkpoint`:::: | ||
(TBD) A unique identifier for the checkpoint. | ||
(integer) The sequence number for the checkpoint. | ||
`checkpointing`.`last`.`time_upper_bound_millis`:::: | ||
(date) TBD | ||
(date) When using time-based synchronization, this timestamp indicates the | ||
upper bound of data that is included in the checkpoint. Typically, this value | ||
is equal to the `checkpointing`.`last`.`time_upper_bound_millis` minus the | ||
`sync`.`time`.`delay`, which is defined when you create the {transform}. | ||
`checkpointing`.`last`.`timestamp_millis`:::: | ||
(date) TBD | ||
(date) The timestamp of the checkpoint, which indicates when the checkpoint | ||
was created. | ||
`checkpointing`.`next`::: | ||
(object) Contains statistics about the next checkpoint that is currently in | ||
progress. This object appears only if the {transform} is currently processing | ||
data and only for the first checkpoint. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. sorry this is not quite correct yet: "and only for the first checkpoint" is only true for the
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thanks for the clarifications! I've pushed another commit |
||
`checkpointing`.`next`.`checkpoint`:::: | ||
(integer) The sequence number for the checkpoint. | ||
`checkpointing`.`next`.`checkpoint_progress`:::: | ||
(object) Contains statistics about the progress of the checkpoint. For example, | ||
it lists the `total_docs`, `docs_remaining`, `percent_complete`, | ||
`docs_processed`, and `docs_indexed`. This information is available only for | ||
batch {transforms} and the first checkpoint of {ctransforms}. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 👍 |
||
`checkpointing`.`next`.`time_upper_bound_millis`:::: | ||
(date) When using time-based synchronization, this timestamp indicates the | ||
upper bound of data that is included in the checkpoint. Typically, this value | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I would omit "Typically..." |
||
is equal to the `checkpointing`.`next`.`time_upper_bound_millis` minus the | ||
`sync`.`time`.`delay`, which is defined when you create the {transform}. | ||
`checkpointing`.`next`.`timestamp_millis`:::: | ||
(date) The timestamp of the checkpoint, which indicates when the checkpoint was | ||
created. | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. checkpointing It uses the same fields at last but has one more object:
Not sure how much we want to go into the details, the inner fields are:
This information is only available for batch transforms and for the 1st checkpoint of a continuous transform. |
||
`id`:: | ||
(string) | ||
|
@@ -111,18 +134,24 @@ example, `127.0.0.1:9300`. | |
(string) The status of the {transform}, which can be one of the following values: | ||
+ | ||
-- | ||
* `aborting`: The {transform} is aborting. | ||
* `failed`: The {transform} failed. For more information about the failure, | ||
check the reason field. | ||
* `indexing`: The {transform} is actively processing data and creating new | ||
documents. | ||
* `started`: The {transform} is running but not actively indexing data. | ||
* `stopped`: The {transform} is stopped. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
* `stopping`: The {transform} is stopping. | ||
-- | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
|
||
`stats`:: | ||
(object) An object that provides statistical information about the {transform}. | ||
`stats`.`documents_indexed`::: | ||
(TBD) The number of new documents that have been indexed. | ||
(long) The number of documents that have been indexed into the destination index | ||
for the {transform}. | ||
`stats`.`documents_processed`::: | ||
(TBD) The number of documents that have been processed. | ||
(long) The number of documents that have been processed from the source index of | ||
the {transform}. | ||
`stats`.`exponential_avg_checkpoint_duration_ms`::: | ||
(double) Exponential moving average of the duration of the checkpoint, in milliseconds. | ||
`stats`.`exponential_avg_documents_indexed`::: | ||
|
@@ -138,15 +167,19 @@ processed. | |
`stats`.`index_total`::: | ||
(long) The number of indices created. | ||
`stats`.`pages_processed`::: | ||
(TBD) The number of pages processed. | ||
(long) The number of search or bulk index operations processed. Documents are | ||
processed in batches instead of individually. | ||
`stats`.`search_failures`::: | ||
(long) The number of search failures. | ||
`stats`.`search_time_in_ms`::: | ||
(long) The amount of time spent searching, in milliseconds. | ||
`stats`.`search_total`::: | ||
(long) TBD | ||
(long) The number of search operations on the source index for the {transform}. | ||
`stats`.`trigger_count`::: | ||
(TBD) TBD | ||
(long) The number of times the {transform} has been triggered by the scheduler. | ||
For example, the scheduler triggers the {transform} indexer to check for updates | ||
or ingest new data at an interval specified in the | ||
<<put-transform-request-body,`frequency` property>>. | ||
|
||
[[get-transform-stats-response-codes]] | ||
==== {api-response-codes-title} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would not include "Typically, this value is ..." This was just for your information, not meant to be put here.