An open API service indexing awesome lists of open source software.

https://github.com/streamnative/pulsar-io-huawei-dis

Pulsar IO connector for huawei DIS https://www.huaweicloud.com/en-us/product/dis.html
https://github.com/streamnative/pulsar-io-huawei-dis

Last synced: 7 months ago
JSON representation

Pulsar IO connector for huawei DIS https://www.huaweicloud.com/en-us/product/dis.html

Awesome Lists containing this project

README

          

# pulsar-io-huawei-dis
Pulsar IO connector for huawei DIS https://www.huaweicloud.com/en-us/product/dis.html

## Configuration

The configuration of the DIS sink connector has the following properties.

### Property

| Name | Type|Required | Default | Description
|------|----------|----------|---------|-------------|
| `region` |String|true|" " (empty string) | Information about the region where the DIS is located. |
| `disEndpoint` |String|true|" " (empty string) | Domain name or IP address of the server bearing the DIS REST service. |
| `projectId` | String|true|" " (empty string) | User Project ID. |
| `ak` |String| true|" " (empty string) | User AK. |
| `sk` | String|true|" " (empty string) | User SK. |
| `streamId` | String|true|" " (empty string) | Id of the DIS stream. |
| `streamName` |String| true|" " (empty string) | Name of the DIS stream. |

### Example

Before using the DIS sink connector, you need to create a configuration file through one of the following methods.

* JSON

```json
{
"region": "cn-north-4",
"disEndpoint": "https://dis.cn-north-4.myhuaweicloud.com",
"projectId": "fakeProjectId",
"ak": "fakeSK",
"sk": "fakeSK",
"streamId": "fakeStreamId",
"streamName": "fakeStreamName"
}
```

* YAML

```yaml
configs:
region: "cn-north-4"
disEndpoint: "https://dis.cn-north-4.myhuaweicloud.com"
projectId: "fakeProjectId"
ak: "fakeAK"
sk: "fakeSK"
streamId: "fakeStreamId"
streamName: "fakeStreamName"
```