带有自定义转换模块的MLCP导入



无法使用自定义转换模块选项导入文档。

我正在尝试通过mlcp导入,作为SSL上的渐变任务。当我尝试运行任务时,它正在成功构建,但没有导入任何模块。

代码:

task DeployPatterns(type: com.marklogic.gradle.task.MlcpTask) {
classpath = configurations.mlcp
command = "IMPORT"
ssl = true
port = project.mlRestPort.toInteger()
database = mlAppConfig.contentDatabaseName
input_file_type = "documents"
document_type = "xml"
input_file_path = "data/patterns/"
transform_param = "template temp"
transform_module = "/ext/mlcp/transform.xqy"
transform_namespace = "http://transform-test"
output_collections = "config, patterns"
output_permissions = "rest-reader,read,rest-writer,update"
output_uri_replace = ".*data/,'/'"

}

任务已成功运行,但未执行任何导入
MarkLogic-8.0.6-6
Gradle-3.9.0
mlcp-9.0.5

使用mlcp时,提供与MarkLogicServer交互的用户的名称。如果用户没有管理员权限,则用户必须至少具有以下的权限

  • 导入-hadoop用户写入
  • export-hadoop用户读取
  • copy-hadoop用户读取(输入(,hadoop使用者写入(输出(

相关内容

  • 没有找到相关文章

最新更新