Skip to content

Releases: marqo-ai/marqo

Release 2.8.2

19 Jun 03:34
2e8a150
Compare
Choose a tag to compare

2.8.2

Bug fixes and minor changes

  • Fix an issue in Marqo where loading some models (e.g., open_clip/xlm-roberta-base-ViT-B-32/laion5b_s13b_b90k) is unsuccessful. This was resolved by upgrading the transformers and optimum packages. (#868)

Release 2.8.1

19 Jun 03:34
d4eb806
Compare
Choose a tag to compare

2.8.1

Bug fixes and minor changes

  • Fix a bug in Marqo where a 500 error is returned for the entire batch of documents when encountering an invalid document ID during image downloading. Marqo now correctly returns an error and rejects the invalid document, allowing successful indexing of other valid documents with a 200 response. (#860)

Release 2.8.0

05 Jun 00:38
45517a9
Compare
Choose a tag to compare

2.8.0

New features

  • Improve add_documents memory efficiency and throughput for CLIP and Open_CLIP models when indexing documents with images when no patch method is used (#849). The image downloading and preprocessing logic has been improved. Marqo now converts the images to tensors directly after downloading. In our tests, the memory usage has been reduced by 37.5% and the throughput has been increased by 7.5% (subject to your settings). Marqo is also more stable when indexing documents in a multi-threading scenario.
  • Add support for pre-warming patch models (#847). See usage (here)

Bug fixes and minor changes

  • Replace the requests package with pycurl for faster image downloads (#849). Marqo now downloads images 2-3x faster in our tests and the overall add_documents throughput is increased by 7.5%

Contributor shout-outs

  • Shoutouts to our valuable 4.2k stargazers!
  • Thanks a lot for the discussion and suggestions in our community. We love to hear your thoughts and requests. Join our Slack channel and forum now.

Release 2.7.2

30 May 00:22
fd56800
Compare
Choose a tag to compare

2.7.2

Bug fixes and minor changes

  • Fix an issue causing an error during the Marqo shutdown process (#850). Marqo now shuts down properly without encountering errors.

Release 2.7.1

30 May 00:21
b0ef791
Compare
Choose a tag to compare

2.7.1

Bug fixes and minor changes

  • Resolve an issue where Marqo could not create or delete an index when not connected to the Zookeeper server (#848). Users can now create or delete an index without needing to connect to the Zookeeper server. However, please note that without the Zookeeper server, your request is not protected in concurrent scenarios. For guidance on configuring your Zookeeper server, refer to this documentation.

Release 2.7.0

27 May 02:42
2dcd3c5
Compare
Choose a tag to compare

2.7.0

New features

  • Update Open CLIP version and support new families of models, e.g., MetaCLIP, DatacompCLIP (#833). Update the Open CLIP version to 2.24.0 which includes new and state-of-the-art multimodal models. You can choose these models to build your index. Check here for the available models.
  • Support lexical search with only a filter (#840). Marqo now supports a match-all query ("*") with a filter in lexical search. This allows you to search your documents solely based on the filter content without considering the relevance. This is a community-requested feature (#770, #771) and we love to hear from our users.

Bug fixes and minor changes

  • Improve the thread safety of index creation and deletion operations (#838). Marqo now returns an operation_conflict_error(409) if users try to delete or create an index when there is another index creation or deletion in progress.
  • Fix a bug that an empty string lexical search query ("") returns a 500 error (#840). Marqo now returns an empty search result for such a query.
  • Address verbose logging at the WARNING level when attributes_to_retrieve excludes fields required to build highlights. (#837)

Contributor shout-outs

  • Shoutouts to our valuable 4.2k stargazers!
  • Thanks @jesse-lord and @afroozsheikh for requesting valuable features to improve Marqo!
  • Thanks a lot for the discussion and suggestions in our community. We love to hear your thoughts and requests. Join our Slack channel and forum now.

Release 2.2.3

18 Jun 04:55
26a5dd1
Compare
Choose a tag to compare

2.2.3

New features

  • Add configurable search timeout (#843). Backend timeout now defaults to 1s, but can be configured with the environment variable VESPA_SEARCH_TIMEOUT_MS. See configuration instructions here.

Release 2.6.0

19 May 16:21
fbee89a
Compare
Choose a tag to compare

2.6.0

New features

  • Support for custom and default prefixes (#821 and #832) in the index creation, adding documents, search, and embed endpoints.

Bug fixes and minor changes

  • Improved recommender with structured indexes (#830)
  • Better handling of image download errors (#829). Image download errors will now return a 200 overall and log errors per document.

Release 2.5.1

11 May 07:01
0cb013a
Compare
Choose a tag to compare

2.5.1

Bug fixes and minor changes

  • More stable recommend endpoint (#825).
  • Change error code when using IN filter operator on an unstructured index (#823).
  • New index settings validation endpoint for Cloud use (#809).

Release 2.5.0

02 May 05:33
6e40f6c
Compare
Choose a tag to compare

2.5.0

New features

  • New ‘embed’ endpoint (POST /indexes/{index_name}/embed) (#803). Marqo can now perform inference and return the embeddings for a single piece or list of content, where content can be either a string or weighted dictionary of strings. See usage here.
  • New ‘recommend’ endpoint (POST /indexes/{index_name}/recommend) (#816). Given a list of existing document IDs, Marqo can now recommend similar documents by performing a search on interpolated vectors from the documents. See usage here.
  • Add Inference Cache to speed up frequent search and embed requests (#802). Marqo now caches embeddings generated during inference. The cache size and type can be configured with MARQO_INFERENCE_CACHE_SIZE and MARQO_INFERENCE_CACHE_TYPE. See configuration instructions here.
  • Add configurable search timeout (#813). Backend timeout now defaults to 1s, but can be configured with the environment variable VESPA_SEARCH_TIMEOUT_MS. See configuration instructions here.
  • More informative get_cuda_info response (#811). New keys: utilization memory_used_percent have been added for easier tracking of cuda device status. See here for more information.

Bug fixes and minor changes

  • Upgraded open_clip_torch, timm, and safetensors for access to new models (#810)

Contributor shout-outs

  • Shoutout to all our 4.1k stargazers! Thanks for continuing to use our product and helping Marqo grow.
  • Keep on sharing your questions and feedback on our forum and Slack channel! If you have any more inquiries or thoughts, please don’t hesitate to reach out.