-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Proper use of \Jcupitt\Vips\Image class #66
Comments
Hello @bluesoulx, PHP will free resources for you automatically, you don't need to do anything. libvips does keep a cache of recently used images. You can turn this cache off with: Vips\Config::CacheSetMax(0); https://jcupitt.github.io/php-vips/docs/classes/Jcupitt.Vips.Config.html#method_cacheSetMax Though I would leave it on. |
Hi @jcupitt Thank you for quick response. |
Hi, I think I have a related issue. I'm running Vips in a Laravel daemon queue worker. These workers run constantly and do not exit and reboot PHP. Although I have yet to observe any memory issues (since it is not explicitly freed), I recently found that Vips seems not to automatically close the file handles. The code in my worker boils down to: Vips\Image::newFromFile($path, ['access' => 'sequential'])
->crop()
->resize()
->writeToFile(); When this is run and I check Anyway @jcupitt thank you for this great library and your amazing support! |
Hi @mzur, I made a test program: #!/usr/bin/env php
<?php
require __DIR__ . '/vendor/autoload.php';
use Jcupitt\Vips;
# vips_cache_set_max(0);
for ($i = 0; $i < 10000; $i++) {
echo "loop " . $i . " ... \n";
$image = Vips\Image::newFromFile("x/" . $i . ".jpg",
['access' => 'sequential']);
$image = $image->crop(10, 10, 100, 100);
$image = $image->resize(0.1);
$image->writeToFile("x/tn_" . $i . ".jpg");
} Then ran it like this:
If I watch
|
Off-topic, but could you crop after the resize? You should find it's faster (5x faster?) to do: $image = Vips\Image::thumbnail("somefile.jpg", 100);
$image = $image->crop(x, y, w, h);
$image->writeToFile("out.jpg"); Because |
I can simulate it with the PHP REPL:
Now I have three open files until I exit the REPL:
I noticed that if I don't use sequential access, there is only ever one open file no matter how often I call the callback. Regarding your OT: What about your approach if I need to handle huge TIFFs (several GB with px dimensions in the tens of thousands)? Shouldn't it be faster to crop first and then resize in this case? Edit: The cropped region is usually very small compared to the original image, especially for the huge TIFFs mentioned above. |
You're right, for TIFF crop first is probably better. Are you using tiled TIFFs? They will help a lot. I tried this:
But I don't think there's a leak. If you want to keep the number of open files down, you could make the cache smaller. If I add:
Then |
Ah I see, the number of open files always goes back to 250 for me, too. I just thought it would increase without end but I didn't try that often 😄 Thanks for the clarification! Actually I don't know if the TIFFs are tiled or not. Can you perhaps point me to a command how to check if they are? I tried |
To tile a TIFF, use:
ie. look for Tile Width and Tile Length in You can JPEG-compress as well, if your images are OK with that.
I wrote a stackoverflow answer about tiled TIFF: |
Awesome, thank you very much! @bluesoulx Sorry for hijacking your issue. |
@mzur It's ok. I also learned a lot from your question. @jcupitt Vips\Config::CacheSetMax(0); Memory usage was really stable. And I also use another issue suggestion from php-vips-ext Trying to understand memory usage with php-fpm It's really work, Thank you I will keep monitor one more day. |
I'd only turn off the cache if you really have to. It's best left alone, I think. You could maybe turn it down to 100. |
I understand. I will make some test for this value. Thank you. |
After days for watching this, it's just stable now. I think my use case is relative rough. I use php-vips on my server for realtime crop + resize with some traffic. Now I use 64G memory for this service and Vips\Config::CacheSetMax(100); I think it ok now. Thanks for your help. |
Shoud class \Jcupitt\Vips\Image instance need to close or destroy?
I found some php-fpm process was not terminated after use this class/extension...
My Code as follow:
Please correct me if I am wrong. Thanks
The text was updated successfully, but these errors were encountered: