12 Ekim 2021 Salı

IgniteCluster Arayüzü - Thick Client

Giriş
Şu satırı dahil ederiz
import org.apache.ignite.IgniteCluster;
baselineAutoAdjustEnabled metodu
NotBaseline Topology Ne Demek yazısına bakabilirsiniz.

Baseline Topology değişikliği olunca devreye girer. Böylece "lost partition" olmaz

Örnek
Şöyle yaparız
ignite.cluster().baselineAutoAdjustEnabled(false);
state metodu
Örnek
Şöyle yaparız
import org.apache.ignite.cluster.ClusterState;

IgniteConfiguration cfg = ...;
Ignite ignite = Ignition.getOrStart(cfg);
ignite.cluster().state(ClusterState.ACTIVE);

Hiç yorum yok:

Yorum Gönder

Ignite Transaction Kullanımı

Giriş Bir tablo 3 tane atomicity değerinden birisine sahip olabilir. 1. ATOMIC 2. TRANSACTIONAL 3. TRANSACTIONAL_SNAPSHOT ATOMIC Açıklaması ...