Hi guys.
This morning I’ve noticed that my dremio coordinator node wasn’t working. It seems that during the weekend my coordinator node ran out of memory, so I restarted the service, and it’s working now. However, when I tried to start the server on the executor node, I got this error:
Mon Feb 25 14:43:27 UTC 2019 Starting dremio on ip-11-10-05-100.ec2.internal
core file size (blocks, -c) 0
data seg size (kbytes, -d) unlimited
scheduling priority (-e) 0
file size (blocks, -f) unlimited
pending signals (-i) 61726
max locked memory (kbytes, -l) 64
max memory size (kbytes, -m) unlimited
open files (-n) 65536
pipe size (512 bytes, -p) 8
POSIX message queues (bytes, -q) 819200
real-time priority (-r) 0
stack size (kbytes, -s) 8192
cpu time (seconds, -t) unlimited
max user processes (-u) 4096
virtual memory (kbytes, -v) unlimited
file locks (-x) unlimited
Dremio is exiting. Failure while starting services.
java.lang.RuntimeException: Failure while attempting to create com.dremio.service.users.SimpleUserService.
at com.dremio.service.BinderImpl$InjectableReference.get(BinderImpl.java:427)
at com.dremio.service.BinderImpl.lookup(BinderImpl.java:109)
at com.dremio.service.BinderImpl$DeferredProvider.get(BinderImpl.java:83)
at com.dremio.exec.server.ContextService.newSabotContext(ContextService.java:225)
at com.dremio.exec.server.ContextService.start(ContextService.java:168)
at com.dremio.service.SingletonRegistry$AbstractServiceReference.start(SingletonRegistry.java:137)
at com.dremio.dac.daemon.NonMasterSingletonRegistry.start(NonMasterSingletonRegistry.java:54)
at com.dremio.dac.daemon.DACDaemon.startServices(DACDaemon.java:183)
at com.dremio.dac.daemon.DACDaemon.init(DACDaemon.java:189)
at com.dremio.dac.daemon.DremioDaemon.main(DremioDaemon.java:102)
Caused by: java.lang.reflect.InvocationTargetException
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
at com.dremio.service.BinderImpl$InjectableReference.get(BinderImpl.java:421)
... 9 more
Caused by: java.lang.NullPointerException: Unknown store creator com.dremio.service.users.SimpleUserService$UserGroupStoreBuilder
at com.google.common.base.Preconditions.checkNotNull(Preconditions.java:864)
at com.dremio.datastore.RemoteKVStoreProvider.getStore(RemoteKVStoreProvider.java:76)
at com.dremio.service.users.SimpleUserService.<init>(SimpleUserService.java:96)
... 14 more
My Coordinator/Master node is working like a charm, but my executor isn’t. Also, I’ve noticed that the db folder is missing from /var/lib/dremio directory. The pdfs and zk folder is also missing.
I’m using Dremio 3.1.0-201901172111160703-dc6f6e5 and using a S3 as my dist storage.
Does anybody know what is going on?