maglietti commented on issue #12154:
URL: https://github.com/apache/ignite/issues/12154#issuecomment-2997048213

   Ignite 3 moved replication into the ZONE, see the docs 
[here](https://ignite.apache.org/docs/ignite3/latest/administrators-guide/distribution-zones).
   
   This should work:
   
   ```sql
   -- Step 1: Create a zone with desired replicas
   CREATE ZONE IF NOT EXISTS MYZONE WITH STORAGE_PROFILES='default', REPLICAS=2;
   
   -- Step 2: Create table referencing the zone
   CREATE TABLE IF NOT EXISTS results (idd VARCHAR PRIMARY KEY, type VARCHAR) 
ZONE MYZONE;
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@ignite.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to