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? 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
question mentioned at https://discuss.nebula-graph.com.cn/t/topic/1579/21?u=les1ie
If I try to import a larger number of files, eg: 1000 csv files, with a yaml file more than 10000 lines, nebula_importer will panic error
nebula_importer
How to reproduce:
from pathlib import Path import os dump_dir = Path('./dump') if not os.path.exists(dump_dir): os.mkdir(dump_dir) def generate_csv(): num = 10000 for i in range(num): with open(f'{dump_dir}/vertex_{i}.csv', 'w') as f: f.write("123\n") generate_csv()
download error config.yaml out.zip
import csv
python3 reproduce.py cp path_to_nebula_impoerter_exec dump/ cd dump ./nebula_importer -c out.yaml
The text was updated successfully, but these errors were encountered:
7e2bd76
No branches or pull requests
question mentioned at https://discuss.nebula-graph.com.cn/t/topic/1579/21?u=les1ie
If I try to import a larger number of files, eg: 1000 csv files, with a yaml file more than 10000 lines,
nebula_importer
will panic errorHow to reproduce:
download error config.yaml
out.zip
import csv
The text was updated successfully, but these errors were encountered: