@okf/ootils 1.4.0 → 1.4.1
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/node.js +23 -0
- package/dist/node.mjs +23 -0
- package/package.json +1 -1
package/dist/node.js
CHANGED
|
@@ -926,6 +926,29 @@ var init_GLOBAL_BULLMQ_CONFIG = __esm({
|
|
|
926
926
|
// ...60 seconds (higher throughput for chunking)
|
|
927
927
|
}
|
|
928
928
|
}
|
|
929
|
+
},
|
|
930
|
+
DIRECT_DATA_IMPORT_QUEUE: {
|
|
931
|
+
id: "direct-data-import-queue",
|
|
932
|
+
queueConfig: {
|
|
933
|
+
defaultJobOptions: {
|
|
934
|
+
backoff: {
|
|
935
|
+
type: "exponential",
|
|
936
|
+
delay: 2e3
|
|
937
|
+
},
|
|
938
|
+
attempts: 3,
|
|
939
|
+
removeOnComplete: 100,
|
|
940
|
+
removeOnFail: 50
|
|
941
|
+
}
|
|
942
|
+
},
|
|
943
|
+
workerConfig: {
|
|
944
|
+
concurrency: 1,
|
|
945
|
+
limiter: {
|
|
946
|
+
max: 5,
|
|
947
|
+
// Max 50 jobs per...
|
|
948
|
+
duration: 6e4
|
|
949
|
+
// ...60 seconds (higher throughput for chunking)
|
|
950
|
+
}
|
|
951
|
+
}
|
|
929
952
|
}
|
|
930
953
|
};
|
|
931
954
|
}
|
package/dist/node.mjs
CHANGED
|
@@ -931,6 +931,29 @@ var init_GLOBAL_BULLMQ_CONFIG = __esm({
|
|
|
931
931
|
// ...60 seconds (higher throughput for chunking)
|
|
932
932
|
}
|
|
933
933
|
}
|
|
934
|
+
},
|
|
935
|
+
DIRECT_DATA_IMPORT_QUEUE: {
|
|
936
|
+
id: "direct-data-import-queue",
|
|
937
|
+
queueConfig: {
|
|
938
|
+
defaultJobOptions: {
|
|
939
|
+
backoff: {
|
|
940
|
+
type: "exponential",
|
|
941
|
+
delay: 2e3
|
|
942
|
+
},
|
|
943
|
+
attempts: 3,
|
|
944
|
+
removeOnComplete: 100,
|
|
945
|
+
removeOnFail: 50
|
|
946
|
+
}
|
|
947
|
+
},
|
|
948
|
+
workerConfig: {
|
|
949
|
+
concurrency: 1,
|
|
950
|
+
limiter: {
|
|
951
|
+
max: 5,
|
|
952
|
+
// Max 50 jobs per...
|
|
953
|
+
duration: 6e4
|
|
954
|
+
// ...60 seconds (higher throughput for chunking)
|
|
955
|
+
}
|
|
956
|
+
}
|
|
934
957
|
}
|
|
935
958
|
};
|
|
936
959
|
}
|