You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi there,
I see that you first need to define the shape of the data via Go struct, but how about "dynamic" data. Say I have already defined my data model in another part of the application (say rest framework), then I want to reuse that definition and generate configuration for Storm to use, then Storm will populate map[string]interface{} instead of a predefined structure.
Edit: Forgot to mention that querying is needed as well. Basically using Storm as schema less DB, akin to MongoDB.
Thanks.
The text was updated successfully, but these errors were encountered:
Dynamic data can't be stored using Storm because Storm is kinda schemafull and is only compatible with structs right now. Future versions will be compatible though
Hi there,
I see that you first need to define the shape of the data via Go struct, but how about "dynamic" data. Say I have already defined my data model in another part of the application (say rest framework), then I want to reuse that definition and generate configuration for Storm to use, then Storm will populate
map[string]interface{}
instead of a predefined structure.Edit: Forgot to mention that querying is needed as well. Basically using Storm as schema less DB, akin to MongoDB.
Thanks.
The text was updated successfully, but these errors were encountered: