[
https://issues.apache.org/jira/browse/FLINK-8668?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16371230#comment-16371230
]
ASF GitHub Bot commented on FLINK-8668:
---------------------------------------
Github user zentol commented on a diff in the pull request:
https://github.com/apache/flink/pull/5531#discussion_r169600042
--- Diff: docs/ops/deployment/hadoop.md ---
@@ -0,0 +1,47 @@
+---
+title: "Hadoop Integration"
+nav-title: Hadoop Integration
+nav-parent_id: deployment
+nav-pos: 8
+---
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements. See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership. The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied. See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
+* This will be replaced by the TOC
+{:toc}
+
+## Configuring Flink with Hadoop Classpaths
+
+Flink will use the environment variable `HADOOP_CLASSPATH` to augment the
+classpath that is used when starting Flink components such as the Client,
+JobManager, or TaskManager. Most Hadoop distributions and cloud
environments
+will not set this variable by default so if the Hadoop classpath should be
+picked up by Flink the environment variable must be exported on all
machines
+that are running Flink components.
+
+When running on YARN, this is usually not a problem because the components
+running inside YARN will be started with the Hadoop classpaths, but it can
+happen that the Hadoop dependencies must be in the classpath when
submitting a
+job to YARN. For this, it's usually enough to do a
+
+```
+export HADOOP_CLASSPATH=`hadoop classpath`
--- End diff --
add `<` `>`?
> Remove "hadoop classpath" from config.sh
> ----------------------------------------
>
> Key: FLINK-8668
> URL: https://issues.apache.org/jira/browse/FLINK-8668
> Project: Flink
> Issue Type: New Feature
> Reporter: Aljoscha Krettek
> Assignee: Aljoscha Krettek
> Priority: Major
> Fix For: 1.5.0
>
>
> Automatically adding this when available can lead to dependency problems for
> some users and there is no way of turning of this "feature". It was added to
> make using Flink on AWS/EMR and GCE a bit easier but I think it's causing
> more harm than good.
> If users want to to augment the classpath they can always {{export
> HADOOP_CLASSPATH=...}}.
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)