转换列表从 GAE 导出的 CSV 中的属性到各个值
我的 App Engine 项目中的类中有一个 String 列表,并且在导出到 CSV 的数据库中(通过bulkloader.yaml),结果字段是正确的列表。 问题在于,此 CSV 再次导入到 MySQL 数据库中,并且该字段仍保留为单个字符串列表。
关于如何调整 .yaml config_file 为每个字符串生成元组的任何想法?
I have a list of String inside a class in my App Engine project, and in the database export to a CSV (through bulkloader.yaml) the resulting field is the proper List.
The problem is that this CSV is imported again into a MySQL database and such field remains as a single list of strings.
Any idea about how to tweak the .yaml config_file to generate a tuple for every string?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您无法使用 YAML 配置使批量加载器为单个实体导出多行。您需要编写自定义导出器或自定义转换器 - 请参阅 bulkloader 源 了解详细信息(在文档字符串中)。
You can't make the bulkloader export multiple rows for a single entity using the YAML configuration. You'll either need to write a custom exporter, or a custom converter - see the bulkloader source for details (in the docstrings).