Skip to content

Commit 8c676ca

Browse files
authored
Merge branch 'main' into fix_authz_memory_issue
2 parents 73ec0d4 + 0abb6a8 commit 8c676ca

File tree

2 files changed

+8
-10
lines changed

2 files changed

+8
-10
lines changed

docs/reference/enrich-processor/geoip-processor.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -206,14 +206,18 @@ PUT my_ip_locations
206206

207207
If you can’t [automatically update](#geoip-automatic-updates) your IP geolocation databases from the Elastic endpoint, you have a few other options:
208208

209-
* [Use a proxy endpoint](#use-proxy-geoip-endpoint)
209+
* [Use a reverse proxy endpoint](#use-proxy-geoip-endpoint)
210210
* [Use a custom endpoint](#use-custom-geoip-endpoint)
211211
* [Manually update your IP geolocation databases](#manually-update-geoip-databases)
212212

213213
$$$use-proxy-geoip-endpoint$$$
214-
**Use a proxy endpoint**
214+
**Use a reverse proxy endpoint**
215215

216-
If you can’t connect directly to the Elastic GeoIP endpoint, consider setting up a secure proxy. You can then specify the proxy endpoint URL in the [`ingest.geoip.downloader.endpoint`](#ingest-geoip-downloader-endpoint) setting of each node’s `elasticsearch.yml` file.
216+
If you can’t connect directly to the Elastic GeoIP endpoint, consider setting up a secure reverse proxy. You can then specify the reverse proxy endpoint URL in the [`ingest.geoip.downloader.endpoint`](#ingest-geoip-downloader-endpoint) setting of each node’s `elasticsearch.yml` file.
217+
218+
:::{note}
219+
True HTTP proxy support for GeoIP database downloads is not currently available in {{es}}.
220+
:::
217221

218222
In a strict setup the following domains may need to be added to the allowed domains list:
219223

x-pack/plugin/ml/src/test/java/org/elasticsearch/xpack/ml/aggs/categorization/InternalCategorizationAggregationTests.java

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,6 @@ protected SearchPlugin registerPlugin() {
4646
return MachineLearningTests.createTrialLicensedMachineLearning(Settings.EMPTY);
4747
}
4848

49-
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/87240")
50-
public void testReduceRandom() {
51-
// The bug is in the assertReduced() method immediately below that the base class testReduceRandom() calls.
52-
// To unmute after the bug is fixed, simply delete this entire method so that the base class method is used again.
53-
}
54-
5549
@Override
5650
protected void assertReduced(InternalCategorizationAggregation reduced, List<InternalCategorizationAggregation> inputs) {
5751
Map<Object, Long> reducedCounts = toCounts(reduced.getBuckets().stream());
@@ -80,7 +74,7 @@ protected InternalCategorizationAggregation createTestInstance(
8074
name,
8175
randomIntBetween(10, 100),
8276
randomLongBetween(1, 10),
83-
randomIntBetween(1, 100),
77+
randomIntBetween(50, 100),
8478
metadata,
8579
buckets
8680
);

0 commit comments

Comments
 (0)