@514labs/moose-lib 0.6.252-ci-3-gf88b2b20 → 0.6.252-ci-1-g40bb1da4
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/browserCompatible.js +6 -14
- package/dist/browserCompatible.js.map +1 -1
- package/dist/browserCompatible.mjs +6 -14
- package/dist/browserCompatible.mjs.map +1 -1
- package/dist/compilerPlugin.js.map +1 -1
- package/dist/compilerPlugin.mjs.map +1 -1
- package/dist/dmv2/index.js +6 -14
- package/dist/dmv2/index.js.map +1 -1
- package/dist/dmv2/index.mjs +6 -14
- package/dist/dmv2/index.mjs.map +1 -1
- package/dist/index.d.mts +2 -25
- package/dist/index.d.ts +2 -25
- package/dist/index.js +6 -16
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6 -15
- package/dist/index.mjs.map +1 -1
- package/dist/moose-runner.js +202 -100
- package/dist/moose-runner.js.map +1 -1
- package/dist/moose-runner.mjs +202 -100
- package/dist/moose-runner.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -44,25 +44,6 @@ declare const RETRY_INITIAL_TIME_MS = 100;
|
|
|
44
44
|
declare const MAX_RETRIES_PRODUCER = 150;
|
|
45
45
|
declare const RETRY_FACTOR_PRODUCER = 0.2;
|
|
46
46
|
declare const ACKs = -1;
|
|
47
|
-
/**
|
|
48
|
-
* Creates the base producer configuration for Kafka.
|
|
49
|
-
* Used by both the SDK stream publishing and streaming function workers.
|
|
50
|
-
*
|
|
51
|
-
* @param maxMessageBytes - Optional max message size in bytes (synced with topic config)
|
|
52
|
-
* @returns Producer configuration object for the Confluent Kafka client
|
|
53
|
-
*/
|
|
54
|
-
declare function createProducerConfig(maxMessageBytes?: number): {
|
|
55
|
-
"message.max.bytes"?: number | undefined;
|
|
56
|
-
kafkaJS: {
|
|
57
|
-
idempotent: boolean;
|
|
58
|
-
acks: number;
|
|
59
|
-
retry: {
|
|
60
|
-
retries: number;
|
|
61
|
-
maxRetryTime: number;
|
|
62
|
-
};
|
|
63
|
-
};
|
|
64
|
-
"linger.ms": number;
|
|
65
|
-
};
|
|
66
47
|
type KafkaClientConfig = {
|
|
67
48
|
clientId: string;
|
|
68
49
|
broker: string;
|
|
@@ -74,12 +55,8 @@ type KafkaClientConfig = {
|
|
|
74
55
|
/**
|
|
75
56
|
* Dynamically creates and connects a KafkaJS producer using the provided configuration.
|
|
76
57
|
* Returns a connected producer instance.
|
|
77
|
-
*
|
|
78
|
-
* @param cfg - Kafka client configuration
|
|
79
|
-
* @param logger - Logger instance
|
|
80
|
-
* @param maxMessageBytes - Optional max message size in bytes (synced with topic config)
|
|
81
58
|
*/
|
|
82
|
-
declare function getKafkaProducer(cfg: KafkaClientConfig, logger: Logger
|
|
59
|
+
declare function getKafkaProducer(cfg: KafkaClientConfig, logger: Logger): Promise<Producer>;
|
|
83
60
|
/**
|
|
84
61
|
* Interface for logging functionality
|
|
85
62
|
*/
|
|
@@ -554,4 +531,4 @@ type DataModelConfig<T> = Partial<{
|
|
|
554
531
|
parallelism?: number;
|
|
555
532
|
}>;
|
|
556
533
|
|
|
557
|
-
export { ACKs, ApiUtil, type CSVParsingConfig, CSV_DELIMITERS, type CliLogData, DEFAULT_CSV_CONFIG, DEFAULT_JSON_CONFIG, type DataModelConfig, DataSource, type DataSourceConfig, type ExpressRequestWithMoose, type ExtractionResult, type JSONParsingConfig, type KafkaClientConfig, type Logger, MAX_RETRIES, MAX_RETRIES_PRODUCER, MAX_RETRY_TIME_MS, MOOSE_RUNTIME_ENV_PREFIX, MooseCache, MooseClient, type Producer, RETRY_FACTOR_PRODUCER, RETRY_INITIAL_TIME_MS, type StripDateIntersection, type TaskConfig, type TaskDefinition, type TaskFunction, antiCachePath, cliLog, compilerLog, createApi, createConsumptionApi,
|
|
534
|
+
export { ACKs, ApiUtil, type CSVParsingConfig, CSV_DELIMITERS, type CliLogData, DEFAULT_CSV_CONFIG, DEFAULT_JSON_CONFIG, type DataModelConfig, DataSource, type DataSourceConfig, type ExpressRequestWithMoose, type ExtractionResult, type JSONParsingConfig, type KafkaClientConfig, type Logger, MAX_RETRIES, MAX_RETRIES_PRODUCER, MAX_RETRY_TIME_MS, MOOSE_RUNTIME_ENV_PREFIX, MooseCache, MooseClient, type Producer, RETRY_FACTOR_PRODUCER, RETRY_INITIAL_TIME_MS, type StripDateIntersection, type TaskConfig, type TaskDefinition, type TaskFunction, antiCachePath, cliLog, compilerLog, createApi, createConsumptionApi, expressMiddleware, getClickhouseClient, getFileName, getKafkaClient, getKafkaProducer, getMooseClients, getMooseUtils, isValidCSVDelimiter, logError, mapTstoJs, mooseEnvSecrets, mooseRuntimeEnv, parseCSV, parseJSON, parseJSONWithDates };
|
package/dist/index.d.ts
CHANGED
|
@@ -44,25 +44,6 @@ declare const RETRY_INITIAL_TIME_MS = 100;
|
|
|
44
44
|
declare const MAX_RETRIES_PRODUCER = 150;
|
|
45
45
|
declare const RETRY_FACTOR_PRODUCER = 0.2;
|
|
46
46
|
declare const ACKs = -1;
|
|
47
|
-
/**
|
|
48
|
-
* Creates the base producer configuration for Kafka.
|
|
49
|
-
* Used by both the SDK stream publishing and streaming function workers.
|
|
50
|
-
*
|
|
51
|
-
* @param maxMessageBytes - Optional max message size in bytes (synced with topic config)
|
|
52
|
-
* @returns Producer configuration object for the Confluent Kafka client
|
|
53
|
-
*/
|
|
54
|
-
declare function createProducerConfig(maxMessageBytes?: number): {
|
|
55
|
-
"message.max.bytes"?: number | undefined;
|
|
56
|
-
kafkaJS: {
|
|
57
|
-
idempotent: boolean;
|
|
58
|
-
acks: number;
|
|
59
|
-
retry: {
|
|
60
|
-
retries: number;
|
|
61
|
-
maxRetryTime: number;
|
|
62
|
-
};
|
|
63
|
-
};
|
|
64
|
-
"linger.ms": number;
|
|
65
|
-
};
|
|
66
47
|
type KafkaClientConfig = {
|
|
67
48
|
clientId: string;
|
|
68
49
|
broker: string;
|
|
@@ -74,12 +55,8 @@ type KafkaClientConfig = {
|
|
|
74
55
|
/**
|
|
75
56
|
* Dynamically creates and connects a KafkaJS producer using the provided configuration.
|
|
76
57
|
* Returns a connected producer instance.
|
|
77
|
-
*
|
|
78
|
-
* @param cfg - Kafka client configuration
|
|
79
|
-
* @param logger - Logger instance
|
|
80
|
-
* @param maxMessageBytes - Optional max message size in bytes (synced with topic config)
|
|
81
58
|
*/
|
|
82
|
-
declare function getKafkaProducer(cfg: KafkaClientConfig, logger: Logger
|
|
59
|
+
declare function getKafkaProducer(cfg: KafkaClientConfig, logger: Logger): Promise<Producer>;
|
|
83
60
|
/**
|
|
84
61
|
* Interface for logging functionality
|
|
85
62
|
*/
|
|
@@ -554,4 +531,4 @@ type DataModelConfig<T> = Partial<{
|
|
|
554
531
|
parallelism?: number;
|
|
555
532
|
}>;
|
|
556
533
|
|
|
557
|
-
export { ACKs, ApiUtil, type CSVParsingConfig, CSV_DELIMITERS, type CliLogData, DEFAULT_CSV_CONFIG, DEFAULT_JSON_CONFIG, type DataModelConfig, DataSource, type DataSourceConfig, type ExpressRequestWithMoose, type ExtractionResult, type JSONParsingConfig, type KafkaClientConfig, type Logger, MAX_RETRIES, MAX_RETRIES_PRODUCER, MAX_RETRY_TIME_MS, MOOSE_RUNTIME_ENV_PREFIX, MooseCache, MooseClient, type Producer, RETRY_FACTOR_PRODUCER, RETRY_INITIAL_TIME_MS, type StripDateIntersection, type TaskConfig, type TaskDefinition, type TaskFunction, antiCachePath, cliLog, compilerLog, createApi, createConsumptionApi,
|
|
534
|
+
export { ACKs, ApiUtil, type CSVParsingConfig, CSV_DELIMITERS, type CliLogData, DEFAULT_CSV_CONFIG, DEFAULT_JSON_CONFIG, type DataModelConfig, DataSource, type DataSourceConfig, type ExpressRequestWithMoose, type ExtractionResult, type JSONParsingConfig, type KafkaClientConfig, type Logger, MAX_RETRIES, MAX_RETRIES_PRODUCER, MAX_RETRY_TIME_MS, MOOSE_RUNTIME_ENV_PREFIX, MooseCache, MooseClient, type Producer, RETRY_FACTOR_PRODUCER, RETRY_INITIAL_TIME_MS, type StripDateIntersection, type TaskConfig, type TaskDefinition, type TaskFunction, antiCachePath, cliLog, compilerLog, createApi, createConsumptionApi, expressMiddleware, getClickhouseClient, getFileName, getKafkaClient, getKafkaProducer, getMooseClients, getMooseUtils, isValidCSVDelimiter, logError, mapTstoJs, mooseEnvSecrets, mooseRuntimeEnv, parseCSV, parseJSON, parseJSONWithDates };
|
package/dist/index.js
CHANGED
|
@@ -42,7 +42,6 @@ __export(commons_exports, {
|
|
|
42
42
|
antiCachePath: () => antiCachePath,
|
|
43
43
|
cliLog: () => cliLog,
|
|
44
44
|
compilerLog: () => compilerLog,
|
|
45
|
-
createProducerConfig: () => createProducerConfig,
|
|
46
45
|
getClickhouseClient: () => getClickhouseClient,
|
|
47
46
|
getFileName: () => getFileName,
|
|
48
47
|
getKafkaClient: () => getKafkaClient,
|
|
@@ -65,25 +64,18 @@ function isTruthy(value) {
|
|
|
65
64
|
function mapTstoJs(filePath) {
|
|
66
65
|
return filePath.replace(/\.ts$/, ".js").replace(/\.cts$/, ".cjs").replace(/\.mts$/, ".mjs");
|
|
67
66
|
}
|
|
68
|
-
function
|
|
69
|
-
|
|
67
|
+
async function getKafkaProducer(cfg, logger) {
|
|
68
|
+
const kafka = await getKafkaClient(cfg, logger);
|
|
69
|
+
const producer = kafka.producer({
|
|
70
70
|
kafkaJS: {
|
|
71
|
-
idempotent:
|
|
72
|
-
// Not needed for at-least-once delivery
|
|
71
|
+
idempotent: true,
|
|
73
72
|
acks: ACKs,
|
|
74
73
|
retry: {
|
|
75
74
|
retries: MAX_RETRIES_PRODUCER,
|
|
76
75
|
maxRetryTime: MAX_RETRY_TIME_MS
|
|
77
76
|
}
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
// Send immediately - batching happens at application level
|
|
81
|
-
...maxMessageBytes && { "message.max.bytes": maxMessageBytes }
|
|
82
|
-
};
|
|
83
|
-
}
|
|
84
|
-
async function getKafkaProducer(cfg, logger, maxMessageBytes) {
|
|
85
|
-
const kafka = await getKafkaClient(cfg, logger);
|
|
86
|
-
const producer = kafka.producer(createProducerConfig(maxMessageBytes));
|
|
77
|
+
}
|
|
78
|
+
});
|
|
87
79
|
await producer.connect();
|
|
88
80
|
return producer;
|
|
89
81
|
}
|
|
@@ -425,7 +417,6 @@ __export(index_exports, {
|
|
|
425
417
|
createClickhouseParameter: () => createClickhouseParameter,
|
|
426
418
|
createConsumptionApi: () => createConsumptionApi,
|
|
427
419
|
createMaterializedView: () => createMaterializedView,
|
|
428
|
-
createProducerConfig: () => createProducerConfig,
|
|
429
420
|
dropView: () => dropView,
|
|
430
421
|
expressMiddleware: () => expressMiddleware,
|
|
431
422
|
getApi: () => getApi,
|
|
@@ -3407,7 +3398,6 @@ var DataSource = class {
|
|
|
3407
3398
|
createClickhouseParameter,
|
|
3408
3399
|
createConsumptionApi,
|
|
3409
3400
|
createMaterializedView,
|
|
3410
|
-
createProducerConfig,
|
|
3411
3401
|
dropView,
|
|
3412
3402
|
expressMiddleware,
|
|
3413
3403
|
getApi,
|