I am testing the groupby code in an older version of Druid 0.9.0. I have data using the following schema
'timestamp': long(time.time() * 1000),
'name': 'query/time',
'host': '192.168.' + str(random.randrange(1, 254)) + '.' + str(random.randrange(1, 254)),
'page': str(int(max(1, random.gauss(5, 4)))) + '.html',
'value': max(0, int(random.gauss(200, 80)))
I am running the following groupby query: (datasource, granularity="all", intervals=<variable>, dimensions="host", aggregations={"count": doublesum("count")}). I do not have filters and any other thing.
broker-0.log:java.io.IOException: Too many open files
broker-0.log- at sun.nio.ch.ServerSocketChannelImpl.accept0(Native Method) ~[?:?]
broker-0.log- at sun.nio.ch.ServerSocketChannelImpl.accept(ServerSocketChannelImpl.java:250)
~[?:?]
broker-0.log- at org.eclipse.jetty.server.ServerConnector.accept(ServerConnector.java:377) ~[
jetty-server-9.2.5.v20141112.jar:9.2.5.v20141112]
broker-0.log- at org.eclipse.jetty.server.AbstractConnector$Acceptor.run(AbstractConnector.ja
va:500) [jetty-server-9.2.5.v20141112.jar:9.2.5.v20141112]
broker-0.log- at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:
620) [jetty-util-9.2.5.v20141112.jar:9.2.5.v20141112]
broker-0.log- at org.eclipse.jetty.util.thread.QueuedThreadPool$3.run(QueuedThreadPool.java:5
40) [jetty-util-9.2.5.v20141112.jar:9.2.5.v20141112]
broker-0.log- at java.lang.Thread.run(Thread.java:745) [?:?]
broker-0.log-2017-05-05 02:51:49,349 WARN o.e.j.s.ServerConnector [qtp996440505-159-acceptor-1@
broker-0.log:java.io.IOException: Too many open files
broker-0.log- at sun.nio.ch.ServerSocketChannelImpl.accept0(Native Method) ~[?:?]
broker-0.log- at sun.nio.ch.ServerSocketChannelImpl.accept(ServerSocketChannelImpl.java:250)
~[?:?]
broker-0.log- at org.eclipse.jetty.server.ServerConnector.accept(ServerConnector.java:377) ~[
jetty-server-9.2.5.v20141112.jar:9.2.5.v20141112]
broker-0.log- at org.eclipse.jetty.server.AbstractConnector$Acceptor.run(AbstractConnector.ja
va:500) [jetty-server-9.2.5.v20141112.jar:9.2.5.v20141112]
broker-0.log- at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:
620) [jetty-util-9.2.5.v20141112.jar:9.2.5.v20141112]
broker-0.log- at org.eclipse.jetty.util.thread.QueuedThreadPool$3.run(QueuedThreadPool.java:5
40) [jetty-util-9.2.5.v20141112.jar:9.2.5.v20141112]
broker-0.log- at java.lang.Thread.run(Thread.java:745) [?:?]
Thanks and Regards,
Mainak