Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
a93c80c
update pom and readme for version-1.7.0
sadwitdastreetz Sep 1, 2025
15d415a
update comment location & removed readme changes
sadwitdastreetz Sep 1, 2025
764401b
added GraphSource & GraphReader;
sadwitdastreetz Sep 6, 2025
922304b
增加AFSSource,graphSource,部分升级HDFSSource;
sadwitdastreetz Sep 8, 2025
67f2a3a
修正命名问题
sadwitdastreetz Sep 8, 2025
41472ef
修正上次大提交的若干问题
sadwitdastreetz Sep 8, 2025
546bc3c
修正InputReader部分小问题
sadwitdastreetz Sep 9, 2025
01f5f92
Removed AFSSource & refactor HDFSSource completely
sadwitdastreetz Sep 10, 2025
20fec92
better practice for hadoop file
sadwitdastreetz Sep 10, 2025
7254aca
cleared datasource
sadwitdastreetz Sep 10, 2025
de39fe8
fixed test problems & refactor LoadStruct for multiheaders & fixed Fi…
sadwitdastreetz Sep 11, 2025
f49c62e
clear all load main line v1 (unchecked & untested) && passed fake(dir…
sadwitdastreetz Sep 14, 2025
871e571
load crashed found reasons & finished almost all refact & still some …
sadwitdastreetz Sep 15, 2025
f84edf1
reset shutdown mode
sadwitdastreetz Sep 16, 2025
1c4400d
reset shutdown mode
sadwitdastreetz Sep 16, 2025
653994e
editconfig
sadwitdastreetz Sep 16, 2025
2b17fe7
add missed license
sadwitdastreetz Sep 16, 2025
1d15dfe
extract excptions in loadstructs in loader(MAIN)
sadwitdastreetz Sep 25, 2025
f9e1a5f
fixed assertThrow test problems
sadwitdastreetz Sep 25, 2025
697896e
fixed IncrementalModeAndLoadFailure && add method to cleanup empty pr…
sadwitdastreetz Sep 29, 2025
0462029
add dependencies
sadwitdastreetz Sep 29, 2025
57f8166
fixed mappingconvert mismatch
sadwitdastreetz Sep 30, 2025
b4c9e71
unit tests cleared
sadwitdastreetz Sep 30, 2025
a9bc256
reloadjson cleared
sadwitdastreetz Sep 30, 2025
49d7a85
fck autocorrect
sadwitdastreetz Sep 30, 2025
21e3517
cleared file tests
sadwitdastreetz Sep 30, 2025
44ac7a4
style chek
sadwitdastreetz Sep 30, 2025
1447b9c
test problems
sadwitdastreetz Sep 30, 2025
70bc698
feedback
sadwitdastreetz Sep 30, 2025
59a9c16
file test cleared?
sadwitdastreetz Sep 30, 2025
5f4d6b1
HDFStest cleared
sadwitdastreetz Oct 4, 2025
753976f
ok
sadwitdastreetz Oct 4, 2025
ef98666
fixed wrong logic in new version kafkareader
sadwitdastreetz Oct 4, 2025
44b1916
kafkatest cleared
sadwitdastreetz Oct 5, 2025
b9124a3
checkstyle fixed
sadwitdastreetz Oct 7, 2025
613f122
cleared review problems
sadwitdastreetz Oct 13, 2025
241eb72
cleared further review problems
sadwitdastreetz Oct 13, 2025
b14ec5f
transformed all Chinese annotations
sadwitdastreetz Oct 14, 2025
60eda1e
cleared license and style
sadwitdastreetz Oct 19, 2025
51f908a
fix(loader): improve resource cleanup, exception safety, and thread-s…
sadwitdastreetz Oct 21, 2025
7a1b66c
chore(loader): fixed spelling mistakes
sadwitdastreetz Oct 24, 2025
d7955af
Refactor(loader): merge duplicate label creation logic of GraphSource
sadwitdastreetz Oct 26, 2025
fcba74b
(loader): enhanced and checked logics
sadwitdastreetz Oct 27, 2025
4a62fcf
(loader): add auth config in tests
sadwitdastreetz Oct 28, 2025
b56dacc
(loader): add auth config in tests
sadwitdastreetz Oct 28, 2025
cf92ab6
(loader): spelling checked && fixed complicated logics
sadwitdastreetz Oct 28, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ output/
tree.txt
*.versionsBackup
.flattened-pom.xml
*.truststore

# eclipse ignore
.settings/
Expand Down
1 change: 1 addition & 0 deletions hugegraph-dist/scripts/dependency/known-dependencies.txt
Original file line number Diff line number Diff line change
Expand Up @@ -283,6 +283,7 @@ orc-shims-1.5.8.jar
orc-shims-1.6.14.jar
ow2-asm-6.2.jar
paranamer-2.3.jar
parboiled-core-1.1.8.jar
perfmark-api-0.23.0.jar
postgresql-42.2.6.jar
postgresql-42.4.1.jar
Expand Down
6 changes: 6 additions & 0 deletions hugegraph-loader/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@
<postgres.version>42.4.1</postgres.version>
<mssql.jdbc.version>7.2.0.jre8</mssql.jdbc.version>
<kafka.testcontainer.version>1.19.0</kafka.testcontainer.version>
<parboiled.version>1.1.8</parboiled.version>
</properties>

<dependencies>
Expand Down Expand Up @@ -542,6 +543,11 @@
<version>${kafka.testcontainer.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.parboiled</groupId>
<artifactId>parboiled-core</artifactId>
<version>${parboiled.version}</version>
</dependency>
</dependencies>

<profiles>
Expand Down
Loading
Loading