Skip to content

Commit

Permalink
Merge pull request #69 from idealista/bugs/67
Browse files Browse the repository at this point in the history
Bugs/67
  • Loading branch information
jmonterrubio authored Jan 30, 2024
2 parents 95e1f08 + 12e8ef8 commit 7778d6d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ This project adheres to [Semantic Versioning](http://semver.org/) and [Keep a ch

## [Unreleased](https://github.com/idealista/clickhouse_role/tree/develop)

## [3.4.1(https://github.com/idealista/clickhouse_role/tree/3.4.1 (2024-01-26)

### :hammer_and_wrench: Fixed

- [#67](https://github.com/idealista/clickhouse_role/issues/67) Fix log tables partitioning

## [3.4.0(https://github.com/idealista/clickhouse_role/tree/3.4.0 (2023-11-17)

### :heavy_plus_sign: Added
Expand Down
4 changes: 2 additions & 2 deletions templates/config.xml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -1052,7 +1052,7 @@
<query_thread_log>
<database>{{ clickhouse_tables_log.thread_log.database }}</database>
<table>{{ clickhouse_tables_log.thread_log.table }}</table>
<partition_by>{{ clickhouse_tables_log.thread_log.partition_by }}(event_date)</partition_by>
<partition_by>{{ clickhouse_tables_log.thread_log.partition_by }}</partition_by>
<flush_interval_milliseconds>{{ clickhouse_tables_log.thread_log.flush_interval_milliseconds }}</flush_interval_milliseconds>
{% if clickhouse_tables_log.thread_log.ttl is defined %}
<ttl>{{ clickhouse_tables_log.thread_log.ttl }}</ttl>
Expand All @@ -1076,7 +1076,7 @@
<part_log>
<database>{{ clickhouse_tables_log.part_log.database }}</database>
<table>{{ clickhouse_tables_log.part_log.table }}</table>
<partition_by>{{ clickhouse_tables_log.part_log.partition_by }}(event_date)</partition_by>
<partition_by>{{ clickhouse_tables_log.part_log.partition_by }}</partition_by>
<flush_interval_milliseconds>{{ clickhouse_tables_log.part_log.flush_interval_milliseconds }}</flush_interval_milliseconds>
{% if clickhouse_tables_log.part_log.ttl is defined %}
<ttl>{{ clickhouse_tables_log.part_log.ttl }}</ttl>
Expand Down

0 comments on commit 7778d6d

Please sign in to comment.