Skip to content
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

Exchange SST mode doesn't apply to Kafka and other streaming data sou… #2120

Merged
merged 1 commit into from
Jun 12, 2023
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,10 @@ Before importing data, you need to confirm the following information:

- The Kafka service has been installed and started.

## Precautions

Only client mode is supported when importing Kafka data, i.e. the value of parameters `tags.type.sink` and `edges.type.sink` is `client`.

## Steps

### Step 1: Create the Schema in NebulaGraph
Expand Down Expand Up @@ -149,7 +153,7 @@ After Exchange is compiled, copy the conf file `target/classes/application.conf`
type: {
# Specify the data source file format to Kafka.
source: kafka
# Specify how to import the data into NebulaGraph: Client or SST.
# Specify how to import the data into NebulaGraph. Only client is supported.
sink: client
}
# Kafka server address.
Expand Down Expand Up @@ -222,7 +226,7 @@ After Exchange is compiled, copy the conf file `target/classes/application.conf`
source: kafka

# Specify how to import the Edge type data into NebulaGraph.
# Specify how to import the data into NebulaGraph: Client or SST.
# Specify how to import the data into NebulaGraph. Only client is supported.
sink: client
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@ Before importing data, you need to confirm the following information:

- The Pulsar service has been installed and started.

## Precautions

Only client mode is supported when importing Pulsar data, i.e. the value of parameters `tags.type.sink` and `edges.type.sink` is `client`.

## Steps

### Step 1: Create the Schema in NebulaGraph
Expand Down Expand Up @@ -138,7 +142,7 @@ After Exchange is compiled, copy the conf file `target/classes/application.conf`
type: {
# Specify the data source file format to Pulsar.
source: pulsar
# Specify how to import the data into NebulaGraph: Client or SST.
# Specify how to import the data into NebulaGraph. Only client is supported.
sink: client
}
# The address of the Pulsar server.
Expand Down Expand Up @@ -211,7 +215,7 @@ After Exchange is compiled, copy the conf file `target/classes/application.conf`
source: pulsar

# Specify how to import the Edge type data into NebulaGraph.
# Specify how to import the data into NebulaGraph: Client or SST.
# Specify how to import the data into NebulaGraph. Only client is supported.
sink: client
}

Expand Down