Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support incremental loading data for 'vineyard-graph-loader' (#1563)
What do these changes do? ------------------------- Add support for incremental vertices and edges for vineyard-graph-loader. For step_by_step, the expected behaviors are as below <!DOCTYPE html> Order|Case |Expect Behavior -- | -- | -- 1 | combine multi files of same label | as before vineyard-graph-loader 2 | combine multi files of same label but with duplicated data(vertex) | drop duplicates 3 | combine multi files of same label but with duplicated data(edge) | log warning and become multigraph(as previous behaviors) For whole or the default way, the expected behaviors are as below, <!DOCTYPE html> Order| Case | Expect Behavior -- | -- | -- 1 | combine multi files of same label | as before vineyard-graph-loader 2 | combine multi files of same label but with duplicated data(vertex) | expect user not to add this kind of data 3 | combine multi files of same label but with duplicated data(edge) | expect user not to add this kind of data Fixes #1295 Signed-off-by: SighingSnow <1263750383@qq.com>
- Loading branch information