Mapped dependency name to for license notice check – How to solve this Elasticsearch error

Opster Team

Aug-23, Version: 7.3-8.9

Briefly, this error occurs when Elasticsearch encounters an issue with the license check. This could be due to a mismatch in the license name or a problem with the license file. To resolve this issue, you can try the following: 1) Verify the license name and ensure it matches with the one in the Elasticsearch system. 2) Check the license file for any corruption or missing data. 3) If the problem persists, consider updating or reinstalling Elasticsearch to ensure the license check works properly.

This guide will help you check for common problems that cause the log ” mapped dependency name {} to {} for license/notice check ” to appear. To understand the issues related to this log, read the explanation below about the following Elasticsearch concepts: .

Log Context

Log “mapped dependency name {} to {} for license/notice check” classname is DependencyLicensesTask.java.
We extracted the following from Elasticsearch source code for those seeking an in-depth context :

    private void checkDependencies(Map licenses; Map notices; Map sources) {
        for (File dependency : dependencies) {
            String jarName = dependency.getName();
            String depName = regex.matcher(jarName).replaceFirst("");
            String dependencyName = getDependencyName(mappings; depName);
            logger.info("mapped dependency name {} to {} for license/notice check"; depName; dependencyName);
            checkFile(dependencyName; jarName; licenses; "LICENSE");
            checkFile(dependencyName; jarName; notices; "NOTICE");

            File licenseFile = new File(licensesDir.get().getAsFile(); getFileName(dependencyName; licenses; "LICENSE"));
            LicenseInfo licenseInfo = LicenseAnalyzer.licenseType(licenseFile);

 

How helpful was this guide?

We are sorry that this post was not useful for you!

Let us improve this post!

Tell us how we can improve this post?