gpt4 book ai didi

java - 以编程方式批量导入 LDIF

转载 作者:行者123 更新时间:2023-11-30 04:04:17 25 4
gpt4 key购买 nike

我希望能够从 LDIF 文件批量导入到 LDAP 服务器。我有一个使用 UnboundID LDAP SDK 的工作实现(如下)。这样做的问题是它循环遍历 LDIF 中的每个条目,对于大文件(数百万个条目)来说速度会非常慢。是否有可用于高速导入的工具/SDK?我需要能够以编程方式实现这一点(最好是java)。

public static void importLdif(){
try{
LDAPConnection connection = new LDAPConnection("ldapserver.com", 389,
"uid=admin,ou=system", "secret");
LDIFReader ldifReader = new LDIFReader("C:/Users/ejamcud/Desktop/LDAP/ldifs/Sailors.ldif");

int entriesRead = 0;
int entriesAdded = 0;
int errorsEncountered = 0;
Entry entry;
LDAPResult addResult;
while (true)
{
try
{
entry = ldifReader.readEntry();
if (entry == null)
{
System.out.println("All entries have been read.");
break;
}

entriesRead++;
}
catch (LDIFException le)
{
errorsEncountered++;
if (le.mayContinueReading())
{
// A recoverable error occurred while attempting to read a change
// record, at or near line number le.getLineNumber()
// The entry will be skipped, but we'll try to keep reading from the
// LDIF file.
continue;
}
else
{
// An unrecoverable error occurred while attempting to read an entry
// at or near line number le.getLineNumber()
// No further LDIF processing will be performed.
break;
}
}
catch (IOException ioe)
{
// An I/O error occurred while attempting to read from the LDIF file.
// No further LDIF processing will be performed.
errorsEncountered++;
break;
}

try
{
addResult = connection.add(entry);
// If we got here, then the change should have been processed
// successfully.
System.out.println(entry.toLDIFString());

entriesAdded++;
}
catch (LDAPException le)
{
// If we got here, then the change attempt failed.
le.printStackTrace();
addResult = le.toLDAPResult();
errorsEncountered++;
}
}

}catch(IOException ioe){
ioe.printStackTrace();
}
catch(LDAPException lde){
lde.printStackTrace();
}finally{
//ldifReader.close();
}
}

最佳答案

这实际上取决于您正在使用的目录服务器。某些服务器在某些条件下提供批量添加支持,因此您可能需要了解您正在使用的服务器是否属于这种情况。但如果您想要标准 LDAP 的东西,那么最好的选择是使用多个线程来并行化向服务器添加条目的过程。

如果您要添加的条目的所有父条目都已存在(即,您不添加层次结构,而仅添加叶条目),那么使用 UnboundID LDAP SDK 跨节点并行化该过程将非常简单多线程。 LDIF 读取器已经支持使用多个线程来并行读取和解码 LDIF 记录的过程(使用允许您指定解析线程数的 LDIFReader 构造函数),并且您可以将其与执行 LDAP 添加的 LDIFReaderEntryTranslator 结合使用已读取的条目的名称。

如果您需要添加具有层次结构的数据,那么并行化该过程会更加复杂,因为在添加其父级之前您无法添加子级。但是,您仍然可以通过跟踪当前添加的条目并使用某种锁定机制来实现相当好的并行性,以便在添加完父项之前无法添加子项。这可能不会像不需要任何锁定那样快,但您仍然可以在不同的子树中并行添加。

关于java - 以编程方式批量导入 LDIF,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21141106/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com