Hello,
We are setting up the enrichment module and using the resolver.json template from the snowplow documentation on github:
{
"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"
}
}
},
{
"name": "Iglu Central - GCP Mirror",
"priority": 1,
"vendorPrefixes": [ "com.snowplowanalytics" ],
"connection": {
"http": {
"uri": "http://mirror01.iglucentral.com"
}
}
}
]
}
}
We are receiving the following error in CloudWatch:
NonEmptyList(
{
"error": "ResolutionError",
"lookupHistory": [
{
"repository": "Iglu Central",
"errors": [
{
"error": "RepoFailure",
"message": "connect timed out"
}
],
"attempts": 1,
"lastAttempt": "2020-07-14T14:52:28.630Z"
},
{
"repository": "Iglu Client Embedded",
"errors": [
{
"error": "NotFound"
}
],
"attempts": 1,
"lastAttempt": "2020-07-14T14:52:28.640Z"
}
]
}
)