Spark中的saveAasTable和save有什么区别

发布于 2025-01-13 09:56:10 字数 422 浏览 2 评论 0原文

我正在使用 Pyspark,并且想要将分区插入并覆盖到现有的配置单元表中。

  • 在这个用例中 saveAsTable() 不合适,它会覆盖整个现有表
  • insertInto() 的行为很奇怪:我有 3 个分区级别,但它插入一个

Snd使用 save() 的正确方法是什么? save() 可以使用数据库名称和表名称等选项来插入,还是只插入 HDFS 路径?

例子 :

df\
.write\
.format('orc')\
.mode('overwrite)\
.option('database', db_name)\
.option('table', table_name)\
.save()

I am using Pyspark and want to insert-overwrite partitions into a existing hive table.

  • in this use case saveAsTable() is not suitable, it overwrites the whole existing table
  • insertInto() is behaving strangely: I have 3 partition levels, but it is inserting one

Snd what is the right way to use save()?
Can save() take options like database-name and table name to insert into, or only HDFS path?

example :

df\
.write\
.format('orc')\
.mode('overwrite)\
.option('database', db_name)\
.option('table', table_name)\
.save()

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文