I need to send all details from CosmosDB to Algolia Search through the Azure data factory. Is there any way to do this except creating the Azure Function? I have tried to use Copy activity but in sink, I am not able to get Algolia search Configuration.
Data Factory doesn't support Algolia Search as connector. We can get this from this document: Azure Data Factory connector overview.
It means that we can't send the data to Algolia Search directly with Data Factory actives. We need achieve that in code level, the ways are create function/databrick notebooks and executing it in Data Factory. The next step is focus on how design the code and run it in Data Factory.
HTH.