user3822347
user3822347

Reputation: 81

Data does not get written to tickerplant unless I stop the Java process

I'm trying to write some data to tickerplant using the code below:

connection.ks(new Object[]{".u.upd", table, data});
LOG.info("Cycle {} for {} table completed", counter, table);
counter++;

I can see the log output, but when I check the database table the data is not there. If I kill the java process, the data in the last "cycle" will be inserted.

If I use the method .k instead of .ks it will just block.

Upvotes: 0

Views: 85

Answers (0)

Related Questions