Skip to content

Commit

Permalink
feat(observability): trace BatchTransaction and Table
Browse files Browse the repository at this point in the history
This change is part of a series of changes to add
OpenTelemetry traces, focused on BatchTransaction and Table.

While here, made the tests for sessionPool spans much more
precise to avoid flakes.

Updates #2079
Built from PR #2087
Updates #2114
  • Loading branch information
odeke-em committed Sep 20, 2024
1 parent 3300ab5 commit 23032f9
Show file tree
Hide file tree
Showing 7 changed files with 752 additions and 134 deletions.
269 changes: 269 additions & 0 deletions observability-test/batch-transaction.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,269 @@
/*!
* Copyright 2024 Google LLC. All Rights Reserved.
*
* 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.
*/

/* eslint-disable prefer-rest-params */

import {util} from '@google-cloud/common';
import * as pfy from '@google-cloud/promisify';
import * as assert from 'assert';
import {before, beforeEach, afterEach, describe, it} from 'mocha';
import * as extend from 'extend';
import * as proxyquire from 'proxyquire';
import * as sinon from 'sinon';
const {
AlwaysOnSampler,
NodeTracerProvider,
InMemorySpanExporter,
} = require('@opentelemetry/sdk-trace-node');
// eslint-disable-next-line n/no-extraneous-require
const {SimpleSpanProcessor} = require('@opentelemetry/sdk-trace-base');
import {Session, Spanner} from '../src';
import * as bt from '../src/batch-transaction';

const fakePfy = extend({}, pfy, {
promisifyAll(klass, options) {
if (klass.name !== 'BatchTransaction') {
return;
}
assert.deepStrictEqual(options.exclude, ['identifier']);
},
});

class FakeTimestamp {
calledWith_: IArguments;
constructor() {
this.calledWith_ = arguments;
}
}

// eslint-disable-next-line @typescript-eslint/no-explicit-any
const fakeCodec: any = {
encode: util.noop,
Timestamp: FakeTimestamp,
Int() {},
Float() {},
SpannerDate() {},
convertProtoTimestampToDate() {},
};

const SPANNER = {
routeToLeaderEnabled: true,
};

const INSTANCE = {
parent: SPANNER,
};

const DATABASE = {
formattedName_: 'database',
parent: INSTANCE,
};

class FakeTransaction {
calledWith_: IArguments;
session;
constructor(session) {
this.calledWith_ = arguments;
this.session = session;
}
static encodeKeySet(): object {
return {};
}
static encodeParams(): object {
return {};
}

_getSpanner(): Spanner {
return SPANNER as Spanner;
}

run() {}
read() {}
}

