-
I've been playing around with simple log change processors to make sure the updates come through, and the same code seems to work fine in the gremlin console but not when I use it in our java service. The main difference I noticed is that when adding a processor in the console I get these info logs with an accurate time:
but then in java, I am seeing start times for different days of Jan 1970. I've tried both
I've tried using different graph.timestamps config values with no luck. And the console is using the same config file, so all other config values would be the same. If anyone has ideas for why the java service might end up with the wrong date I'd appreciate it! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
It ended up being that I was using a log processor identifier without understanding what that does. The first time I used it combined with |
Beta Was this translation helpful? Give feedback.
It ended up being that I was using a log processor identifier without understanding what that does. The first time I used it combined with
.setStartTimeNow()
which seems to actually set timestamp to zero. And then I kept using the same identifier, so it was picking up where it left off reading.