Skip to content

fix(eap-spans): Reduce number of buckets we use for attributes#6148

Merged
phacops merged 2 commits into
masterfrom
pierre/eap-spans-reduce-number-of-buckets
Jul 26, 2024
Merged

fix(eap-spans): Reduce number of buckets we use for attributes#6148
phacops merged 2 commits into
masterfrom
pierre/eap-spans-reduce-number-of-buckets

Conversation

@phacops

@phacops phacops commented Jul 26, 2024

Copy link
Copy Markdown
Contributor

After some insertion tests, it turns out we're using too much memory to insert with 200 buckets, so reducing this now.

@phacops phacops requested a review from a team as a code owner July 26, 2024 14:48
@github-actions

Copy link
Copy Markdown

This PR has a migration; here is the generated SQL

-- start migrations

-- forward migration events_analytics_platform : 0001_spans
Local op: CREATE TABLE IF NOT EXISTS eap_spans_local (organization_id UInt64, project_id UInt64, service String CODEC (ZSTD(1)), trace_id UUID, span_id UInt64, parent_span_id UInt64 CODEC (ZSTD(1)), segment_id UInt64 CODEC (ZSTD(1)), segment_name String CODEC (ZSTD(1)), is_segment UInt8 CODEC (T64, ZSTD(1)), _sort_timestamp DateTime CODEC (DoubleDelta, ZSTD(1)), start_timestamp DateTime64(6) CODEC (DoubleDelta, ZSTD(1)), end_timestamp DateTime64(6) CODEC (DoubleDelta, ZSTD(1)), duration_ms UInt32 CODEC (DoubleDelta, ZSTD(1)), exclusive_time_ms Float64 CODEC (ZSTD(1)), retention_days UInt16 CODEC (DoubleDelta, ZSTD(1)), name String CODEC (ZSTD(1)), sampling_factor Float64 CODEC (ZSTD(1)), sampling_weight Float64 CODEC (ZSTD(1)), sign Int8 CODEC (DoubleDelta(1)), attr_str_0 Map(String, String) CODEC (ZSTD(1)), attr_str_1 Map(String, String) CODEC (ZSTD(1)), attr_str_2 Map(String, String) CODEC (ZSTD(1)), attr_str_3 Map(String, String) CODEC (ZSTD(1)), attr_str_4 Map(String, String) CODEC (ZSTD(1)), attr_str_5 Map(String, String) CODEC (ZSTD(1)), attr_str_6 Map(String, String) CODEC (ZSTD(1)), attr_str_7 Map(String, String) CODEC (ZSTD(1)), attr_str_8 Map(String, String) CODEC (ZSTD(1)), attr_str_9 Map(String, String) CODEC (ZSTD(1)), attr_str_10 Map(String, String) CODEC (ZSTD(1)), attr_str_11 Map(String, String) CODEC (ZSTD(1)), attr_str_12 Map(String, String) CODEC (ZSTD(1)), attr_str_13 Map(String, String) CODEC (ZSTD(1)), attr_str_14 Map(String, String) CODEC (ZSTD(1)), attr_str_15 Map(String, String) CODEC (ZSTD(1)), attr_str_16 Map(String, String) CODEC (ZSTD(1)), attr_str_17 Map(String, String) CODEC (ZSTD(1)), attr_str_18 Map(String, String) CODEC (ZSTD(1)), attr_str_19 Map(String, String) CODEC (ZSTD(1)), attr_num_0 Map(String, Float64) CODEC (ZSTD(1)), attr_num_1 Map(String, Float64) CODEC (ZSTD(1)), attr_num_2 Map(String, Float64) CODEC (ZSTD(1)), attr_num_3 Map(String, Float64) CODEC (ZSTD(1)), attr_num_4 Map(String, Float64) CODEC (ZSTD(1)), attr_num_5 Map(String, Float64) CODEC (ZSTD(1)), attr_num_6 Map(String, Float64) CODEC (ZSTD(1)), attr_num_7 Map(String, Float64) CODEC (ZSTD(1)), attr_num_8 Map(String, Float64) CODEC (ZSTD(1)), attr_num_9 Map(String, Float64) CODEC (ZSTD(1)), attr_num_10 Map(String, Float64) CODEC (ZSTD(1)), attr_num_11 Map(String, Float64) CODEC (ZSTD(1)), attr_num_12 Map(String, Float64) CODEC (ZSTD(1)), attr_num_13 Map(String, Float64) CODEC (ZSTD(1)), attr_num_14 Map(String, Float64) CODEC (ZSTD(1)), attr_num_15 Map(String, Float64) CODEC (ZSTD(1)), attr_num_16 Map(String, Float64) CODEC (ZSTD(1)), attr_num_17 Map(String, Float64) CODEC (ZSTD(1)), attr_num_18 Map(String, Float64) CODEC (ZSTD(1)), attr_num_19 Map(String, Float64) CODEC (ZSTD(1))) ENGINE ReplicatedCollapsingMergeTree('/clickhouse/tables/events_analytics_platform/{shard}/default/eap_spans_local', '{replica}', sign) PRIMARY KEY (organization_id, _sort_timestamp, trace_id) ORDER BY (organization_id, _sort_timestamp, trace_id, span_id) PARTITION BY (toMonday(_sort_timestamp)) TTL _sort_timestamp + toIntervalDay(retention_days) SETTINGS index_granularity=8192;
Distributed op: CREATE TABLE IF NOT EXISTS eap_spans_dist (organization_id UInt64, project_id UInt64, service String CODEC (ZSTD(1)), trace_id UUID, span_id UInt64, parent_span_id UInt64 CODEC (ZSTD(1)), segment_id UInt64 CODEC (ZSTD(1)), segment_name String CODEC (ZSTD(1)), is_segment UInt8 CODEC (T64, ZSTD(1)), _sort_timestamp DateTime CODEC (DoubleDelta, ZSTD(1)), start_timestamp DateTime64(6) CODEC (DoubleDelta, ZSTD(1)), end_timestamp DateTime64(6) CODEC (DoubleDelta, ZSTD(1)), duration_ms UInt32 CODEC (DoubleDelta, ZSTD(1)), exclusive_time_ms Float64 CODEC (ZSTD(1)), retention_days UInt16 CODEC (DoubleDelta, ZSTD(1)), name String CODEC (ZSTD(1)), sampling_factor Float64 CODEC (ZSTD(1)), sampling_weight Float64 CODEC (ZSTD(1)), sign Int8 CODEC (DoubleDelta(1)), attr_str_0 Map(String, String) CODEC (ZSTD(1)), attr_str_1 Map(String, String) CODEC (ZSTD(1)), attr_str_2 Map(String, String) CODEC (ZSTD(1)), attr_str_3 Map(String, String) CODEC (ZSTD(1)), attr_str_4 Map(String, String) CODEC (ZSTD(1)), attr_str_5 Map(String, String) CODEC (ZSTD(1)), attr_str_6 Map(String, String) CODEC (ZSTD(1)), attr_str_7 Map(String, String) CODEC (ZSTD(1)), attr_str_8 Map(String, String) CODEC (ZSTD(1)), attr_str_9 Map(String, String) CODEC (ZSTD(1)), attr_str_10 Map(String, String) CODEC (ZSTD(1)), attr_str_11 Map(String, String) CODEC (ZSTD(1)), attr_str_12 Map(String, String) CODEC (ZSTD(1)), attr_str_13 Map(String, String) CODEC (ZSTD(1)), attr_str_14 Map(String, String) CODEC (ZSTD(1)), attr_str_15 Map(String, String) CODEC (ZSTD(1)), attr_str_16 Map(String, String) CODEC (ZSTD(1)), attr_str_17 Map(String, String) CODEC (ZSTD(1)), attr_str_18 Map(String, String) CODEC (ZSTD(1)), attr_str_19 Map(String, String) CODEC (ZSTD(1)), attr_num_0 Map(String, Float64) CODEC (ZSTD(1)), attr_num_1 Map(String, Float64) CODEC (ZSTD(1)), attr_num_2 Map(String, Float64) CODEC (ZSTD(1)), attr_num_3 Map(String, Float64) CODEC (ZSTD(1)), attr_num_4 Map(String, Float64) CODEC (ZSTD(1)), attr_num_5 Map(String, Float64) CODEC (ZSTD(1)), attr_num_6 Map(String, Float64) CODEC (ZSTD(1)), attr_num_7 Map(String, Float64) CODEC (ZSTD(1)), attr_num_8 Map(String, Float64) CODEC (ZSTD(1)), attr_num_9 Map(String, Float64) CODEC (ZSTD(1)), attr_num_10 Map(String, Float64) CODEC (ZSTD(1)), attr_num_11 Map(String, Float64) CODEC (ZSTD(1)), attr_num_12 Map(String, Float64) CODEC (ZSTD(1)), attr_num_13 Map(String, Float64) CODEC (ZSTD(1)), attr_num_14 Map(String, Float64) CODEC (ZSTD(1)), attr_num_15 Map(String, Float64) CODEC (ZSTD(1)), attr_num_16 Map(String, Float64) CODEC (ZSTD(1)), attr_num_17 Map(String, Float64) CODEC (ZSTD(1)), attr_num_18 Map(String, Float64) CODEC (ZSTD(1)), attr_num_19 Map(String, Float64) CODEC (ZSTD(1))) ENGINE Distributed(`cluster_one_sh`, default, eap_spans_local, reinterpretAsUInt128(trace_id));
Local op: ALTER TABLE eap_spans_local ADD INDEX IF NOT EXISTS bf_trace_id trace_id TYPE bloom_filter GRANULARITY 1, ADD INDEX IF NOT EXISTS bf_attr_str_0 mapKeys(attr_str_0) TYPE bloom_filter GRANULARITY 1, ADD INDEX IF NOT EXISTS bf_attr_str_1 mapKeys(attr_str_1) TYPE bloom_filter GRANULARITY 1, ADD INDEX IF NOT EXISTS bf_attr_str_2 mapKeys(attr_str_2) TYPE bloom_filter GRANULARITY 1, ADD INDEX IF NOT EXISTS bf_attr_str_3 mapKeys(attr_str_3) TYPE bloom_filter GRANULARITY 1, ADD INDEX IF NOT EXISTS bf_attr_str_4 mapKeys(attr_str_4) TYPE bloom_filter GRANULARITY 1, ADD INDEX IF NOT EXISTS bf_attr_str_5 mapKeys(attr_str_5) TYPE bloom_filter GRANULARITY 1, ADD INDEX IF NOT EXISTS bf_attr_str_6 mapKeys(attr_str_6) TYPE bloom_filter GRANULARITY 1, ADD INDEX IF NOT EXISTS bf_attr_str_7 mapKeys(attr_str_7) TYPE bloom_filter GRANULARITY 1, ADD INDEX IF NOT EXISTS bf_attr_str_8 mapKeys(attr_str_8) TYPE bloom_filter GRANULARITY 1, ADD INDEX IF NOT EXISTS bf_attr_str_9 mapKeys(attr_str_9) TYPE bloom_filter GRANULARITY 1, ADD INDEX IF NOT EXISTS bf_attr_str_10 mapKeys(attr_str_10) TYPE bloom_filter GRANULARITY 1, ADD INDEX IF NOT EXISTS bf_attr_str_11 mapKeys(attr_str_11) TYPE bloom_filter GRANULARITY 1, ADD INDEX IF NOT EXISTS bf_attr_str_12 mapKeys(attr_str_12) TYPE bloom_filter GRANULARITY 1, ADD INDEX IF NOT EXISTS bf_attr_str_13 mapKeys(attr_str_13) TYPE bloom_filter GRANULARITY 1, ADD INDEX IF NOT EXISTS bf_attr_str_14 mapKeys(attr_str_14) TYPE bloom_filter GRANULARITY 1, ADD INDEX IF NOT EXISTS bf_attr_str_15 mapKeys(attr_str_15) TYPE bloom_filter GRANULARITY 1, ADD INDEX IF NOT EXISTS bf_attr_str_16 mapKeys(attr_str_16) TYPE bloom_filter GRANULARITY 1, ADD INDEX IF NOT EXISTS bf_attr_str_17 mapKeys(attr_str_17) TYPE bloom_filter GRANULARITY 1, ADD INDEX IF NOT EXISTS bf_attr_str_18 mapKeys(attr_str_18) TYPE bloom_filter GRANULARITY 1, ADD INDEX IF NOT EXISTS bf_attr_str_19 mapKeys(attr_str_19) TYPE bloom_filter GRANULARITY 1, ADD INDEX IF NOT EXISTS bf_attr_str_val_0 mapValues(attr_str_0) TYPE ngrambf_v1(4, 1024, 10, 1) GRANULARITY 1, ADD INDEX IF NOT EXISTS bf_attr_str_val_1 mapValues(attr_str_1) TYPE ngrambf_v1(4, 1024, 10, 1) GRANULARITY 1, ADD INDEX IF NOT EXISTS bf_attr_str_val_2 mapValues(attr_str_2) TYPE ngrambf_v1(4, 1024, 10, 1) GRANULARITY 1, ADD INDEX IF NOT EXISTS bf_attr_str_val_3 mapValues(attr_str_3) TYPE ngrambf_v1(4, 1024, 10, 1) GRANULARITY 1, ADD INDEX IF NOT EXISTS bf_attr_str_val_4 mapValues(attr_str_4) TYPE ngrambf_v1(4, 1024, 10, 1) GRANULARITY 1, ADD INDEX IF NOT EXISTS bf_attr_str_val_5 mapValues(attr_str_5) TYPE ngrambf_v1(4, 1024, 10, 1) GRANULARITY 1, ADD INDEX IF NOT EXISTS bf_attr_str_val_6 mapValues(attr_str_6) TYPE ngrambf_v1(4, 1024, 10, 1) GRANULARITY 1, ADD INDEX IF NOT EXISTS bf_attr_str_val_7 mapValues(attr_str_7) TYPE ngrambf_v1(4, 1024, 10, 1) GRANULARITY 1, ADD INDEX IF NOT EXISTS bf_attr_str_val_8 mapValues(attr_str_8) TYPE ngrambf_v1(4, 1024, 10, 1) GRANULARITY 1, ADD INDEX IF NOT EXISTS bf_attr_str_val_9 mapValues(attr_str_9) TYPE ngrambf_v1(4, 1024, 10, 1) GRANULARITY 1, ADD INDEX IF NOT EXISTS bf_attr_str_val_10 mapValues(attr_str_10) TYPE ngrambf_v1(4, 1024, 10, 1) GRANULARITY 1, ADD INDEX IF NOT EXISTS bf_attr_str_val_11 mapValues(attr_str_11) TYPE ngrambf_v1(4, 1024, 10, 1) GRANULARITY 1, ADD INDEX IF NOT EXISTS bf_attr_str_val_12 mapValues(attr_str_12) TYPE ngrambf_v1(4, 1024, 10, 1) GRANULARITY 1, ADD INDEX IF NOT EXISTS bf_attr_str_val_13 mapValues(attr_str_13) TYPE ngrambf_v1(4, 1024, 10, 1) GRANULARITY 1, ADD INDEX IF NOT EXISTS bf_attr_str_val_14 mapValues(attr_str_14) TYPE ngrambf_v1(4, 1024, 10, 1) GRANULARITY 1, ADD INDEX IF NOT EXISTS bf_attr_str_val_15 mapValues(attr_str_15) TYPE ngrambf_v1(4, 1024, 10, 1) GRANULARITY 1, ADD INDEX IF NOT EXISTS bf_attr_str_val_16 mapValues(attr_str_16) TYPE ngrambf_v1(4, 1024, 10, 1) GRANULARITY 1, ADD INDEX IF NOT EXISTS bf_attr_str_val_17 mapValues(attr_str_17) TYPE ngrambf_v1(4, 1024, 10, 1) GRANULARITY 1, ADD INDEX IF NOT EXISTS bf_attr_str_val_18 mapValues(attr_str_18) TYPE ngrambf_v1(4, 1024, 10, 1) GRANULARITY 1, ADD INDEX IF NOT EXISTS bf_attr_str_val_19 mapValues(attr_str_19) TYPE ngrambf_v1(4, 1024, 10, 1) GRANULARITY 1, ADD INDEX IF NOT EXISTS bf_attr_num_0 mapKeys(attr_num_0) TYPE bloom_filter GRANULARITY 1, ADD INDEX IF NOT EXISTS bf_attr_num_1 mapKeys(attr_num_1) TYPE bloom_filter GRANULARITY 1, ADD INDEX IF NOT EXISTS bf_attr_num_2 mapKeys(attr_num_2) TYPE bloom_filter GRANULARITY 1, ADD INDEX IF NOT EXISTS bf_attr_num_3 mapKeys(attr_num_3) TYPE bloom_filter GRANULARITY 1, ADD INDEX IF NOT EXISTS bf_attr_num_4 mapKeys(attr_num_4) TYPE bloom_filter GRANULARITY 1, ADD INDEX IF NOT EXISTS bf_attr_num_5 mapKeys(attr_num_5) TYPE bloom_filter GRANULARITY 1, ADD INDEX IF NOT EXISTS bf_attr_num_6 mapKeys(attr_num_6) TYPE bloom_filter GRANULARITY 1, ADD INDEX IF NOT EXISTS bf_attr_num_7 mapKeys(attr_num_7) TYPE bloom_filter GRANULARITY 1, ADD INDEX IF NOT EXISTS bf_attr_num_8 mapKeys(attr_num_8) TYPE bloom_filter GRANULARITY 1, ADD INDEX IF NOT EXISTS bf_attr_num_9 mapKeys(attr_num_9) TYPE bloom_filter GRANULARITY 1, ADD INDEX IF NOT EXISTS bf_attr_num_10 mapKeys(attr_num_10) TYPE bloom_filter GRANULARITY 1, ADD INDEX IF NOT EXISTS bf_attr_num_11 mapKeys(attr_num_11) TYPE bloom_filter GRANULARITY 1, ADD INDEX IF NOT EXISTS bf_attr_num_12 mapKeys(attr_num_12) TYPE bloom_filter GRANULARITY 1, ADD INDEX IF NOT EXISTS bf_attr_num_13 mapKeys(attr_num_13) TYPE bloom_filter GRANULARITY 1, ADD INDEX IF NOT EXISTS bf_attr_num_14 mapKeys(attr_num_14) TYPE bloom_filter GRANULARITY 1, ADD INDEX IF NOT EXISTS bf_attr_num_15 mapKeys(attr_num_15) TYPE bloom_filter GRANULARITY 1, ADD INDEX IF NOT EXISTS bf_attr_num_16 mapKeys(attr_num_16) TYPE bloom_filter GRANULARITY 1, ADD INDEX IF NOT EXISTS bf_attr_num_17 mapKeys(attr_num_17) TYPE bloom_filter GRANULARITY 1, ADD INDEX IF NOT EXISTS bf_attr_num_18 mapKeys(attr_num_18) TYPE bloom_filter GRANULARITY 1, ADD INDEX IF NOT EXISTS bf_attr_num_19 mapKeys(attr_num_19) TYPE bloom_filter GRANULARITY 1;
-- end forward migration events_analytics_platform : 0001_spans




