tools.jar创建avsc文件时将所有数据类型转换为字符串

vc9ivgsu  于 2021-05-29  发布在  Hadoop
关注(0)|答案(0)|浏览(281)

我正在生成一个avsc模式文件,同时将其加载到hdfs中。
文件将被创建为below:-

"fields" : [ 
    {     "name" : "AGGREGATE",     
          "type" : [ "null", "string" ],     
          "default" : null,    
          "columnName" : "AGGREGATE",     
          "sqlType" : "1"   
    }, 
    {     "name" : "LSTIME",     
          "type" : [ "null", "long" ],     
          "default" : null,     
          "columnName" : "LSTIME",    
          "sqlType" : "93"   
    },

但是,根据我的要求,我需要在创建配置单元表时将所有数据类型转换为字符串数据类型。
我已经试过了 java -jar /path/to/avro-tools-1.7.7.jar compile -string schema 但它不起作用。
请任何人帮忙。

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题