Package com.google.cloud.bigquery
Class JobStatistics.LoadStatistics
- java.lang.Object
-
- com.google.cloud.bigquery.JobStatistics
-
- com.google.cloud.bigquery.JobStatistics.LoadStatistics
-
- All Implemented Interfaces:
Serializable
- Enclosing class:
- JobStatistics
public static class JobStatistics.LoadStatistics extends JobStatistics
A Google BigQuery Load Job statistics.- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class com.google.cloud.bigquery.JobStatistics
JobStatistics.CopyStatistics, JobStatistics.ExtractStatistics, JobStatistics.LoadStatistics, JobStatistics.QueryStatistics, JobStatistics.ReservationUsage, JobStatistics.ScriptStatistics, JobStatistics.SessionInfo, JobStatistics.TransactionInfo
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object obj)LonggetBadRecords()Returns the number of bad records reported in a job.LonggetInputBytes()Returns the number of bytes of source data in a load job.LonggetInputFiles()Returns the number of source files in a load job.LonggetOutputBytes()Returns the size of the data loaded by a load job so far, in bytes.LonggetOutputRows()Returns the number of rows loaded by a load job so far.inthashCode()-
Methods inherited from class com.google.cloud.bigquery.JobStatistics
getCreationTime, getEndTime, getNumChildJobs, getParentJobId, getReservationUsage, getScriptStatistics, getSessionInfo, getStartTime, getTransactionInfo, toString
-
-
-
-
Method Detail
-
getInputBytes
public Long getInputBytes()
Returns the number of bytes of source data in a load job.
-
getInputFiles
public Long getInputFiles()
Returns the number of source files in a load job.
-
getOutputBytes
public Long getOutputBytes()
Returns the size of the data loaded by a load job so far, in bytes.
-
getOutputRows
public Long getOutputRows()
Returns the number of rows loaded by a load job so far.
-
getBadRecords
public Long getBadRecords()
Returns the number of bad records reported in a job.
-
-