Class SpannerIO


  • @Experimental(SOURCE_SINK)
    public class SpannerIO
    extends java.lang.Object
    Experimental Transforms for reading from and writing to Google Cloud Spanner.

    Reading from Cloud Spanner

    To read from Cloud Spanner, apply SpannerIO.Read transformation. It will return a PCollection of Structs, where each element represents an individual row returned from the read operation. Both Query and Read APIs are supported. See more information about reading from Cloud Spanner

    To execute a query, specify a SpannerIO.Read.withQuery(Statement) or SpannerIO.Read.withQuery(String) during the construction of the transform.

    
     PCollection<Struct> rows = p.apply(
         SpannerIO.read()
             .withInstanceId(instanceId)
             .withDatabaseId(dbId)
             .withQuery("SELECT id, name, email FROM users"));
     

    To use the Read API, specify a table name and a list of columns.

    
     PCollection<Struct> rows = p.apply(
        SpannerIO.read()
            .withInstanceId(instanceId)
            .withDatabaseId(dbId)
            .withTable("users")
            .withColumns("id", "name", "email"));
     

    To optimally read using index, specify the index name using SpannerIO.Read.withIndex(java.lang.String).

    The transform is guaranteed to be executed on a consistent snapshot of data, utilizing the power of read only transactions. Staleness of data can be controlled using SpannerIO.Read.withTimestampBound(com.google.cloud.spanner.TimestampBound) or SpannerIO.Read.withTimestamp(Timestamp) methods. Read more about transactions in Cloud Spanner.

    It is possible to read several PCollections within a single transaction. Apply createTransaction() transform, that lazily creates a transaction. The result of this transformation can be passed to read operation using SpannerIO.Read.withTransaction(PCollectionView).

    
     SpannerConfig spannerConfig = ...
    
     PCollectionView<Transaction> tx = p.apply(
        SpannerIO.createTransaction()
            .withSpannerConfig(spannerConfig)
            .withTimestampBound(TimestampBound.strong()));
    
     PCollection<Struct> users = p.apply(
        SpannerIO.read()
            .withSpannerConfig(spannerConfig)
            .withQuery("SELECT name, email FROM users")
            .withTransaction(tx));
    
     PCollection<Struct> tweets = p.apply(
        SpannerIO.read()
            .withSpannerConfig(spannerConfig)
            .withQuery("SELECT user, tweet, date FROM tweets")
            .withTransaction(tx));
     

    Writing to Cloud Spanner

    The Cloud Spanner SpannerIO.Write transform writes to Cloud Spanner by executing a collection of input row Mutations. The mutations are grouped into batches for efficiency.

    To configure the write transform, create an instance using write() and then specify the destination Cloud Spanner instance (SpannerIO.Write.withInstanceId(String) and destination database (SpannerIO.Write.withDatabaseId(String)). For example:

    
     // Earlier in the pipeline, create a PCollection of Mutations to be written to Cloud Spanner.
     PCollection<Mutation> mutations = ...;
     // Write mutations.
     SpannerWriteResult result = mutations.apply(
         "Write", SpannerIO.write().withInstanceId("instance").withDatabaseId("database"));
     

    SpannerWriteResult

    The SpannerWriteResult object contains the results of the transform, including a PCollection of MutationGroups that failed to write, and a PCollection that can be used in batch pipelines as a completion signal to Wait.OnSignal to indicate when all input has been written. Note that in streaming pipelines, this signal will never be triggered as the input is unbounded and this PCollection is using the GlobalWindow.

    Batching and Grouping

    To reduce the number of transactions sent to Spanner, the Mutations are grouped into batches. The default maximum size of the batch is set to 1MB or 5000 mutated cells, or 500 rows (whichever is reached first). To override this use withBatchSizeBytes(), withMaxNumMutations() or withMaxNumRows(). Setting either to a small value or zero disables batching.

    Note that the maximum size of a single transaction is 20,000 mutated cells - including cells in indexes. If you have a large number of indexes and are getting exceptions with message: INVALID_ARGUMENT: The transaction contains too many mutations you will need to specify a smaller number of MaxNumMutations.

    The batches written are obtained from by grouping enough Mutations from the Bundle provided by Beam to form several batches. This group of Mutations is then sorted by table and primary key, and the batches are created from the sorted group. Each batch will then have rows for the same table, with keys that are 'close' to each other, thus optimising write efficiency by each batch affecting as few table splits as possible performance.

    This grouping factor (number of batches) is controlled by the parameter withGroupingFactor().

    Note that each worker will need enough memory to hold GroupingFactor x MaxBatchSizeBytes Mutations, so if you have a large MaxBatchSize you may need to reduce GroupingFactor

    While Grouping and Batching increases write efficiency, it dramatically increases the latency between when a Mutation is received by the transform, and when it is actually written to the database. This is because enough Mutations need to be received to fill the grouped batches. In Batch pipelines (bounded sources), this is not normally an issue, but in Streaming (unbounded) pipelines, this latency is often seen as unacceptable.

    There are therefore 3 different ways that this transform can be configured:

    • With Grouping and Batching.
      This is the default for Batch pipelines, where sorted batches of Mutations are created and written. This is the most efficient way to ingest large amounts of data, but the highest latency before writing
    • With Batching but no Grouping
      If .withGroupingFactor(1), is set, grouping is disabled. This is the default for Streaming pipelines. Unsorted batches are created and written as soon as enough mutations to fill a batch are received. This reflects a compromise where a small amount of additional latency enables more efficient writes
    • Without any Batching
      If .withBatchSizeBytes(0) is set, no batching is performed and the Mutations are written to the database as soon as they are received. ensuring the lowest latency before Mutations are written.

    Monitoring

    Several counters are provided for monitoring purpooses:

    • batchable_mutation_groups
      Counts the mutations that are batched for writing to Spanner.
    • unbatchable_mutation_groups
      Counts the mutations that can not be batched and are applied individually - either because they are too large to fit into a batch, or they are ranged deletes.
    • mutation_group_batches_received, mutation_group_batches_write_success, mutation_group_batches_write_failed
      Count the number of batches that are processed. If Failure Mode is set to REPORT_FAILURES, then failed batches will be split up and the individual mutation groups retried separately.
    • mutation_groups_received, mutation_groups_write_success, mutation_groups_write_fail
      Count the number of individual MutationGroups that are processed.
    • spanner_write_success, spanner_write_fail
      The number of writes to Spanner that have occurred.
    • spanner_write_retries
      The number of times a write is retried after a failure - either due to a timeout, or when batches fail and REPORT_FAILURES is set so that individual Mutation Groups are retried.
    • spanner_write_timeouts
      The number of timeouts that occur when writing to Spanner. Writes that timed out are retried after a backoff. Large numbers of timeouts suggest an overloaded Spanner instance.
    • spanner_write_total_latency_ms
      The total amount of time spent writing to Spanner, in milliseconds.

    Database Schema Preparation

    The Write transform reads the database schema on pipeline start to know which columns are used as primary keys of the tables and indexes. This is so that the transform knows how to sort the grouped Mutations by table name and primary key as described above.

    If the database schema, any additional tables or indexes are created in the same pipeline then there will be a race condition, leading to a situation where the schema is read before the table is created its primary key will not be known. This will mean that the sorting/batching will not be optimal and performance will be reduced (warnings will be logged for rows using unknown tables)

    To prevent this race condition, use SpannerIO.Write.withSchemaReadySignal(PCollection) to pass a signal PCollection (for example the output of the transform that creates the table(s)) which will be used with Wait.OnSignal to prevent the schema from being read until it is ready. The Write transform will be paused until this signal PCollection is closed.

    Transactions

    The transform does not provide same transactional guarantees as Cloud Spanner. In particular,

    • Individual Mutations are submitted atomically, but all Mutations are not submitted in the same transaction.
    • A Mutation is applied at least once;
    • If the pipeline was unexpectedly stopped, mutations that were already applied will not get rolled back.

    Use MutationGroups with the SpannerIO.WriteGrouped transform to ensure that a small set mutations is bundled together. It is guaranteed that mutations in a MutationGroup are submitted in the same transaction. Note that a MutationGroup must not exceed the Spanner transaction limits.

    
     // Earlier in the pipeline, create a PCollection of MutationGroups to be written to Cloud Spanner.
     PCollection<MutationGroup> mutationGroups = ...;
     // Write mutation groups.
     SpannerWriteResult result = mutationGroups.apply(
         "Write",
         SpannerIO.write().withInstanceId("instance").withDatabaseId("database").grouped());
     

    Streaming Support

    SpannerIO.Write can be used as a streaming sink, however as with batch mode note that the write order of individual Mutation/MutationGroup objects is not guaranteed.

    Updates to the I/O connector code

    For any significant significant updates to this I/O connector, please consider involving corresponding code reviewers mentioned here.