-
Notifications
You must be signed in to change notification settings - Fork 103
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: (observability) trace Database.batchCreateSessions + SessionPoo…
…l.createSessions (#2145) This change adds tracing for Database.batchCreateSessions as well as SessionPool.createSessions which was raised as a big need. This change is a premise to finishing up tracing Transaction. While here, also folded in the async/await fix to avoid day+ long code review lag and then 3+ hours just to run tests per PR: OpenTelemetry cannot work correctly for async/await if there isn't a set AsyncHooksManager, but we should not burden our customers with this type of specialist knowledge, their code should just work and this change performs such a check. Later on we shall file a feature request with the OpenTelemetry-JS API group to give us a hook to detect if we've got a live asyncHooksManager instead of this mandatory comparison to ROOT_CONTEXT each time. Fixes #2146 Updates #2079 Spun out of PR #2122 Supersedes PR #2147
- Loading branch information
Showing
11 changed files
with
982 additions
and
186 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,222 @@ | ||
/*! | ||
* 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. | ||
*/ | ||
|
||
import * as assert from 'assert'; | ||
import {before, beforeEach, afterEach, describe, it} from 'mocha'; | ||
import * as extend from 'extend'; | ||
import PQueue from 'p-queue'; | ||
import * as proxyquire from 'proxyquire'; | ||
import * as sinon from 'sinon'; | ||
import stackTrace = require('stack-trace'); | ||
const { | ||
AlwaysOnSampler, | ||
NodeTracerProvider, | ||
InMemorySpanExporter, | ||
} = require('@opentelemetry/sdk-trace-node'); | ||
// eslint-disable-next-line n/no-extraneous-require | ||
const {SimpleSpanProcessor} = require('@opentelemetry/sdk-trace-base'); | ||
// eslint-disable-next-line n/no-extraneous-require | ||
const {SpanStatusCode} = require('@opentelemetry/api'); | ||
|
||
import {Database} from '../src/database'; | ||
import {Session} from '../src/session'; | ||
import * as sp from '../src/session-pool'; | ||
|
||
let pQueueOverride: typeof PQueue | null = null; | ||
|
||
function FakePQueue(options) { | ||
return new (pQueueOverride || PQueue)(options); | ||
} | ||
|
||
FakePQueue.default = FakePQueue; | ||
|
||
class FakeTransaction { | ||
options; | ||
constructor(options?) { | ||
this.options = options; | ||
} | ||
async begin(): Promise<void> {} | ||
} | ||
|
||
const fakeStackTrace = extend({}, stackTrace); | ||
|
||
describe('SessionPool', () => { | ||
let sessionPool: sp.SessionPool; | ||
// tslint:disable-next-line variable-name | ||
let SessionPool: typeof sp.SessionPool; | ||
|
||
function noop() {} | ||
const DATABASE = { | ||
batchCreateSessions: noop, | ||
databaseRole: 'parent_role', | ||
} as unknown as Database; | ||
|
||
const sandbox = sinon.createSandbox(); | ||
const shouldNotBeCalled = sandbox.stub().throws('Should not be called.'); | ||
|
||
const createSession = (name = 'id', props?): Session => { | ||
props = props || {}; | ||
|
||
return Object.assign(new Session(DATABASE, name), props, { | ||
create: sandbox.stub().resolves(), | ||
delete: sandbox.stub().resolves(), | ||
keepAlive: sandbox.stub().resolves(), | ||
transaction: sandbox.stub().returns(new FakeTransaction()), | ||
}); | ||
}; | ||
|
||
before(() => { | ||
SessionPool = proxyquire('../src/session-pool.js', { | ||
'p-queue': FakePQueue, | ||
'stack-trace': fakeStackTrace, | ||
}).SessionPool; | ||
}); | ||
|
||
afterEach(() => { | ||
pQueueOverride = null; | ||
sandbox.restore(); | ||
}); | ||
|
||
const traceExporter = new InMemorySpanExporter(); | ||
const sampler = new AlwaysOnSampler(); | ||
const provider = new NodeTracerProvider({ | ||
sampler: sampler, | ||
exporter: traceExporter, | ||
}); | ||
provider.addSpanProcessor(new SimpleSpanProcessor(traceExporter)); | ||
|
||
beforeEach(() => { | ||
DATABASE.session = createSession; | ||
DATABASE._observabilityOptions = { | ||
tracerProvider: provider, | ||
}; | ||
sessionPool = new SessionPool(DATABASE); | ||
sessionPool._observabilityOptions = DATABASE._observabilityOptions; | ||
traceExporter.reset(); | ||
}); | ||
|
||
describe('_createSessions', () => { | ||
const OPTIONS = 3; | ||
it('on exception from Database.batchCreateSessions', async () => { | ||
const ourException = new Error('this fails intentionally'); | ||
const stub = sandbox | ||
.stub(DATABASE, 'batchCreateSessions') | ||
.throws(ourException); | ||
const releaseStub = sandbox.stub(sessionPool, 'release'); | ||
|
||
assert.rejects(async () => { | ||
await sessionPool._createSessions(OPTIONS); | ||
}, ourException); | ||
|
||
traceExporter.forceFlush(); | ||
const spans = traceExporter.getFinishedSpans(); | ||
|
||
const actualSpanNames: string[] = []; | ||
const actualEventNames: string[] = []; | ||
spans.forEach(span => { | ||
actualSpanNames.push(span.name); | ||
span.events.forEach(event => { | ||
actualEventNames.push(event.name); | ||
}); | ||
}); | ||
|
||
const expectedSpanNames = ['CloudSpanner.SessionPool.createSessions']; | ||
assert.deepStrictEqual( | ||
actualSpanNames, | ||
expectedSpanNames, | ||
`span names mismatch:\n\tGot: ${actualSpanNames}\n\tWant: ${expectedSpanNames}` | ||
); | ||
|
||
const expectedEventNames = [ | ||
'Requesting 3 sessions', | ||
'Creating 3 sessions', | ||
'Requested for 3 sessions returned 0', | ||
'exception', | ||
]; | ||
assert.deepStrictEqual( | ||
actualEventNames, | ||
expectedEventNames, | ||
`Unexpected events:\n\tGot: ${actualEventNames}\n\tWant: ${expectedEventNames}` | ||
); | ||
|
||
const firstSpan = spans[0]; | ||
assert.strictEqual( | ||
SpanStatusCode.ERROR, | ||
firstSpan.status.code, | ||
'Unexpected an span status code' | ||
); | ||
assert.strictEqual( | ||
ourException.message, | ||
firstSpan.status.message, | ||
'Unexpected span status message' | ||
); | ||
}); | ||
|
||
it('without error', async () => { | ||
const RESPONSE = [[{}, {}, {}]]; | ||
|
||
const stub = sandbox | ||
.stub(DATABASE, 'batchCreateSessions') | ||
.resolves(RESPONSE); | ||
const releaseStub = sandbox.stub(sessionPool, 'release'); | ||
|
||
await sessionPool._createSessions(OPTIONS); | ||
assert.strictEqual(sessionPool.size, 3); | ||
|
||
traceExporter.forceFlush(); | ||
const spans = traceExporter.getFinishedSpans(); | ||
|
||
const actualSpanNames: string[] = []; | ||
const actualEventNames: string[] = []; | ||
spans.forEach(span => { | ||
actualSpanNames.push(span.name); | ||
span.events.forEach(event => { | ||
actualEventNames.push(event.name); | ||
}); | ||
}); | ||
|
||
const expectedSpanNames = ['CloudSpanner.SessionPool.createSessions']; | ||
assert.deepStrictEqual( | ||
actualSpanNames, | ||
expectedSpanNames, | ||
`span names mismatch:\n\tGot: ${actualSpanNames}\n\tWant: ${expectedSpanNames}` | ||
); | ||
|
||
const expectedEventNames = [ | ||
'Requesting 3 sessions', | ||
'Creating 3 sessions', | ||
'Requested for 3 sessions returned 3', | ||
]; | ||
assert.deepStrictEqual( | ||
actualEventNames, | ||
expectedEventNames, | ||
`Unexpected events:\n\tGot: ${actualEventNames}\n\tWant: ${expectedEventNames}` | ||
); | ||
|
||
const firstSpan = spans[0]; | ||
assert.strictEqual( | ||
SpanStatusCode.UNSET, | ||
firstSpan.status.code, | ||
'Unexpected an span status code' | ||
); | ||
assert.strictEqual( | ||
undefined, | ||
firstSpan.status.message, | ||
'Unexpected span status message' | ||
); | ||
}); | ||
}); | ||
}); |
Oops, something went wrong.