원인
조인하려고 하는 클러스터 멤버의 객체들의 상태가 ONLINE 으로 되어있는 경우 발생합니다.
gSQL> ALTER SYSTEM JOIN DATABASE; ERR-42000(16363): the cluster member 'G3N2' failed to join the cluster system : shards which belong to member 'G3N2' must be offlined
해결방안
INACTIVE 상태인 클러스터 멤버를 OFFLINE 상태로 변경한 뒤 조인합니다.
gSQL> ALTER DATABASE OFFLINE INACTIVE CLUSTER MEMBERS; Database altered.
gSQL> ALTER SYSTEM JOIN DATABASE; System altered.