aadant

Results 115 comments of aadant

@BorisTyshkevich RMT should be the default and we plan to enable overrides for the engine. > CollapsingMergeTree (and VersionedCollapsingMergeTree) was invented in Clickhouse to solve exactly that scenario. we can...

In order to initialize large databases, you may need to take a snapshot from MySQL and restore it to CH. This project has all the tooling to do it

@AdamKatzDev see the discussion here https://github.com/Altinity/clickhouse-sink-connector/discussions/180 @subkanthi this should be documented because it is one of the strength of this project ! You can take a consistent snapshot using mysqlshell...

``` I've also tried to spin the docker image. Looks like it does not respect JAVA_OPTS env. I had to override entrypoint to this: java -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=*:5005 $JAVA_OPTS -jar /app.jar /config.yml...

@AdamKatzDev maybe it will work better with more memory ? You can now set the memory (see the fix)

@jgould22 is it a MySQL setup ? for relatively large tables, it is recommended to take the initial dump (we have the tooling in this project) then start replication from...

@jgould22 : you would need to dump the MySQL data using https://github.com/Altinity/clickhouse-sink-connector/blob/develop/sink-connector/python/db_dump/mysql_dumper.py to load the consistent dump, you can use this https://github.com/Altinity/clickhouse-sink-connector/blob/develop/sink-connector/python/db_load/clickhouse_loader.py The sink connector lets you start at the...

Thank you for your feedback. It might be a sweble issue. I will raise another issue for the missing hyphen in Andalousie

Hey Marcus, I was looking at this project : https://github.com/attardi/wikiextractor/issues/32#issuecomment-136178794 Looks like you will also need to support Modules (and Lua !). Fortunately there are Java implementations of Lua. So...

@BorisTyshkevich why not ReplicatedMergeTree the offset table ?