ml-modules.root.data-hub.data-services.stepRunner.processIngestBatch.mjs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of marklogic-data-hub Show documentation
Show all versions of marklogic-data-hub Show documentation
Library for Creating an Operational Data Hub on MarkLogic
/*
Copyright (c) 2021 MarkLogic Corporation
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.
*/
'use strict';
xdmp.securityAssert("http://marklogic.com/data-hub/privileges/run-step", "execute");
import flowUtils from "/data-hub/5/impl/flow-utils.mjs";
import httpUtils from "/data-hub/5/impl/http-utils.mjs";
import hubUtils from "/data-hub/5/impl/hub-utils.mjs";
import DataHubSingleton from "/data-hub/5/datahub-singleton.mjs";
function assertQueryMode() {
if (fn.empty(xdmp.requestTimestamp())) {
throw new Error("Should be a query transaction!");
}
}
assertQueryMode();
const input = external.input;
const endpointConstants = fn.head(xdmp.fromJSON(external.endpointConstants));
const flowName = endpointConstants.flowName;
if (!fn.exists(flowName)) {
httpUtils.throwBadRequest(`Invalid request - must specify a flowName`);
}
const stepNumber = endpointConstants.stepNumber;
const jobId = endpointConstants.jobId;
// These are not just the runtime options that a user can provide. It is expected that this is
// called by the Java ScriptStepRunner class, which has its own logic for combining options.
const options = endpointConstants.options.options || endpointConstants.options;
const datahub = DataHubSingleton.instance({
performanceMetrics: !!options.performanceMetrics
});
const flow = datahub.flow.getFlow(flowName);
const flowStep = flow.steps[stepNumber];
if (!flowStep) {
httpUtils.throwBadRequest(`Could not find step '${stepNumber}' in flow '${flowName}'`);
}
const stepDefinition = datahub.flow.stepDefinition.getStepDefinitionByNameAndType(flowStep.stepDefinitionName, flowStep.stepDefinitionType);
if (!stepDefinition) {
httpUtils.throwBadRequest(`Could not find a step definition with name '${flowStep.stepDefinitionName}' and type '${flowStep.stepDefinitionType}' for step '${stepNumber}' in flow '${flowName}'`);
}
const combinedOptions = flowUtils.makeCombinedOptions(flow, stepDefinition, stepNumber, options);
const content = [];
const decodeData = (data) => {
const decoded = xdmp.multipartDecode("===dataHubIngestion===", data);
const [uri, value] = fn.tail(decoded).toArray();
content.push(hubUtils.documentToContentDescriptor(value, combinedOptions, fn.string(uri)));
};
if (input[Symbol.iterator]) {
for (const data of input) {
decodeData(data.root);
}
} else {
decodeData(input.root);
}
if (options.inputFileType && options.inputFileType.toLowerCase() === "csv") {
options.file = content[0].value.toObject().file;
content.forEach(c => {
c.value = {root: c.value.toObject().content};
});
}
// if no target database is selected, assume the FlowRunner selected the expected DB
options.targetDatabase = options.targetDatabase || xdmp.databaseName(xdmp.database());
datahub.flow.runFlow(flowName, jobId, content, options, stepNumber);
© 2015 - 2024 Weber Informatics LLC | Privacy Policy