> For the complete documentation index, see [llms.txt](https://docs.pentaho.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.pentaho.com/install/9.3-install/pentaho-configuration/tasks-to-be-performed-by-an-it-administrator/set-up-the-adaptive-execution-layer-ael/troubleshooting-ael-cp/jar-file-conflict-in-kafka-consumer-step.md).

# JAR file conflict in Kafka Consumer step

When using the Kafka Consumer step with HDP 3.x on AEL Spark, there is a known conflict with the JAR file `/usr/hdp/3.x/hadoop-mapreduce/kafka-clients-0.8.2.1.jar`

Use one of the following solutions to resolve the JAR conflict.

* On HDP 3.x do not set the **SPARK\_DIST\_CLASSPATH** variable before running the Adaptive Execution Layer daemon. Otherwise, there may be issues in other AEL components.
* Exclude the JAR file from the path on **SPARK\_DIST\_CLASSPATH** with the `spark-dist-classpath.sh` script. Create the script with any text editor and include the following code:

  ```xml
  #!/bin/sh
  ##
  ## helper script for setting up SPARK_DIST_CLASSPATH for AEL
  ## removes conflicting JAR files existing in HDP 3.x
  ## Using: call this the same way you use hadoop classpath, command, i.e.:
  ## export SPARK_DIST_CLASSPATH=$(spark-dist-classpath.sh)

  # grab hadoop classpath
  HCP=`hadoop classpath`

  ## expand it to grab all jar files
  (
    for entry in `echo "$HCP" | sed -e 's/:/\n/g'` ; do
       ## clean up dirs ending with *
       entryCleaned=`echo "$entry" | sed -e 's/\*$//'`
       ## if dir, expand it
       if test -d $entryCleaned ; then
         find $entryCleaned  
       else
         echo "$entry"
       fi 
    done 
  ) | grep -v kafka-clients-0.8.2.1.jar |  paste -s -d: 

  exit

  ```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.pentaho.com/install/9.3-install/pentaho-configuration/tasks-to-be-performed-by-an-it-administrator/set-up-the-adaptive-execution-layer-ael/troubleshooting-ael-cp/jar-file-conflict-in-kafka-consumer-step.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
