Replies: 1 comment 10 replies
-
|
Hi @leccher, thanks for reporting this. Could you clarify how you are running your new processor, via Docker or directly from your IDE?
This should allow your processor to correctly register with the backend. Let me know if the issue persists |
Beta Was this translation helpful? Give feedback.


Uh oh!
There was an error while loading. Please reload this page.
-
Hello to everybody.
I wrote a JsonFlattener Processor to flat complex JSON.
I have an apache streampipes backend in my docker compose with everything running fine but I noticed that A SP does not manage nested object in json
{ root:{ element:{ fields:[ {field1:"value1"}, {field2:"value2"} ] } }So i decided "to flat" it.
{ root__element__fields__field1:"value1", root__element__fields__field2:"value2", }and I wrote my JSON Flattener Processor for 0.99.0-SNAPSHOT A SP following the documentation I fund here:
https://streampipes.apache.org/docs/extend-tutorial-data-processors/
creating archetype using
Everything seems fine but when I run my extension container the processor cannot register itself into backend using 8030 backend servce:
I noticed that the documentation is written for 0.98.0. Should I start from a data processor released form 0.99.0-SNAPSHOT I can find on github reposutory?
Thank you
Beta Was this translation helpful? Give feedback.
All reactions