我正在尝试使用 MLCP 将 100 万个文档从一个数据库复制到另一个数据库,但我遇到了异常。
19/08/30 11:48:08 ERROR contentpump.DatabaseContentReader: RuntimeException reading /integration/test/88398921012548 :java.lang.RuntimeException: Could not buffer value as string
我不确定这个异常(exception)的原因。
请指导我了解原因。
MLCP 包含我使用的所有选项
mlcp copy -mode local -input_host 192.168.1.46 -input_port 9000 -input_username admin -input_password admin -input_database test -output_host localhost -output_port 8000 -output_username admin -output_password admin -output_database test
最佳答案
MLCP 倾向于并行运行多个线程,但这可能会导致源或目标系统耗尽资源。此外,您在与目标数据库相同的主机上运行 MLCP,它们也可能会争夺资源。如果您使用 -thread_count 1
降低 MLCP 的速度,最好看看会发生什么。从那里你可以再次扩大规模。
还要注意 MLCP 内存消耗,您可能需要使用 JVM_OPTS 为其提供更多内存。另见:https://stackoverflow.com/a/54685758/918496
哼!
关于marklogic - 使用 MLCP 复制数据时出现异常,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/57721535/