Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ body:
attributes:
label: Search before asking
description: >
Please make sure to search in the [feature](https://github.com/apache/incubator-hugegraph-toolchain/issues?q=is%3Aissue+label%3A%22Feature%22) first
Please make sure to search in the [feature](https://github.com/apache/hugegraph-toolchain/issues?q=is%3Aissue+label%3A%22Feature%22) first
to see whether the same feature was requested already.
options:
- label: >
I had searched in the [feature](https://github.com/apache/incubator-hugegraph-toolchain/issues?q=is%3Aissue+label%3A%22Feature%22) and found no
I had searched in the [feature](https://github.com/apache/hugegraph-toolchain/issues?q=is%3Aissue+label%3A%22Feature%22) and found no
similar feature requirement.
required: true

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/hubble-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
python -m pip install -r ${TRAVIS_DIR}/requirements.txt
cd hugegraph-hubble
mvn package -Dmaven.test.skip=true
cd apache-hugegraph-hubble-incubating*
cd apache-hugegraph-hubble-*
cd bin
./start-hubble.sh -d
./stop-hubble.sh
Expand Down
7 changes: 0 additions & 7 deletions DISCLAIMER

This file was deleted.

4 changes: 2 additions & 2 deletions NOTICE
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Apache HugeGraph(incubating)
Copyright 2022-2025 The Apache Software Foundation
Apache HugeGraph
Copyright 2022-2026 The Apache Software Foundation

This product includes software developed at
The Apache Software Foundation (http://www.apache.org/).
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ A comprehensive suite of client SDKs, data tools, and management utilities for [
**HugeGraph Ecosystem**:
1. [hugegraph](https://github.com/apache/hugegraph) - Core graph database (**[pd](https://github.com/apache/hugegraph/tree/master/hugegraph-pd)** / **[store](https://github.com/apache/hugegraph/tree/master/hugegraph-store)** / **[server](https://github.com/apache/hugegraph/tree/master/hugegraph-server)** / **[commons](https://github.com/apache/hugegraph/tree/master/hugegraph-commons)**)
2. [hugegraph-computer](https://github.com/apache/hugegraph-computer) - Distributed graph computing system
3. [hugegraph-ai](https://github.com/apache/incubator-hugegraph-ai) - Graph AI/LLM/Knowledge Graph integration
3. [hugegraph-ai](https://github.com/apache/hugegraph-ai) - Graph AI/LLM/Knowledge Graph integration
4. [hugegraph-website](https://github.com/apache/hugegraph-doc) - Documentation and website

## Architecture Overview
Expand Down Expand Up @@ -191,7 +191,7 @@ client := hugegraph.NewClient("http://localhost:8080", "hugegraph")

</details>

> **Looking for other languages?** See [hugegraph-python-client](https://github.com/apache/incubator-hugegraph-ai/tree/main/hugegraph-python-client) in the hugegraph-ai repository.
> **Looking for other languages?** See [hugegraph-python-client](https://github.com/apache/hugegraph-ai/tree/main/hugegraph-python-client) in the hugegraph-ai repository.

---

Expand Down Expand Up @@ -247,7 +247,7 @@ client := hugegraph.NewClient("http://localhost:8080", "hugegraph")

**Quick Start**:
```bash
cd hugegraph-hubble/apache-hugegraph-hubble-incubating-*/bin
cd hugegraph-hubble/apache-hugegraph-hubble-*/bin
./start-hubble.sh # Background mode
./start-hubble.sh -f # Foreground mode
./stop-hubble.sh # Stop server
Expand Down
4 changes: 2 additions & 2 deletions hugegraph-client-go/README.en.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ Go get github. com/go huggraph
```Go
package main

import "github.com/apache/incubator-hugegraph-toolchain/hugegraph-client-go"
import "github.com/apache/incubator-hugegraph-toolchain/hugegraph-client-go/hgtransport"
import "github.com/apache/hugegraph-toolchain/hugegraph-client-go"
import "github.com/apache/hugegraph-toolchain/hugegraph-client-go/hgtransport"

func main() {

Expand Down
6 changes: 3 additions & 3 deletions hugegraph-client-go/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#### 安装教程

```shell
go get github.com/apache/incubator-hugegraph-toolchain/hugegraph-client-go
go get github.com/apache/hugegraph-toolchain/hugegraph-client-go
```

#### 实现 API
Expand All @@ -28,8 +28,8 @@ go get github.com/apache/incubator-hugegraph-toolchain/hugegraph-client-go
```go
package main

import "github.com/apache/incubator-hugegraph-toolchain/hugegraph-client-go"
import "github.com/apache/incubator-hugegraph-toolchain/hugegraph-client-go/hgtransport"
import "github.com/apache/hugegraph-toolchain/hugegraph-client-go"
import "github.com/apache/hugegraph-toolchain/hugegraph-client-go/hgtransport"

func main() {

Expand Down
4 changes: 2 additions & 2 deletions hugegraph-client-go/api/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ import (
"strconv"
"time"

"github.com/apache/incubator-hugegraph-toolchain/hugegraph-client-go/hgtransport"
"github.com/apache/incubator-hugegraph-toolchain/hugegraph-client-go/internal/version"
"github.com/apache/hugegraph-toolchain/hugegraph-client-go/hgtransport"
"github.com/apache/hugegraph-toolchain/hugegraph-client-go/internal/version"
)

// VERSION returns the package version as a string.
Expand Down
2 changes: 1 addition & 1 deletion hugegraph-client-go/api/v1/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

package v1

import "github.com/apache/incubator-hugegraph-toolchain/hugegraph-client-go/api"
import "github.com/apache/hugegraph-toolchain/hugegraph-client-go/api"

type APIV1 struct {
Version Version
Expand Down
4 changes: 2 additions & 2 deletions hugegraph-client-go/api/v1/edgelabel/edgelabel.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ import (
"encoding/json"
"errors"
"fmt"
"github.com/apache/incubator-hugegraph-toolchain/hugegraph-client-go/api"
"github.com/apache/incubator-hugegraph-toolchain/hugegraph-client-go/internal/model"
"github.com/apache/hugegraph-toolchain/hugegraph-client-go/api"
"github.com/apache/hugegraph-toolchain/hugegraph-client-go/internal/model"
"io"
"io/ioutil"
"net/http"
Expand Down
10 changes: 5 additions & 5 deletions hugegraph-client-go/api/v1/edgelabel/edgelabel_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ package edgelabel_test

import (
"fmt"
"github.com/apache/incubator-hugegraph-toolchain/hugegraph-client-go"
"github.com/apache/incubator-hugegraph-toolchain/hugegraph-client-go/api/v1/edgelabel"
"github.com/apache/incubator-hugegraph-toolchain/hugegraph-client-go/api/v1/propertykey"
"github.com/apache/incubator-hugegraph-toolchain/hugegraph-client-go/api/v1/vertexlabel"
"github.com/apache/incubator-hugegraph-toolchain/hugegraph-client-go/internal/model"
"github.com/apache/hugegraph-toolchain/hugegraph-client-go"
"github.com/apache/hugegraph-toolchain/hugegraph-client-go/api/v1/edgelabel"
"github.com/apache/hugegraph-toolchain/hugegraph-client-go/api/v1/propertykey"
"github.com/apache/hugegraph-toolchain/hugegraph-client-go/api/v1/vertexlabel"
"github.com/apache/hugegraph-toolchain/hugegraph-client-go/internal/model"
"math/rand"
"testing"
"time"
Expand Down
2 changes: 1 addition & 1 deletion hugegraph-client-go/api/v1/gremlin/gemlin.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import (
"encoding/json"
"errors"
"fmt"
"github.com/apache/incubator-hugegraph-toolchain/hugegraph-client-go/api"
"github.com/apache/hugegraph-toolchain/hugegraph-client-go/api"
"io"
"io/ioutil"
"net/http"
Expand Down
2 changes: 1 addition & 1 deletion hugegraph-client-go/api/v1/gremlin/gemlin_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ package gremlin_test

import (
"fmt"
"github.com/apache/incubator-hugegraph-toolchain/hugegraph-client-go"
"github.com/apache/hugegraph-toolchain/hugegraph-client-go"
"log"
"testing"
)
Expand Down
4 changes: 2 additions & 2 deletions hugegraph-client-go/api/v1/propertykey/propertykey.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ import (
"encoding/json"
"errors"
"fmt"
"github.com/apache/incubator-hugegraph-toolchain/hugegraph-client-go/api"
"github.com/apache/incubator-hugegraph-toolchain/hugegraph-client-go/internal/model"
"github.com/apache/hugegraph-toolchain/hugegraph-client-go/api"
"github.com/apache/hugegraph-toolchain/hugegraph-client-go/internal/model"
"io"
"io/ioutil"
"net/http"
Expand Down
6 changes: 3 additions & 3 deletions hugegraph-client-go/api/v1/propertykey/propertykey_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ package propertykey_test

import (
"fmt"
"github.com/apache/incubator-hugegraph-toolchain/hugegraph-client-go"
"github.com/apache/incubator-hugegraph-toolchain/hugegraph-client-go/api/v1/propertykey"
"github.com/apache/incubator-hugegraph-toolchain/hugegraph-client-go/internal/model"
"github.com/apache/hugegraph-toolchain/hugegraph-client-go"
"github.com/apache/hugegraph-toolchain/hugegraph-client-go/api/v1/propertykey"
"github.com/apache/hugegraph-toolchain/hugegraph-client-go/internal/model"
"log"
"math/rand"
"testing"
Expand Down
4 changes: 2 additions & 2 deletions hugegraph-client-go/api/v1/schema.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ import (
"context"
"encoding/json"
"fmt"
"github.com/apache/incubator-hugegraph-toolchain/hugegraph-client-go/hgtransport"
"github.com/apache/hugegraph-toolchain/hugegraph-client-go/hgtransport"
"io"
"io/ioutil"
"net/http"

"github.com/apache/incubator-hugegraph-toolchain/hugegraph-client-go/api"
"github.com/apache/hugegraph-toolchain/hugegraph-client-go/api"
)

// ----- API Definition -------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion hugegraph-client-go/api/v1/schema_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ package v1_test

import (
"fmt"
"github.com/apache/incubator-hugegraph-toolchain/hugegraph-client-go"
"github.com/apache/hugegraph-toolchain/hugegraph-client-go"
"log"
"testing"
)
Expand Down
4 changes: 2 additions & 2 deletions hugegraph-client-go/api/v1/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ package v1
import (
"context"
"encoding/json"
"github.com/apache/incubator-hugegraph-toolchain/hugegraph-client-go/hgtransport"
"github.com/apache/hugegraph-toolchain/hugegraph-client-go/hgtransport"
"io"
"io/ioutil"
"net/http"

"github.com/apache/incubator-hugegraph-toolchain/hugegraph-client-go/api"
"github.com/apache/hugegraph-toolchain/hugegraph-client-go/api"
)

// ----- API Definition -------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion hugegraph-client-go/api/v1/version_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ package v1_test
import (
"testing"

hugegraph "github.com/apache/incubator-hugegraph-toolchain/hugegraph-client-go"
hugegraph "github.com/apache/hugegraph-toolchain/hugegraph-client-go"
)

func TestVersionRequest_Do(t *testing.T) {
Expand Down
4 changes: 2 additions & 2 deletions hugegraph-client-go/api/v1/vertex/vertex.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ import (
"context"
"encoding/json"
"fmt"
"github.com/apache/incubator-hugegraph-toolchain/hugegraph-client-go/api"
"github.com/apache/incubator-hugegraph-toolchain/hugegraph-client-go/internal/model"
"github.com/apache/hugegraph-toolchain/hugegraph-client-go/api"
"github.com/apache/hugegraph-toolchain/hugegraph-client-go/internal/model"
"io"
"io/ioutil"
"net/http"
Expand Down
4 changes: 2 additions & 2 deletions hugegraph-client-go/api/v1/vertexlabel/vertexlabel.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ import (
"net/url"
"strings"

"github.com/apache/incubator-hugegraph-toolchain/hugegraph-client-go/api"
"github.com/apache/incubator-hugegraph-toolchain/hugegraph-client-go/internal/model"
"github.com/apache/hugegraph-toolchain/hugegraph-client-go/api"
"github.com/apache/hugegraph-toolchain/hugegraph-client-go/internal/model"
)

type VertexLabel struct {
Expand Down
8 changes: 4 additions & 4 deletions hugegraph-client-go/api/v1/vertexlabel/vertexlabel_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ package vertexlabel_test

import (
"fmt"
"github.com/apache/incubator-hugegraph-toolchain/hugegraph-client-go"
"github.com/apache/incubator-hugegraph-toolchain/hugegraph-client-go/api/v1/propertykey"
"github.com/apache/incubator-hugegraph-toolchain/hugegraph-client-go/api/v1/vertexlabel"
"github.com/apache/incubator-hugegraph-toolchain/hugegraph-client-go/internal/model"
"github.com/apache/hugegraph-toolchain/hugegraph-client-go"
"github.com/apache/hugegraph-toolchain/hugegraph-client-go/api/v1/propertykey"
"github.com/apache/hugegraph-toolchain/hugegraph-client-go/api/v1/vertexlabel"
"github.com/apache/hugegraph-toolchain/hugegraph-client-go/internal/model"
"math/rand"
"testing"
"time"
Expand Down
2 changes: 1 addition & 1 deletion hugegraph-client-go/go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/apache/incubator-hugegraph-toolchain/hugegraph-client-go
module github.com/apache/hugegraph-toolchain/hugegraph-client-go

go 1.19

2 changes: 1 addition & 1 deletion hugegraph-client-go/hgtransport/hgtransport.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import (
"strings"
"time"

"github.com/apache/incubator-hugegraph-toolchain/hugegraph-client-go/internal/version"
"github.com/apache/hugegraph-toolchain/hugegraph-client-go/internal/version"
)

// Version returns the package version as a string.
Expand Down
14 changes: 7 additions & 7 deletions hugegraph-client-go/hugegraph.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,18 +20,18 @@ package hugegraph
import (
"errors"
"fmt"
"github.com/apache/incubator-hugegraph-toolchain/hugegraph-client-go/api/v1"
"github.com/apache/incubator-hugegraph-toolchain/hugegraph-client-go/api/v1/edgelabel"
"github.com/apache/incubator-hugegraph-toolchain/hugegraph-client-go/api/v1/gremlin"
"github.com/apache/incubator-hugegraph-toolchain/hugegraph-client-go/api/v1/propertykey"
"github.com/apache/incubator-hugegraph-toolchain/hugegraph-client-go/api/v1/vertex"
"github.com/apache/incubator-hugegraph-toolchain/hugegraph-client-go/api/v1/vertexlabel"
"github.com/apache/hugegraph-toolchain/hugegraph-client-go/api/v1"
"github.com/apache/hugegraph-toolchain/hugegraph-client-go/api/v1/edgelabel"
"github.com/apache/hugegraph-toolchain/hugegraph-client-go/api/v1/gremlin"
"github.com/apache/hugegraph-toolchain/hugegraph-client-go/api/v1/propertykey"
"github.com/apache/hugegraph-toolchain/hugegraph-client-go/api/v1/vertex"
"github.com/apache/hugegraph-toolchain/hugegraph-client-go/api/v1/vertexlabel"
"net"
"net/http"
"net/url"
"os"

"github.com/apache/incubator-hugegraph-toolchain/hugegraph-client-go/hgtransport"
"github.com/apache/hugegraph-toolchain/hugegraph-client-go/hgtransport"
)

// Config 配置类型
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ git clone --depth 150 ${HUGEGRAPH_GIT_URL} hugegraph
cd hugegraph
git checkout "${COMMIT_ID}"
mvn package -DskipTests -Dmaven.javadoc.skip=true -ntp
# TODO: lack incubator after apache package release (update it later)
cd hugegraph-server
mv apache-hugegraph-*.tar.gz ../../
cd ../../
Expand All @@ -37,7 +36,6 @@ tar zxf apache-hugegraph-*.tar.gz

HTTPS_SERVER_DIR="hugegraph_https"
mkdir ${HTTPS_SERVER_DIR}
# TODO: lack incubator after apache package release (update it later)
cp -r apache-hugegraph-*/. ${HTTPS_SERVER_DIR}
cd "$(find apache-hugegraph-* | head -1)"
# start HugeGraphServer with http protocol
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

public final class CommonUtil {

public static final String PREFIX = "https://github.com/apache/incubator-hugegraph-doc/" +
public static final String PREFIX = "https://github.com/apache/hugegraph-doc/" +
"raw/binary/dist/toolchain/";

public static void checkMapClass(Object object, Class<?> kClass,
Expand Down
10 changes: 5 additions & 5 deletions hugegraph-dist/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

<properties>
<release.name>${project.parent.artifactId}</release.name>
<final.name>apache-${release.name}-incubating-${project.version}</final.name>
<final.name>apache-${release.name}-${project.version}</final.name>
</properties>

<build>
Expand All @@ -52,10 +52,10 @@
cd $root_path || exit

mkdir -p ${final.name}
mv -v $root_path/hugegraph-hubble/apache-hugegraph-hubble-incubating-${project.version} ${final.name}/ || exit
mv -v $root_path/hugegraph-loader/apache-hugegraph-loader-incubating-${project.version} ${final.name}/ || exit
mv -v $root_path/hugegraph-tools/apache-hugegraph-tools-incubating-${project.version} ${final.name}/ || exit
cp -r -v $root_path/hugegraph-dist/release-docs/* $root_path/DISCLAIMER ${final.name}/ || exit
mv -v $root_path/hugegraph-hubble/apache-hugegraph-hubble-${project.version} ${final.name}/ || exit
mv -v $root_path/hugegraph-loader/apache-hugegraph-loader-${project.version} ${final.name}/ || exit
mv -v $root_path/hugegraph-tools/apache-hugegraph-tools-${project.version} ${final.name}/ || exit
cp -r -v $root_path/hugegraph-dist/release-docs/* ${final.name}/ || exit

tar zcvf $root_path/target/${final.name}.tar.gz ./${final.name} || exit 1

Expand Down
4 changes: 2 additions & 2 deletions hugegraph-dist/release-docs/LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -203,9 +203,9 @@


============================================================================
APACHE HUGEGRAPH (Incubating) SUBCOMPONENTS:
APACHE HUGEGRAPH SUBCOMPONENTS:

The Apache HugeGraph(Incubating) project contains subcomponents with separate copyright
The Apache HugeGraph project contains subcomponents with separate copyright
notices and license terms. Your use of the source code for the these
subcomponents is subject to the terms and conditions of the following
licenses.
Expand Down
4 changes: 2 additions & 2 deletions hugegraph-dist/release-docs/NOTICE
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Apache HugeGraph(incubating)
Copyright 2022-2025 The Apache Software Foundation
Apache HugeGraph
Copyright 2022-2026 The Apache Software Foundation

This product includes software developed at
The Apache Software Foundation (http://www.apache.org/).
Expand Down
Loading
Loading