I'm trying to read data from the ArangoDB Write Ahead Log (WAL) so that the data can be replicated into Kafka.
ArangoDB provides an API to do so but says the following about it:
As a public API it is only supported to access these REST endpoints on a single-server instance. While these APIs are also available on DBServer instances, accessing them as a user is not supported. This API replaces some of the APIs in
/_api/replication/
.
Source: WAL Access API
There's also the Replication Logger API but the crucial /_api/replication/logger-follow
endpoint has been deprecated.
Is there a way to read the WAL for ArangoDB clusters instead of just single-server instances?