|
SageTV Studio Discussion related to the SageTV Studio application produced by SageTV. Questions, issues, problems, suggestions, etc. relating to the Studio software application should be posted here. |
|
Thread Tools | Search this Thread | Display Modes |
#1
|
|||
|
|||
Explanation of JavaHeap and how it pertains to image caching
I am a little confused on how this all works so excuse the ignorance. I am wondering why say when I have my java heap set to 1gb does it not keep images in cache when say the usage is only at or around 200 to 300mb. I am noticing on clients images are loading/reloading allot slower than on the server (to be expected as all the images are on the server) but wondering why it is not keeping more images in the java heap/memory for quicker access.
Is there a better/more efficient way in java to cache the images locally once they are called once as to make the next call quicker? thanks for any pointers/explanations. |
#2
|
||||
|
||||
Quote:
This page looks like a good explanation.
__________________
Server: Intel Core i5 760 Quad, Gigabyte GA-H57M-USB3, 4GB RAM, Gigabyte GeForce 210, 120GB SSD (OS), 1TB SATA, HD HomeRun. Extender: STP-HD300, Harmony 550 Remote, Netgear MCA1001 Ethernet over Coax. SageTV: SageTV Server 7.1.8 on Ubuntu Linux 11.04, SageTV Placeshifter for Mac 6.6.2, SageTV Client 7.0.15 for Windows, Linux Placeshifter 7.1.8 on Server and Client, Java 1.6. Plugins: Jetty, Nielm's Web Server, Mobile Web Interface. |
#3
|
|||
|
|||
Quote:
Still wondering why when my java heap is not full it is losing image items loaded by sage I am guessing sage does cleanup of it's own causing this and hopefully by maybe using this weakreference I can avoid them being dumped until memory is full? |
#4
|
||||
|
||||
Quote:
Code:
Map<String, Image> imageMap = new WeakHashMap<String, Image>(); // add your images to the cache ... // retrieve image String imageName..... Image image = imageMap.get(imageName); if (image == null) { // image was removed from cache, // retrieve image again and cache in the map again ... } // use the image ...
__________________
Server: Intel Core i5 760 Quad, Gigabyte GA-H57M-USB3, 4GB RAM, Gigabyte GeForce 210, 120GB SSD (OS), 1TB SATA, HD HomeRun. Extender: STP-HD300, Harmony 550 Remote, Netgear MCA1001 Ethernet over Coax. SageTV: SageTV Server 7.1.8 on Ubuntu Linux 11.04, SageTV Placeshifter for Mac 6.6.2, SageTV Client 7.0.15 for Windows, Linux Placeshifter 7.1.8 on Server and Client, Java 1.6. Plugins: Jetty, Nielm's Web Server, Mobile Web Interface. |
#5
|
||||
|
||||
File and String are just two different ways of representing a file path (i.e. the location of the file on disk). Neither one of them contains the actual file contents, i.e. the pixels of the image, and that's presumably what you want to cache. So you'd probably need to do LoadImageFile() and cache the result of that to retain the actual image in memory.
__________________
-- Greg |
#6
|
||||
|
||||
Quote:
After grepping from 'cache' in the sage.properties, it returned these properties... Code:
preload_expression_cache=false ui/dump_font_cache=false ui/enable_hardware_scaling_cache=false ui/image_cache_min_num_allowance2=2 ui/system_memory_2dimage_cache_limit=20000000 ui/system_memory_2dimage_cache_size=16000000 Another thing to consider, is that once images are loaded they are no longer compressed, and as such they consume much more memory. ie, a 50K jpm may take several megs once it is loaded. I'm not sure the exact formula but i think it's something like, bytes= H * W * (Depth / 8). So a 32bit image that is 200x300 would take approx 240,000 bytes of actual memory... In other words, your memory could start filling up quickly if those images don't get out of the cache, espcially if you are loading backgrounds (1920x1080). Also, if sage does an internal image cache, it probably doesn't weight what is being put into it. ie, if you loaded 100s of thumbnails, and it needed to load a background, it would probably swap out all those thumbnails to make room for the background in the cache I think Opus4 or Narflex could best answer how sage internally handles caching of images.
__________________
Batch Metadata Tools (User Guides) - SageTV App (Android) - SageTV Plex Channel - My Other Android Apps - sagex-api wrappers - Google+ - Phoenix Renamer Downloads SageTV V9 | Android MiniClient |
#7
|
|||
|
|||
Quote:
Quote:
achieve? Quote:
As always guys I really appreciate the help with the "noob" cheers |
#8
|
|||
|
|||
Quote:
Hopefully Opus can chime in here as I am curious about those settings in the properties file as well and if using sage's loadimage forces those to stay in cache longer than calling a image without loading it. cheers |
#9
|
||||
|
||||
SageTV has limits on the amount of images it'll store in order to not chew up all the available memory. For Java buffered images; this is controlled by the ui/system_memory_2dimage_cache_size(limit) properties (if it exceeds the 'limit' it'll free images until it is below the 'size'). There's also 'raw' images which are allocated using native memory, not from the JVM's heap. That cache size is controlled by the same properties; but Java and raw images are tracked separately. Internally; SageTV will use the 'raw' images; but if you ever use an API call to get a BufferedImage; then it'll do the conversion (or if you're using the Java2D renderer; then it'll use BufferedImages internally). The 'raw' images use NIO ByteBuffer direct memory access for performance reasons (this is what the 'Native Image Loader' does if you recall the days before that existed).
So the simple explanation is just increase those property values if you want it to cache more images. This is separate from caching that may be done in VRAM (for 3D renderers) or in the graphics memory on an extender client. There's another property for controlling the VRAM limit (ui/max_d3d_vram_usage on Windows) and the limit on extenders is not configurable. The VRAM limit will also be reduced if the graphics card indicates it has less memory than that setting. Images in these caches are not accessible by anything but the SageTV rendering engines though.
__________________
Jeffrey Kardatzke Founder of SageTV |
#10
|
|||
|
|||
Jeff,
Thanks for the explanation ui/system_memory_2dimage_cache_limit=20000000 ui/system_memory_2dimage_cache_size=16000000 could you explain what those to defaults are is it 20mb and 16mb or is the first a number of images cached and the second 16mb? and also the 2d or 3d limit or both are not configurable on extenders? |
#11
|
||||
|
||||
Quote:
Having two values like this avoids thrashing (otherwise once you hit the limit, it would constantly be dumping just enough to get below the limit). By dropping down a ways below the limit, it gives it some time to fill back up before it has to dump stuff again.
__________________
Server: Ryzen 2400G with integrated graphics, ASRock X470 Taichi Motherboard, HDMI output to Vizio 1080p LCD, Win10-64Bit (Professional), 16GB RAM Capture Devices (7 tuners): Colossus (x1), HDHR Prime (x2),USBUIRT (multi-zone) Source: Comcast/Xfinity X1 Cable Primary Client: Server Other Clients: (1) HD200, (1) HD300 Retired Equipment: MediaMVP, PVR150 (x2), PVR150MCE, HDHR, HVR-2250, HD-PVR |
#12
|
|||
|
|||
That sounds right now onto if those values equal 16mb and 20mb..
Thanks for that tiki |
#13
|
|||
|
|||
Quote:
I'd never even heard of WeakRefernces, and trying to understand that led me to SoftReferences, and a really simple SoftHashMap implementation http://java-interview-faqs.blogspot....ent-cache.html |
#14
|
|||
|
|||
Okay so in trying to create the weakhashmap method and pass either a bufferedImage or Image back to sage I get this in the sage log
Code:
Thu 2/4 7:56:04.560 [BGLoader2-SAGETV_PROCESS_LOCAL_UI@1725455] ImageUtils creating BI copy BufferedImage@18d1b67: type = 5 ColorModel: #pixelBits = 24 numComponents = 3 color space = java.awt.color.ICC_ColorSpace@110bd74 transparency = 1 has alpha = false isAlphaPre = false ByteInterleavedRaster: width = 245 height = 343 #numDataElements 3 dataOff[0] = 2 w=245 h=343 freeMem=11065776 totalMem=113041408 Thu 2/4 7:56:04.560 [FinalRender-SAGETV_PROCESS_LOCAL_UI@1d1c3cd] Rendered new font to cache index=0 font=java.awt.Font[family=Arial,name=Arial,style=plain,size=33] |
#15
|
||||
|
||||
Plucky, I think that I'd need to see more of your code before I could offer help on this.
Typically, when you see log statement repeated over and over again... you've introduced some form of recusion into your pattern.
__________________
Batch Metadata Tools (User Guides) - SageTV App (Android) - SageTV Plex Channel - My Other Android Apps - sagex-api wrappers - Google+ - Phoenix Renamer Downloads SageTV V9 | Android MiniClient |
#16
|
|||
|
|||
Ask and you shall recieve
Code:
private static void AddImageToHash(File ImageFile) throws IOException{ Image current = ImageIO.read(ImageFile); String location=ImageFile.toString(); imageMap.put(location, current);} public static Image GetImageFromCache(File ImageFile) throws IOException{ Image image = imageMap.get(ImageFile.toString()); if (image == null){ AddImageToHash(ImageFile); return GetImageFromCache(ImageFile);} else{return image;}} That is the two test calls I made and I tried both Image and Buffered Image. Of course for the key I am just using the filelocation to a string to start out with. I logged it and it doesn't appear to be looping. |
#17
|
||||
|
||||
Plucky... The fact that GetImageFromCache calls GetImageFromCache, means that there is potential for recursion
A couple of things... 1. WeakHashMaps are not guaranteed to have your data, even after a put... however unlikely the case, a call to put, could in theory return null on the next get. 2. Don't call yourself from within your method, unless you are really trying to implement recursion (ie, like directory scanning, etc). So, GetImage... could be written as... Code:
public static Image GetImageFromCache(File ImageFile) throws IOException{ Image image = imageMap.get(ImageFile.toString()); if (image == null){ Image = loadImage(ImageFile); imageMap.put(ImageFile.toString(), Image); } return Image; }
__________________
Batch Metadata Tools (User Guides) - SageTV App (Android) - SageTV Plex Channel - My Other Android Apps - sagex-api wrappers - Google+ - Phoenix Renamer Downloads SageTV V9 | Android MiniClient |
#18
|
|||
|
|||
Quote:
|
#19
|
||||
|
||||
Also remember that WeakHashMap uses weak keys...not values....so if you're keying off a String or File and not retaining that reference anywhere else then the values in your map will get removed rather quickly. What you probably want to do instead is use a regular HashMap and then wrap the values you put in the Map with a WeakReference. But actually for your purposes; a SoftReference might be better unless you retain a strong reference to the images you're putting in the Map somewhere else. Be sure you have a good understanding of strong, soft and weak references and how the GC interacts with them; otherwise you'll probably get unexpected results when using the java.lang.ref stuff.
__________________
Jeffrey Kardatzke Founder of SageTV |
#20
|
||||
|
||||
That's a good point Jeff... and it's something that gets overlooked at times (myself included). Here's a simple overview of references in java. I think it explains the weak and soft references quite well... and don't even bother to read the section on phantom references, since you'll never use them.
__________________
Batch Metadata Tools (User Guides) - SageTV App (Android) - SageTV Plex Channel - My Other Android Apps - sagex-api wrappers - Google+ - Phoenix Renamer Downloads SageTV V9 | Android MiniClient |
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Caching online content | Donavin69 | SageTV Customizations | 2 | 05-26-2009 11:39 AM |
Cover Art Caching | pizzachef | SageMC Custom Interface | 0 | 04-30-2009 12:43 AM |
Thumbnail caching | chiledog | SageMC Custom Interface | 0 | 01-29-2009 08:16 AM |
Caching Guide? | Wheemer | SageTV Beta Test Software | 2 | 12-31-2005 11:05 PM |
Is there still a problem with caching/memory usage with 3.0.7? | mkanet | SageTV Beta Test Software | 0 | 08-26-2005 06:42 PM |