We have a Hadoop service in which we have several applications. We need to process the data for each of the applications, reworking the same workflow. They must be performed at the same time of day. The problem is that when these tasks work, it is difficult to understand for which application the work is being performed / failed / completed. Of course, I can open this work and find out it, but it takes a lot of time, since 10s of applications work under this service.
Is there any parameter in oozie to dynamically pass the name of the workflow (or part of it) during the job, for example
oozie job -run -config <filename> -name "<NameIWishToGive>" OR oozie job -run -config <filename> -nameSuffix "<MyApplicationNameUnderTheService>"
In addition, we do not want to create several task folders for execution separately, as this would be a too large copy.
Please offer.
source share