You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@trafficserver.apache.org by GitBox <gi...@apache.org> on 2022/05/05 14:23:07 UTC

[GitHub] [trafficserver] ezelkow1 opened a new issue, #8824: Ramcache disabled does not split remaining free cache

ezelkow1 opened a new issue, #8824:
URL: https://github.com/apache/trafficserver/issues/8824

   Reported by Steve Malenfant, when setting ram_cache=false the ram cache will not be allocated for that volume, however the ram cache that would now be free to allocate to other volumes is not allocated to them. So the calculation for the ramcache allocation is done across the total size and not total_size-vols_with_ram_cache_disabled_size
   
   Need to see if there is a better way to do this, if we can scan for all ramcache disabled volumes ahead of time to properly split up the remaining ramcache


-- 
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: issues-unsubscribe@trafficserver.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [trafficserver] github-actions[bot] commented on issue #8824: Ramcache disabled does not split remaining free cache

Posted by "github-actions[bot] (via GitHub)" <gi...@apache.org>.
github-actions[bot] commented on issue #8824:
URL: https://github.com/apache/trafficserver/issues/8824#issuecomment-1536974946

   This issue has been automatically marked as stale because it has not had recent activity. Marking it stale to flag it for further consideration by the community.


-- 
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: issues-unsubscribe@trafficserver.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [trafficserver] smalenfant commented on issue #8824: Ramcache disabled does not split remaining free cache

Posted by GitBox <gi...@apache.org>.
smalenfant commented on issue #8824:
URL: https://github.com/apache/trafficserver/issues/8824#issuecomment-1118944776

   Current results: 
   
   ```
   # cat /opt/trafficserver/etc/trafficserver/records.config | grep ram_cache.size
   CONFIG proxy.config.cache.ram_cache.size INT 103079215104
   
   # curl -s http://127.0.0.1/_astats | grep volume | grep total_bytes
      "proxy.process.cache.volume_1.ram_cache.total_bytes": 102956346768,
      "proxy.process.cache.volume_2.ram_cache.total_bytes": 122868320,
   # 
   
   # Adding ramcache=false on RAM volume
   volume=1 scheme=http size=50%
   volume=2 scheme=http size=50% ramcache=false
   
   # curl -s http://127.0.0.1/_astats | grep volume | grep total_bytes
      "proxy.process.cache.volume_1.ram_cache.total_bytes": 102956346768,
      "proxy.process.cache.volume_2.ram_cache.total_bytes": 0,
   ```


-- 
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: issues-unsubscribe@trafficserver.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org