This is an automated email from the ASF dual-hosted git repository.
ccondit pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/yunikorn-site.git
The following commit(s) were added to refs/heads/master by this push:
new b5350d6 [YUNIKORN-1115] Document changes from YUNIKORN-1093 (#135)
b5350d6 is described below
commit b5350d6180546be8f86f381af9b76c1d86bef689
Author: steinsgateted <[email protected]>
AuthorDate: Mon Mar 28 13:11:54 2022 -0500
[YUNIKORN-1115] Document changes from YUNIKORN-1093 (#135)
Closes: #135
Signed-off-by: Craig Condit <[email protected]>
---
docs/api/scheduler.md | 15 ++++++++++++++-
1 file changed, 14 insertions(+), 1 deletion(-)
diff --git a/docs/api/scheduler.md b/docs/api/scheduler.md
index 3b35086..625837f 100644
--- a/docs/api/scheduler.md
+++ b/docs/api/scheduler.md
@@ -503,7 +503,7 @@ The fully qualified queue name used to filter the
applications that run within t
**Content examples**
-In the example below there are three allocations belonging to two
applications.
+In the example below there are three allocations belonging to two applications
and one rejected application.
```json
[
@@ -604,6 +604,19 @@ In the example below there are three allocations belonging
to two applications.
"applicationState": "Running",
"user": "nobody",
"rejectedMessage": ""
+ },
+ {
+ "applicationID": "application-0003",
+ "usedResource": {},
+ "maxUsedResource": {},
+ "partition": "default",
+ "queueName": "",
+ "submissionTime": 1646757410878163500,
+ "finishedTime": 1646757410878225400,
+ "allocations": {},
+ "applicationState": "Rejected",
+ "user": "nobody",
+ "rejectedMessage": "failed to place application application-0003:
application rejected: no placement rule matched"
}
]
```