英文:
Kafka Conect JDBC Postgres - Can i write entire json to one column without parsing values to columns?
问题
可以使用Confluent Kafka JDBC连接器将整个JSON写入一个列中,格式如下:
Key|Value
1 | {....}
2 | {....}
3 | {....}
英文:
Can i write entire json to one column using Confluent Kafka JDBC connector in format?
Key|Value
1 | {....}
2 | {....}
3 | {....}
答案1
得分: 1
只有在使用Postgres,并且只有在预定义表格时才适用。
https://github.com/confluentinc/kafka-connect-jdbc/issues/46#issuecomment-1135209669
否则,Mongo/DocumentDB可能比关系型数据库更适合处理JSON数据。
英文:
Only with Postgres, and only if you predefine the table
https://github.com/confluentinc/kafka-connect-jdbc/issues/46#issuecomment-1135209669
Otherwise, Mongo/DocumentDB might be better for JSON data than a relational database
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论