2014-10-05 59 views
3

我非常需要一些关于我在用Java构建的Neo4j非托管扩展中遇到的问题的建议。我创建了一个非常简单的代码示例,突出了我的问题。其基本前提是,我想对Neo4j的服务器设置的Neo4j非托管扩展和GuardTimeoutException

org.neo4j.server.webserver.limit.executiontime

的时间为用户查询一个合理的量(可以说2分钟)它们是通过Cypher,其他端点等进入的。但是我也有一些批处理作业需要通过这个非托管扩展来运行,因此我试图将它们分解为几分钟的事务处理。我看到的问题是,即使我的每个交易是< 2分钟,一旦我的流程运行了2分钟,我就会收到GuardTimeoutException。

下面是示例。在本示例中,我将时间限制为2000毫秒,所以它不需要我整天进行调试。 (越来越可怕接近虽然!)

端点

/** 
* Sample endpoint. 
@GET 
@Path("test") 
@Produces(MediaType.APPLICATION_JSON) 
public Response test(@Context GraphDatabaseService service) { 
    TestFile.test(service); 
    return Response.ok().build(); 
} 

逻辑

public static void test(final GraphDatabaseService service) { 
    for (int i = 0; i < 100000; i++) { 
     try (Transaction tx = service.beginTx();) { 
      final Node n = service.createNode(); 
      n.addLabel(testLabel); 
      tx.success(); 
      tx.close(); 
     } 
     System.out.println("Added node"); 
    } 
} 

我可以看到,每次交易只需要几分之一秒,因为我在大约200个节点加载成功之前时间到。在击中端点虽然具体的2秒,我得到如下:

org.neo4j.kernel.guard.GuardTimeoutException: timeout occured (overtime=1) 
at org.neo4j.kernel.guard.Guard$Timeout.check(Guard.java:132) 
at org.neo4j.kernel.guard.Guard.check(Guard.java:43) 
at org.neo4j.kernel.InternalAbstractGraphDatabase$5.createNode(InternalAbstractGraphDatabase.java:794) 
at org.neo4j.kernel.impl.api.state.OldTxStateBridgeImpl.nodeCreate(OldTxStateBridgeImpl.java:120) 
at org.neo4j.kernel.impl.api.state.TxStateImpl.nodeDoCreate(TxStateImpl.java:366) 
at org.neo4j.kernel.impl.api.StateHandlingStatementOperations.nodeCreate(StateHandlingStatementOperations.java:99) 
at org.neo4j.kernel.impl.api.ConstraintEnforcingEntityOperations.nodeCreate(ConstraintEnforcingEntityOperations.java:390) 
at org.neo4j.kernel.impl.api.LockingStatementOperations.nodeCreate(LockingStatementOperations.java:207) 
at org.neo4j.kernel.impl.api.OperationsFacade.nodeCreate(OperationsFacade.java:506) 
at org.neo4j.kernel.InternalAbstractGraphDatabase.createNode(InternalAbstractGraphDatabase.java:1120) 
at **TestFile.test(TestFile.java:15) 
at **test(Jobs.java:48) 
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) 
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) 
at java.lang.reflect.Method.invoke(Method.java:606) 
at com.sun.jersey.spi.container.JavaMethodInvokerFactory$1.invoke(JavaMethodInvokerFactory.java:60) 
at com.sun.jersey.server.impl.model.method.dispatch.AbstractResourceMethodDispatchProvider$ResponseOutInvoker._dispatch(AbstractResourceMethodDispatchProvider.java:205) 
at com.sun.jersey.server.impl.model.method.dispatch.ResourceJavaMethodDispatcher.dispatch(ResourceJavaMethodDispatcher.java:75) 
at org.neo4j.server.rest.transactional.TransactionalRequestDispatcher.dispatch(TransactionalRequestDispatcher.java:139) 
at com.sun.jersey.server.impl.uri.rules.HttpMethodRule.accept(HttpMethodRule.java:288) 
at com.sun.jersey.server.impl.uri.rules.RightHandPathRule.accept(RightHandPathRule.java:147) 
at com.sun.jersey.server.impl.uri.rules.ResourceClassRule.accept(ResourceClassRule.java:108) 
at com.sun.jersey.server.impl.uri.rules.RightHandPathRule.accept(RightHandPathRule.java:147) 
at com.sun.jersey.server.impl.uri.rules.RootResourceClassesRule.accept(RootResourceClassesRule.java:84) 
at com.sun.jersey.server.impl.application.WebApplicationImpl._handleRequest(WebApplicationImpl.java:1469) 
at com.sun.jersey.server.impl.application.WebApplicationImpl._handleRequest(WebApplicationImpl.java:1400) 
at com.sun.jersey.server.impl.application.WebApplicationImpl.handleRequest(WebApplicationImpl.java:1349) 
at com.sun.jersey.server.impl.application.WebApplicationImpl.handleRequest(WebApplicationImpl.java:1339) 
at com.sun.jersey.spi.container.servlet.WebComponent.service(WebComponent.java:416) 
at com.sun.jersey.spi.container.servlet.ServletContainer.service(ServletContainer.java:537) 
at com.sun.jersey.spi.container.servlet.ServletContainer.service(ServletContainer.java:699) 
at javax.servlet.http.HttpServlet.service(HttpServlet.java:848) 
at org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:698) 
at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1506) 
at org.neo4j.server.guard.GuardingRequestFilter.doFilter(GuardingRequestFilter.java:68) 
at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1477) 
at org.neo4j.server.guard.GuardingRequestFilter.doFilter(GuardingRequestFilter.java:68) 
at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1477) 
at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:503) 
at org.eclipse.jetty.server.session.SessionHandler.doHandle(SessionHandler.java:211) 
at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1096) 
at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:432) 
at org.eclipse.jetty.server.session.SessionHandler.doScope(SessionHandler.java:175) 
at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1030) 
at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:136) 
at org.eclipse.jetty.server.handler.HandlerList.handle(HandlerList.java:52) 
at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:97) 
at org.eclipse.jetty.server.Server.handle(Server.java:445) 
at org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:268) 
at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:229) 
at org.eclipse.jetty.io.AbstractConnection$ReadCallback.run(AbstractConnection.java:358) 
at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:601) 
at org.eclipse.jetty.util.thread.QueuedThreadPool$3.run(QueuedThreadPool.java:532) 
at java.lang.Thread.run(Thread.java:744) 

正如你可以看到我已经试过tx.success(),tx.close(),任何我能想到的,以使所有的交易完成后就会死亡。任何建议非常感谢!

更新-------------

迈克尔 - 我跟了你建议的步骤 - 我有一个扩展SPIPluginLifecycle一个新的Java类,并还增加了新的配置文件in/src/main/resources/META-INF/services。我可以看到这个文件最终在META-INF/services中的/ plugins中的jar中。但是,我没有看到这个初始化类被调用。下面是我在启动时看到的课程和日志。

public class GraphInitializer implements SPIPluginLifecycle { 
private WebServer webServer; 

@Override 
public Collection<Injectable<?>> start(final GraphDatabaseService graphDatabaseService, final Configuration config) { 
    throw new IllegalAccessError(); 
} 

@Override 
public void stop() { 

} 

@Override 
public Collection<Injectable<?>> start(final NeoServer neoServer) { 
    System.out.println("K starting!"); 
    webServer = getWebServer(neoServer); 
    final Database database = neoServer.getDatabase(); 
    final GraphDatabaseAPI graphDatabaseAPI = database.getGraph(); 
    final Guard guard = graphDatabaseAPI.getDependencyResolver().resolveDependency(Guard.class); 
    final Filter filter = new GuardingRequestFilter(guard, 3000); 
    webServer.addFilter(filter, "/*"); 
    return null; 
} 

private WebServer getWebServer(final NeoServer neoServer) { 
    if (neoServer instanceof AbstractNeoServer) { 
     return ((AbstractNeoServer) neoServer).getWebServer(); 
    } 
    throw new IllegalArgumentException("expected AbstractNeoServer"); 
} 

日志:

2014-10-06 16:14:23.009+0000 INFO [API] Mounted discovery module at [/] 
2014-10-06 16:14:23.014+0000 INFO [API] Mounted REST API at [/db/data/] 
2014-10-06 16:14:23.017+0000 INFO [API] Mounted management API at [/db/manage/] 
2014-10-06 16:14:23.017+0000 INFO [API] Mounted third-party JAX-RS package [***] at [/kristen] 
2014-10-06 16:14:23.017+0000 INFO [API] Mounted webadmin at [/webadmin] 
2014-10-06 16:14:23.017+0000 INFO [API] Mounted Neo4j Browser at [/browser] 
2014-10-06 16:14:23.070+0000 INFO [API] Mounting static content at [/webadmin] from [webadmin-html] 
2014-10-06 16:14:23.124+0000 INFO [API] Mounting static content at [/browser] from [browser] 
12:14:23.126 [main] WARN o.e.j.server.handler.ContextHandler - [email protected]{/,null,null} contextPath ends with/
12:14:23.127 [main] WARN o.e.j.server.handler.ContextHandler - Empty contextPath 
12:14:23.131 [main] INFO org.eclipse.jetty.server.Server - jetty-9.0.5.v20130815 
12:14:23.155 [main] INFO o.e.j.server.handler.ContextHandler - Started [email protected]{/,null,AVAILABLE} 
12:14:23.245 [main] INFO o.e.j.w.StandardDescriptorProcessor - NO JSP Support for /webadmin, did not find org.apache.jasper.servlet.JspServlet 
12:14:23.255 [main] INFO o.e.j.server.handler.ContextHandler - Started [email protected]{/webadmin,jar:file:/usr/local/Cellar/neo4j/2.1.3/libexec/system/lib/neo4j-server-2.1.3-static-web.jar!/webadmin-html,AVAILABLE} 
12:14:23.668 [main] INFO o.e.j.server.handler.ContextHandler - Started [email protected]{/kristen,null,AVAILABLE} 
12:14:23.817 [main] INFO o.e.j.server.handler.ContextHandler - Started [email protected]{/db/manage,null,AVAILABLE} 
12:14:24.003 [main] INFO o.e.j.server.handler.ContextHandler - Started [email protected]{/db/data,null,AVAILABLE} 
12:14:24.021 [main] INFO o.e.j.w.StandardDescriptorProcessor - NO JSP Support for /browser, did not find org.apache.jasper.servlet.JspServlet 
12:14:24.022 [main] INFO o.e.j.server.handler.ContextHandler - Started [email protected]{/browser,jar:file:/usr/local/Cellar/neo4j/2.1.3/libexec/system/lib/neo4j-browser-2.1.3.jar!/browser,AVAILABLE} 
12:14:24.103 [main] INFO o.e.j.server.handler.ContextHandler - Started [email protected]{/,null,AVAILABLE} 
12:14:24.115 [main] INFO o.e.jetty.server.ServerConnector - Started [email protected]{HTTP/1.1}{localhost:7474} 
12:14:24.503 [main] INFO o.e.jetty.server.ServerConnector - Started [email protected]{SSL-HTTP/1.1}{localhost:7473} 
2014-10-06 16:14:24.503+0000 INFO [API] Server started on: http://localhost:7474/ 
2014-10-06 16:14:24.504+0000 INFO [API] Remote interface ready and available at [http://localhost:7474/] 

我期待一个新行条目或东西 - 也是我的变化增加超时不实际工作,所以我敢肯定,这些变化没有采取影响。有什么额外的我必须添加到neo4j-server.properties,neo4j.properties等?我已经成功添加了设置非托管扩展的行。

谢谢!

回答

1

小事务使它变慢,因为每个事务都必须刷新到磁盘。 通常在一个tx中加起来多达50k个节点是有意义的,这应该少于一秒。

对于你的防护过滤器,它只是一个servlet过滤器,所以你也可以只检查Neo4j源代码的安装位置,并在你的扩展的init中自己安装它,但超过你想要批处理的端点。

在:org.neo4j.server.AbstractNeoServer线488

Filter filter = new GuardingRequestFilter(guard, 
      getConfiguration().getInt(Configurator.WEBSERVER_LIMIT_EXECUTION_TIME_PROPERTY_KEY)); 
    webServer.addFilter(filter, "/*"); 

您可以使用扩展初始化器添加自定义过滤器就像如下所示:

https://github.com/neo4j-contrib/authentication-extension/blob/2.1/src/main/java/org/neo4j/server/extension/auth/AuthenticationExtensionInitializer.java#L81

必须添加一个文件,这样它包含您的初始化程序类名称:

https://github.com/neo4j-contrib/authentication-extension/blob/2.1/src/main/resources/META-INF/services/org.neo4j.server.plugins.PluginLifecycle

+0

谢谢迈克尔,我会给这个配置了一枪,后后续对我的结果! – 2014-10-06 02:39:53

+0

我遵循了你建议的步骤 - 我有一个新的java类,它扩展了SPIPluginLifecycle,并且还在/ src/main/resources/META-INF/services中添加了新的配置文件。但是,我没有看到这个初始化类被调用。下面是我在启动时看到的日志。 – 2014-10-06 16:17:02

+0

在上面的问题中,查看更多的细节和我的结果! – 2014-10-06 16:23:32

0

解决方案发布者Michael Hunger完美地工作,并带着我自己的一些学习要点。

  1. 我不得不在neo4j-server.properties的org.neo4j.server.thirdparty_jaxrs_classes属性更新更根目录下,因为我没有把我的初始化在同一目录作为我的API的Java文件。
  2. start()方法必须返回一个空集合。
  3. 我能够使用几种不同的过滤器来为不同的端点指定时间限制。
下面

最终代码:

@Override 
public Collection<Injectable<?>> start(final NeoServer neoServer) { 
    webServer = getWebServer(neoServer); 
    final Database database = neoServer.getDatabase(); 
    final GraphDatabaseAPI graphDatabaseAPI = database.getGraph(); 
    final Guard guard = graphDatabaseAPI.getDependencyResolver().resolveDependency(Guard.class); 
    final Filter filter = new GuardingRequestFilter(guard, 600); 
    webServer.addFilter(filter, "/*"); 
    final Filter filter2 = new GuardingRequestFilter(guard, 3000); 
    webServer.addFilter(filter2, "*/batch"); 
    return Collections.emptyList(); 
}