Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 JAQL Shell 上,我有一个变量写入我的 HDFS 位置。该变量使用 write 函数并写入 HDFS 位置。
我想附加两个额外的常量字符串。我怎么做?
如果我理解正确,您想使用您指定的架构在分隔文件中写入 varWrite 变量,但当前变量不包含其他常量
然后
在调用 write 函数之前,对 varWrite 进行另一次转换,并包含所有要添加的两个附加常量 varWrite -> transform { *, CONSTANT1, CONSTANT2 } -> write(del()) 并相应地修改您的架构