1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
//! Compile time utilities to ease Hadoop usage.
/// Prints output to the Hadoop task logs.
///
/// As `::std::io::stdout` is used to Hadoop Streaming writes, logging
/// must go through this macro instead to successfully make it to the logs.
/// Updates a counter for the current job.
///
/// A counter belongs to a group by a label; as such both must be given
/// to this macro in order to compile correctly. Note that neither the
/// group nor label can contain a `","`, as Hadoop uses this to split
/// the IO stream.
///
/// This is simply a sane wrapper around `log!` to ensure that
/// counter updates are always logged in the correct formatting.
/// Updates the status for the current job.
///
/// This is simply a sane wrapper around `log!` to ensure that
/// status updates are always logged in the correct formatting.