You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 21, 2018. It is now read-only.
I have successfully register a hdfs cluster with 3 nodes.
But I don't know how to access them.
See some of the many HDFS tutorials out there for more details and explore the web UI at
http://<ActiveNameNode>:50070.
Note that you can access commands through hdfs://<mesos.hdfs.framework.name>/ (default: hdfs://hdfs/). Also here is a quick sanity check:
hadoop fs -ls hdfs://hdfs/ should show nothing for starters
hadoop fs -put /path/to/src_file hdfs://hdfs/
hadoop fs -ls hdfs://hdfs/ should now list src_file
hdfs-site.xml
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="configuration.xsl"?>
<!--
Licensed 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. See accompanying LICENSE file.
-->
<!-- Put site-specific property overrides in this file. -->
<configuration>
<property>
<name>dfs.ha.automatic-failover.enabled</name>
<value>true</value>
</property>
<property>
<name>dfs.nameservice.id</name>
<value>hdfs</value>
</property>
<property>
<name>dfs.nameservices</name>
<value>hdfs</value>
</property>
<property>
<name>dfs.ha.namenodes.hdfs</name>
<value>nn1,nn2</value>
</property>
<property>
<name>dfs.namenode.rpc-address.hdfs.nn1</name>
<value>:50071</value>
</property>
<property>
<name>dfs.namenode.http-address.hdfs.nn1</name>
<value>:50070</value>
</property>
<property>
<name>dfs.namenode.rpc-address.hdfs.nn2</name>
<value>:50071</value>
</property>
<property>
<name>dfs.namenode.http-address.hdfs.nn2</name>
<value>:50070</value>
</property>
<property>
<name>dfs.client.failover.proxy.provider.hdfs</name>
<value>org.apache.hadoop.hdfs.server.namenode.ha.ConfiguredFailoverProxyProvider</value>
</property>
<property>
<name>dfs.namenode.shared.edits.dir</name>
<value>qjournal:///hdfs</value>
</property>
<property>
<name>ha.zookeeper.quorum</name>
<value>master1:2181,master2:2181,master3:2181</value>
</property>
<property>
<name>dfs.journalnode.edits.dir</name>
<value>/data/hdfs/data/jn</value>
</property>
<property>
<name>dfs.namenode.name.dir</name>
<value>/data/hdfs/data/name</value>
</property>
<property>
<name>dfs.datanode.data.dir</name>
<value>file:///data/hdfs/data/data</value>
</property>
<property>
<name>dfs.ha.fencing.methods</name>
<value>shell(/bin/true)</value>
</property>
<property>
<name>dfs.permissions</name>
<value>false</value>
</property>
<property>
<name>dfs.datanode.du.reserved</name>
<value>10485760</value>
</property>
<property>
<name>dfs.datanode.balance.bandwidthPerSec</name>
<value>41943040</value>
</property>
<property>
<name>dfs.namenode.safemode.threshold-pct</name>
<value>0.90</value>
</property>
<property>
<name>dfs.namenode.heartbeat.recheck-interval</name>
<!-- 60 seconds -->
<value>60000</value>
</property>
<property>
<name>dfs.datanode.handler.count</name>
<value>10</value>
</property>
<property>
<name>dfs.namenode.handler.count</name>
<value>20</value>
</property>
<property>
<name>dfs.image.compress</name>
<value>true</value>
</property>
<property>
<name>dfs.image.compression.codec</name>
<value>org.apache.hadoop.io.compress.SnappyCodec</value>
</property>
<property>
<name>dfs.namenode.invalidate.work.pct.per.iteration</name>
<value>0.35f</value>
</property>
<property>
<name>dfs.namenode.replication.work.multiplier.per.iteration</name>
<value>4</value>
</property>
<!-- This property allows us to use IP's directly for communication instead of hostnames. -->
<property>
<name>dfs.namenode.datanode.registration.ip-hostname-check</name>
<value>false</value>
</property>
<property>
<name>dfs.client.read.shortcircuit</name>
<value>true</value>
</property>
<property>
<name>dfs.client.read.shortcircuit.streams.cache.size</name>
<value>1000</value>
</property>
<property>
<name>dfs.client.read.shortcircuit.streams.cache.size.expiry.ms</name>
<value>1000</value>
</property>
<!-- This property needs to be consistent with mesos.hdfs.domain.socket.dir -->
<property>
<name>dfs.domain.socket.path</name>
<value>/var/run/hadoop-hdfs/dn._PORT</value>
</property>
</configuration>
stdout
LIBPROCESS_IP=10.197.0.6
MESOS_AGENT_ENDPOINT=10.197.0.6:5051
TERM=linux
MESOS_DIRECTORY=/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43
LD_LIBRARY_PATH=/usr/local/lib
MESOS_EXECUTOR_ID=executor.journalnode.NodeExecutor.1470131161519
PATH=/usr/local/sbin:/usr/local/bin:/usr/bin:/usr/sbin:/sbin:/bin
PWD=/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43
MESOS_EXECUTOR_SHUTDOWN_GRACE_PERIOD=5secs
JAVA_HOME=/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/jre1.7.0_76
MESOS_NATIVE_JAVA_LIBRARY=/usr/lib/libmesos-0.28.1.so
MESOS_NATIVE_LIBRARY=/usr/lib/libmesos-0.28.1.so
MESOS_SLAVE_PID=slave(1)@10.197.0.6:5051
MESOS_FRAMEWORK_ID=2578a727-04fa-422f-9933-9bade378f11f-0034
MESOS_CHECKPOINT=1
EXECUTOR_OPTS=-Xmx256m -Xms256m
SHLVL=1
LIBPROCESS_PORT=0
UPSTART_INSTANCE=
MESOS_SLAVE_ID=4c56de66-cb91-420a-9a20-12197dae0eba-S2
UPSTART_JOB=mesos-slave
MESOS_SUBSCRIPTION_BACKOFF_MAX=2secs
MESOS_RECOVERY_TIMEOUT=15mins
MESOS_SANDBOX=/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43
_=/usr/bin/env
16:45:50.364 [Thread-3] INFO o.a.m.h.e.AbstractNodeExecutor - Creating a symbolic link for HDFS binary
16:45:50.370 [Thread-3] INFO org.apache.mesos.process.ProcessUtil - Starting process: [unlink, /opt/mesosphere/hdfs]
16:45:50.370 [Thread-3] INFO org.apache.mesos.process.ProcessUtil - Starting process: [unlink, /opt/mesosphere/hdfs]
16:45:50.375 [Thread-3] INFO o.a.m.h.e.AbstractNodeExecutor - Unable to unlink old sym link. Link may not exist. Exit code: 1
16:45:50.376 [Thread-3] INFO o.a.m.h.e.AbstractNodeExecutor - The linked HDFS binary path is: /data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6
16:45:50.376 [Thread-3] INFO o.a.m.h.e.AbstractNodeExecutor - The symbolic link path is: /opt/mesosphere/hdfs
16:45:50.377 [Thread-3] INFO org.apache.mesos.process.ProcessUtil - Starting process: [chmod, a+x, /usr/bin/hadoop]
16:45:50.377 [Thread-3] INFO org.apache.mesos.process.ProcessUtil - Starting process: [chmod, a+x, /usr/bin/hadoop]
16:45:50.378 [Thread-3] INFO o.a.m.h.e.AbstractNodeExecutor - Executor registered with the slave
16:45:50.386 [Thread-8] INFO o.a.m.h.e.AbstractNodeExecutor - Starting process: bin/hdfs-mesos-journalnode
16:45:50.386 [Thread-8] INFO o.a.m.h.e.AbstractNodeExecutor - Reloading hdfs-site.xml from http://10.197.0.4:8765/hdfs-site.xml
16:45:50.386 [Thread-8] INFO org.apache.mesos.process.ProcessUtil - Starting process: curl -o hdfs-site.xml http://10.197.0.4:8765/hdfs-site.xml && mv hdfs-site.xml etc/hadoop/
16:45:50.386 [Thread-8] INFO org.apache.mesos.process.ProcessUtil - Starting process: [sh, -c, curl -o hdfs-site.xml http://10.197.0.4:8765/hdfs-site.xml && mv hdfs-site.xml etc/hadoop/]
16:45:50.387 [Thread-8] INFO org.apache.mesos.process.ProcessUtil - Starting process: [sh, -c, curl -o hdfs-site.xml http://10.197.0.4:8765/hdfs-site.xml && mv hdfs-site.xml etc/hadoop/]
16:45:50.402 [Thread-8] INFO o.a.m.h.e.AbstractNodeExecutor - Finished reloading hdfs-site.xml, exited with status 0
16:45:50.402 [Thread-8] INFO org.apache.mesos.process.ProcessUtil - Starting process: [bin/hdfs-mesos-journalnode]
16:45:50.406 [Thread-8] INFO o.a.mesos.process.ProcessWatcher - Watching process: java.lang.UNIXProcess@768fe4ad
16:45:50.493 [Thread-14] INFO o.a.m.h.e.AbstractNodeExecutor - Reloading hdfs-site.xml from http://10.197.0.4:8765/hdfs-site.xml
16:45:50.494 [Thread-14] INFO org.apache.mesos.process.ProcessUtil - Starting process: curl -o hdfs-site.xml http://10.197.0.4:8765/hdfs-site.xml && mv hdfs-site.xml etc/hadoop/
16:45:50.494 [Thread-14] INFO org.apache.mesos.process.ProcessUtil - Starting process: [sh, -c, curl -o hdfs-site.xml http://10.197.0.4:8765/hdfs-site.xml && mv hdfs-site.xml etc/hadoop/]
16:45:50.494 [Thread-14] INFO org.apache.mesos.process.ProcessUtil - Starting process: [sh, -c, curl -o hdfs-site.xml http://10.197.0.4:8765/hdfs-site.xml && mv hdfs-site.xml etc/hadoop/]
16:45:50.513 [Thread-14] INFO o.a.m.h.e.AbstractNodeExecutor - Finished reloading hdfs-site.xml, exited with status 0
16:45:50.513 [Thread-14] INFO o.a.m.h.e.AbstractNodeExecutor - Executor received framework message: reload config
stderr
I0802 16:45:47.647390 3505 fetcher.cpp:379] Fetching URI 'http://10.197.0.4:8765/hdfs-site.xml'
I0802 16:45:47.647399 3505 fetcher.cpp:250] Fetching directly into the sandbox directory
I0802 16:45:47.647423 3505 fetcher.cpp:187] Fetching URI 'http://10.197.0.4:8765/hdfs-site.xml'
I0802 16:45:47.647439 3505 fetcher.cpp:134] Downloading resource from 'http://10.197.0.4:8765/hdfs-site.xml' to '/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-site.xml'
W0802 16:45:47.652240 3505 fetcher.cpp:272] Copying instead of extracting resource from URI with 'extract' flag, because it does not seem to be an archive: http://10.197.0.4:8765/hdfs-site.xml
I0802 16:45:47.652307 3505 fetcher.cpp:456] Fetched 'http://10.197.0.4:8765/hdfs-site.xml' to '/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-site.xml'
I0802 16:45:47.652331 3505 fetcher.cpp:379] Fetching URI 'http://master1:8000/jre-7u76-linux-x64.tar.gz'
I0802 16:45:47.652346 3505 fetcher.cpp:250] Fetching directly into the sandbox directory
I0802 16:45:47.652369 3505 fetcher.cpp:187] Fetching URI 'http://master1:8000/jre-7u76-linux-x64.tar.gz'
I0802 16:45:47.652390 3505 fetcher.cpp:134] Downloading resource from 'http://master1:8000/jre-7u76-linux-x64.tar.gz' to '/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/jre-7u76-linux-x64.tar.gz'
I0802 16:45:47.782526 3505 fetcher.cpp:84] Extracting with command: tar -C '/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43' -xf '/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/jre-7u76-linux-x64.tar.gz'
I0802 16:45:49.452409 3505 fetcher.cpp:92] Extracted '/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/jre-7u76-linux-x64.tar.gz' into '/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43'
I0802 16:45:49.452489 3505 fetcher.cpp:456] Fetched 'http://master1:8000/jre-7u76-linux-x64.tar.gz' to '/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/jre-7u76-linux-x64.tar.gz'
I0802 16:45:50.291738 3513 exec.cpp:143] Version: 0.28.1
I0802 16:45:50.297267 3534 exec.cpp:217] Executor registered on slave 4c56de66-cb91-420a-9a20-12197dae0eba-S2
unlink: cannot unlink `/opt/mesosphere/hdfs': No such file or directory
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
101 4355 101 4355 0 0 585k 0 --:--:-- --:--:-- --:--:-- 708k
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
101 4355 101 4355 0 0 516k 0 --:--:-- --:--:-- --:--:-- 607k
16/08/02 16:45:50 INFO server.JournalNode: STARTUP_MSG:
/************************************************************
STARTUP_MSG: Starting JournalNode
STARTUP_MSG: host = spark-dev-04/127.0.0.1
STARTUP_MSG: args = []
STARTUP_MSG: version = 2.5.0-cdh5.3.1
STARTUP_MSG: classpath = /data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/etc/hadoop:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/common/lib/jaxb-api-2.2.2.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/common/lib/hadoop-auth-2.5.0-cdh5.3.1.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/common/lib/junit-4.11.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/common/lib/java-xmlbuilder-0.4.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/common/lib/jsr305-1.3.9.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/common/lib/xmlenc-0.52.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/common/lib/api-util-1.0.0-M20.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/common/lib/mockito-all-1.8.5.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/common/lib/commons-el-1.0.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/common/lib/commons-beanutils-core-1.8.0.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/common/lib/commons-net-3.1.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/common/lib/jasper-runtime-5.5.23.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/common/lib/jettison-1.1.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/common/lib/apacheds-kerberos-codec-2.0.0-M15.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/common/lib/paranamer-2.3.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/common/lib/avro-1.7.6-cdh5.3.1.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/common/lib/commons-cli-1.2.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/common/lib/jsp-api-2.1.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/common/lib/jersey-core-1.9.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/common/lib/jersey-server-1.9.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/common/lib/apacheds-i18n-2.0.0-M15.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/common/lib/xz-1.0.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/common/lib/slf4j-api-1.7.5.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/common/lib/commons-configuration-1.6.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/common/lib/log4j-1.2.17.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/common/lib/jsch-0.1.42.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/common/lib/jetty-6.1.26.cloudera.4.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/common/lib/jackson-xc-1.8.8.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/common/lib/activation-1.1.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/common/lib/protobuf-java-2.5.0.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/common/lib/commons-math3-3.1.1.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/common/lib/guava-11.0.2.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/common/lib/commons-io-2.4.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/common/lib/commons-lang-2.6.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/common/lib/jaxb-impl-2.2.3-1.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/common/lib/jersey-json-1.9.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/common/lib/commons-digester-1.8.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/common/lib/netty-3.6.2.Final.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/common/lib/curator-framework-2.6.0.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/common/lib/hamcrest-core-1.3.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/common/lib/commons-beanutils-1.7.0.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/common/lib/servlet-api-2.5.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/common/lib/snappy-java-1.0.4.1.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/common/lib/httpclient-4.2.5.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/common/lib/jets3t-0.9.0.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/common/lib/jackson-mapper-asl-1.8.8.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/common/lib/curator-client-2.6.0.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/common/lib/hadoop-annotations-2.5.0-cdh5.3.1.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/common/lib/zookeeper-3.4.5-cdh5.3.1.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/common/lib/asm-3.2.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/common/lib/curator-recipes-2.6.0.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/common/lib/jetty-util-6.1.26.cloudera.4.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/common/lib/commons-collections-3.2.1.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/common/lib/gson-2.2.4.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/common/lib/api-asn1-api-1.0.0-M20.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/common/lib/httpcore-4.2.5.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/common/lib/commons-compress-1.4.1.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/common/lib/jasper-compiler-5.5.23.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/common/lib/jackson-core-asl-1.8.8.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/common/lib/commons-logging-1.1.3.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/common/lib/slf4j-log4j12-1.7.5.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/common/lib/commons-codec-1.4.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/common/lib/stax-api-1.0-2.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/common/lib/commons-httpclient-3.1.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/common/lib/jackson-jaxrs-1.8.8.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/common/hadoop-common-2.5.0-cdh5.3.1.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/hdfs:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/hdfs/lib/jsr305-1.3.9.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/hdfs/lib/xmlenc-0.52.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/hdfs/lib/commons-el-1.0.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/hdfs/lib/jasper-runtime-5.5.23.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/hdfs/lib/commons-cli-1.2.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/hdfs/lib/jsp-api-2.1.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/hdfs/lib/jersey-core-1.9.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/hdfs/lib/jersey-server-1.9.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/hdfs/lib/commons-daemon-1.0.13.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/hdfs/lib/log4j-1.2.17.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/hdfs/lib/jetty-6.1.26.cloudera.4.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/hdfs/lib/protobuf-java-2.5.0.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/hdfs/lib/guava-11.0.2.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/hdfs/lib/commons-io-2.4.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/hdfs/lib/commons-lang-2.6.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/hdfs/lib/netty-3.6.2.Final.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/hdfs/lib/servlet-api-2.5.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/hdfs/lib/jackson-mapper-asl-1.8.8.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/hdfs/lib/asm-3.2.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/hdfs/lib/jetty-util-6.1.26.cloudera.4.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/hdfs/lib/jackson-core-asl-1.8.8.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/hdfs/lib/commons-logging-1.1.3.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/hdfs/lib/commons-codec-1.4.jar:/data/mesos/slaves/4c56de66-cb91-420a-9a20-12197dae0eba-S2/frameworks/2578a727-04fa-422f-9933-9bade378f11f-0034/executors/executor.journalnode.NodeExecutor.1470131161519/runs/13b0f247-de76-44d6-ba59-394e8fcfbb43/hdfs-mesos-executor-0.1.6/share/hadoop/hdfs/hadoop-hdfs-2.5.0-cdh5.3.1.jar:/share/hadoop/yarn/*:/share/hadoop/mapreduce/*:/contrib/capacity-scheduler/*.jar
STARTUP_MSG: build = http://github.com/cloudera/hadoop -r 4cda8416c73034b59cc8baafbe3666b074472846; compiled by 'jenkins' on 2015-01-28T00:37Z
STARTUP_MSG: java = 1.7.0_76
************************************************************/
16/08/02 16:45:50 INFO server.JournalNode: registered UNIX signal handlers for [TERM, HUP, INT]
16/08/02 16:45:51 INFO impl.MetricsConfig: loaded properties from hadoop-metrics2.properties
16/08/02 16:45:51 INFO impl.MetricsSystemImpl: Scheduled snapshot period at 10 second(s).
16/08/02 16:45:51 INFO impl.MetricsSystemImpl: JournalNode metrics system started
16/08/02 16:45:51 INFO hdfs.DFSUtil: Starting web server as: null
16/08/02 16:45:51 INFO hdfs.DFSUtil: Starting Web-server for journal at: http://0.0.0.0:8480
16/08/02 16:45:51 INFO mortbay.log: Logging to org.slf4j.impl.Log4jLoggerAdapter(org.mortbay.log) via org.mortbay.log.Slf4jLog
16/08/02 16:45:51 INFO http.HttpRequestLog: Http request log for http.requests.journal is not defined
16/08/02 16:45:51 INFO http.HttpServer2: Added global filter 'safety' (class=org.apache.hadoop.http.HttpServer2$QuotingInputFilter)
16/08/02 16:45:51 INFO http.HttpServer2: Added filter static_user_filter (class=org.apache.hadoop.http.lib.StaticUserWebFilter$StaticUserFilter) to context journal
16/08/02 16:45:51 INFO http.HttpServer2: Added filter static_user_filter (class=org.apache.hadoop.http.lib.StaticUserWebFilter$StaticUserFilter) to context static
16/08/02 16:45:51 INFO http.HttpServer2: Added filter static_user_filter (class=org.apache.hadoop.http.lib.StaticUserWebFilter$StaticUserFilter) to context logs
16/08/02 16:45:51 INFO http.HttpServer2: Jetty bound to port 8480
16/08/02 16:45:51 INFO mortbay.log: jetty-6.1.26.cloudera.4
16/08/02 16:45:51 INFO mortbay.log: Started [email protected]:8480
16/08/02 16:45:51 INFO ipc.CallQueueManager: Using callQueue class java.util.concurrent.LinkedBlockingQueue
16/08/02 16:45:51 INFO ipc.Server: Starting Socket Reader #1 for port 8485
16/08/02 16:45:51 INFO ipc.Server: IPC Server listener on 8485: starting
16/08/02 16:45:51 INFO ipc.Server: IPC Server Responder: starting
The text was updated successfully, but these errors were encountered:
giaosudau
changed the title
How to get namenode?
How to config the name node to access WEB UI and use hadoop file function?
Aug 2, 2016
I have successfully register a hdfs cluster with 3 nodes.
But I don't know how to access them.
hdfs-site.xml
stdout
stderr
The text was updated successfully, but these errors were encountered: