从 Pig 获取字段模式的名称
我正在为 Pig 开发 JsonStorage。一切工作正常,但至少我需要从猪模式中获取字段的名称(即 crdate、名称、位置)。
| A | crdate: bytearray | name: bytearray | positions: bytearray |
实际上,我通过 StoreFunc 扩展了我的类,它没有提供获取字段名称的函数。
public class PigJsonStorage extends StoreFunc { .. }
有人可以帮助我吗:)
I'm working on a JsonStorage for Pig. Everything works fine, but at least I need to get the names of the fields (i.e. crdate, name, positions) from the pig schema.
| A | crdate: bytearray | name: bytearray | positions: bytearray |
Actually I extend my class by StoreFunc that provides no function to get the names of the fields.
public class PigJsonStorage extends StoreFunc { .. }
Can anybody help me :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
免责声明:我自己对 Pig 有点陌生,还没有实现存储类。
在我看来,StoreFunc 有一个方法: StoreFunc.checkSchema(ResourceSchema s)。我认为您可以从中捕获模式以供在写入期间使用。
disclaimer: I'm a little new to pig myself, and haven't implemented a storage class yet.
It looks to me like StoreFunc has a method for this: StoreFunc.checkSchema(ResourceSchema s). I would think you could just capture the schema from that for use during the write.
有一个类 JsonMetadata 返回 ResourceSchema ,它有一个方法返回一个字段数组。
There's a class JsonMetadata that returns ResourceSchema which has a method returning an array of fields.