public class JsonStreamWriter implements AutoCloseable
A StreamWriter that can write JSON data (JSONObjects) to BigQuery tables. The JsonStreamWriter is built on top of a StreamWriter, and it simply converts all JSON data to protobuf messages then calls StreamWriter's append() method to write to BigQuery tables.
Implements
AutoCloseableMethods
append(JSONArray jsonArr)
public ApiFuture<AppendRowsResponse> append(JSONArray jsonArr)
Writes a JSONArray that contains JSONObjects to the BigQuery table by first converting the JSON data to protobuf messages, then using StreamWriter's append() to write the data.
Name | Description |
jsonArr | org.json.JSONArray The JSON array that contains JSONObjects to be written |
Type | Description |
ApiFuture<AppendRowsResponse> | ApiFuture
|
append(JSONArray jsonArr, long offset)
public ApiFuture<AppendRowsResponse> append(JSONArray jsonArr, long offset)
Writes a JSONArray that contains JSONObjects to the BigQuery table by first converting the JSON data to protobuf messages, then using StreamWriter's append() to write the data.
Name | Description |
jsonArr | org.json.JSONArray The JSON array that contains JSONObjects to be written |
offset | long Offset for deduplication |
Type | Description |
ApiFuture<AppendRowsResponse> | ApiFuture
|
close()
public void close()
Closes the underlying StreamWriter.
getDescriptor()
public Descriptors.Descriptor getDescriptor()
Gets current descriptor
Type | Description |
Descriptor | Descriptor |
getStreamName()
public String getStreamName()
Gets streamName
Type | Description |
String | String |
newBuilder(String streamOrTableName, TableSchema tableSchema)
public static JsonStreamWriter.Builder newBuilder(String streamOrTableName, TableSchema tableSchema)
newBuilder that constructs a JsonStreamWriter builder with BigQuery client being initialized by StreamWriter by default.
Name | Description |
streamOrTableName | String name of the stream that must follow "projects/[^/]+/datasets/[^/]+/tables/[^/]+/streams/[^/]+" or table name "projects/[^/]+/datasets/[^/]+/tables/[^/]+" |
tableSchema | TableSchema The schema of the table when the stream was created, which is passed back
through |
Type | Description |
JsonStreamWriter.Builder | Builder |
newBuilder(String streamOrTableName, TableSchema tableSchema, BigQueryWriteClient client)
public static JsonStreamWriter.Builder newBuilder(String streamOrTableName, TableSchema tableSchema, BigQueryWriteClient client)
newBuilder that constructs a JsonStreamWriter builder.
Name | Description |
streamOrTableName | String name of the stream that must follow "projects/[^/]+/datasets/[^/]+/tables/[^/]+/streams/[^/]+" |
tableSchema | TableSchema The schema of the table when the stream was created, which is passed back
through |
client | BigQueryWriteClient |
Type | Description |
JsonStreamWriter.Builder | Builder |