作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何在spark中读取orc事务hive表?
我在通过 spark 读取 ORC 事务表时遇到问题我获得了 hive 表的架构但无法读取实际数据
查看完整场景:
hive> create table default.Hello(id int,name string) clustered by
(id) into 2 buckets STORED AS ORC TBLPROPERTIES
('transactional'='true');
hive> insert into default.hello values(10,'abc');
现在我试图从 Spark sql 访问 Hive Orc 数据,但它显示
>spark.sql("select * from hello").show()
输出:id,名称
最佳答案
是的,作为一种解决方法,我们可以使用压缩,但是当工作是微批处理时,压缩将无济于事。所以我决定使用 JDBC 调用。请在下面的链接中引用我对此问题的回答或引用我的 GIT 页面 - https://github.com/Gowthamsb12/Spark/blob/master/Spark_ACID
Please refer my answer for this issue
关于apache-spark - 如何在spark中读取orc事务hive表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50254590/
我是一名优秀的程序员,十分优秀!