Yes, Guava is a constant pain; there's lots of open JIRAs related to it, as
its the one we can't seamlessly upgrade. Not unless we do our own fork and
reinsert the missing classes.
The most common uses in the code are
@VisibleForTesting (easily replicated)
and the Precondition.check() operations
See https://builds.apache.org/job/Hadoop-Mapreduce-trunk/1953/
###
## LAST 60 LINES OF THE CONSOLE
###
[...truncated 30610 lines...]
Tests run: 3, Failures: 0, Errors: 0
IMO we should:
1* have a clean and thin client API JAR (which does not drag any 3rd party
dependencies, or a well defined small set -i.e. slf4j & log4j-)
2* have a client implementation that uses a classloader to isolate client
impl 3rd party deps from app dependencies.
#2 can be done using a sto
FYI, we have an existing ApplicationClassLoader implementation that is used
to isolate client/task classes from the rest. If we're going down the route
of classloader isolation on this, it would be good to come up with a
coherent strategy regarding both of these.
As a more practical step, I like t
I'm usually an advocate for getting rid of unnecessary dependencies
(cough, jetty, cough), but a lot of the things in Guava are really
useful.
Immutable collections, BiMap, Multisets, Arrays#asList, the stuff for
writing hashCode() and equals(), String#Joiner, the list goes on. We
particularly us
Folks,
I've created a release candidate (rc0) for hadoop-2.6.0 that I would like to
see released.
The RC is available at: http://people.apache.org/~acmurthy/hadoop-2.6.0-rc0
The RC tag in git is: release-2.6.0-rc0
The maven artifacts are available via repository.apache.org at
https://repositor
Hi Arun,
Could you confirm the link and permission to the files is correct? I
got a following error:
Forbidden
You don't have permission to access
/~acmurthy/hadoop-2.6.0-rc0/hadoop-2.6.0-src.tar.gz on this server.
On Tue, Nov 11, 2014 at 11:52 AM, Arun C Murthy wrote:
> Folks,
>
> I've create
Duh!
$ chmod a+r *
Please try now. Thanks!
Arun
On Mon, Nov 10, 2014 at 7:06 PM, Tsuyoshi OZAWA
wrote:
> Hi Arun,
>
> Could you confirm the link and permission to the files is correct? I
> got a following error:
>
>
> Forbidden
> You don't have permission to access
> /~acmurthy/hadoop-2.6.0-
PENG Yongyi created MAPREDUCE-6154:
--
Summary: mapreduce.job.maps is reset to splits by JobSubmitter
with using new-api. Value of mapreduce.job.maps should be used if it's less
than splits as using old-api.
Key: MAPREDUCE-6154