We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa0e218 commit d1648aaCopy full SHA for d1648aa
src/main/java/com/rabbitmq/stream/StreamCreator.java
@@ -67,9 +67,15 @@ public interface StreamCreator {
67
/**
68
* Set the size of the stream chunk filters.
69
*
70
- * @param size
+ * <p>Must be between 16 and 255 bytes, default is 16.
71
+ *
72
+ * <p>Use a bloom filter calculator to size the filter accordingly to the possible number of
73
+ * filter values and the acceptable rate of false positives (RabbitMQ Stream uses 2 hash
74
+ * functions).
75
76
+ * @param size (in bytes)
77
* @return this creator instance
- * @see ProducerBuilder#filterValue( Function)
78
+ * @see ProducerBuilder#filterValue(Function)
79
* @see ConsumerBuilder#filter()
80
*/
81
StreamCreator filterSize(int size);
0 commit comments