I want to create embeddings via Python SentenceTransformer, save it into mariaDB as text or string and then migrate these embeddings as a denseVector field into Elastic. I want to save the embeddings into the mariaDB for later use and backups.
For my local ElasticSearch free version 8.13.2 running on localhost:9200 I use:
Now, what kind of field do I need to create and fill my embeddings in the mariaDB? Will it just convert correctly into a denseVector? In the end I want to query a Knn-Search.
I want to create embeddings via Python SentenceTransformer, save it into mariaDB as text or string and then migrate these embeddings as a denseVector field into Elastic. I want to save the embeddings into the mariaDB for later use and backups.
For my local ElasticSearch free version 8.13.2 running on localhost:9200 I use:
Now, what kind of field do I need to create and fill my embeddings in the mariaDB? Will it just convert correctly into a denseVector? In the end I want to query a Knn-Search.