MetaCloud and extracting raw data via an API
Hi,
I am developing a wearable healthcare product that use proprietary algorithms. Early prototypes have used mongoDB as the data store which is accessible via a loopback API. I am looking to move the storage component to the MetaCloud and use the sensors provided by mbientlab. What I am looking for is to be able to send a lot of data (a user may collect data all day) and transfer this to the metaCloud either real time or in batches from a mobile application. At certain points the app will trigger to tell the processing engine to run the algorithm which will require retrieving that users data (from a userId and a timestamp). I am wondering if the data is retrievable from the metaCloud via an API?
This discussion has been closed.
Comments
We have a MetaCloud SDK but it is only for pushing data.
https://github.com/mbientlab/MetaCloud-SDK-JavaScript
Furthermore, there are storage limits for MetaCloud and it is not meant to store huge amounts of data per session. You are probably better off developing a custom storage solution for your specific use case.
Thanks Eric, I have altered the way we will do this now.