ijioio commented on pull request #595:
URL: https://github.com/apache/solr/pull/595#issuecomment-1037068373
> Otherwise I think this is probably good to go once the docs are updated,
there is a changelog entry for 9.0, and some upgrade notes in
major-changes-in-solr-9.adoc, though that can be brief.
I've updated `major-changes-in-solr-9.adoc` to add notes about above
changes. I added them to `Solr 9.0 Raw Notes` section. Maybe it should be
extracted to separate topic? Feel free to update the text if needed:
* SOLR-15982: For collection's snapshot backup request responses additional
fields `indexVersion`, `indexFileCount`, etc. were added similar to incremental
backup request responses. Also, both snapshot and incremental backup request
responses will now contain `starTime` and `endTime`. Here is an example of how
collection's snapshot backup request responses will looks like:
Incremental:
```json
"response": {
"collection": "techproducts",
"numShards": 2,
"backupId": 0,
"indexVersion": "9.0.0",
"startTime": "2022-02-11T17:20:44.157305500Z",
"indexFileCount": 22,
"uploadedIndexFileCount": 22,
"indexSizeMB": 0.007,
"uploadedIndexFileMB": 0.007,
"shardBackupIds": [
"md_shard2_0",
"md_shard1_0"
],
"endTime": "2022-02-11T17:20:45.245534400Z"
}
```
Snapshot:
```json
"response": {
"collection": "techproducts",
"numShards": 2,
"indexVersion": "9.0.0",
"startTime": "2022-02-11T17:19:33.271461700Z",
"indexFileCount": 22,
"endTime": "2022-02-11T17:19:34.363859100Z"
}
```
Snapshot backup shard's response were updated to add fields `indexFileCount`
and `endTime`, snapshot delete shard's response were updated to add fields
`startTime` and `endTime`. Previous fields `fileCount`, `snapshotCompletedAt`
and `snapshotDeletedAt` of backup and delete shard's responses are now
deprecated and will be removed in future releases. All date/time fields of
backup and delete related shard's responses have been updated to use `Instance`
instead of `Date`.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]