Migrating a chat bot feature from Firebase to Nun-db
A group of friends and I maintain a telegram group to talk about investing. A few years ago, we developed a chatbot to search for some stock prices once we post the stock’s name. The bot is quite simple and makes it fun since you don’t need to google or any other platform to see the price of the stock you want to check (Check out the image one of me getting the price of bitcoin).
Suddenly one of the group’s contributors posts a message saying he had just released a feature to save stock portfolios to show all prices at once. It would be storing the data to FIREBASE. My next message could not be different, “firebase. WTF is that? Why have you not used Nun-db? Much better! I will fix this!”, everyone was supportive, even the guy who had just written the firebase version. It was a great opportunity also to compare the final code for each version.
The model
The chatbot needs are relatively simple, the user will type the name and the stocks list they want, the bot saves the value, and when the user asks for its portfolio, the bot will then pick it from the DB, take the latest stock value and return the chat where the user asked for it.
The bot’s load will be 10.000 times less than my SAS product already sends to Nun-db, so the load is negligible (as far as our bot doesn’t get too popular). I leverage the already running cluster in Linode k8s to create a new DB only for the bot (The same way I plan to do with future users if they don’t want to host the own instances of Nun-db). The next image shows how simple is this step.
When I start thinking about the use case, Nun-db(realtime key-value database) models fit better the need than firebase (realtime document database). Therefore the final code looked much simpler. Next, I will present the final code for both implementations.
Now check the nun-DB implementation done in 9 lines of code. It is much easier for anyone to understand what is happening, even not knowing Nun-db API or going over the documentation.
Now see the code in action on the bot when I ask for my portfolio and is post it back to me.
Conclusion
This is a relatively simple use case, where Nun-db was an excellent fit for, and now with Nun-db’s realtime capabilities, we are fully prepared to deliver new features like comparing your portfolio with your friend’s portfolios, watching a friend’s portfolios, and get notifications every time their portfolios changes.
The use case was an excellent opportunity to onboard a new Nun-db user to my shared cluster and start to see how it behaves over time. Now, I have two applications running sharing resources on a single k8s deploy. It’s been so far so good, I am still running it on a single pod because my data replication implementation was performing bad under high load, but that may be a subject to the next blog post.
- Code Coverage for Rust Projects with GitHub Actions
- NunDb is now referenced in the Database of Databases
- Real-time Medical Image Collaboration POC Made Easy with OHIF and Nun-db
- How to create users with different permission levels in Nun-db
- Match vs Hashmap! Which one is faster in rust?
- Towards a More Secure Nun-db: Our Latest Security Enhancements
- Building a Trello-like React/Redux App with NunDB with offline and conflict resolution features
- Introduction to managing conflicts in NunDB
- Keepin up with Nun-db 2023
- The new storage engine of Nun-db
- Stop procrastinating and just fix your flaky tests, it may be catching nasty bugs
- An approach to hunt and fix non-reproducible bugs - Case study - Fixing a race conditions in Nun-db replication algorithm in rust
- NunDB the debug command
- Keeping up with Nun-db 2021
- Writing a prometheus exporter in rust from idea to grafana chart
- Integration tests in rust a multi-process test example
- Leader election in rust the journey towards implementing nun-db leader election
- How to make redux TodoMVC example a real-time multiuser app with nun-db in 10 steps
- A fast-to-sync/search and space-optimized replication algorithm written in rust, The Nun-db data replication model
- NunDb How to backup one or all databases
- How to create your simple version of google analytics real-time using Nun-db
- Migrating a chat bot feature from Firebase to Nun-db
- Keepin' up with NunDB
- Going live with NunDB