Spring Data Mongodb上的性能问题

Jér*_*mie 5 java performance spring mongodb spring-data-mongodb

我在spring数据mongodb上遇到了一个问题,在一个方法中,我请求一个简单的"查找"来检索~1000个文档.

我的春天数据代码在这里:

Query myquery = query(where("ipp").is(ipp).and(CODE_MESURE).in(codes).and(DATE_MESURE).gte(iDateDebut).lt(iDateFin));
return template.find(myquery, MessageMongo.class);
Run Code Online (Sandbox Code Playgroud)

使用JProfiler,我在MongoTemplate类的"find"方法中得到了~1/2秒.注意:对MongoDB的请求不是问题,执行时间不到20ms. 在此输入图像描述

但是如果尝试通过传统方式使用mongo java驱动程序请求相同的查询:

final DBCollection collection = template.getCollection(Constantes.MONGO_COLLECTION_MESSAGES_PARAMETRES_VITAUX);
 final DBCursor cursor = collection.find(myquery.getQueryObject());
final List<MessageMongo> tab = new ArrayList<>();
 while (cursor.hasNext()) {
  final DBObject d = cursor.next();
  tab.add(new MessageMongo((String) d.get("origine"), (String) d.get("appareil"),
      (String) d.get("chambre"), (String) d.get("lit"), (String) d.get("uf"), (String) d.get("ipp"),
      (String) d.get("domaineIpp"), (String) d.get("iep"), (String) d.get("domaineIep"), (String) d.get("ej"),
      ((Date) d.get("dateReception")).toInstant(), (String) d.get("codeMesure"),
      (String) d.get("uniteMesure"), (Double) d.get("valeurMesure"), ((Date) d.get("dateMesure")).toInstant()));
 }
return tab;
Run Code Online (Sandbox Code Playgroud)

我的方法在~140ms内执行(比mongoTemplate样式快10倍!) 在此输入图像描述 是否有Spring Data Mongo中的错误,或者我错过了配置的内容?我更喜欢写,更容易阅读,但性能很差:'(

Document类:

@Document(collection = Constantes.MONGO_COLLECTION_MESSAGES_PARAMETRES_VITAUX)
public class MessageMongo implements MessageModel {
  @Id
  private String id;
  private final String origine;
  private final String appareil;
  private final String chambre;
  private final String lit;
  private final String uf;
  @Indexed
  private final String ipp;
  private final String domaineIpp;
  private final String iep;
  private final String domaineIep;
  private final String ej;
  private final Instant dateReception;
  @Indexed
  private final String codeMesure;
  private final String uniteMesure;
  private final Double valeurMesure;
  @Indexed
  private final Instant dateMesure;
. . .
Run Code Online (Sandbox Code Playgroud)

编辑:1,67sec如果我用MongoRepository与命名方法:

public List<MessageMongo> findByIppAndCodeMesureInAndDateMesureBetween(final String ipp, final List<String> codesMesure, final Instant from, final Instant to);
Run Code Online (Sandbox Code Playgroud)

在此输入图像描述

EDIT2:弹簧数据的日志:

2017/12/04 15:44:59,455 INFO  [nio-8180-exec-4] fr.sib.sillage.biometrie.service.impl.MongoMessageService    : findByIppAndCodesBetweenDate ipp=102828799, codes=[147842], dateDebut=2017-12-02T13:46:59,dateFin=2017-12-03T01:46:59  
2017/12/04 15:44:59,482 DEBUG [nio-8180-exec-4] o.s.data.mongodb.repository.query.MongoQueryCreator          : Created query Query: { "ipp" : "102828799", "codeMesure" : { "$in" : [ "147842"]}, "dateMesure" : { "$gt" : { $java : 2017-12-02T12:46:59Z }, "$lt" : { $java : 2017-12-03T00:46:59Z } } }, Fields: null, Sort: null
2017/12/04 15:44:59,517 DEBUG [nio-8180-exec-4] org.springframework.data.mongodb.core.MongoTemplate          : find using query: { "ipp" : "102828799" , "codeMesure" : { "$in" : [ "147842"]} , "dateMesure" : { "$gt" : { "$date" : "2017-12-02T12:46:59.000Z"} , "$lt" : { "$date" : "2017-12-03T00:46:59.000Z"}}} fields: null for class: class fr.sib.sillage.biometrie.model.MessageMongo in collection: parametresVitaux
2017/12/04 15:44:59,517 DEBUG [nio-8180-exec-4] org.springframework.data.mongodb.core.MongoDbUtils           : Getting Mongo Database name=[LilleNoSQLDatabase]
2017/12/04 15:44:59,567 INFO  [nio-8180-exec-4] org.mongodb.driver.connection                                : Opened connection [connectionId{localValue:6, serverValue:3003}] to hades:27017
2017/12/04 15:44:59,567 DEBUG [nio-8180-exec-4] org.mongodb.driver.protocol.command                          : Sending command {find : BsonString{value='parametresVitaux'}} to database LilleNoSQLDatabase on connection [connectionId{localValue:6, serverValue:3003}] to server hades:27017
2017/12/04 15:44:59,592 DEBUG [nio-8180-exec-4] org.mongodb.driver.protocol.command                          : Command execution completed
2017/12/04 15:44:59,796 DEBUG [nio-8180-exec-4] org.mongodb.driver.protocol.command                          : Sending command {getMore : BsonInt64{value=63695089133}} to database LilleNoSQLDatabase on connection [connectionId{localValue:5, serverValue:3004}] to server hades:27017
2017/12/04 15:44:59,862 DEBUG [nio-8180-exec-4] org.mongodb.driver.protocol.command                          : Command execution completed
2017/12/04 15:45:01,213 INFO  [nio-8180-exec-4] fr.sib.sillage.biometrie.service.impl.MongoMessageService    : findByIppAndCodesBetweenDate size=1281
Run Code Online (Sandbox Code Playgroud)

编辑3:我在JProfiler的全视图中使用org.springframework扩展了调用树,所以我可以查看Spring Data MongoDB的错误,这里大部分时间都是: 在此输入图像描述 2,5-秒总

  • 1,290次调用
    org.springframework.data.convert.DefaultTypeMapper.readType(1,462
    ms)

  • 1,290次调用org.springframework.data.mongodb.core.convert.MappingMongoConverter.read(1,026 ms)

两种方法的组成是什么:第一个readType中的大多数Class.forName(erk!) 在此输入图像描述

而第二次调用MappingMongoConverter.read时则不太清楚 在此输入图像描述

我希望找到问题会更容易.

Joh*_*lph 6

我不确定这是否适用于您的具体情况,但我遇到了非常相似的情况,并且在ClassUtils.forName()和上浪费了很多时间ClassLoader.load()

我已经检查了调试器下的情况,我的情况的根本原因是我试图反序列化文档的类已移至不同的包。在这种情况下,Spring Data 无法正确缓存类型信息,并且会在每个文档的ClassLoader.load()持久_class字段上发出缓慢而昂贵的问题!

当然,这个类加载注定会失败,因为它引用了一个不再存在于存储在_class文档字段中的位置的类。