Store Images to display in SOLR search results

早过忘川 提交于 2019-12-24 09:04:21

问题


I have built a SOLR Index which has the image thumbnail urls that I want to render an image along with the search results. The problem is that those images can run into millions and I think storing the images in index as binary data would make the index humongous.

I am seeking guidance on how to efficiently store those images after rendering them from the URLs , should I use the plain file system and have them rendered by tomcat , or should I use a JCR repository like Apache Jackrabbit ?

Any guidance would be greatly appreciated.

Thank You.


回答1:


I would evaluate the effective requiriments before finally deciding how to persist the images.

Do you require versioning? Are you planning to stir eonly the images or additional metadata? Do you have any requirements in horizontal scaling? Do you require any image processing or scaling? Do you need access to the image metatdata? Do you require additional tooling for managing the images? Are you willing to invest time in learning an additional technology?

Storing on the file system and making them available by an image sppoler implementation is the most simple way to persist your images. But if you identify some of the above mentioned requirements (which are typical for a content repo or a dam system), then would end up reinventing the wheel with the filesystem approach.

The other option is using a kind of content repository. A JCR repo like for example Jackrabbit or it's commercial implementation CRX is one option. Alfresco (supports CMIS) would be the another valid. Features like versioning, post processing (scaling ...), metadata extraction and management belong are supported by both mentioned repository solutions. But this requires you to learn a new technology which can be time consuming. Both mentioned repository technologies can get complex. If horizontal scaling is a requirement I would consider a commercially supported repository implementations (CRX or Alfresco Enterprise) because the communty releases are lacking this functionality.

Me personally I would really depend any decision on the above mentioned requirements. I extensively worked with Jackrabbit, CRX and Alfresco CE and EE and personally I would go for the Alfresco as I experienced it to scale better with larger amounts of data.




回答2:


I'm not aware of a image pooling solution that fits your needs exactly but it shouldn't be to difficult to implement that, apart from the fact that recurring scaling operations may be very resource intensive.

I would go for the following approach if FS is enough for you:

  • Separate images and thumbnail into two locations.
  • The images root folder will remain, the thumbnails folder is temporary.
  • Create a temporary thumbnail folder for each indexing run.
  • All thumbnails for that run are stored under that location, scaling can be achived with i.e ImageMagick.
  • The temporary thumbnail folder can then easily be dropped as soon as the next run has been completed.

If you are planning to store millions of images then avoid putting all files in the same directory. Browsing flat hierarchies with two many entries will be a nightmare. Better create a tree structure by i.e. inverting the current datetime (year/month/day/hour/minute ... 2013/06/01/08/45).

This makes sure that the number of files inside the last folder get's not too big (Alfresco is using the same pattern for storing binary objects on the FS and it has proofen to work nicely).



来源:https://stackoverflow.com/questions/16887095/store-images-to-display-in-solr-search-results

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!