Simon Shanks

Results 27 comments of Simon Shanks

kdb+ server ``` q -p 1234 q)t:([]a:("ab";"cd";(::))); ``` client program ```c #include #include "k.h" int main(int argc,char** argv){ K table,columns,values,col1; int x=0; int handle=khp("localhost", 1234); if(handlet!=XT){ printf("Not a table\n"); return...

this might be the related change that caused the issue https://github.com/eclipse-paho/paho.mqtt.c/commit/1b431761e41236b3159876a314061f3e2ec27254 would be helpful change was reverted (or a potentially older version to improve deployment support) & if it wasnt...

Pre-built binaries are extremely useful (e.g. wanting to test an mqtt installation with paho). Not everyone has the ability to install development tools, or just want to quickly try it...

Would prefer if it built with ubuntu-20.04 (GLIBC 2.31) to give the wider range of support rather than ubuntu-latest. Also given that latest could change at any point. If using...

This doc may be of relevance - https://github.com/confluentinc/librdkafka/wiki/FAQ ( section: https://github.com/confluentinc/librdkafka/wiki/FAQ#why-committing-each-message-is-slow ). If you pay for Kafka support (e.g. via Confluent) they be of additional help in debugging/advising.

enable.auto.commit=true batch commits messages synchronously on a timer - so the consumer will wait till commits done. As its not doing async (depending on your app/design) it'll have much less...