Hi,
I have a requirement where I am indexing my raw docs to an index (original_index). I am creating a rollup job for this index which runs every hour. My rollup index goes through an ingest pipeline which has a script.
- Is there a way I can log some information from the script within ingest pipeline. I tried using ctx.logger.info(). but it is giving me a null pointer exception.
- If there are any unexpected errors for rolling up the docs, is there any way that I can get alerts (or logs) that something has failed for rollup.
- If it is possible to log the information, where can I check the logs logged from ingest pipeline/ unexpected failure logs.
Thank you