1

I have over 10GB of images for my ecommerce app. I think move them to object storage (S3, Azure, Google, etc.).

So I will have an opportunity to add custom data to metadata (like NOSQL). For example, I have an image and corresponding metadata: product_id, sku, tags.

I want to query my images by metadata? For example, get all images from my object storage where meta_key = 'tag' and tag = 'nature'

So, object storage should have indexing capabilities. I do not want to iterate over billion of images to find only one of them.

I'm new to amazon aws, azure, google, openstack. I know that Amazon S3 is able to store metadata, but It doesn't have indexes (like Apache Solr).

What service is best suited to query files|objects by custom metadata?

4

1 に答える 1

0

AWS でこれを行うには、オブジェクト ストア (S3) を従来のデータベースと組み合わせて、簡単にクエリできるようにメタデータを保存するのが最善です。

ニーズに応じて、DynamoDB または RDS (選択したフレーバー) は、メタデータの保存と取得のために考慮すべき 2 つの AWS テクノロジになります。

于 2016-03-15T14:04:33.007 に答える