File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/main/java/com/arpnetworking/clusteraggregator/models Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -142,21 +142,21 @@ public long getStatisticsLatestPeriod() {
142
142
private BloomFilter <CharSequence > createServicesBF () {
143
143
return BloomFilter .create (
144
144
Funnels .stringFunnel (Charsets .UTF_8 ),
145
- 100_000 ,
146
- 0.0001 );
145
+ 10_000 ,
146
+ 0.001 );
147
147
}
148
148
149
149
private BloomFilter <CharSequence > createMetricsBF () {
150
150
return BloomFilter .create (
151
151
Funnels .stringFunnel (Charsets .UTF_8 ),
152
- 10_000_000 ,
152
+ 1_000_000 ,
153
153
0.001 );
154
154
}
155
155
156
156
private BloomFilter <CharSequence > createStatisticsBF () {
157
157
return BloomFilter .create (
158
158
Funnels .stringFunnel (Charsets .UTF_8 ),
159
- 100_000_000 ,
159
+ 10_000_000 ,
160
160
0.005 );
161
161
}
162
162
You can’t perform that action at this time.
0 commit comments