describe('BatchTransaction', () => {
const sandbox = sinon.createSandbox();

// tslint:disable-next-line variable-name
let BatchTransaction: typeof bt.BatchTransaction;
let batchTransaction: bt.BatchTransaction;

const SESSION = {
parent: DATABASE,
// eslint-disable-next-line @typescript-eslint/no-unused-vars, @typescript-eslint/no-explicit-any
delete: (callback: any) => {},
};

before(() => {
BatchTransaction = proxyquire('../src/batch-transaction.js', {
'@google-cloud/precise-date': {PreciseDate: FakeTimestamp},
'@google-cloud/promisify': fakePfy,
'./codec.js': {codec: fakeCodec},
'./transaction.js': {Snapshot: FakeTransaction},
}).BatchTransaction;
});

beforeEach(() => {
batchTransaction = new BatchTransaction(SESSION as {} as Session);
});

afterEach(() => sandbox.restore());

describe('observability traces', () => {
const traceExporter = new InMemorySpanExporter();
const sampler = new AlwaysOnSampler();

const provider = new NodeTracerProvider({
sampler: sampler,
exporter: traceExporter,
});
provider.addSpanProcessor(new SimpleSpanProcessor(traceExporter));

afterEach(() => {
traceExporter.reset();
});

const REQUEST = sandbox.stub();
const SESSION = {
parent: DATABASE,
formattedName_: 'abcdef',
request: REQUEST,
};
const ID = '0xdeadbeef';

const PARTITIONS = [{partitionToken: 'a'}, {partitionToken: 'b'}];
const RESPONSE = {partitions: PARTITIONS};

beforeEach(() => {
batchTransaction.session = SESSION as {} as Session;
batchTransaction.id = ID;
batchTransaction.observabilityOptions = {tracerProvider: provider};
REQUEST.callsFake((_, callback) => callback(null, RESPONSE));
});

const GAX_OPTS = {};

const QUERY = {
sql: 'SELECT * FROM Singers',
gaxOptions: GAX_OPTS,
params: {},
types: {},
};

it('createQueryPartitions', done => {
const REQUEST = sandbox.stub();
const response = {};
REQUEST.callsFake((_, callback) => callback(null, response));

const res = batchTransaction.createQueryPartitions(

Check warning on line 171 in observability-test/batch-transaction.ts

View workflow job for this annotation

GitHub Actions / lint

'res' is assigned a value but never used
QUERY,
(err, part, resp) => {

Check warning on line 173 in observability-test/batch-transaction.ts

View workflow job for this annotation

GitHub Actions / lint

'part' is defined but never used

Check warning on line 173 in observability-test/batch-transaction.ts

View workflow job for this annotation

GitHub Actions / lint

'resp' is defined but never used
assert.ifError(err);
traceExporter.forceFlush();
const spans = traceExporter.getFinishedSpans();
assert.strictEqual(spans.length, 2, 'Exactly 2 spans expected');

// Sort the spans by duration.
spans.sort((spanA, spanB) => {
spanA.duration < spanB.duration;
});

const actualSpanNames: string[] = [];
spans.forEach(span => {
actualSpanNames.push(span.name);
});

const expectedSpanNames = [
'CloudSpanner.BatchTransaction.createPartitions_',
'CloudSpanner.BatchTransaction.createQueryPartitions',
];
assert.deepStrictEqual(
actualSpanNames,
expectedSpanNames,
`span names mismatch:\n\tGot: ${actualSpanNames}\n\tWant: ${expectedSpanNames}`
);

// Ensure that createPartitions_ is a child span of createQueryPartitions.
const spanCreatePartitions_ = spans[0];
const spanCreateQueryPartitions = spans[1];
assert.ok(
spanCreateQueryPartitions.spanContext().traceId,
'Expected that createQueryPartitions has a defined traceId'
);
assert.ok(
spanCreatePartitions_.spanContext().traceId,
'Expected that createPartitions_ has a defined traceId'
);
assert.deepStrictEqual(
spanCreatePartitions_.spanContext().traceId,
spanCreateQueryPartitions.spanContext().traceId,
'Expected that both spans share a traceId'
);
assert.ok(
spanCreateQueryPartitions.spanContext().spanId,
'Expected that createQueryPartitions has a defined spanId'
);
assert.ok(
spanCreatePartitions_.spanContext().spanId,
'Expected that createPartitions_ has a defined spanId'
);
assert.deepStrictEqual(
spanCreatePartitions_.parentSpanId,
spanCreateQueryPartitions.spanContext().spanId,
'Expected that createQueryPartitions is the parent to createPartitions_'
);
done();
}
);
});

it('createReadPartitions', done => {
const REQUEST = sandbox.stub();
const response = {};
REQUEST.callsFake((_, callback) => callback(null, response));

const res = batchTransaction.createReadPartitions(

Check warning on line 238 in observability-test/batch-transaction.ts

View workflow job for this annotation

GitHub Actions / lint

'res' is assigned a value but never used
QUERY,
(err, part, resp) => {

Check warning on line 240 in observability-test/batch-transaction.ts

View workflow job for this annotation

GitHub Actions / lint

'part' is defined but never used

Check warning on line 240 in observability-test/batch-transaction.ts

View workflow job for this annotation

GitHub Actions / lint

'resp' is defined but never used
assert.ifError(err);
traceExporter.forceFlush();
const spans = traceExporter.getFinishedSpans();
assert.strictEqual(spans.length, 2, 'Exactly 2 spans expected');

// Sort the spans by duration.
spans.sort((spanA, spanB) => {
spanA.duration < spanB.duration;
});

const actualSpanNames: string[] = [];
spans.forEach(span => {
actualSpanNames.push(span.name);
});
const expectedSpanNames = [
'CloudSpanner.BatchTransaction.createPartitions_',
'CloudSpanner.BatchTransaction.createReadPartitions',
];
assert.deepStrictEqual(
actualSpanNames,
expectedSpanNames,
`span names mismatch:\n\tGot: ${actualSpanNames}\n\tWant: ${expectedSpanNames}`
);
done();
}
);
});
});
});
Loading

0 comments on commit 23032f9

Please sign in to comment.