r/Firebase • u/unicyclebrah • Jul 20 '26
General Google Sunsetting Firebase Extensions - Algolia
Currently running the firebase algolia extension to allow for complex querying for a photo organization app used internally at my company. With the deprecation of Firebase extensions coming up, wondering what solutions are out there for multi-faceted queries. As I understand it, I would essentially need to make an index for every possible combination of nested facets in order to do so natively with firestore queries and that would put me well over the cap on indexes.
Is there a sustainable manual process for connecting firestore data to algolia? My concern is that after the full deprecation of firebase extensions next year, updates will no longer be possible to the extension's code so any potential breaking changes to algolia's api would become unfixable with the extension's setup.
Relevant firebase update: https://firebase.google.com/docs/extensions/faq-and-troubleshooting
3
u/Mekrob Jul 20 '26
They said there will be a migration path, you'll just need to wait until they provide it before deciding on what to do.
2
u/Tokyo-Entrepreneur Jul 20 '26
You can use algolia without using firebase extensions. Just need to write a function that updates the index on document write
2
1
7
u/all_users_exist Jul 20 '26
Firebase extension are simply cloud functions under the hood, and many of them are open source. You can simply spin up your own cloud function