Returns the total bytes written to user specified HDFS locations of this job.
()
| 134 | * locations of this job. |
| 135 | */ |
| 136 | public long getBytesWritten() { |
| 137 | long count = 0; |
| 138 | for (OutputStats out : outputs) { |
| 139 | long n = out.getBytes(); |
| 140 | if (n > 0) count += n; |
| 141 | } |
| 142 | return count; |
| 143 | } |
| 144 | |
| 145 | /** |
| 146 | * Returns the total number of records in user specified output |