Hi >1) Do the settings of the parameters in the 'WITH' clause apply only to the >cached data? Or also to the persisted data?
When you create a table by SQL, ignite will create a cache that with settings provided in 'WITH' clause. if by persisted data you meant ignite native persistence, then yes, this parameters will be applied to persistence too. >2) Can the parameters set in a CREATE TABLE 'WITH' clause be rather >externally and globally set in a config file? (TEMPLATE, BACKUPS, etc) as I know it can't be and should be provided to each cache creation by sql. However, you can have templates in xml configuration for regular caches. >3) In TEMPLATE=PARTITIONED: Is the persistent data stored to disk on a >particular node the same as that allocated to the node's cache? Or is all >data stored to disk on all nodes in the cluster, and only the cached data >partitioned between nodes? each node store it's primary partitions and backups and only these partition are persisted on the node. -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/
