replicator icon indicating copy to clipboard operation
replicator copied to clipboard

replicator is a toolkit for ingesting logical replication feeds into a CockroachDB cluster

Results 84 replicator issues
Sort by recently updated
recently updated
newest added

The userscript API mainly just needs to be revised to accept a promise and the js-tracker wired to support chained re-entry into the runtime.

It would be useful to have end-to-end integration tests that leverage `seqtest.Generator`. This will generate a sequence of mutations that can be applied into the source. The integration test framework...

enhancement

We need a test to verify that adding a table to an existing changefeed does the right thing if the table has pre-existing data.

It would be an interesting experiment to write a user-defined apply function that adds the source MVCC time as a column, combined with the existing soft-delete demo. This would effectively...

https://go.dev/blog/execution-traces-2024 could let us get a much better handle on slow activities. We can have the Wire stack inject a "global" FlightRecorder which we can then sample when some particular,...

These immutable columns would be write-once from cdc-sink's perspective.

When we receive a `TIMESTAMP` value, it's sent without a timezone marker: `2024-12-14T04:58:34.583023`. If this same time were retrieved from the database, we get a `time.Time` with the UTC timezone....

There's a default limit of 32 concurrent webhook requests. This may be overly conservative for high-throughput (i.e. post-split catchup) scenarios. Bandwidth-delay product is troublesome with a small number of outstanding...

documentation

CockroachDB changefeeds emit resolved timestamps across all the partitions within a topic. We could leverage it, to allow transactional consistency across multiple rows, by staging events and committed them to...

enhancement