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, i tried to fetch data from json file through "com.github.jcustenborder.kafka.connect.spooldir.SpoolDirJsonSourceConnector".
the problem I encountered is that the integer value and float value are displayed null in the topic other than that is fine, I mean string is shown in the topic.
For your reference :
config used :
don't know why but by default while not passing value.schema from config then all the attributes are set to STRING but the integer value is not converted to STRING so I got a null value in that case.
A solution that I found out is passing key and value schema through config and in integer we can pass INT16,INT32,INT64 etc and in FLOAT value we can pass FLOAT16,FLOAT32,FLOAT64 etc.
Also, it is good to pass schema instead of auto-generated because in auto-generate it got crash while the source file is not present but in other case it wont
Hi, i tried to fetch data from json file through "com.github.jcustenborder.kafka.connect.spooldir.SpoolDirJsonSourceConnector".
the problem I encountered is that the integer value and float value are displayed null in the topic other than that is fine, I mean string is shown in the topic.
For your reference :
config used :
topic record:
JSON data:
If anyone can help me with this, that will be awesome.
The text was updated successfully, but these errors were encountered: