blob: b3857a0ae6a573c2ef452de183d014f2769963c1 [file] [log] [blame]
/*
Copyright 2019 Google LLC
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package spanner
import (
"context"
"fmt"
"sync"
"time"
"cloud.google.com/go/internal/trace"
vkit "cloud.google.com/go/spanner/apiv1"
sppb "google.golang.org/genproto/googleapis/spanner/v1"
"google.golang.org/grpc/codes"
"google.golang.org/grpc/metadata"
)
// sessionConsumer is passed to the batchCreateSessions method and will receive
// the sessions that are created as they become available. A sessionConsumer
// implementation must be safe for concurrent use.
//
// The interface is implemented by sessionPool and is used for testing the
// sessionClient.
type sessionConsumer interface {
// sessionReady is called when a session has been created and is ready for
// use.
sessionReady(s *session)
// sessionCreationFailed is called when the creation of a sub-batch of
// sessions failed. The numSessions argument specifies the number of
// sessions that could not be created as a result of this error. A
// consumer may receive multiple errors per batch.
sessionCreationFailed(err error, numSessions int32)
}
// sessionClient creates sessions for a database, either in batches or one at a
// time. Each session will be affiliated with a gRPC channel. sessionClient
// will ensure that the sessions that are created are evenly distributed over
// all available channels.
type sessionClient struct {
mu sync.Mutex
rr int
closed bool
gapicClients []*vkit.Client
database string
sessionLabels map[string]string
md metadata.MD
batchTimeout time.Duration
}
// newSessionClient creates a session client to use for a database.
func newSessionClient(gapicClients []*vkit.Client, database string, sessionLabels map[string]string, md metadata.MD) *sessionClient {
return &sessionClient{
gapicClients: gapicClients,
database: database,
sessionLabels: sessionLabels,
md: md,
batchTimeout: time.Minute,
}
}
func (sc *sessionClient) close() error {
sc.mu.Lock()
defer sc.mu.Unlock()
sc.closed = true
var errs []error
for _, gpc := range sc.gapicClients {
if err := gpc.Close(); err != nil {
errs = append(errs, err)
}
}
switch len(errs) {
case 0:
return nil
case 1:
return errs[0]
default:
return fmt.Errorf("closing gapic clients returned multiple errors: %v", errs)
}
}
// createSession creates one session for the database of the sessionClient. The
// session is created using one synchronous RPC.
func (sc *sessionClient) createSession(ctx context.Context) (*session, error) {
ctx = contextWithOutgoingMetadata(ctx, sc.md)
sc.mu.Lock()
if sc.closed {
return nil, spannerErrorf(codes.FailedPrecondition, "SessionClient is closed")
}
client := sc.rrNextGapicClientLocked()
sc.mu.Unlock()
sid, err := client.CreateSession(ctx, &sppb.CreateSessionRequest{
Database: sc.database,
Session: &sppb.Session{Labels: sc.sessionLabels},
})
if err != nil {
return nil, toSpannerError(err)
}
return &session{valid: true, client: client, id: sid.Name, createTime: time.Now(), md: sc.md}, nil
}
// batchCreateSessions creates a batch of sessions for the database of the
// sessionClient and returns these to the given sessionConsumer.
//
// createSessionCount is the number of sessions that should be created. The
// sessionConsumer is guaranteed to receive the requested number of sessions if
// no error occurs. If one or more errors occur, the sessionConsumer will
// receive any number of sessions + any number of errors, where each error will
// include the number of sessions that could not be created as a result of the
// error. The sum of returned sessions and errored sessions will be equal to
// the number of requested sessions.
func (sc *sessionClient) batchCreateSessions(createSessionCount int32, consumer sessionConsumer) error {
// The sessions that we create should be evenly distributed over all the
// channels (gapic clients) that are used by the client. Each gapic client
// will do a request for a fraction of the total.
sessionCountPerChannel := createSessionCount / int32(len(sc.gapicClients))
// The remainder of the calculation will be added to the number of sessions
// that will be created for the first channel, to ensure that we create the
// exact number of requested sessions.
remainder := createSessionCount % int32(len(sc.gapicClients))
sc.mu.Lock()
defer sc.mu.Unlock()
if sc.closed {
return spannerErrorf(codes.FailedPrecondition, "SessionClient is closed")
}
// Spread the session creation over all available gRPC channels. Spanner
// will maintain server side caches for a session on the gRPC channel that
// is used by the session. A session should therefore always use the same
// channel, and the sessions should be as evenly distributed as possible
// over the channels.
for i := 0; i < len(sc.gapicClients); i++ {
client := sc.rrNextGapicClientLocked()
// Determine the number of sessions that should be created for this
// channel. The createCount for the first channel will be increased
// with the remainder of the division of the total number of sessions
// with the number of channels. All other channels will just use the
// result of the division over all channels.
createCountForChannel := sessionCountPerChannel
if i == 0 {
// We add the remainder to the first gRPC channel we use. We could
// also spread the remainder over all channels, but this ensures
// that small batches of sessions (i.e. less than numChannels) are
// created in one RPC.
createCountForChannel += remainder
}
if createCountForChannel > 0 {
go sc.executeBatchCreateSessions(client, createCountForChannel, sc.sessionLabels, sc.md, consumer)
}
}
return nil
}
// executeBatchCreateSessions executes the gRPC call for creating a batch of
// sessions.
func (sc *sessionClient) executeBatchCreateSessions(client *vkit.Client, createCount int32, labels map[string]string, md metadata.MD, consumer sessionConsumer) {
ctx, cancel := context.WithTimeout(context.Background(), sc.batchTimeout)
defer cancel()
ctx = contextWithOutgoingMetadata(ctx, sc.md)
ctx = trace.StartSpan(ctx, "cloud.google.com/go/spanner.BatchCreateSessions")
defer func() { trace.EndSpan(ctx, nil) }()
trace.TracePrintf(ctx, nil, "Creating a batch of %d sessions", createCount)
remainingCreateCount := createCount
for {
sc.mu.Lock()
closed := sc.closed
sc.mu.Unlock()
if closed {
err := spannerErrorf(codes.Canceled, "Session client closed")
trace.TracePrintf(ctx, nil, "Session client closed while creating a batch of %d sessions: %v", createCount, err)
consumer.sessionCreationFailed(err, remainingCreateCount)
break
}
if ctx.Err() != nil {
trace.TracePrintf(ctx, nil, "Context error while creating a batch of %d sessions: %v", createCount, ctx.Err())
consumer.sessionCreationFailed(ctx.Err(), remainingCreateCount)
break
}
response, err := client.BatchCreateSessions(ctx, &sppb.BatchCreateSessionsRequest{
SessionCount: remainingCreateCount,
Database: sc.database,
SessionTemplate: &sppb.Session{Labels: labels},
})
if err != nil {
trace.TracePrintf(ctx, nil, "Error creating a batch of %d sessions: %v", remainingCreateCount, err)
consumer.sessionCreationFailed(err, remainingCreateCount)
break
}
actuallyCreated := int32(len(response.Session))
trace.TracePrintf(ctx, nil, "Received a batch of %d sessions", actuallyCreated)
for _, s := range response.Session {
consumer.sessionReady(&session{valid: true, client: client, id: s.Name, createTime: time.Now(), md: md})
}
if actuallyCreated < remainingCreateCount {
// Spanner could return less sessions than requested. In that case, we
// should do another call using the same gRPC channel.
remainingCreateCount -= actuallyCreated
} else {
trace.TracePrintf(ctx, nil, "Finished creating %d sessions", createCount)
break
}
}
}
func (sc *sessionClient) sessionWithID(id string) *session {
sc.mu.Lock()
defer sc.mu.Unlock()
return &session{valid: true, client: sc.rrNextGapicClientLocked(), id: id, createTime: time.Now(), md: sc.md}
}
// rrNextGapicClientLocked returns the next gRPC client to use for session creation. The
// client is set on the session, and used by all subsequent gRPC calls on the
// session. Using the same channel for all gRPC calls for a session ensures the
// optimal usage of server side caches.
func (sc *sessionClient) rrNextGapicClientLocked() *vkit.Client {
sc.rr = (sc.rr + 1) % len(sc.gapicClients)
return sc.gapicClients[sc.rr]
}