Hive 中的 Unicode 字符

发布于 2025-01-06 08:48:41 字数 302 浏览 0 评论 0原文

我尝试在 hive 中按 unicode 文本与 unicode 字符进行分组,但减速器惨败。 Hive 面临运行时异常。 hive 是否支持 unicode 字符?

引起原因:org.apache.hadoop.hive.ql.metadata.HiveException:处理行时出现 Hive 运行时错误 (tag=0) {"key":{"reducesinkkey0":"h�ngekommode ","re​​ducesinkkey1":"1 "},"value":{"_col0":"h�ngekommode ","_col1":"1 "},"alias":0}

I tried to group by unicode text with unicode characters in hive and the reducer failed miserably. Hive faces a run time exception. Does hive support unicode characters at all?

Caused by: org.apache.hadoop.hive.ql.metadata.HiveException: Hive Runtime Error while processing row (tag=0) {"key":{"reducesinkkey0":"h�ngekommode ","reducesinkkey1":"1 "},"value":{"_col0":"h�ngekommode ","_col1":"1 "},"alias":0}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

遗失的美好 2025-01-13 08:48:41

Hadoop和Hive支持UTF8编码。这是 Hadoop 和 Hive 代码库中许多地方的隐含假设。您需要将数据转换为 UTF8。

你得到的实际异常是什么?您可以在作业日志中找到它。

Hadoop and Hive support UTF8 encoding. This is an implicit assumption in many places in the Hadoop and Hive codebases. You will need to convert your data to UTF8.

What was the actual exception you got? You can find it in the job logs.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文