public class StreamWriter implements AutoCloseable
A BigQuery Stream Writer that can be used to write data into BigQuery Table.
TODO: Support batching.
Implements
AutoCloseableStatic Methods
getApiMaxRequestBytes()
public static long getApiMaxRequestBytes()
The maximum size of one request. Defined by the API.
Returns | |
---|---|
Type | Description |
long |
newBuilder(String streamName)
public static StreamWriter.Builder newBuilder(String streamName)
Constructs a new StreamWriter.Builder using the given stream.
Parameter | |
---|---|
Name | Description |
streamName | String |
Returns | |
---|---|
Type | Description |
StreamWriter.Builder |
newBuilder(String streamName, BigQueryWriteClient client)
public static StreamWriter.Builder newBuilder(String streamName, BigQueryWriteClient client)
Constructs a new StreamWriter.Builder using the given stream and client.
Parameters | |
---|---|
Name | Description |
streamName | String |
client | BigQueryWriteClient |
Returns | |
---|---|
Type | Description |
StreamWriter.Builder |
setMaxRequestCallbackWaitTime(Duration waitTime)
public static void setMaxRequestCallbackWaitTime(Duration waitTime)
Sets the maximum time a request is allowed to be waiting in request waiting queue. Under very low chance, it's possible for append request to be waiting indefintely for request callback when Google networking SDK does not detect the networking breakage. The default timeout is 15 minutes. We are investigating the root cause for callback not triggered by networking SDK.
Parameter | |
---|---|
Name | Description |
waitTime | Duration |
Methods
append(ProtoRows rows)
public ApiFuture<AppendRowsResponse> append(ProtoRows rows)
Schedules the writing of rows at the end of current stream.
Parameter | |
---|---|
Name | Description |
rows | ProtoRows the rows in serialized format to write to BigQuery. |
Returns | |
---|---|
Type | Description |
ApiFuture<AppendRowsResponse> | the append response wrapped in a future. |
append(ProtoRows rows, long offset)
public ApiFuture<AppendRowsResponse> append(ProtoRows rows, long offset)
Schedules the writing of rows at given offset.
Example of writing rows with specific offset.
ApiFuture<AppendRowsResponse> future = writer.append(rows, 0);
ApiFutures.addCallback(future, new ApiFutureCallback<AppendRowsResponse>() {
public void onSuccess(AppendRowsResponse response) {
if (!response.hasError()) {
System.out.println("written with offset: " + response.getAppendResult().getOffset());
} else {
System.out.println("received an in stream error: " + response.getError().toString());
}
}
public void onFailure(Throwable t) {
System.out.println("failed to write: " + t);
}
}, MoreExecutors.directExecutor());
Parameters | |
---|---|
Name | Description |
rows | ProtoRows the rows in serialized format to write to BigQuery. |
offset | long the offset of the first row. Provide -1 to write at the current end of stream. |
Returns | |
---|---|
Type | Description |
ApiFuture<AppendRowsResponse> | the append response wrapped in a future. |
close()
public void close()
Close the stream writer. Shut down all resources.
getInflightWaitSeconds()
public long getInflightWaitSeconds()
Returns the wait of a request in Client side before sending to the Server. Request could wait in Client because it reached the client side inflight request limit (adjustable when constructing the StreamWriter). The value is the wait time for the last sent request. A constant high wait value indicates a need for more throughput, you can create a new Stream for to increase the throughput in exclusive stream case, or create a new Writer in the default stream case.
Returns | |
---|---|
Type | Description |
long |
getLocation()
public String getLocation()
Returns | |
---|---|
Type | Description |
String | the location of the destination. |
getMissingValueInterpretationMap()
public Map<String,AppendRowsRequest.MissingValueInterpretation> getMissingValueInterpretationMap()
Returns | |
---|---|
Type | Description |
Map<String,MissingValueInterpretation> | the missing value interpretation map used for the writer. |
getProtoSchema()
public ProtoSchema getProtoSchema()
Returns | |
---|---|
Type | Description |
ProtoSchema | the passed in user schema. |
getStreamName()
public String getStreamName()
Returns | |
---|---|
Type | Description |
String | name of the Stream that this writer is working on. |
getUpdatedSchema()
public synchronized TableSchema getUpdatedSchema()
Thread-safe getter of updated TableSchema.
This will return the updated schema only when the creation timestamp of this writer is older than the updated schema.
Returns | |
---|---|
Type | Description |
TableSchema |
getWriterId()
public String getWriterId()
Returns | |
---|---|
Type | Description |
String | a unique Id for the writer. |
isClosed()
public boolean isClosed()
Returns | |
---|---|
Type | Description |
boolean | if a stream writer can no longer be used for writing. It is due to either the StreamWriter is explicitly closed or the underlying connection is broken when connection pool is not used. Client should recreate StreamWriter in this case. |
isUserClosed()
public boolean isUserClosed()
Returns | |
---|---|
Type | Description |
boolean | if user explicitly closed the writer. |
setMissingValueInterpretationMap(Map<String,AppendRowsRequest.MissingValueInterpretation> missingValueInterpretationMap)
public void setMissingValueInterpretationMap(Map<String,AppendRowsRequest.MissingValueInterpretation> missingValueInterpretationMap)
Sets the missing value interpretation map for the stream writer. The input missingValueInterpretationMap is used for all write requests unless otherwise changed.
Parameter | |
---|---|
Name | Description |
missingValueInterpretationMap | Map<String,MissingValueInterpretation> the missing value interpretation map used by stream writer. |