10 Ekim 2021 Pazar

control komutu

Giriş
Not : Bu komut GridGain ve Apache Ignite arasında aynı isme sahip olmasına rağmen farklılıklar gösteriyor.

Söz dizimi şöyle
control.(sh|bat) --set-state INACTIVE|ACTIVE|ACTIVE_READ_ONLY [--force] [--yes]

--activate seçeneği
Bu seçenek artık deprecate edilmiş. Bunun yerine --set-state seçeneği kullanılmalı. Açıklaması şöyle
This command switches the cluster into an active state. In this case, if there is no baseline topology exists in the cluster, a new baseline will be created during activation of the cluster. The new baseline topology will include all of the connected nodes in the cluster topology.

--baseline seçeneği
Açıklaması şöyle
This command is designed to manage the baseline topology. When this command used without any parameters, it prints the current cluster baseline topology information. The following parameters can be used with this command: add, remove, set, and version.
Örnek
Şöyle yaparız
control.(sh|bat) --baseline auto_adjust [disable|enable] [timeout <timeoutMillis>] [--yes]


--deactive seçeneği
Açıklaması şöyle
Deactivate the cluster. Limited functionality will be available in this state.

--force seçeneği
Örnek
Şöyle yaparız
./control.sh --set-state INACTIVE --force

--set-state seçeneği
Eğer şu hatayı alıyorsak bu seçeneği kullanmak gerekir
Can not perform the operation because the cluster is inactive. Note, that the cluster is considered inactive by default if Ignite Persistent Store is used to let all the nodes join the cluster. To activate the cluster call Ignite.active(true).
Şöyle yaparız
./control.sh --set-state ACTIVE

Örnek
Şöyle yaparız
./control.sh --set-state INACTIVE

--state seçeneği
Açıklaması şöyle
.Print the current cluster state.

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ı ...