Iglu central not found

While running on stream-enricher-kafka on ECS using the following resolver config:
{ "schema": "iglu:com.snowplowanalytics.iglu/resolver-config/jsonschema/1-0-1", "data": { "cacheSize": 500, "repositories": [ { "name": "Iglu Central", "priority": 0, "vendorPrefixes": [ "com.snowplowanalytics" ], "connection": { "http": { "uri": "http://iglucentral.com" } } }] } }
I’m getting a
{ "repository": "Iglu Central", "errors": [ { "error": "NotFound" } ], "attempts": 1, "lastAttempt": "2022-04-21T11:27:33.477Z" },
Are there any specifics im missing ? Is the not found meaning the event schema was not found or the host not found ?

I think it can mean either. The schema exists in Iglu Central for sure: you’ll find it by searching resolver-config on http://iglucentral.com.

I’d guess that there’s some network rule in place preventing it from reaching the Iglu Central server (which is publically available).

My suggestion is to look into any network rules, and if nothing’s obviously blocking it, maybe see if you can ssh into the box and check if you can make calls externally.

3 Likes