Denis

Results 13 comments of Denis

@vmg Hi! Sorry for the ping. Your lib is getting quite popular and we are starting to use it. This is a critical feature for us, as we also have...

Hi! Sorry for the late reply. In the current opts implementation you can pass any valid clickhouse option and it will be proxied to all the requests. Consider adding &async_insert=1...

Hi! When you join like that, You will be having rows for a struct like this ``` type DomainType struct { Id string `json:"id"` Domain string `json:"domain"` Date time.Time `json:"date"`...

Currently, the driver supports only one host in the connection string. To connect to different clickhouse instances and spread the load you can put a clickhouse load balancer https://github.com/ContentSquare/chproxy between...

Unfortunately not. You need define the orm wrapper as it is done in postgres https://github.com/beego/beego/blob/develop/client/orm/db_postgres.go

Hi @chobostar can you check if the problem stays on a newer version 1.5.0

Hi! Indeed a good idea to work on the driver so it will cut the \0\0\0. PR is welcome

This driver uses the http clickhouse api. To insert batches you can use Begin -> Prepare -> Exec -> Commit syntax. And you can read the file line by line....

Thanks for the response. That's definitely a way to go and we have implemented this wrapper internally. Just a question, but are there any possibilities to write a Marshaler/Unmarshaler, for...

Great explanation, thanks. The main problem we are trying to solve is actually to avoid the creation of these wrapper types, as you need to proxy all the methods of...