Hi, I’m facing this error {“lookuphistory”:[{“lastattempt”:“2022-07-26T07:27:02.756Z”,“repository”:“Iglu Central”,“errors”:[{“error”:“NotFound”}],“attempts”:“2”},{“lastattempt”:“2022-07-26T07:27:03.014Z”,“repository”:“Iglu Central - GCP Mirror”,“errors”:[{“error”:“NotFound”}],“attempts”:“2”},{“lastattempt”:“2022-07-26T07:20:05.530Z”,“repository”:“Iglu Client Embedded”,“errors”:[{“error”:“NotFound”}],“attempts”:“1”},{“lastattempt”:“2022-07-26T07:20:05.533Z”,“repository”:“local Iglu repository”,“errors”:[{“error”:“RepoFailure”,“message”:“ParsingFailure: exhausted input”}],“attempts”:“1”}],“error”:“ResolutionError”}
I’m passing the custom context schema to snowplow-enrichment and I was able to collect and enrich the custom context data, but suddenly now I’m seeing the above issue.
Can anybody tell me where the above error may have been created? Is it on the application side or the enrichment process side? And how to understand this error to fix it asap.
It seems that there is a problem in the configuration of your local registry (ResolutionError). Could you share the file configuring your resolvers please?
Embedded schemas need to be accessible in the CLASSPATH of the app.
In your case you probably want to use an HTTP repository. What you could do is run a simple http server in /iglu-repo (e.g. with python3 -m http.server) and then point to it in your resolvers:
@BenB Can you please give me a clear and step by step instructions whats need to be done, I have not integrated from the App side, dedicated application teams are integrating snowplow with their applications and my job is to process the data to Data warehouse, so please give me an instruction I will try to follow it and Thanks a lot for your help.