How to keep Firebase in sync with another database

前端 未结 2 2157
花落未央
花落未央 2020-12-14 10:39

We need to keep our Firebase data in sync with other databases for full-text search (in ElasticSearch) and other kinds of

相关标签:
2条回答
  • 2020-12-14 11:19

    For search queries, you can integrate directly with ElasticSearch; there is no need to sync with a secondary database. Firebase has a blog post about integrating and a lib, Flashlight, to make this quick and painless.

    0 讨论(0)
  • 2020-12-14 11:19

    Another option is to use the logstash-input-firebase Logstash plugin in order to listen to changes in your Firebase real-time database(s) and forward the data in real-time to Elasticsearch using an elasticsearch output.

    0 讨论(0)
提交回复
热议问题