使用 Spark 驱动程序在 Databricks 中创建 Hive 表(数据文件格式 = AVRO)

发布于 2025-01-14 01:37:37 字数 795 浏览 0 评论 0原文

TableQuery:

CREATE  TABLE `zdp`.`asdasdEntity_1` (`ter` string COMMENT 'system generated')  
 ROW FORMAT  SERDE 'org.apache.hadoop.hive.serde2.avro.AvroSerDe' 
    STORED AS  
        INPUTFORMAT 'org.apache.hadoop.hive.ql.io.avro.AvroContainerInputFormat' 
        OUTPUTFORMAT 'org.apache.hadoop.hive.ql.io.avro.AvroContainerOutputFormat'

输出:

  1. 表是在 databricks 中创建的,
  2. 无法使用(desc 扩展表名)描述表属性,给出以下输出:
error_error_error_error_error_error_error
string
from deserializer
cannot_determine_schema
string
from deserializer
check
string
from deserializer
schema
string
from deserializer
url
string
from deserializer
and
string
from deserializer
literal
string
from deserializer

TableQuery:

CREATE  TABLE `zdp`.`asdasdEntity_1` (`ter` string COMMENT 'system generated')  
 ROW FORMAT  SERDE 'org.apache.hadoop.hive.serde2.avro.AvroSerDe' 
    STORED AS  
        INPUTFORMAT 'org.apache.hadoop.hive.ql.io.avro.AvroContainerInputFormat' 
        OUTPUTFORMAT 'org.apache.hadoop.hive.ql.io.avro.AvroContainerOutputFormat'

output:

  1. table is created in databricks
  2. cannot describe table properties using (desc extended tablename) gives below output:
error_error_error_error_error_error_error
string
from deserializer
cannot_determine_schema
string
from deserializer
check
string
from deserializer
schema
string
from deserializer
url
string
from deserializer
and
string
from deserializer
literal
string
from deserializer

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

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

发布评论

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

评论(1

小姐丶请自重 2025-01-21 01:37:37
CREATE TABLE avroExample
ROW FORMAT SERDE 'org.apache.hadoop.hive.serde2.avro.AvroSerDe'
STORED AS INPUTFORMAT 'org.apache.hadoop.hive.ql.io.avro.AvroContainerInputFormat'
    OUTPUTFORMAT 'org.apache.hadoop.hive.ql.io.avro.AvroContainerOutputFormat'
TBLPROPERTIES ('avro.schema.literal'='{ "namespace": "org.apache.hive",
    "name": "first_schema",
    "type": "record",
    "fields": [
            { "name":"string1", "type":"string" },
            { "name":"string2", "type":"string" }
        ] }');
CREATE TABLE avroExample
ROW FORMAT SERDE 'org.apache.hadoop.hive.serde2.avro.AvroSerDe'
STORED AS INPUTFORMAT 'org.apache.hadoop.hive.ql.io.avro.AvroContainerInputFormat'
    OUTPUTFORMAT 'org.apache.hadoop.hive.ql.io.avro.AvroContainerOutputFormat'
TBLPROPERTIES ('avro.schema.literal'='{ "namespace": "org.apache.hive",
    "name": "first_schema",
    "type": "record",
    "fields": [
            { "name":"string1", "type":"string" },
            { "name":"string2", "type":"string" }
        ] }');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文