Vlad Ilyushchenko

Results 114 comments of Vlad Ilyushchenko

this is embedded use-case I am assuming ? Could you share the inserting code ?

cool, what is table structure ? Reason I ask is that `row.put*` calls do not do any checked as to value vs column types. It is hugely important not to...

when first column is the timestamp you should populate columns starting with 1, e.g. ```java final Iterator batchIt = batches.iterator(); try (TableWriter writer = engine.getWriter(ctx.getCairoSecurityContext(), tableName, Thread.currentThread().getName())) { while (batchIt.hasNext())...

oh, I should have read this more intently: >When I insert with batch insert(2000 rows each commit)with 3 threads ,after insert about 850000 rows,there is an error ,then exit. Could...

I'm going to link issues together, since they stem from the same use-case: https://github.com/questdb/questdb/issues/2204 https://github.com/questdb/questdb/issues/2203

It would most certainly help of you could share your publishing code unredacted. 6.4 ingests data over 1000s of instances with no problem. It would make sense to try to...

This is the sign of corrupt table. Please, provide publishing code - the issue is there

yes, please Also, `TableWriter` instances are not thread-safe. Just in case you're sharing instance across threads

thanks, so these are the fields on the table, please notice types (i'm skipping `time` field 0 here): ``` host symbol, cluster symbol, tesk symbol, timeMs long, exchTimeMs long, order...