-- backward migration events_analytics_platform : 0001_spans
Local op: DROP TABLE IF EXISTS eap_spans_local;
Distributed op: DROP TABLE IF EXISTS eap_spans_dist;
-- end backward migration events_analytics_platform : 0001_spans

@phacops phacops enabled auto-merge (squash) July 26, 2024 14:59
@codecov

codecov Bot commented Jul 26, 2024

Copy link
Copy Markdown

Test Failures Detected: Due to failing tests, we cannot provide coverage reports at this time.

❌ Failed Test Results:

Completed 1215 tests with 1 failed, 1212 passed and 2 skipped.

View the full list of failed tests

pytest

  • Class name: tests.migrations.test_runner
    Test name: test_no_schema_differences

    Traceback (most recent call last):
    File ".../tests/migrations/test_runner.py", line 455, in test_no_schema_differences
    assert (
    AssertionError: Schema mismatch: eap_spans_local does not match schema
    assert ["Column 'attr_str_20' exists in schema but not local ClickHouse!",\n "Column 'attr_str_21' exists in schema but not local ClickHouse!",\n "Column 'attr_str_22' exists in schema but not local ClickHouse!",\n "Column 'attr_str_23' exists in schema but not local ClickHouse!",\n "Column 'attr_str_24' exists in schema but not local ClickHouse!",\n "Column 'attr_str_25' exists in schema but not local ClickHouse!",\n "Column 'attr_str_26' exists in schema but not local ClickHouse!",\n "Column 'attr_str_27' exists in schema but not local ClickHouse!",\n "Column 'attr_str_28' exists in schema but not local ClickHouse!",\n "Column 'attr_str_29' exists in schema but not local ClickHouse!",\n "Column 'attr_str_30' exists in schema but not local ClickHouse!",\n "Column 'attr_str_31' exists in schema but not local ClickHouse!",\n "Column 'attr_str_32' exists in schema but not local ClickHouse!",\n "Column 'attr_str_33' exists in schema but not local ClickHouse!",\n "Column 'attr_str_34' exists in schema but not local ClickHouse!",\n "Column 'attr_str_35' exists in schema but not local ClickHouse!",\n "Column 'attr_str_36' exists in schema but not local ClickHouse!",\n "Column 'attr_str_37' exists in schema but not local ClickHouse!",\n "Column 'attr_str_38' exists in schema but not local ClickHouse!",\n "Column 'attr_str_39' exists in schema but not local ClickHouse!",\n "Column 'attr_str_40' exists in schema but not local ClickHouse!",\n "Column 'attr_str_41' exists in schema but not local ClickHouse!",\n "Column 'attr_str_42' exists in schema but not local ClickHouse!",\n "Column 'attr_str_43' exists in schema but not local ClickHouse!",\n "Column 'attr_str_44' exists in schema but not local ClickHouse!",\n "Column 'attr_str_45' exists in schema but not local ClickHouse!",\n "Column 'attr_str_46' exists in schema but not local ClickHouse!",\n "Column 'attr_str_47' exists in schema but not local ClickHouse!",\n "Column 'attr_str_48' exists in schema but not local ClickHouse!",\n "Column 'attr_str_49' exists in schema but not local ClickHouse!",\n "Column 'attr_str_50' exists in schema but not local ClickHouse!",\n "Column 'attr_str_51' exists in schema but not local ClickHouse!",\n "Column 'attr_str_52' exists in schema but not local ClickHouse!",\n "Column 'attr_str_53' exists in schema but not local ClickHouse!",\n "Column 'attr_str_54' exists in schema but not local ClickHouse!",\n "Column 'attr_str_55' exists in schema but not local ClickHouse!",\n "Column 'attr_str_56' exists in schema but not local ClickHouse!",\n "Column 'attr_str_57' exists in schema but not local ClickHouse!",\n "Column 'attr_str_58' exists in schema but not local ClickHouse!",\n "Column 'attr_str_59' exists in schema but not local ClickHouse!",\n "Column 'attr_str_60' exists in schema but not local ClickHouse!",\n "Column 'attr_str_61' exists in schema but not local ClickHouse!",\n "Column 'attr_str_62' exists in schema but not local ClickHouse!",\n "Column 'attr_str_63' exists in schema but not local ClickHouse!",\n "Column 'attr_str_64' exists in schema but not local ClickHouse!",\n "Column 'attr_str_65' exists in schema but not local ClickHouse!",\n "Column 'attr_str_66' exists in schema but not local ClickHouse!",\n "Column 'attr_str_67' exists in schema but not local ClickHouse!",\n "Column 'attr_str_68' exists in schema but not local ClickHouse!",\n "Column 'attr_str_69' exists in schema but not local ClickHouse!",\n "Column 'attr_str_70' exists in schema but not local ClickHouse!",\n "Column 'attr_str_71' exists in schema but not local ClickHouse!",\n "Column 'attr_str_72' exists in schema but not local ClickHouse!",\n "Column 'attr_str_73' exists in schema but not local ClickHouse!",\n "Column 'attr_str_74' exists in schema but not local ClickHouse!",\n "Column 'attr_str_75' exists in schema but not local ClickHouse!",\n "Column 'attr_str_76' exists in schema but not local ClickHouse!",\n "Column 'attr_str_77' exists in schema but not local ClickHouse!",\n "Column 'attr_str_78' exists in schema but not local ClickHouse!",\n "Column 'attr_str_79' exists in schema but not local ClickHouse!",\n "Column 'attr_str_80' exists in schema but not local ClickHouse!",\n "Column 'attr_str_81' exists in schema but not local ClickHouse!",\n "Column 'attr_str_82' exists in schema but not local ClickHouse!",\n "Column 'attr_str_83' exists in schema but not local ClickHouse!",\n "Column 'attr_str_84' exists in schema but not local ClickHouse!",\n "Column 'attr_str_85' exists in schema but not local ClickHouse!",\n "Column 'attr_str_86' exists in schema but not local ClickHouse!",\n "Column 'attr_str_87' exists in schema but not local ClickHouse!",\n "Column 'attr_str_88' exists in schema but not local ClickHouse!",\n "Column 'attr_str_89' exists in schema but not local ClickHouse!",\n "Column 'attr_str_90' exists in schema but not local ClickHouse!",\n "Column 'attr_str_91' exists in schema but not local ClickHouse!",\n "Column 'attr_str_92' exists in schema but not local ClickHouse!",\n "Column 'attr_str_93' exists in schema but not local ClickHouse!",\n "Column 'attr_str_94' exists in schema but not local ClickHouse!",\n "Column 'attr_str_95' exists in schema but not local ClickHouse!",\n "Column 'attr_str_96' exists in schema but not local ClickHouse!",\n "Column 'attr_str_97' exists in schema but not local ClickHouse!",\n "Column 'attr_str_98' exists in schema but not local ClickHouse!",\n "Column 'attr_str_99' exists in schema but not local ClickHouse!",\n "Column 'attr_str_100' exists in schema but not local ClickHouse!",\n "Column 'attr_str_101' exists in schema but not local ClickHouse!",\n "Column 'attr_str_102' exists in schema but not local ClickHouse!",\n "Column 'attr_str_103' exists in schema but not local ClickHouse!",\n "Column 'attr_str_104' exists in schema but not local ClickHouse!",\n "Column 'attr_str_105' exists in schema but not local ClickHouse!",\n "Column 'attr_str_106' exists in schema but not local ClickHouse!",\n "Column 'attr_str_107' exists in schema but not local ClickHouse!",\n "Column 'attr_str_108' exists in schema but not local ClickHouse!",\n "Column 'attr_str_109' exists in schema but not local ClickHouse!",\n "Column 'attr_str_110' exists in schema but not local ClickHouse!",\n "Column 'attr_str_111' exists in schema but not local ClickHouse!",\n "Column 'attr_str_112' exists in schema but not local ClickHouse!",\n "Column 'attr_str_113' exists in schema but not local ClickHouse!",\n "Column 'attr_str_114' exists in schema but not local ClickHouse!",\n "Column 'attr_str_115' exists in schema but not local ClickHouse!",\n "Column 'attr_str_116' exists in schema but not local ClickHouse!",\n "Column 'attr_str_117' exists in schema but not local ClickHouse!",\n "Column 'attr_str_118' exists in schema but not local ClickHouse!",\n "Column 'attr_str_119' exists in schema but not local ClickHouse!",\n "Column 'attr_str_120' exists in schema but not local ClickHouse!",\n "Column 'attr_str_121' exists in schema but not local ClickHouse!",\n "Column 'attr_str_122' exists in schema but not local ClickHouse!",\n "Column 'attr_str_123' exists in schema but not local ClickHouse!",\n "Column 'attr_str_124' exists in schema but not local ClickHouse!",\n "Column 'attr_str_125' exists in schema but not local ClickHouse!",\n "Column 'attr_str_126' exists in schema but not local ClickHouse!",\n "Column 'attr_str_127' exists in schema but not local ClickHouse!",\n "Column 'attr_str_128' exists in schema but not local ClickHouse!",\n "Column 'attr_str_129' exists in schema but not local ClickHouse!",\n "Column 'attr_str_130' exists in schema but not local ClickHouse!",\n "Column 'attr_str_131' exists in schema but not local ClickHouse!",\n "Column 'attr_str_132' exists in schema but not local ClickHouse!",\n "Column 'attr_str_133' exists in schema but not local ClickHouse!",\n "Column 'attr_str_134' exists in schema but not local ClickHouse!",\n "Column 'attr_str_135' exists in schema but not local ClickHouse!",\n "Column 'attr_str_136' exists in schema but not local ClickHouse!",\n "Column 'attr_str_137' exists in schema but not local ClickHouse!",\n "Column 'attr_str_138' exists in schema but not local ClickHouse!",\n "Column 'attr_str_139' exists in schema but not local ClickHouse!",\n "Column 'attr_str_140' exists in schema but not local ClickHouse!",\n "Column 'attr_str_141' exists in schema but not local ClickHouse!",\n "Column 'attr_str_142' exists in schema but not local ClickHouse!",\n "Column 'attr_str_143' exists in schema but not local ClickHouse!",\n "Column 'attr_str_144' exists in schema but not local ClickHouse!",\n "Column 'attr_str_145' exists in schema but not local ClickHouse!",\n "Column 'attr_str_146' exists in schema but not local ClickHouse!",\n "Column 'attr_str_147' exists in schema but not local ClickHouse!",\n "Column 'attr_str_148' exists in schema but not local ClickHouse!",\n "Column 'attr_str_149' exists in schema but not local ClickHouse!",\n "Column 'attr_str_150' exists in schema but not local ClickHouse!",\n "Column 'attr_str_151' exists in schema but not local ClickHouse!",\n "Column 'attr_str_152' exists in schema but not local ClickHouse!",\n "Column 'attr_str_153' exists in schema but not local ClickHouse!",\n "Column 'attr_str_154' exists in schema but not local ClickHouse!",\n "Column 'attr_str_155' exists in schema but not local ClickHouse!",\n "Column 'attr_str_156' exists in schema but not local ClickHouse!",\n "Column 'attr_str_157' exists in schema but not local ClickHouse!",\n "Column 'attr_str_158' exists in schema but not local ClickHouse!",\n "Column 'attr_str_159' exists in schema but not local ClickHouse!",\n "Column 'attr_str_160' exists in schema but not local ClickHouse!",\n "Column 'attr_str_161' exists in schema but not local ClickHouse!",\n "Column 'attr_str_162' exists in schema but not local ClickHouse!",\n "Column 'attr_str_163' exists in schema but not local ClickHouse!",\n "Column 'attr_str_164' exists in schema but not local ClickHouse!",\n "Column 'attr_str_165' exists in schema but not local ClickHouse!",\n "Column 'attr_str_166' exists in schema but not local ClickHouse!",\n "Column 'attr_str_167' exists in schema but not local ClickHouse!",\n "Column 'attr_str_168' exists in schema but not local ClickHouse!",\n "Column 'attr_str_169' exists in schema but not local ClickHouse!",\n "Column 'attr_str_170' exists in schema but not local ClickHouse!",\n "Column 'attr_str_171' exists in schema but not local ClickHouse!",\n "Column 'attr_str_172' exists in schema but not local ClickHouse!",\n "Column 'attr_str_173' exists in schema but not local ClickHouse!",\n "Column 'attr_str_174' exists in schema but not local ClickHouse!",\n "Column 'attr_str_175' exists in schema but not local ClickHouse!",\n "Column 'attr_str_176' exists in schema but not local ClickHouse!",\n "Column 'attr_str_177' exists in schema but not local ClickHouse!",\n "Column 'attr_str_178' exists in schema but not local ClickHouse!",\n "Column 'attr_str_179' exists in schema but not local ClickHouse!",\n "Column 'attr_str_180' exists in schema but not local ClickHouse!",\n "Column 'attr_str_181' exists in schema but not local ClickHouse!",\n "Column 'attr_str_182' exists in schema but not local ClickHouse!",\n "Column 'attr_str_183' exists in schema but not local ClickHouse!",\n "Column 'attr_str_184' exists in schema but not local ClickHouse!",\n "Column 'attr_str_185' exists in schema but not local ClickHouse!",\n "Column 'attr_str_186' exists in schema but not local ClickHouse!",\n "Column 'attr_str_187' exists in schema but not local ClickHouse!",\n "Column 'attr_str_188' exists in schema but not local ClickHouse!",\n "Column 'attr_str_189' exists in schema but not local ClickHouse!",\n "Column 'attr_str_190' exists in schema but not local ClickHouse!",\n "Column 'attr_str_191' exists in schema but not local ClickHouse!",\n "Column 'attr_str_192' exists in schema but not local ClickHouse!",\n "Column 'attr_str_193' exists in schema but not local ClickHouse!",\n "Column 'attr_str_194' exists in schema but not local ClickHouse!",\n "Column 'attr_str_195' exists in schema but not local ClickHouse!",\n "Column 'attr_str_196' exists in schema but not local ClickHouse!",\n "Column 'attr_str_197' exists in schema but not local ClickHouse!",\n "Column 'attr_str_198' exists in schema but not local ClickHouse!",\n "Column 'attr_str_199' exists in schema but not local ClickHouse!",\n "Column 'attr_num_20' exists in schema but not local ClickHouse!",\n "Column 'attr_num_21' exists in schema but not local ClickHouse!",\n "Column 'attr_num_22' exists in schema but not local ClickHouse!",\n "Column 'attr_num_23' exists in schema but not local ClickHouse!",\n "Column 'attr_num_24' exists in schema but not local ClickHouse!",\n "Column 'attr_num_25' exists in schema but not local ClickHouse!",\n "Column 'attr_num_26' exists in schema but not local ClickHouse!",\n "Column 'attr_num_27' exists in schema but not local ClickHouse!",\n "Column 'attr_num_28' exists in schema but not local ClickHouse!",\n "Column 'attr_num_29' exists in schema but not local ClickHouse!",\n "Column 'attr_num_30' exists in schema but not local ClickHouse!",\n "Column 'attr_num_31' exists in schema but not local ClickHouse!",\n "Column 'attr_num_32' exists in schema but not local ClickHouse!",\n "Column 'attr_num_33' exists in schema but not local ClickHouse!",\n "Column 'attr_num_34' exists in schema but not local ClickHouse!",\n "Column 'attr_num_35' exists in schema but not local ClickHouse!",\n "Column 'attr_num_36' exists in schema but not local ClickHouse!",\n "Column 'attr_num_37' exists in schema but not local ClickHouse!",\n "Column 'attr_num_38' exists in schema but not local ClickHouse!",\n "Column 'attr_num_39' exists in schema but not local ClickHouse!",\n "Column 'attr_num_40' exists in schema but not local ClickHouse!",\n "Column 'attr_num_41' exists in schema but not local ClickHouse!",\n "Column 'attr_num_42' exists in schema but not local ClickHouse!",\n "Column 'attr_num_43' exists in schema but not local ClickHouse!",\n "Column 'attr_num_44' exists in schema but not local ClickHouse!",\n "Column 'attr_num_45' exists in schema but not local ClickHouse!",\n "Column 'attr_num_46' exists in schema but not local ClickHouse!",\n "Column 'attr_num_47' exists in schema but not local ClickHouse!",\n "Column 'attr_num_48' exists in schema but not local ClickHouse!",\n "Column 'attr_num_49' exists in schema but not local ClickHouse!",\n "Column 'attr_num_50' exists in schema but not local ClickHouse!",\n "Column 'attr_num_51' exists in schema but not local ClickHouse!",\n "Column 'attr_num_52' exists in schema but not local ClickHouse!",\n "Column 'attr_num_53' exists in schema but not local ClickHouse!",\n "Column 'attr_num_54' exists in schema but not local ClickHouse!",\n "Column 'attr_num_55' exists in schema but not local ClickHouse!",\n "Column 'attr_num_56' exists in schema but not local ClickHouse!",\n "Column 'attr_num_57' exists in schema but not local ClickHouse!",\n "Column 'attr_num_58' exists in schema but not local ClickHouse!",\n "Column 'attr_num_59' exists in schema but not local ClickHouse!",\n "Column 'attr_num_60' exists in schema but not local ClickHouse!",\n "Column 'attr_num_61' exists in schema but not local ClickHouse!",\n "Column 'attr_num_62' exists in schema but not local ClickHouse!",\n "Column 'attr_num_63' exists in schema but not local ClickHouse!",\n "Column 'attr_num_64' exists in schema but not local ClickHouse!",\n "Column 'attr_num_65' exists in schema but not local ClickHouse!",\n "Column 'attr_num_66' exists in schema but not local ClickHouse!",\n "Column 'attr_num_67' exists in schema but not local ClickHouse!",\n "Column 'attr_num_68' exists in schema but not local ClickHouse!",\n "Column 'attr_num_69' exists in schema but not local ClickHouse!",\n "Column 'attr_num_70' exists in schema but not local ClickHouse!",\n "Column 'attr_num_71' exists in schema but not local ClickHouse!",\n "Column 'attr_num_72' exists in schema but not local ClickHouse!",\n "Column 'attr_num_73' exists in schema but not local ClickHouse!",\n "Column 'attr_num_74' exists in schema but not local ClickHouse!",\n "Column 'attr_num_75' exists in schema but not local ClickHouse!",\n "Column 'attr_num_76' exists in schema but not local ClickHouse!",\n "Column 'attr_num_77' exists in schema but not local ClickHouse!",\n "Column 'attr_num_78' exists in schema but not local ClickHouse!",\n "Column 'attr_num_79' exists in schema but not local ClickHouse!",\n "Column 'attr_num_80' exists in schema but not local ClickHouse!",\n "Column 'attr_num_81' exists in schema but not local ClickHouse!",\n "Column 'attr_num_82' exists in schema but not local ClickHouse!",\n "Column 'attr_num_83' exists in schema but not local ClickHouse!",\n "Column 'attr_num_84' exists in schema but not local ClickHouse!",\n "Column 'attr_num_85' exists in schema but not local ClickHouse!",\n "Column 'attr_num_86' exists in schema but not local ClickHouse!",\n "Column 'attr_num_87' exists in schema but not local ClickHouse!",\n "Column 'attr_num_88' exists in schema but not local ClickHouse!",\n "Column 'attr_num_89' exists in schema but not local ClickHouse!",\n "Column 'attr_num_90' exists in schema but not local ClickHouse!",\n "Column 'attr_num_91' exists in schema but not local ClickHouse!",\n "Column 'attr_num_92' exists in schema but not local ClickHouse!",\n "Column 'attr_num_93' exists in schema but not local ClickHouse!",\n "Column 'attr_num_94' exists in schema but not local ClickHouse!",\n "Column 'attr_num_95' exists in schema but not local ClickHouse!",\n "Column 'attr_num_96' exists in schema but not local ClickHouse!",\n "Column 'attr_num_97' exists in schema but not local ClickHouse!",\n "Column 'attr_num_98' exists in schema but not local ClickHouse!",\n "Column 'attr_num_99' exists in schema but not local ClickHouse!",\n "Column 'attr_num_100' exists in schema but not local ClickHouse!",\n "Column 'attr_num_101' exists in schema but not local ClickHouse!",\n "Column 'attr_num_102' exists in schema but not local ClickHouse!",\n "Column 'attr_num_103' exists in schema but not local ClickHouse!",\n "Column 'attr_num_104' exists in schema but not local ClickHouse!",\n "Column 'attr_num_105' exists in schema but not local ClickHouse!",\n "Column 'attr_num_106' exists in schema but not local ClickHouse!",\n "Column 'attr_num_107' exists in schema but not local ClickHouse!",\n "Column 'attr_num_108' exists in schema but not local ClickHouse!",\n "Column 'attr_num_109' exists in schema but not local ClickHouse!",\n "Column 'attr_num_110' exists in schema but not local ClickHouse!",\n "Column 'attr_num_111' exists in schema but not local ClickHouse!",\n "Column 'attr_num_112' exists in schema but not local ClickHouse!",\n "Column 'attr_num_113' exists in schema but not local ClickHouse!",\n "Column 'attr_num_114' exists in schema but not local ClickHouse!",\n "Column 'attr_num_115' exists in schema but not local ClickHouse!",\n "Column 'attr_num_116' exists in schema but not local ClickHouse!",\n "Column 'attr_num_117' exists in schema but not local ClickHouse!",\n "Column 'attr_num_118' exists in schema but not local ClickHouse!",\n "Column 'attr_num_119' exists in schema but not local ClickHouse!",\n "Column 'attr_num_120' exists in schema but not local ClickHouse!",\n "Column 'attr_num_121' exists in schema but not local ClickHouse!",\n "Column 'attr_num_122' exists in schema but not local ClickHouse!",\n "Column 'attr_num_123' exists in schema but not local ClickHouse!",\n "Column 'attr_num_124' exists in schema but not local ClickHouse!",\n "Column 'attr_num_125' exists in schema but not local ClickHouse!",\n "Column 'attr_num_126' exists in schema but not local ClickHouse!",\n "Column 'attr_num_127' exists in schema but not local ClickHouse!",\n "Column 'attr_num_128' exists in schema but not local ClickHouse!",\n "Column 'attr_num_129' exists in schema but not local ClickHouse!",\n "Column 'attr_num_130' exists in schema but not local ClickHouse!",\n "Column 'attr_num_131' exists in schema but not local ClickHouse!",\n "Column 'attr_num_132' exists in schema but not local ClickHouse!",\n "Column 'attr_num_133' exists in schema but not local ClickHouse!",\n "Column 'attr_num_134' exists in schema but not local ClickHouse!",\n "Column 'attr_num_135' exists in schema but not local ClickHouse!",\n "Column 'attr_num_136' exists in schema but not local ClickHouse!",\n "Column 'attr_num_137' exists in schema but not local ClickHouse!",\n "Column 'attr_num_138' exists in schema but not local ClickHouse!",\n "Column 'attr_num_139' exists in schema but not local ClickHouse!",\n "Column 'attr_num_140' exists in schema but not local ClickHouse!",\n "Column 'attr_num_141' exists in schema but not local ClickHouse!",\n "Column 'attr_num_142' exists in schema but not local ClickHouse!",\n "Column 'attr_num_143' exists in schema but not local ClickHouse!",\n "Column 'attr_num_144' exists in schema but not local ClickHouse!",\n "Column 'attr_num_145' exists in schema but not local ClickHouse!",\n "Column 'attr_num_146' exists in schema but not local ClickHouse!",\n "Column 'attr_num_147' exists in schema but not local ClickHouse!",\n "Column 'attr_num_148' exists in schema but not local ClickHouse!",\n "Column 'attr_num_149' exists in schema but not local ClickHouse!",\n "Column 'attr_num_150' exists in schema but not local ClickHouse!",\n "Column 'attr_num_151' exists in schema but not local ClickHouse!",\n "Column 'attr_num_152' exists in schema but not local ClickHouse!",\n "Column 'attr_num_153' exists in schema but not local ClickHouse!",\n "Column 'attr_num_154' exists in schema but not local ClickHouse!",\n "Column 'attr_num_155' exists in schema but not local ClickHouse!",\n "Column 'attr_num_156' exists in schema but not local ClickHouse!",\n "Column 'attr_num_157' exists in schema but not local ClickHouse!",\n "Column 'attr_num_158' exists in schema but not local ClickHouse!",\n "Column 'attr_num_159' exists in schema but not local ClickHouse!",\n "Column 'attr_num_160' exists in schema but not local ClickHouse!",\n "Column 'attr_num_161' exists in schema but not local ClickHouse!",\n "Column 'attr_num_162' exists in schema but not local ClickHouse!",\n "Column 'attr_num_163' exists in schema but not local ClickHouse!",\n "Column 'attr_num_164' exists in schema but not local ClickHouse!",\n "Column 'attr_num_165' exists in schema but not local ClickHouse!",\n "Column 'attr_num_166' exists in schema but not local ClickHouse!",\n "Column 'attr_num_167' exists in schema but not local ClickHouse!",\n "Column 'attr_num_168' exists in schema but not local ClickHouse!",\n "Column 'attr_num_169' exists in schema but not local ClickHouse!",\n "Column 'attr_num_170' exists in schema but not local ClickHouse!",\n "Column 'attr_num_171' exists in schema but not local ClickHouse!",\n "Column 'attr_num_172' exists in schema but not local ClickHouse!",\n "Column 'attr_num_173' exists in schema but not local ClickHouse!",\n "Column 'attr_num_174' exists in schema but not local ClickHouse!",\n "Column 'attr_num_175' exists in schema but not local ClickHouse!",\n "Column 'attr_num_176' exists in schema but not local ClickHouse!",\n "Column 'attr_num_177' exists in schema but not local ClickHouse!",\n "Column 'attr_num_178' exists in schema but not local ClickHouse!",\n "Column 'attr_num_179' exists in schema but not local ClickHouse!",\n "Column 'attr_num_180' exists in schema but not local ClickHouse!",\n "Column 'attr_num_181' exists in schema but not local ClickHouse!",\n "Column 'attr_num_182' exists in schema but not local ClickHouse!",\n "Column 'attr_num_183' exists in schema but not local ClickHouse!",\n "Column 'attr_num_184' exists in schema but not local ClickHouse!",\n "Column 'attr_num_185' exists in schema but not local ClickHouse!",\n "Column 'attr_num_186' exists in schema but not local ClickHouse!",\n "Column 'attr_num_187' exists in schema but not local ClickHouse!",\n "Column 'attr_num_188' exists in schema but not local ClickHouse!",\n "Column 'attr_num_189' exists in schema but not local ClickHouse!",\n "Column 'attr_num_190' exists in schema but not local ClickHouse!",\n "Column 'attr_num_191' exists in schema but not local ClickHouse!",\n "Column 'attr_num_192' exists in schema but not local ClickHouse!",\n "Column 'attr_num_193' exists in schema but not local ClickHouse!",\n "Column 'attr_num_194' exists in schema but not local ClickHouse!",\n "Column 'attr_num_195' exists in schema but not local ClickHouse!",\n "Column 'attr_num_196' exists in schema but not local ClickHouse!",\n "Column 'attr_num_197' exists in schema but not local ClickHouse!",\n "Column 'attr_num_198' exists in schema but not local ClickHouse!",\n "Column 'attr_num_199' exists in schema but not local ClickHouse!"] == []
    Left contains 360 more items, first extra item: "Column 'attr_str_20' exists in schema but not local ClickHouse!"
    Full diff:
    [
    - ,
    + "Column 'attr_str_20' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_21' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_22' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_23' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_24' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_25' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_26' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_27' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_28' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_29' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_30' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_31' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_32' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_33' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_34' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_35' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_36' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_37' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_38' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_39' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_40' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_41' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_42' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_43' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_44' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_45' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_46' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_47' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_48' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_49' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_50' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_51' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_52' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_53' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_54' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_55' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_56' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_57' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_58' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_59' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_60' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_61' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_62' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_63' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_64' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_65' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_66' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_67' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_68' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_69' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_70' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_71' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_72' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_73' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_74' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_75' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_76' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_77' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_78' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_79' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_80' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_81' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_82' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_83' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_84' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_85' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_86' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_87' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_88' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_89' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_90' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_91' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_92' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_93' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_94' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_95' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_96' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_97' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_98' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_99' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_100' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_101' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_102' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_103' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_104' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_105' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_106' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_107' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_108' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_109' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_110' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_111' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_112' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_113' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_114' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_115' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_116' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_117' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_118' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_119' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_120' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_121' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_122' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_123' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_124' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_125' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_126' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_127' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_128' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_129' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_130' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_131' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_132' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_133' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_134' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_135' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_136' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_137' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_138' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_139' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_140' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_141' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_142' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_143' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_144' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_145' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_146' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_147' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_148' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_149' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_150' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_151' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_152' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_153' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_154' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_155' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_156' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_157' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_158' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_159' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_160' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_161' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_162' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_163' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_164' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_165' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_166' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_167' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_168' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_169' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_170' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_171' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_172' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_173' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_174' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_175' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_176' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_177' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_178' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_179' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_180' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_181' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_182' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_183' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_184' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_185' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_186' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_187' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_188' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_189' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_190' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_191' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_192' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_193' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_194' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_195' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_196' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_197' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_198' exists in schema but not local ClickHouse!",
    + "Column 'attr_str_199' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_20' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_21' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_22' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_23' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_24' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_25' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_26' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_27' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_28' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_29' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_30' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_31' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_32' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_33' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_34' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_35' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_36' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_37' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_38' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_39' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_40' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_41' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_42' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_43' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_44' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_45' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_46' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_47' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_48' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_49' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_50' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_51' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_52' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_53' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_54' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_55' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_56' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_57' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_58' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_59' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_60' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_61' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_62' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_63' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_64' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_65' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_66' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_67' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_68' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_69' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_70' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_71' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_72' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_73' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_74' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_75' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_76' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_77' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_78' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_79' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_80' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_81' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_82' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_83' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_84' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_85' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_86' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_87' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_88' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_89' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_90' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_91' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_92' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_93' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_94' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_95' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_96' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_97' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_98' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_99' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_100' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_101' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_102' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_103' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_104' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_105' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_106' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_107' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_108' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_109' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_110' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_111' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_112' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_113' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_114' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_115' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_116' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_117' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_118' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_119' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_120' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_121' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_122' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_123' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_124' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_125' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_126' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_127' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_128' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_129' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_130' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_131' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_132' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_133' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_134' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_135' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_136' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_137' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_138' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_139' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_140' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_141' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_142' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_143' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_144' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_145' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_146' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_147' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_148' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_149' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_150' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_151' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_152' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_153' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_154' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_155' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_156' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_157' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_158' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_159' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_160' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_161' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_162' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_163' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_164' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_165' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_166' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_167' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_168' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_169' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_170' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_171' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_172' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_173' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_174' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_175' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_176' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_177' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_178' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_179' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_180' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_181' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_182' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_183' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_184' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_185' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_186' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_187' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_188' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_189' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_190' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_191' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_192' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_193' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_194' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_195' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_196' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_197' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_198' exists in schema but not local ClickHouse!",
    + "Column 'attr_num_199' exists in schema but not local ClickHouse!",
    ]

Comment on lines +452 to +453
if storage_key == "events_analytics_platform":
print(schema)

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this intended?

@phacops phacops merged commit 557ea3a into master Jul 26, 2024
@phacops phacops deleted the pierre/eap-spans-reduce-number-of-buckets branch July 26, 2024 16:31
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants