We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
当前 csv 数据源在 load 时不支持跳过首尾行,为了帮助用户处理一些并不是特别标准的 csv 文件时,可以提高加载的效率
需要考虑在 where 语句中,加入如下参数:
skipFirstNLines
skipLastNLines
需要注意的是需要同时考虑支持单文件和标准分片文件目录的两种方式。
save csv.\
The text was updated successfully, but these errors were encountered:
SkipFirstNLines PR: https://github.com/byzer-org/byzer-lang/pull/1805, 在 Byzer 2.3.3 中发布
SkipLastNLinesPR:https://github.com/byzer-org/byzer-lang/pull/1842/files ,预计在 Byzer 2.3.4 中发布
Sorry, something went wrong.
ckeys
No branches or pull requests
需求
当前 csv 数据源在 load 时不支持跳过首尾行,为了帮助用户处理一些并不是特别标准的 csv 文件时,可以提高加载的效率
需要考虑在 where 语句中,加入如下参数:
skipFirstNLines
, 值为自然数,注意参数的检查报错 ,加载时跳过首几行skipLastNLines
,值为自然数,注意参数的检查报错, 加载时跳过尾几行需要注意的是需要同时考虑支持单文件和标准分片文件目录的两种方式。
save csv.\
$path`` 所产生的目录,遵从 hadoop 文件存储体系标准The text was updated successfully, but these errors were encountered: