You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@ignite.apache.org by "Angelo Pingo (Jira)" <ji...@apache.org> on 2022/05/27 11:26:00 UTC

[jira] [Created] (IGNITE-17045) SQL Cache Replicated

Angelo Pingo created IGNITE-17045:
-------------------------------------

             Summary: SQL Cache Replicated 
                 Key: IGNITE-17045
                 URL: https://issues.apache.org/jira/browse/IGNITE-17045
             Project: Ignite
          Issue Type: Bug
          Components: cache, sql
    Affects Versions: 2.13
         Environment: Official Helm for Kubernetes.

Apache Ignite version 2.13.0.

node-configuration.xml attached.
            Reporter: Angelo Pingo
         Attachments: ignite-issue-partitioned.PNG, ignite-issue-replicated.PNG, node-configuration.xml

I upgraded the Apache Ignite from 2.12.0 to 2.13.0 and all my SQL Caches configured as Replicated mode does not work correctly. The table is created successfully and the inserts are done without any problem, but I can't select the inserted rows.

Queries to reproduce the issue:

CREATE TABLE test_table (
  field1 varchar,
  field2 BOOLEAN,
  PRIMARY KEY (field1)
) WITH "template=Replicated";

INSERT INTO test_table (field1, field2) VALUES
  ('field-value-1', true),
  ('field-value-2', true, ),
  ('field-value-3', false);

SELECT * FROM test_table;



--
This message was sent by Atlassian Jira
(v8.20.7#820007)