Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/android/184.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Amazon cloudformation AWS胶水&x2B;雅典娜跳过标题行_Amazon Cloudformation_Amazon Athena_Aws Glue - Fatal编程技术网

Amazon cloudformation AWS胶水&x2B;雅典娜跳过标题行

Amazon cloudformation AWS胶水&x2B;雅典娜跳过标题行,amazon-cloudformation,amazon-athena,aws-glue,Amazon Cloudformation,Amazon Athena,Aws Glue,截至,Athena可以跳过文件的标题行 支持忽略标题。定义表时,可以使用skip.header.line.count属性来允许Athena忽略标题 我用来管理雅典娜的桌子。使用,如何告诉Athena跳过标题行?基于AWS::Glue::Table的完整模板,从 Resources: ... MyGlueTable: ... Properties: ... TableInput: ... StorageDescript

截至,Athena可以跳过文件的标题行

支持忽略标题。定义表时,可以使用
skip.header.line.count
属性来允许Athena忽略标题


我用来管理雅典娜的桌子。使用,如何告诉Athena跳过标题行?

基于
AWS::Glue::Table
的完整模板,从

Resources:
  ...
  MyGlueTable:
    ...
    Properties:
      ...
      TableInput:
        ...
        StorageDescriptor:
          ...
          SerdeInfo:
            Parameters: { "separatorChar" : "," }
对,


实现了这个技巧。

基于AWS::Glue::Table的完整模板,从

Resources:
  ...
  MyGlueTable:
    ...
    Properties:
      ...
      TableInput:
        ...
        StorageDescriptor:
          ...
          SerdeInfo:
            Parameters: { "separatorChar" : "," }
对,


执行此操作。

skip.header.line.count需要指定一个字符串值。FYIskip.header.line.count需要给定一个字符串值。供参考