clebertsuconic commented on code in PR #4101:
URL: https://github.com/apache/activemq-artemis/pull/4101#discussion_r891678995


##########
docs/user-manual/en/paging.md:
##########
@@ -96,12 +96,20 @@ Property Name|Description|Default
 `max-size-messages`|The max number of messages the address could have before 
entering on page mode.| -1 (disabled)
 `page-size-bytes`|The size of each page file used on the paging system|10MB
 `address-full-policy`|This must be set to `PAGE` for paging to enable. If the 
value is `PAGE` then further messages will be paged to disk. If the value is 
`DROP` then further messages will be silently dropped. If the value is `FAIL` 
then the messages will be dropped and the client message producers will receive 
an exception. If the value is `BLOCK` then client message producers will block 
when they try and send further messages.|`PAGE`
-`page-max-cache-size`|The system will keep up to `page-max-cache-size` page 
files in memory to optimize IO during paging navigation.|5
+`max-read-page-messages` | how many message can be read from paging into the 
Queue whenever more messages are needed. The system wtill stop reading if 
`max-read-page-bytes hits the limit first.
+`max-read-page-bytes` | how much memory the messages read from paging can take 
on the Queue whenever more messages are needed. The system will stop reading if 
`max-read-page-messages` hits the limit first.
+`page-max-cache-size`|Deprecated and not used: `max-read-page-messages` and 
`max-read-page-bytes` will replace this functionality.

Review Comment:
   Not currently.. no... It's a good idea.. I will log a message.



-- 
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]

Reply via email to