Nowadays I check the weaviate function list and basic behavior to convert our system form elasticsearch to weaviate. I releaze that there are no critical differences between them but I can’t found some functions that our company use in elasticsearch. Can I have some advise about matching functions in weaviate or workaroud? The functions I couldn’t’ find weaviate are below.
- not store the filed data
- we don’t store the text filed and vector data to minimize storage overhead and to meet some kind of security requirements.
- we just index them and search them using elasticsearch’s _source exclude option (_source field | Elasticsearch Guide [8.12] | Elastic)
- Can i do the same way in weaviate?
- index(collection) management
- We manage the size of the search index using the index lifecycle management function to optimize search speed.
(Tutorial: Automate rollover with ILM | Elasticsearch Guide [8.12] | Elastic) - is there any functions to manage unit collection’s size and create new collection automatically with same structure?