我正在尝试将CSV插入到OrientDB 3.0.6中的图形数据库中。 csv文件包含25000个具有某些属性的文档。 当我尝试运行解析器时,出现此错误:
com.orientechnologies.orient.core.exception.ODatabaseException: Cannot execute the request because an asynchronous operation is in progress. Please use a different connection
DB name="sadosky"
at com.orientechnologies.orient.client.remote.OStorageRemote.baseNetworkOperation(OStorageRemote.java:249)
at com.orientechnologies.orient.client.remote.OStorageRemote.networkOperationRetryTimeout(OStorageRemote.java:214)
at com.orientechnologies.orient.client.remote.OStorageRemote.networkOperation(OStorageRemote.java:243)
这是加载部分数据的脚本。
private void parseEtiquetas() {
try {
ClassLoader classLoader = getClass().getClassLoader();
CSVReader reader = new CSVReader(new FileReader(classLoader.getResource("CETA/CETA_set_de_entrenamiento.csv").getFile()));
reader.skip(1);
String[] docLine;
int i = 0;
Transaction t = sm.getCurrentTransaction();
System.out.println("Leyendo los datos y calculando los TF...");
while ((docLine = reader.readNext()) != null) {
i++;
System.out.println(""+i+"-------------------------------------------------");
System.out.println(" Doc: "+docLine[ID_NORMA]);
// procesar el documento para todas las etiquetas
// System.out.println("" + docsSize + " " + nextLine[ID_NORMA] + " " + nextLine.length);
Documento doc = getDocumento(docLine[ID_NORMA], t);
if (doc != null) {
System.out.println("Etiquetas: " + docLine[ETIQUETAS]);
String[] etiquetas = docLine[ETIQUETAS].split(",");
for (String etiqueta : etiquetas) {
etiqueta = etiqueta.trim();
System.out.println("--->"+etiqueta+"<");
// verificar si existe en la base
Etiqueta e = getEtiqueta(etiqueta, t);
if (e == null) {
System.out.println("Etiqueta nueva: " + etiqueta);
Etiqueta et = new Etiqueta(etiqueta);
e = t.store(et);
} else {
System.out.println("etiqueta.size: "+(e.getDocs()!=null?e.getDocs().size():0));
}
e.addDoc(doc);
t.commit();
}
} else {
System.out.println("ERROR AL PROCESAR ID_NORMA: " + docLine[ID_NORMA]+". EL DOC NO EXISTE!!!");
}
System.out.println("cerrado trasacción...");
System.out.println("cerrada.");
}
} catch (Exception ex) {
ex.printStackTrace();
}
}
private Documento getDocumento(String docId, Transaction t) {
Documento ret = null;
List<Documento> ld = t.query(Documento.class, "select from Documento where id_doc = ?", new Object[]{docId});
if (ld.size() > 0) {
ret = ld.get(0);
}
return ret;
}
SessionManager(sm)是包装到数据库的连接的类。参数是这样的:
sm = new SessionManager("remote:127.0.0.1/sadosky", "root", "toor", 100, 1000)
.setActivationStrategy(SessionManager.ActivationStrategy.CLASS_INSTRUMENTATION, true);
我在Orient 3中找不到问题所在。导入15条记录后,该错误失败。总是15条记录,但不会同时失败。有时,如果提交失败,则查询有时失败。它不清楚,我找不到它。
这段代码可以与OrientDB 2.2.29一起正常工作。
似乎与OrientGraph事务有关。
Transaction类处理与数据库的连接并执行其他一些操作。这是相关的部分:
OrientGraph orientdbTransact;
/**
* Devuelve una transacción ya inicializada contra la base de datos.
*
* @param sm
*/
Transaction(SessionManager sm) {
this.sm = sm;
orientdbTransact = this.sm.getFactory().getTx();
this.objectMapper = this.sm.getObjectMapper();
}
...
}