Open shlomiassaf opened 5 months ago
Dynamic values are valid input when creating a topic.
The PR will allow adding them, so for example, one can provide the retention period and cleanup policy of the topic:
clusterManager.CreateIfNotExistsAsync("mytopic", 1, 1, new Dictionary<string, string> { { "retention.ms", (86400000 * 2).ToString() }, // 2 days { "cleanup.policy", "delete" } });
By sending us your contributions, you are agreeing that your contribution is made subject to the terms of our Contributor Ownership Statement
Description
Dynamic values are valid input when creating a topic.
The PR will allow adding them, so for example, one can provide the retention period and cleanup policy of the topic:
Checklist
Disclaimer
By sending us your contributions, you are agreeing that your contribution is made subject to the terms of our Contributor Ownership Statement