My First Kaa Application. Not able to Application CTL. Not getting any error but not able to add Schema -
i learning kaa , trying run first application following
http://kaaproject.github.io/kaa/docs/v0.10.0/programming-guide/your-first-kaa-application/
completed steps. under section, create schema, created 2 schemas required.
data-schema.json
{ "type": "record", "name": "datacollection", "namespace": "org.kaaproject.kaa.schema.mytestapp", "fields": [ { "name": "temperature", "type": "int" } ] }
configuration-schema.json
{ "type": "record", "name": "configuration", "namespace": "org.kaaproject.kaa.schema.mytestapp", "fields": [ { "name": "sampleperiod", "type": "int", "by_default": 1 } ] }
i created , tried upload them mentioned in step 3 under section "create schema". then, tried follow step 4, 5 , 6 under same section. step 4, 5 , 6 "adding log schema".
in step 6, should below fqn existing type org.kaaproject.kaa.schema.mytestapp.datacollection
this missing. should added existing type when performed step 1, 2 , 3 under "create schema" section. not getting error , it's not adding.
i read because of similar fqn present. tried various combination it's not working.
what missing or doing wrong?
Comments
Post a Comment