agrs-sequelize-sdk 1.1.6 → 1.1.8
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/index.js +1 -1
- package/models/PipelineExecution.js +46 -0
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -25,7 +25,7 @@ class DBModels {
|
|
|
25
25
|
},
|
|
26
26
|
},
|
|
27
27
|
pool: {
|
|
28
|
-
max:
|
|
28
|
+
max: 200, // Increase from 50, but stay under max_connections (200)
|
|
29
29
|
min: 5, // Increase minimum connections
|
|
30
30
|
acquire: 60000, // Double acquire timeout
|
|
31
31
|
idle: 30000, // Align with idle_in_transaction_session_timeout
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
module.exports = (sequelize, DataTypes) => {
|
|
2
|
+
const PipelineExecution = sequelize.define(
|
|
3
|
+
"PipelineExecution",
|
|
4
|
+
{
|
|
5
|
+
id: {
|
|
6
|
+
type: DataTypes.UUID,
|
|
7
|
+
defaultValue: DataTypes.UUIDV4,
|
|
8
|
+
primaryKey: true,
|
|
9
|
+
},
|
|
10
|
+
startTime: {
|
|
11
|
+
type: DataTypes.DATE,
|
|
12
|
+
allowNull: false,
|
|
13
|
+
},
|
|
14
|
+
endTime: {
|
|
15
|
+
type: DataTypes.DATE,
|
|
16
|
+
allowNull: false,
|
|
17
|
+
},
|
|
18
|
+
status: {
|
|
19
|
+
type: DataTypes.ENUM("success", "failed"),
|
|
20
|
+
allowNull: false,
|
|
21
|
+
},
|
|
22
|
+
fbDaysBack: {
|
|
23
|
+
type: DataTypes.INTEGER,
|
|
24
|
+
allowNull: true,
|
|
25
|
+
},
|
|
26
|
+
codeFuelDaysBack: {
|
|
27
|
+
type: DataTypes.INTEGER,
|
|
28
|
+
allowNull: true,
|
|
29
|
+
},
|
|
30
|
+
tonicDaysBack: {
|
|
31
|
+
type: DataTypes.INTEGER,
|
|
32
|
+
allowNull: true,
|
|
33
|
+
},
|
|
34
|
+
error: {
|
|
35
|
+
type: DataTypes.TEXT,
|
|
36
|
+
allowNull: true,
|
|
37
|
+
},
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
tableName: "pipeline_executions",
|
|
41
|
+
timestamps: true,
|
|
42
|
+
}
|
|
43
|
+
);
|
|
44
|
+
|
|
45
|
+
return PipelineExecution;
|
|
46
|
+
};
|