I'm using BigQuery's write stream with the pending type, and I'm wondering what happens to data that hasn't been committed if the stream is finalised (Or due to runtime exception).
// This query fail :
client.batchCommitWriteStreams(commitRequest);
Could someone tell me how long this uncommitted data sticks around before it gets deleted automatically?
As per BigQuery Storage Write API - Batch load data using pending type article suggests:
Once a stream is finalized, it can only stay buffered up to 4 hours.