@dbos-inc/typeorm-datasource 3.0.8-preview → 3.0.8-preview.g493d2d1c2b
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/src/index.d.ts +2 -0
- package/dist/src/index.d.ts.map +1 -0
- package/dist/src/index.js +7 -0
- package/dist/src/index.js.map +1 -0
- package/dist/{index.d.ts → src/typeorm_datasource.d.ts} +15 -8
- package/dist/src/typeorm_datasource.d.ts.map +1 -0
- package/dist/src/typeorm_datasource.js +249 -0
- package/dist/src/typeorm_datasource.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +8 -7
- package/src/index.ts +1 -0
- package/src/typeorm_datasource.ts +332 -0
- package/tests/testutils.ts +30 -0
- package/tests/typeormds.test.ts +203 -0
- package/tsconfig.json +2 -3
- package/dist/index.d.ts.map +0 -1
- package/dist/index.js +0 -226
- package/dist/index.js.map +0 -1
- package/index.ts +0 -306
- package/tests/config.test.ts +0 -31
- package/tests/datasource.test.ts +0 -445
- package/tests/test-helpers.ts +0 -13
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,iBAAiB,EAAE,wBAAwB,EAAE,MAAM,sBAAsB,CAAC"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.TypeOrmDataSource = exports.IsolationLevel = void 0;
|
|
4
|
+
var typeorm_datasource_1 = require("./typeorm_datasource");
|
|
5
|
+
Object.defineProperty(exports, "IsolationLevel", { enumerable: true, get: function () { return typeorm_datasource_1.IsolationLevel; } });
|
|
6
|
+
Object.defineProperty(exports, "TypeOrmDataSource", { enumerable: true, get: function () { return typeorm_datasource_1.TypeOrmDataSource; } });
|
|
7
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";;;AAAA,2DAAmG;AAA1F,oHAAA,cAAc,OAAA;AAAE,uHAAA,iBAAiB,OAAA"}
|
|
@@ -1,12 +1,15 @@
|
|
|
1
1
|
import { PoolConfig } from 'pg';
|
|
2
|
-
import {
|
|
2
|
+
import { PGIsolationLevel as IsolationLevel, PGTransactionConfig as TypeOrmTransactionConfig, DBOSDataSource } from '@dbos-inc/dbos-sdk/datasource';
|
|
3
3
|
import { EntityManager } from 'typeorm';
|
|
4
|
-
export
|
|
4
|
+
export { IsolationLevel, TypeOrmTransactionConfig };
|
|
5
|
+
export declare class TypeOrmDataSource implements DBOSDataSource<TypeOrmTransactionConfig> {
|
|
5
6
|
#private;
|
|
6
7
|
readonly name: string;
|
|
7
|
-
|
|
8
|
-
|
|
8
|
+
readonly config: PoolConfig;
|
|
9
|
+
readonly entities: Function[];
|
|
9
10
|
constructor(name: string, config: PoolConfig, entities: Function[]);
|
|
11
|
+
static get entityManager(): EntityManager;
|
|
12
|
+
initializeInternalSchema(): Promise<void>;
|
|
10
13
|
/**
|
|
11
14
|
* Run `callback` as a transaction against this DataSource
|
|
12
15
|
* @param callback Function to run within a transactional context
|
|
@@ -14,7 +17,7 @@ export declare class TypeOrmDataSource implements DBOSDataSource<PGTransactionCo
|
|
|
14
17
|
* @param config Transaction configuration (isolation, etc)
|
|
15
18
|
* @returns Return value from `callback`
|
|
16
19
|
*/
|
|
17
|
-
runTransaction<T>(callback: () => Promise<T>, funcName: string, config?:
|
|
20
|
+
runTransaction<T>(callback: () => Promise<T>, funcName: string, config?: TypeOrmTransactionConfig): Promise<T>;
|
|
18
21
|
/**
|
|
19
22
|
* Register function as DBOS transaction, to be called within the context
|
|
20
23
|
* of a transaction on this data source.
|
|
@@ -24,10 +27,14 @@ export declare class TypeOrmDataSource implements DBOSDataSource<PGTransactionCo
|
|
|
24
27
|
* @param config Transaction settings
|
|
25
28
|
* @returns Wrapped function, to be called instead of `func`
|
|
26
29
|
*/
|
|
27
|
-
registerTransaction<This, Args extends unknown[], Return>(func: (this: This, ...args: Args) => Promise<Return>,
|
|
30
|
+
registerTransaction<This, Args extends unknown[], Return>(func: (this: This, ...args: Args) => Promise<Return>, name: string, config?: TypeOrmTransactionConfig): (this: This, ...args: Args) => Promise<Return>;
|
|
28
31
|
/**
|
|
29
32
|
* Decorator establishing function as a transaction
|
|
30
33
|
*/
|
|
31
|
-
transaction(config?:
|
|
34
|
+
transaction(config?: TypeOrmTransactionConfig): <This, Args extends unknown[], Return>(_target: object, propertyKey: string, descriptor: TypedPropertyDescriptor<(this: This, ...args: Args) => Promise<Return>>) => TypedPropertyDescriptor<(this: This, ...args: Args) => Promise<Return>>;
|
|
35
|
+
/**
|
|
36
|
+
* For testing: Use DataSource.syncronize to install the user schema
|
|
37
|
+
*/
|
|
38
|
+
createSchema(): Promise<void>;
|
|
32
39
|
}
|
|
33
|
-
//# sourceMappingURL=
|
|
40
|
+
//# sourceMappingURL=typeorm_datasource.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"typeorm_datasource.d.ts","sourceRoot":"","sources":["../../src/typeorm_datasource.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,IAAI,CAAC;AAEhC,OAAO,EASL,gBAAgB,IAAI,cAAc,EAClC,mBAAmB,IAAI,wBAAwB,EAC/C,cAAc,EAEf,MAAM,+BAA+B,CAAC;AACvC,OAAO,EAAc,aAAa,EAAE,MAAM,SAAS,CAAC;AA0BpD,OAAO,EAAE,cAAc,EAAE,wBAAwB,EAAE,CAAC;AA+LpD,qBAAa,iBAAkB,YAAW,cAAc,CAAC,wBAAwB,CAAC;;IAG9E,QAAQ,CAAC,IAAI,EAAE,MAAM;IACrB,QAAQ,CAAC,MAAM,EAAE,UAAU;IAE3B,QAAQ,CAAC,QAAQ,EAAE,QAAQ,EAAE;gBAHpB,IAAI,EAAE,MAAM,EACZ,MAAM,EAAE,UAAU,EAElB,QAAQ,EAAE,QAAQ,EAAE;IAO/B,MAAM,KAAK,aAAa,IAAI,aAAa,CAOxC;IAEK,wBAAwB,IAAI,OAAO,CAAC,IAAI,CAAC;IAgB/C;;;;;;OAMG;IACG,cAAc,CAAC,CAAC,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAC,CAAC,CAAC,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,CAAC,EAAE,wBAAwB;IAIvG;;;;;;;;OAQG;IACH,mBAAmB,CAAC,IAAI,EAAE,IAAI,SAAS,OAAO,EAAE,EAAE,MAAM,EACtD,IAAI,EAAE,CAAC,IAAI,EAAE,IAAI,EAAE,GAAG,IAAI,EAAE,IAAI,KAAK,OAAO,CAAC,MAAM,CAAC,EACpD,IAAI,EAAE,MAAM,EACZ,MAAM,CAAC,EAAE,wBAAwB,GAChC,CAAC,IAAI,EAAE,IAAI,EAAE,GAAG,IAAI,EAAE,IAAI,KAAK,OAAO,CAAC,MAAM,CAAC;IAIjD;;OAEG;IACH,WAAW,CAAC,MAAM,CAAC,EAAE,wBAAwB,mDAIhC,MAAM,eACF,MAAM,cACP,wBAAwB,CAAC,IAAI,EAAE,IAAI,EAAE,GAAG,IAAI,EAAE,IAAI,KAAK,QAAQ,MAAM,CAAC,CAAC,oCAAxC,IAAI,WAAW,IAAI,KAAK,QAAQ,MAAM,CAAC;IAYtF;;OAEG;IACG,YAAY;CAQnB"}
|
|
@@ -0,0 +1,249 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.TypeOrmDataSource = exports.IsolationLevel = void 0;
|
|
4
|
+
const dbos_sdk_1 = require("@dbos-inc/dbos-sdk");
|
|
5
|
+
const datasource_1 = require("@dbos-inc/dbos-sdk/datasource");
|
|
6
|
+
Object.defineProperty(exports, "IsolationLevel", { enumerable: true, get: function () { return datasource_1.PGIsolationLevel; } });
|
|
7
|
+
const typeorm_1 = require("typeorm");
|
|
8
|
+
const async_hooks_1 = require("async_hooks");
|
|
9
|
+
const superjson_1 = require("superjson");
|
|
10
|
+
const asyncLocalCtx = new async_hooks_1.AsyncLocalStorage();
|
|
11
|
+
function getCurrentDSContextStore() {
|
|
12
|
+
return asyncLocalCtx.getStore();
|
|
13
|
+
}
|
|
14
|
+
function assertCurrentDSContextStore() {
|
|
15
|
+
const ctx = getCurrentDSContextStore();
|
|
16
|
+
if (!ctx)
|
|
17
|
+
throw new dbos_sdk_1.Error.DBOSInvalidWorkflowTransitionError('Invalid use of TypeOrmDs outside of a `transaction`');
|
|
18
|
+
return ctx;
|
|
19
|
+
}
|
|
20
|
+
class TypeOrmDSTH {
|
|
21
|
+
name;
|
|
22
|
+
config;
|
|
23
|
+
entities;
|
|
24
|
+
dsType = 'TypeOrm';
|
|
25
|
+
dataSource;
|
|
26
|
+
constructor(name, config,
|
|
27
|
+
// eslint-disable-next-line @typescript-eslint/no-unsafe-function-type
|
|
28
|
+
entities) {
|
|
29
|
+
this.name = name;
|
|
30
|
+
this.config = config;
|
|
31
|
+
this.entities = entities;
|
|
32
|
+
}
|
|
33
|
+
async createInstance() {
|
|
34
|
+
const ds = new typeorm_1.DataSource({
|
|
35
|
+
type: 'postgres',
|
|
36
|
+
url: this.config.connectionString,
|
|
37
|
+
connectTimeoutMS: this.config.connectionTimeoutMillis,
|
|
38
|
+
entities: this.entities,
|
|
39
|
+
poolSize: this.config.max,
|
|
40
|
+
});
|
|
41
|
+
await ds.initialize();
|
|
42
|
+
return ds;
|
|
43
|
+
}
|
|
44
|
+
async initialize() {
|
|
45
|
+
this.dataSource = await this.createInstance();
|
|
46
|
+
return Promise.resolve();
|
|
47
|
+
}
|
|
48
|
+
async destroy() {
|
|
49
|
+
await this.dataSource?.destroy();
|
|
50
|
+
}
|
|
51
|
+
async #checkExecution(client, workflowID, funcNum) {
|
|
52
|
+
const { rows } = await client.query(`SELECT output
|
|
53
|
+
FROM dbos.transaction_completion
|
|
54
|
+
WHERE workflow_id=$1 AND function_num=$2;`, [workflowID, funcNum]);
|
|
55
|
+
if (rows.length !== 1) {
|
|
56
|
+
return undefined;
|
|
57
|
+
}
|
|
58
|
+
if (rows[0].output === null) {
|
|
59
|
+
return undefined;
|
|
60
|
+
}
|
|
61
|
+
return { res: superjson_1.SuperJSON.parse(rows[0].output) };
|
|
62
|
+
}
|
|
63
|
+
async #recordOutput(client, workflowID, funcNum, output) {
|
|
64
|
+
const serialOutput = superjson_1.SuperJSON.stringify(output);
|
|
65
|
+
await client.query(`INSERT INTO dbos.transaction_completion (
|
|
66
|
+
workflow_id,
|
|
67
|
+
function_num,
|
|
68
|
+
output,
|
|
69
|
+
created_at
|
|
70
|
+
) VALUES ($1, $2, $3, $4)`, [workflowID, funcNum, serialOutput, Date.now()]);
|
|
71
|
+
}
|
|
72
|
+
async #recordError(client, workflowID, funcNum, error) {
|
|
73
|
+
const serialError = superjson_1.SuperJSON.stringify(error);
|
|
74
|
+
await client.query(`INSERT INTO dbos.transaction_completion (
|
|
75
|
+
workflow_id,
|
|
76
|
+
function_num,
|
|
77
|
+
error,
|
|
78
|
+
created_at
|
|
79
|
+
) VALUES ($1, $2, $3, $4)`, [workflowID, funcNum, serialError, Date.now()]);
|
|
80
|
+
}
|
|
81
|
+
/* Required by base class */
|
|
82
|
+
async invokeTransactionFunction(config, target, func, ...args) {
|
|
83
|
+
const isolationLevel = config?.isolationLevel ?? 'SERIALIZABLE';
|
|
84
|
+
const readOnly = config?.readOnly ? true : false;
|
|
85
|
+
const wfid = dbos_sdk_1.DBOS.workflowID;
|
|
86
|
+
const funcnum = dbos_sdk_1.DBOS.stepID;
|
|
87
|
+
const funcname = func.name;
|
|
88
|
+
// Retry loop if appropriate
|
|
89
|
+
let retryWaitMillis = 1;
|
|
90
|
+
const backoffFactor = 1.5;
|
|
91
|
+
const maxRetryWaitMs = 2000; // Maximum wait 2 seconds.
|
|
92
|
+
const shouldCheckOutput = false;
|
|
93
|
+
if (this.dataSource === undefined) {
|
|
94
|
+
throw new dbos_sdk_1.Error.DBOSInvalidWorkflowTransitionError('Invalid use of Datasource');
|
|
95
|
+
}
|
|
96
|
+
while (true) {
|
|
97
|
+
let failedForRetriableReasons = false;
|
|
98
|
+
try {
|
|
99
|
+
const result = this.dataSource.transaction(isolationLevel, async (transactionEntityManager) => {
|
|
100
|
+
if (this.dataSource === undefined) {
|
|
101
|
+
throw new dbos_sdk_1.Error.DBOSInvalidWorkflowTransitionError('Invalid use of Datasource');
|
|
102
|
+
}
|
|
103
|
+
if (shouldCheckOutput && !readOnly && wfid) {
|
|
104
|
+
const executionResult = await this.#checkExecution(this.dataSource, wfid, funcnum);
|
|
105
|
+
if (executionResult) {
|
|
106
|
+
dbos_sdk_1.DBOS.span?.setAttribute('cached', true);
|
|
107
|
+
return executionResult.res;
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
const result = await asyncLocalCtx.run({ typeOrmEntityManager: transactionEntityManager }, async () => {
|
|
111
|
+
return await func.call(target, ...args);
|
|
112
|
+
});
|
|
113
|
+
// Save result
|
|
114
|
+
try {
|
|
115
|
+
if (!readOnly && wfid) {
|
|
116
|
+
await this.#recordOutput(this.dataSource, wfid, funcnum, result);
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
catch (e) {
|
|
120
|
+
const error = e;
|
|
121
|
+
await this.#recordError(this.dataSource, wfid, funcnum, error);
|
|
122
|
+
// Aside from a connectivity error, two kinds of error are anticipated here:
|
|
123
|
+
// 1. The transaction is marked failed, but the user code did not throw.
|
|
124
|
+
// Bad on them. We will throw an error (this will get recorded) and not retry.
|
|
125
|
+
// 2. There was a key conflict in the statement, and we need to use the fetched output
|
|
126
|
+
if ((0, datasource_1.isPGFailedSqlTransactionError)(error)) {
|
|
127
|
+
dbos_sdk_1.DBOS.logger.error(`In workflow ${wfid}, Postgres aborted a transaction but the function '${funcname}' did not raise an exception. Please ensure that the transaction method raises an exception if the database transaction is aborted.`);
|
|
128
|
+
failedForRetriableReasons = false;
|
|
129
|
+
throw new dbos_sdk_1.Error.DBOSFailedSqlTransactionError(wfid, funcname);
|
|
130
|
+
}
|
|
131
|
+
else if ((0, datasource_1.isPGKeyConflictError)(error)) {
|
|
132
|
+
throw new dbos_sdk_1.Error.DBOSWorkflowConflictError(`In workflow ${wfid}, Postgres raised a key conflict error in transaction '${funcname}'. This is not retriable, but the output will be fetched from the database.`);
|
|
133
|
+
}
|
|
134
|
+
else {
|
|
135
|
+
dbos_sdk_1.DBOS.logger.error(`Unexpected error raised in transaction '${funcname}: ${error}`);
|
|
136
|
+
failedForRetriableReasons = false;
|
|
137
|
+
throw error;
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
return result;
|
|
141
|
+
});
|
|
142
|
+
return result;
|
|
143
|
+
}
|
|
144
|
+
catch (e) {
|
|
145
|
+
const err = e;
|
|
146
|
+
if (failedForRetriableReasons || (0, datasource_1.isPGRetriableTransactionError)(err)) {
|
|
147
|
+
dbos_sdk_1.DBOS.span?.addEvent('TXN SERIALIZATION FAILURE', { retryWaitMillis: retryWaitMillis }, performance.now());
|
|
148
|
+
// Retry serialization failures.
|
|
149
|
+
await dbos_sdk_1.DBOS.sleepms(retryWaitMillis);
|
|
150
|
+
retryWaitMillis *= backoffFactor;
|
|
151
|
+
retryWaitMillis = retryWaitMillis < maxRetryWaitMs ? retryWaitMillis : maxRetryWaitMs;
|
|
152
|
+
continue;
|
|
153
|
+
}
|
|
154
|
+
else {
|
|
155
|
+
throw err;
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
class TypeOrmDataSource {
|
|
162
|
+
name;
|
|
163
|
+
config;
|
|
164
|
+
entities;
|
|
165
|
+
#provider;
|
|
166
|
+
constructor(name, config,
|
|
167
|
+
// eslint-disable-next-line @typescript-eslint/no-unsafe-function-type
|
|
168
|
+
entities) {
|
|
169
|
+
this.name = name;
|
|
170
|
+
this.config = config;
|
|
171
|
+
this.entities = entities;
|
|
172
|
+
this.#provider = new TypeOrmDSTH(name, config, entities);
|
|
173
|
+
(0, datasource_1.registerDataSource)(this.#provider);
|
|
174
|
+
}
|
|
175
|
+
// User calls this... DBOS not directly involved...
|
|
176
|
+
static get entityManager() {
|
|
177
|
+
const ctx = assertCurrentDSContextStore();
|
|
178
|
+
if (!dbos_sdk_1.DBOS.isInTransaction())
|
|
179
|
+
throw new dbos_sdk_1.Error.DBOSInvalidWorkflowTransitionError('Invalid use of `TypeOrmDataSource.entityManager` outside of a `transaction`');
|
|
180
|
+
return ctx.typeOrmEntityManager;
|
|
181
|
+
}
|
|
182
|
+
async initializeInternalSchema() {
|
|
183
|
+
const ds = await this.#provider.createInstance();
|
|
184
|
+
try {
|
|
185
|
+
await ds.query(datasource_1.createTransactionCompletionSchemaPG);
|
|
186
|
+
await ds.query(datasource_1.createTransactionCompletionTablePG);
|
|
187
|
+
}
|
|
188
|
+
catch (e) {
|
|
189
|
+
const error = e;
|
|
190
|
+
throw new dbos_sdk_1.Error.DBOSError(`Unexpected error initializing schema: ${error.message}`);
|
|
191
|
+
}
|
|
192
|
+
finally {
|
|
193
|
+
try {
|
|
194
|
+
await ds.destroy();
|
|
195
|
+
}
|
|
196
|
+
catch (e) { }
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
/**
|
|
200
|
+
* Run `callback` as a transaction against this DataSource
|
|
201
|
+
* @param callback Function to run within a transactional context
|
|
202
|
+
* @param funcName Name to record for the transaction
|
|
203
|
+
* @param config Transaction configuration (isolation, etc)
|
|
204
|
+
* @returns Return value from `callback`
|
|
205
|
+
*/
|
|
206
|
+
async runTransaction(callback, funcName, config) {
|
|
207
|
+
return await (0, datasource_1.runTransaction)(callback, funcName, { dsName: this.name, config });
|
|
208
|
+
}
|
|
209
|
+
/**
|
|
210
|
+
* Register function as DBOS transaction, to be called within the context
|
|
211
|
+
* of a transaction on this data source.
|
|
212
|
+
*
|
|
213
|
+
* @param func Function to wrap
|
|
214
|
+
* @param target Name of function
|
|
215
|
+
* @param config Transaction settings
|
|
216
|
+
* @returns Wrapped function, to be called instead of `func`
|
|
217
|
+
*/
|
|
218
|
+
registerTransaction(func, name, config) {
|
|
219
|
+
return (0, datasource_1.registerTransaction)(this.name, func, { name }, config);
|
|
220
|
+
}
|
|
221
|
+
/**
|
|
222
|
+
* Decorator establishing function as a transaction
|
|
223
|
+
*/
|
|
224
|
+
transaction(config) {
|
|
225
|
+
// eslint-disable-next-line @typescript-eslint/no-this-alias
|
|
226
|
+
const ds = this;
|
|
227
|
+
return function decorator(_target, propertyKey, descriptor) {
|
|
228
|
+
if (!descriptor.value) {
|
|
229
|
+
throw new dbos_sdk_1.Error.DBOSError('Use of decorator when original method is undefined');
|
|
230
|
+
}
|
|
231
|
+
descriptor.value = ds.registerTransaction(descriptor.value, propertyKey.toString(), config);
|
|
232
|
+
return descriptor;
|
|
233
|
+
};
|
|
234
|
+
}
|
|
235
|
+
/**
|
|
236
|
+
* For testing: Use DataSource.syncronize to install the user schema
|
|
237
|
+
*/
|
|
238
|
+
async createSchema() {
|
|
239
|
+
const ds = await this.#provider.createInstance();
|
|
240
|
+
try {
|
|
241
|
+
await ds.synchronize();
|
|
242
|
+
}
|
|
243
|
+
finally {
|
|
244
|
+
await ds.destroy();
|
|
245
|
+
}
|
|
246
|
+
}
|
|
247
|
+
}
|
|
248
|
+
exports.TypeOrmDataSource = TypeOrmDataSource;
|
|
249
|
+
//# sourceMappingURL=typeorm_datasource.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"typeorm_datasource.js","sourceRoot":"","sources":["../../src/typeorm_datasource.ts"],"names":[],"mappings":"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"}
|