-
Notifications
You must be signed in to change notification settings - Fork 60
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[feat]support comment in csv #293
Comments
@linview Hi, the header already supported. The
Please note that this only supports single characters, such as |
@MuYiYong PTAL |
LGTM. |
fixed |
Introduction
Support comment info in importer config file to describe more info about the data
Contents
Scenario#1
During import customer‘s data into test env, the data file(*.yaml) for importer usually contains many columns (>20 col) for ETL workflow, header info cannot describe every columns usage.
e.g.
A col in header named 'id', has a value '10086', we need to know its type is 'STRING' or 'INT'; comment info could shed some lights.
# id data shall be imported as 'string' no, id, name 1,101,David 2,102,John
Scenario#2
Sometimes, data files may depend on each others, and import them into nebula as whole. Comment info in data file can explain the relations explicitly.
e.g.
Related work
The text was updated successfully, but these errors were encountered: