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

[Doc] Add *Aerospike sink connector guide* #5256

Merged
merged 3 commits into from
Sep 27, 2019
Merged
Show file tree
Hide file tree
Changes from 2 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
25 changes: 25 additions & 0 deletions site2/docs/io-aerospike-sink.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
id: io-aerospike-sink
title: Aerospike sink connector
sidebar_label: Aerospike sink connector
---

The Aerospike sink connector pulls messages from Pulsar topics to Aerospike clusters.

## Configuration

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

### Property

| Name | Type|Required | Default | Description
|------|----------|----------|---------|-------------|
| `seedHosts` |String| true | 3000 | The comma-separated list of one or more Aerospike cluster hosts.<br><br>Each host can be specified as a valid IP address or hostname followed by an optional port number. |
Anonymitaet marked this conversation as resolved.
Show resolved Hide resolved
| `keyspace` | String| true | |The Aerospike namespace. |
| `columnName` | String | true| |The Aerospike column name. |
|`userName`|String|false||The Aerospike username.|
|`password`|String|false||The Aerospike password.|
| `keySet` | String|false | | The Aerospike set name. |
| `maxConcurrentRequests` |int| false | 100 | The maximum number of concurrent Aerospike transactions that a sink can open. |
| `timeoutMs` | int|false | 100 | This property controls `socketTimeout` and `totalTimeout` for Aerospike transactions. |
| `retries` | int|false | 1 |The maximum number of retries before aborting a write transaction to Aerospike. |
Anonymitaet marked this conversation as resolved.
Show resolved Hide resolved
21 changes: 0 additions & 21 deletions site2/docs/io-aerospike.md

This file was deleted.

4 changes: 2 additions & 2 deletions site2/docs/io-connectors.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,13 @@ Pulsar has various source connectors, which are sorted alphabetically as below.

- [Netty source connector](io-netty.md)

- [RabbitMQ source connector](io-rabbitmq.md)
- [RabbitMQ source connector](io-rabbitmq-source.md)

## Sink connector

Pulsar has various sink connectors, which are sorted alphabetically as below.

- [Aerospike sink connector](io-aerospike.md)
- [Aerospike sink connector](io-aerospike-sink.md)

- [Cassandra sink connector](io-cassandra.md)

Expand Down