Merge remote-tracking branch 'origin/dev' into dev

This commit is contained in:
ialbert 2026-05-21 17:22:02 +03:00
commit 74f1e29c32
72 changed files with 33684 additions and 210 deletions

View file

@ -5,7 +5,7 @@
<parent>
<artifactId>clearing-parent</artifactId>
<groupId>ru.spcex.clearing</groupId>
<version>SPCEX-3.25.299</version>
<version>SPCEX-3.26.301</version>
</parent>
<modelVersion>4.0.0</modelVersion>

View file

@ -182,4 +182,27 @@ public class ClientCodeValidationConfig {
};
}
@Bean("tkrEksAccountsGatewayValidator")
public Function<TkrAccount, IValidator> newTkrEksAccountsGatewayValidator(Map<String, Imdg<? extends SpcexObjectBase>> imdgForValidation) {
return tkrGatewayRequest -> {
ImdgValidationContext<TkrAccount> context = new ImdgValidationContext<>();
context.setValidatedObject(tkrGatewayRequest);
Consumer<String> addImdg = (s) -> context.addImdg(s, imdgForValidation.get(s));
addImdg.accept(IMDGDistributedNames.Map_Company);
addImdg.accept(IMDGDistributedNames.Map_CompanySymbols);
addImdg.accept(IMDGDistributedNames.Map_Account);
addImdg.accept(IMDGDistributedNames.Map_TradingClearingRegistry);
addImdg.accept(IMDGDistributedNames.Map_AccountSymbols);
addImdg.accept(IMDGDistributedNames.Map_DepoAccount);
return new ValidatorImpl<>(context,
FieldRequiredRule.instance("client_code", TkrAccount::getClientCode, AccountError.RequiredFieldEmpty),
GatewayClientCodeValidationRule.CompanyPresent,
// GatewayClientCodeValidationRule.AllAccountsPresent,
GatewayClientCodeValidationRule.DepoAccountsPresent
// GatewayClientCodeValidationRule.TcrIsNotPresent,
// GatewayClientCodeValidationRule.TcrListIsNotPresent
);
};
}
}

View file

@ -0,0 +1,125 @@
package ru.spcex.clearing.account.service.v2.facade;
import java.time.Instant;
import java.util.Collection;
import java.util.Map;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Service;
import ru.clearing.classes.statics.data.account.Account;
import ru.clearing.classes.statics.data.account.InformationAccount;
import ru.clearing.classes.statics.data.company.Company;
import ru.clearing.classes.statics.data.misc.Currency;
import ru.spcex.clearing.account.service.AccountHelper;
import ru.spcex.clearing.account.service.InformationAccountService;
import ru.spcex.clearing.imdg.IMDGDistributedNames;
import ru.spcex.clearing.platform.messaging.domain.cud.account.TkrAccount;
import ru.spcex.clearing.platform.messaging.domain.cud.gateway.MoneyAccountMsgRequest;
import ru.spcex.platform.classes.base.interfaces.IClearingFacade;
import ru.spcex.platform.enumeration.AccountType;
import ru.spcex.platform.enumeration.CurrencyCode;
import ru.spcex.platform.enumeration.Sender;
import ru.spcex.platform.enumeration.WorkflowStatus;
import ru.spcex.platform.imdg.api.Imdg;
import ru.spcex.platform.imdg.api.ImdgId;
import ru.spcex.platform.imdg.api.ImdgProvider;
import ru.spcex.platform.imdg.api.predicate.ImdgPredicate;
import ru.spcex.platform.imdg.api.predicate.ImdgPredicateBuilder;
@Service
public class AccountFacade implements IClearingFacade {
private final Logger log = LoggerFactory.getLogger(getClass());
private final ImdgId idGenerator;
private final ImdgProvider imdgProvider;
private final Imdg<Account> accountImdg;
private final Imdg<InformationAccount> informationAccountImdg;
private final Imdg<Currency> currencyImdg;
private final InformationAccountService informationAccountService;
private final AccountHelper accountHelper;
private final TradingClearingRegistryFacade tradingClearingRegistryFacade;
private final TradingClearingRegistryListFacade tradingClearingRegistryListFacade;
public AccountFacade(ImdgProvider imdgProvider,
InformationAccountService informationAccountService,
AccountHelper accountHelper,
TradingClearingRegistryFacade tradingClearingRegistryFacade,
TradingClearingRegistryListFacade tradingClearingRegistryListFacade) {
this.idGenerator = imdgProvider.getImdgIdGenerator();
this.imdgProvider = imdgProvider;
this.accountImdg = imdgProvider.getImdg(IMDGDistributedNames.Map_Account, Account.class);
this.informationAccountImdg = imdgProvider.getImdg(IMDGDistributedNames.Map_InformationAccount, InformationAccount.class);
this.currencyImdg = imdgProvider.getImdg(IMDGDistributedNames.Map_Currency, Currency.class);
this.informationAccountService = informationAccountService;
this.accountHelper = accountHelper;
this.tradingClearingRegistryFacade = tradingClearingRegistryFacade;
this.tradingClearingRegistryListFacade = tradingClearingRegistryListFacade;
}
public void createInfoAccount(TkrAccount account, Company company) {
for (MoneyAccountMsgRequest moneyAccountMsgRequest : account.getMoneyAccounts()) {
String currencyCode = moneyAccountMsgRequest.getCurrCode() == null ? CurrencyCode.RUB.getKey() : moneyAccountMsgRequest.getCurrCode();
ImdgPredicateBuilder predicateBuilder = currencyImdg.predicateBuilder();
Currency currency = currencyImdg.getFirstObjectByPredicate(
predicateBuilder.equals("currencyCode", currencyCode)
);
Long currencyCodeId = CurrencyCode.RUB.getKey().equals(currencyCode) ? 810 : currency.getId();
Instant now = Instant.now();
Account infoAccount = new Account();
infoAccount.setCompanyId(company.getId());
infoAccount.setAccount(moneyAccountMsgRequest.getEks_account());
ImdgPredicateBuilder pb = accountImdg.predicateBuilder();
ImdgPredicate andPredicate = pb.and(
pb.equals("accountType", AccountType.Anlt.getKey()),
pb.equals("currency", currency.getCurrencyCode())
);
Collection<Account> accountsAnlt = accountImdg.getCollectionObjectsByPredicate(andPredicate);
if (accountsAnlt.isEmpty()) {
log.warn("Account with {} not exist.", andPredicate);
} else if (accountsAnlt.size() > 1) {
log.warn("Account for companyId 1 and accountType=ANLT contains multiply elements, use first");
}
Account anltAccount = accountsAnlt.iterator().next();
String specialAnltAccId = anltAccount.getAccount().substring(anltAccount.getAccount().length() - 4);
Long infoSequenceId = informationAccountService.accountNextId(currencyCode, currencyCodeId);
String accountValue = informationAccountService.generateInfoAccount(currencyCodeId, infoSequenceId, specialAnltAccId);
log.trace("New info-account SequenceId={} account={}", infoSequenceId, accountValue);
infoAccount.setAccount(accountValue);
infoAccount.setAccountType(AccountType.Info.getKey());
infoAccount.setCurrency(currencyCode);
infoAccount.setStatus(WorkflowStatus.Active.getKey());
infoAccount.setCreated(now);
infoAccount.setUpdated(now);
accountHelper.fillAccountFromRelation(infoAccount, null, false);
InformationAccount infoAcc = new InformationAccount();
infoAcc.setAccountId(infoAccount.getId());
Account firstAccountAntl = accountImdg.getFirstObjectByFieldValues(Map.of(
"companyId", Sender.One.getId(),
"accountType", AccountType.Anlt.getKey(),
"currency", infoAccount.getCurrency()
));
if (firstAccountAntl == null) {
log.warn("Can not find 1 ANTL {} account for fill information ClearingAccountId.", infoAccount.getCurrency());
} else {
infoAcc.setClearingAccountId(firstAccountAntl.getId());
}
infoAcc.setCompanyId(infoAccount.getCompanyId());
accountImdg.insert(infoAccount);
Long infoId = informationAccountImdg.insert(infoAcc);
log.debug("For account id={} make InformationAccount id={}", infoAccount.getId(), infoId);
}
}
public void lock() {
// tradingClearingRegistryFacade.lock()
// tradingClearingRegistryListFacade.lock()
}
public void unlock() {
// tradingClearingRegistryFacade.lock()
// tradingClearingRegistryListFacade.lock()
}
}

View file

@ -67,8 +67,8 @@ public class ClientCodeFacade implements IClearingFacade {
clientCode.setCompanyId(request.getCompanyId());
clientCode.setCode(request.getCode());
clientCode.setMoneyAccountId(request.getMoneyAccountId());
clientCode.setDepoAccountId(request.getDepoAccountId());
// clientCode.setMoneyAccountId(request.getMoneyAccountId());
// clientCode.setDepoAccountId(request.getDepoAccountId());
clientCode.setStatus(request.getStatus());
clientCodeImdg.insert(clientCode);
log.debug("successfully processed, new clientCode id {}", clientCode.getId());

View file

@ -4,6 +4,7 @@ import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Optional;
import java.util.concurrent.atomic.AtomicBoolean;
import org.apache.kafka.clients.consumer.Consumer;
import org.apache.kafka.clients.producer.Producer;
import org.slf4j.Logger;
@ -15,6 +16,7 @@ import ru.clearing.classes.statics.data.company.Company;
import ru.clearing.classes.statics.data.registry.TradingClearingRegistry;
import ru.spcex.clearing.account.model.ValidationResult;
import ru.spcex.clearing.account.service.v2.GatewayRequestCreator;
import ru.spcex.clearing.account.service.v2.facade.AccountFacade;
import ru.spcex.clearing.account.service.v2.facade.ClientCodeFacade;
import ru.spcex.clearing.account.service.v2.validators.ClientCodeValidator;
import ru.spcex.clearing.account.validation.ClientCodeStoreObjects;
@ -46,6 +48,7 @@ public class ClientCodeMessageListener extends QueueConsumer implements Initiali
private final ClientCodeValidator clientCodeValidator;
private final GatewayRequestCreator gatewayRequestCreator;
private final UserRoleVerification userRoleVerification;
private final AccountFacade accountFacade;
public ClientCodeMessageListener(Consumer<String, Object> kafkaQueue,
Producer<String, Object> kafkaProducer,
@ -54,7 +57,8 @@ public class ClientCodeMessageListener extends QueueConsumer implements Initiali
ClientCodeFacade clientCodeFacade,
ClientCodeValidator clientCodeValidator,
GatewayRequestCreator gatewayRequestCreator,
UserRoleVerification userRoleVerification) {
UserRoleVerification userRoleVerification,
AccountFacade accountFacade) {
super(kafkaQueue, kafkaProducer);
this.kafkaSender = kafkaSender;
this.imdgProvider = imdgProvider;
@ -62,6 +66,7 @@ public class ClientCodeMessageListener extends QueueConsumer implements Initiali
this.clientCodeValidator = clientCodeValidator;
this.gatewayRequestCreator = gatewayRequestCreator;
this.userRoleVerification = userRoleVerification;
this.accountFacade = accountFacade;
}
@Override
@ -90,17 +95,39 @@ public class ClientCodeMessageListener extends QueueConsumer implements Initiali
SendTkrRequest sendTkrRequest = new SendTkrRequest();
sendTkrRequest.setRequestId(gatewayRequest.getRequestId());
boolean isAnyoneInvalid = false;
AtomicBoolean isAnyoneInvalid = new AtomicBoolean(false);
Map<TkrAccount, ValidationResult> eksAccountsAfterValidation = new HashMap<>();
Map<TkrAccount, ValidationResult> accountsAfterValidation = new HashMap<>();
for (TkrAccount tkrAccount : gatewayRequest.getAccounts()) {
List<TkrAccount> withAccount = gatewayRequest.getAccounts().stream()
.filter(tkrAccount -> tkrAccount.getMoneyAccounts() != null &&
tkrAccount.getMoneyAccounts().stream()
.anyMatch(moneyAccountMsgRequest -> moneyAccountMsgRequest.getAccount() != null))
.toList();
List<TkrAccount> withEksAccount = gatewayRequest.getAccounts().stream()
.filter(tkrAccount -> tkrAccount.getMoneyAccounts() != null &&
tkrAccount.getMoneyAccounts().stream()
.anyMatch(moneyAccountMsgRequest -> moneyAccountMsgRequest.getEks_account() != null))
.toList();
withAccount.forEach(tkrAccount -> {
ValidationResult validationResult = clientCodeValidator.checkGatewayRequest(tkrAccount);
if (!validationResult.isValid()) {
log.debug("Validation failed for tkr.client_code {}", tkrAccount.getClientCode());
isAnyoneInvalid = true;
isAnyoneInvalid.set(true);
}
accountsAfterValidation.put(tkrAccount, validationResult);
}
if (isAnyoneInvalid) {
});
withEksAccount.forEach(tkrAccount -> {
ValidationResult validationResult = clientCodeValidator.checkGatewayRequestWithEksAcc(tkrAccount);
if (!validationResult.isValid()) {
log.debug("Validation failed for tkr.client_code {}", tkrAccount.getClientCode());
isAnyoneInvalid.set(true);
}
eksAccountsAfterValidation.put(tkrAccount, validationResult);
});
if (isAnyoneInvalid.get()) {
log.debug("Create error request to gateway service");
List<Tkr> tkrs = accountsAfterValidation.entrySet()
@ -111,12 +138,30 @@ public class ClientCodeMessageListener extends QueueConsumer implements Initiali
tkrAccountValidationResultEntry.getValue().errorMsg()
))
.toList();
sendTkrRequest.setTkrs(tkrs);
List<Tkr> eksTkrs = eksAccountsAfterValidation.entrySet()
.stream()
.map(tkrAccountValidationResultEntry ->
gatewayRequestCreator.crateErrorTkrToGateway(
tkrAccountValidationResultEntry.getKey(),
tkrAccountValidationResultEntry.getValue().errorMsg()
))
.toList();
sendTkrRequest.getTkrs().addAll(tkrs);
sendTkrRequest.getTkrs().addAll(eksTkrs);
kafkaSender.sendRequestToQueue(Consts.ACCOUNTS_TO_GATEWAY, sendTkrRequest);
return null;
}
//unwrap запроса
processAccount(accountsAfterValidation, gatewayRequest);
processEksAccount(eksAccountsAfterValidation, gatewayRequest);
kafkaSender.sendRequestToQueue(Consts.ACCOUNTS_TO_GATEWAY, sendTkrRequest);
return null;
}
private void processAccount(Map<TkrAccount, ValidationResult> accountsAfterValidation, TkrAccountsGatewayRequest gatewayRequest) {
SendTkrRequest sendTkrRequest = new SendTkrRequest();
sendTkrRequest.setRequestId(gatewayRequest.getRequestId());
for (Map.Entry<TkrAccount, ValidationResult> entry : accountsAfterValidation.entrySet()) {
ClientCodeNewRequest clientCodeNewRequest = new ClientCodeNewRequest();
TkrAccount tkrAccount = entry.getKey();
@ -148,8 +193,45 @@ public class ClientCodeMessageListener extends QueueConsumer implements Initiali
sendTkrRequest.getTkrs().add(gatewayRequestCreator.createTkrGatewayReq(tradingClearingRegistry));
log.debug("Success created new clientCode by tkr account: {}", tkrAccount.getClientCode());
}
kafkaSender.sendRequestToQueue(Consts.ACCOUNTS_TO_GATEWAY, sendTkrRequest);
return null;
}
private void processEksAccount(Map<TkrAccount, ValidationResult> accountsAfterValidation, TkrAccountsGatewayRequest gatewayRequest) {
SendTkrRequest sendTkrRequest = new SendTkrRequest();
sendTkrRequest.setRequestId(gatewayRequest.getRequestId());
for (Map.Entry<TkrAccount, ValidationResult> entry : accountsAfterValidation.entrySet()) {
TkrAccount tkrAccount = entry.getKey();
ValidationResult validationResult = entry.getValue();
IValidator validator = validationResult.validator();
Company company = validator.getStored(ClientCodeStoreObjects.COMPANY);
accountFacade.createInfoAccount(tkrAccount, company);
ClientCodeNewRequest clientCodeNewRequest = new ClientCodeNewRequest();
log.debug("Creating new clientCode by tkr account: {}", tkrAccount.getClientCode());
Optional<Account> depoAccount = validator.getStored(ClientCodeStoreObjects.DEPO_ACCOUNT);
Long depoAccountId = depoAccount.map(Account::getId).orElse(null);
// Map<String, Account> accountByCurrency = validator.getStored(ClientCodeStoreObjects.MAPPED_TO_CURRENCY_ACCOUNTS);
//
// clientCodeNewRequest.setCompanyId(company.getId());
// clientCodeNewRequest.setCode(tkrAccount.getClientCode());
// clientCodeNewRequest.setDepoAccountId(depoAccountId);
// Account moneyAccount = accountByCurrency.get(CurrencyCode.RUB.getKey());
// clientCodeNewRequest.setMoneyAccountId(moneyAccount.getId());
//
// List<Long> foreignCurrencyList = accountByCurrency.entrySet()
// .stream()
// .filter(currencyCodeAccountEntry -> !CurrencyCode.RUB.equalsByKey(currencyCodeAccountEntry.getKey()))
// .map(currencyCodeAccountEntry -> currencyCodeAccountEntry.getValue().getId())
// .toList();
// clientCodeNewRequest.setCurrencyAccountList(foreignCurrencyList);
// clientCodeFacade.createClientCode(clientCodeNewRequest, validator);
//
// TradingClearingRegistry tradingClearingRegistry = selectTradingClearingRegistry(company.getId(),
// moneyAccount.getId(), depoAccountId);
// sendTkrRequest.getTkrs().add(gatewayRequestCreator.createTkrGatewayReq(tradingClearingRegistry));
// log.debug("Success created new clientCode by tkr account: {}", tkrAccount.getClientCode());
}
}
private RequestInfoUpdate clientCodeNewFromBackend(BaseRequest<ClientCodeNewRequest> clientCodeNewRequest) {

View file

@ -24,6 +24,7 @@ public class ClientCodeValidator {
private final Function<ClientCodeUpdateRequest, IValidator> clientCodeUpdateRequestValidator;
private final Function<CommonDeleteRequest, IValidator> clientCodeDeleteRequestValidator;
private final Function<TkrAccount, IValidator> tkrAccountsGatewayValidator;
private final Function<TkrAccount, IValidator> tkrEksAccountsGatewayValidator;
private final IMessageResolver messageResolver;
public ClientCodeValidator(UserRoleVerification userRoleVerification,
@ -31,12 +32,14 @@ public class ClientCodeValidator {
Function<ClientCodeUpdateRequest, IValidator> clientCodeUpdateRequestValidator,
Function<CommonDeleteRequest, IValidator> clientCodeDeleteRequestValidator,
Function<TkrAccount, IValidator> tkrAccountsGatewayValidator,
Function<TkrAccount, IValidator> tkrEksAccountsGatewayValidator,
IMessageResolver messageResolver) {
this.userRoleVerification = userRoleVerification;
this.clientCodeNewRequestValidator = clientCodeNewRequestValidator;
this.clientCodeUpdateRequestValidator = clientCodeUpdateRequestValidator;
this.clientCodeDeleteRequestValidator = clientCodeDeleteRequestValidator;
this.tkrAccountsGatewayValidator = tkrAccountsGatewayValidator;
this.tkrEksAccountsGatewayValidator = tkrEksAccountsGatewayValidator;
this.messageResolver = messageResolver;
}
@ -44,6 +47,10 @@ public class ClientCodeValidator {
return standardValidation(tkrAccountsGatewayValidator, gatewayAccountRequest);
}
public ValidationResult checkGatewayRequestWithEksAcc(TkrAccount gatewayAccountRequest) {
return standardValidation(tkrEksAccountsGatewayValidator, gatewayAccountRequest);
}
public ValidationResult checkBackendNewRequest(ClientCodeNewRequest clientCodeNewRequest) {
return standardValidation(clientCodeNewRequestValidator, clientCodeNewRequest);
}

View file

@ -7,6 +7,8 @@ import java.util.Map;
import java.util.Optional;
import org.springframework.util.StringUtils;
import ru.clearing.classes.statics.data.account.Account;
import ru.clearing.classes.statics.data.account.AccountSymbols;
import ru.clearing.classes.statics.data.account.DepoAccount;
import ru.clearing.classes.statics.data.company.Company;
import ru.clearing.classes.statics.data.registry.TradingClearingRegistry;
import ru.clearing.classes.statics.data.registry.TradingClearingRegistryList;
@ -80,7 +82,7 @@ public enum GatewayClientCodeValidationRule implements IValidationRule<ImdgValid
if (account == null) {
return of(AccountError.ACCOUNT_NOT_FOUND_GTW, moneyAccountMsg.getAccount(), "money_account");
}
accountByCurrency.put(account.getCurrency(), account);
accountByCurrency.put(moneyAccountMsg.getCurrCode(), account);
}
context.storeObject(ClientCodeStoreObjects.MAPPED_TO_CURRENCY_ACCOUNTS, accountByCurrency);
return Optional.empty();
@ -96,9 +98,18 @@ public enum GatewayClientCodeValidationRule implements IValidationRule<ImdgValid
return empty();
}
Imdg<Account> imdg = context.obtainMap(IMDGDistributedNames.Map_Account, Account.class);
Account depoAccount = imdg.getFirstObjectByFieldValues(
Map.of("account", depoAccountVal)
Imdg<AccountSymbols> accountSymbolsImdg = context.obtainMap(IMDGDistributedNames.Map_AccountSymbols, AccountSymbols.class);
ImdgPredicateBuilder predicateBuilder = accountSymbolsImdg.predicateBuilder();
AccountSymbols accountSymbols = accountSymbolsImdg.getSingleObjectByPredicate(
predicateBuilder.equals("accountSymbolValue", depoAccountVal)
);
if (accountSymbols == null) {
return of(AccountError.DepoAccountNotFound, "depo_account");
}
Imdg<DepoAccount> imdg = context.obtainMap(IMDGDistributedNames.Map_DepoAccount, DepoAccount.class);
DepoAccount depoAccount = imdg.getFirstObjectByPredicate(
predicateBuilder.equals("accountId", accountSymbols.getAccountId())
);
if (depoAccount == null) {
context.storeObject(ClientCodeStoreObjects.DEPO_ACCOUNT, Optional.empty());

View file

@ -0,0 +1,93 @@
package ru.spcex.clearing.account.validation;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Optional;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.util.StringUtils;
import ru.clearing.classes.statics.data.account.Account;
import ru.clearing.classes.statics.data.company.Company;
import ru.spcex.clearing.account.errors.AccountError;
import ru.spcex.clearing.imdg.IMDGDistributedNames;
import ru.spcex.clearing.platform.messaging.domain.cud.account.TkrAccount;
import ru.spcex.clearing.platform.messaging.domain.cud.gateway.MoneyAccountMsgRequest;
import ru.spcex.platform.enumeration.CurrencyCode;
import ru.spcex.platform.imdg.api.Imdg;
import ru.spcex.platform.imdg.validation.ImdgValidationContext;
import ru.spcex.platform.utils.enumeration.EnumMessage;
import ru.spcex.platform.utils.validation.IValidationRule;
public enum GatewayEksClientCodeValidationRule implements IValidationRule<ImdgValidationContext<TkrAccount>> {
CompanyPresent() {
@Override
public Optional<EnumMessage> validate(ImdgValidationContext<TkrAccount> context) {
TkrAccount validatedObject = context.getValidatedObject();
Long tradingCode = validatedObject.getTradingCode();
if (tradingCode == null) {
return of(AccountError.RequiredFieldEmpty, "trading_code");
}
Imdg<Company> companyImdg = context.obtainMap(IMDGDistributedNames.Map_Company, Company.class);
Company company = companyImdg.getFirstObjectByFieldValues(
Map.of("tradingCode", String.valueOf(tradingCode))
);
if (company == null) {
return of(AccountError.COMPANY_NOT_FOUND_GTW, "trading_code");
}
context.storeObject(ClientCodeStoreObjects.COMPANY, company);
return Optional.empty();
}
},
AllAccountsPresent() {
@Override
public Optional<EnumMessage> validate(ImdgValidationContext<TkrAccount> context) {
TkrAccount validatedObject = context.getValidatedObject();
List<MoneyAccountMsgRequest> accountList = validatedObject.getMoneyAccounts();
if (accountList == null || accountList.isEmpty()) {
return of(AccountError.RequiredFieldEmpty, "money_account");
}
List<String> currencies = accountList.stream().map(MoneyAccountMsgRequest::getCurrCode).toList();
if (!currencies.contains(CurrencyCode.RUB.getKey())) {
return of(AccountError.RequiredFieldEmpty, "money_account");
}
Imdg<Account> imdg = context.obtainMap(IMDGDistributedNames.Map_Account, Account.class);
Map<String, Account> accountByCurrency = new HashMap<>();
for (MoneyAccountMsgRequest moneyAccountMsg : accountList) {
//если в списке есть eksAccount то проверим, что его нет в системе
if (!StringUtils.hasText(moneyAccountMsg.getEks_account())) {
return of(AccountError.RequiredFieldEmpty, "eks_account");
}
}
context.storeObject(ClientCodeStoreObjects.MAPPED_TO_CURRENCY_ACCOUNTS, accountByCurrency);
return Optional.empty();
}
},
DepoAccountsPresent() {
@Override
public Optional<EnumMessage> validate(ImdgValidationContext<TkrAccount> context) {
TkrAccount validatedObject = context.getValidatedObject();
String depoAccountVal = validatedObject.getDepoAccount();
if (!StringUtils.hasText(depoAccountVal)) {
context.storeObject(ClientCodeStoreObjects.DEPO_ACCOUNT, Optional.empty());
return empty();
}
Imdg<Account> imdg = context.obtainMap(IMDGDistributedNames.Map_Account, Account.class);
Account depoAccount = imdg.getFirstObjectByFieldValues(
Map.of("account", depoAccountVal)
);
if (depoAccount == null) {
context.storeObject(ClientCodeStoreObjects.DEPO_ACCOUNT, Optional.empty());
return of(AccountError.DepoAccountNotFound, "depo_account");
}
context.storeObject(ClientCodeStoreObjects.DEPO_ACCOUNT, depoAccount);
return Optional.empty();
}
};
private static final Logger log = LoggerFactory.getLogger(GatewayEksClientCodeValidationRule.class);
}

View file

@ -11,7 +11,7 @@
<parent>
<artifactId>clearing-parent</artifactId>
<groupId>ru.spcex.clearing</groupId>
<version>SPCEX-3.25.299</version>
<version>SPCEX-3.26.301</version>
</parent>

View file

@ -1,6 +1,6 @@
{
"version": "3.25.299.175",
"version": "3.25.300.176",
"enums": {
@ -12381,6 +12381,13 @@
,"type": 12,"dbname": "Код регистра","name": "Описание регистра","shortname": "Код регистра","searchable": true,"sortable": true,"link": "registryCode","linkCode": "code","visible": false
}
,
{
"code": "registryStatus"
,"type": 12,"dbname": "Код статуса","name": "Наименование статуса","shortname": "Статус","searchable": true,"sortable": true,"link": "registryStatus"
}
,
{

View file

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--?xml-stylesheet type="text/xsl" href="\..\corp-reports\src\data\meta\meta.server.xslt"?-->
<meta version="3.25.299.175">
<meta version="3.25.300.176">
<!-- _xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" _xsi:noNamespaceSchemaLocation="file:///E:/d/projects/meta/from/meta.xsd" -->
<!--Здесь словари-->
<enums>
@ -2875,6 +2875,7 @@
<set><tradingClearingRegistry type="2" length="50" name="Торгово-клиринговый регистр" shortname="Торгово-клиринговый регистр" searchable="true" sortable="true"/></set>
<set><balance type="10" name="Остаток после исполнения обязательств" shortname="Остаток" searchable="true" sortable="true" visible="true"/></set>
<set><registryCode type="12" dbname="Код регистра" name="Описание регистра" shortname="Код регистра" searchable="true" sortable="true" link="registryCode" linkCode="code" visible="false"/></set>
<set><registryStatus type="12" dbname="Код статуса" name="Наименование статуса" shortname="Статус" searchable="true" sortable="true" link="registryStatus"/></set>
<set><clearingDate type="6" name="Дата клиринга" shortname="Клиринг" searchable="true" sortable="true" visible="false"/></set>
<set><sessionId type="1" dbname="Идентификатор клиринговой сессии" name="Клиринговая сессия" shortname="Сессия" visible="false" searchable="true" sortable="true" link="session"/></set>
<set><id type="1" name="Идентификатор записи" shortname="ID" searchable="true" sortable="true" visible="false"/></set>

View file

@ -5,7 +5,7 @@
<parent>
<artifactId>clearing-parent</artifactId>
<groupId>ru.spcex.clearing</groupId>
<version>SPCEX-3.25.299</version>
<version>SPCEX-3.26.301</version>
</parent>
<modelVersion>4.0.0</modelVersion>

View file

@ -12,7 +12,7 @@
<parent>
<artifactId>clearing-parent</artifactId>
<groupId>ru.spcex.clearing</groupId>
<version>SPCEX-3.25.299</version>
<version>SPCEX-3.26.301</version>
</parent>
<properties>

View file

@ -31,6 +31,7 @@ public class OrderCurrency extends BusinessObject {
private String comment;
private Long initialOrderId;
private Long registryId;
private Long exchangeOrderId;
public Long getSecurityId() {
return securityId;
@ -231,4 +232,12 @@ public class OrderCurrency extends BusinessObject {
public void setRegistryId(Long registryId) {
this.registryId = registryId;
}
public Long getExchangeOrderId() {
return exchangeOrderId;
}
public void setExchangeOrderId(Long exchangeOrderId) {
this.exchangeOrderId = exchangeOrderId;
}
}

View file

@ -64,6 +64,7 @@ public class SOrders extends BusinessObject {
private BigDecimal qty2;
private BigDecimal value2;
private String exchangeOrderNum;
public Long getOrderNum() {
return orderNum;
@ -384,4 +385,12 @@ public class SOrders extends BusinessObject {
public void setValue2(BigDecimal value2) {
this.value2 = value2;
}
public String getExchangeOrderNum() {
return exchangeOrderNum;
}
public void setExchangeOrderNum(String exchangeOrderNum) {
this.exchangeOrderNum = exchangeOrderNum;
}
}

View file

@ -6,13 +6,13 @@
<parent>
<groupId>ru.spcex.clearing</groupId>
<artifactId>clearing-parent</artifactId>
<version>SPCEX-3.25.299</version>
<version>SPCEX-3.26.301</version>
</parent>
<artifactId>cleaning-builders</artifactId>
<name>cleaning-builders</name>
<description>Cleaning builders module</description>
<version>SPCEX-3.25.299</version>
<version>SPCEX-3.26.301</version>
<packaging>jar</packaging>
@ -26,7 +26,7 @@
<dependency>
<groupId>ru.spcex.clearing</groupId>
<artifactId>classes</artifactId>
<version>SPCEX-3.25.299</version>
<version>SPCEX-3.26.301</version>
<scope>compile</scope>
</dependency>
<dependency>

View file

@ -5,7 +5,7 @@
<parent>
<artifactId>clearing-parent</artifactId>
<groupId>ru.spcex.clearing</groupId>
<version>SPCEX-3.25.299</version>
<version>SPCEX-3.26.301</version>
</parent>
<modelVersion>4.0.0</modelVersion>

View file

@ -8,12 +8,12 @@
<name>clearing-validation</name>
<description>Clearing-module, dependency version of platform-utils</description>
<packaging>jar</packaging>
<version>SPCEX-3.25.299</version>
<version>SPCEX-3.26.301</version>
<parent>
<artifactId>clearing-parent</artifactId>
<groupId>ru.spcex.clearing</groupId>
<version>SPCEX-3.25.299</version>
<version>SPCEX-3.26.301</version>
</parent>
<properties>
@ -35,13 +35,13 @@
<dependency>
<groupId>ru.spcex.clearing</groupId>
<artifactId>classes</artifactId>
<version>SPCEX-3.25.299</version>
<version>SPCEX-3.26.301</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>ru.spcex.clearing</groupId>
<artifactId>dictionary</artifactId>
<version>SPCEX-3.25.299</version>
<version>SPCEX-3.26.301</version>
<scope>compile</scope>
</dependency>
<dependency>

View file

@ -5,7 +5,7 @@
<parent>
<artifactId>clearing-parent</artifactId>
<groupId>ru.spcex.clearing</groupId>
<version>SPCEX-3.25.299</version>
<version>SPCEX-3.26.301</version>
</parent>
<modelVersion>4.0.0</modelVersion>

View file

@ -6,7 +6,7 @@
<parent>
<groupId>ru.spcex.clearing</groupId>
<artifactId>clearing-parent</artifactId>
<version>SPCEX-3.25.299</version>
<version>SPCEX-3.26.301</version>
</parent>
<artifactId>csv-importer</artifactId>

View file

@ -7,12 +7,12 @@
<artifactId>db-scripts</artifactId>
<name>db-scripts</name>
<description>db-scripts for PostgreSQL</description>
<version>SPCEX-3.25.299</version>
<version>SPCEX-3.26.301</version>
<parent>
<artifactId>clearing-parent</artifactId>
<groupId>ru.spcex.clearing</groupId>
<version>SPCEX-3.25.299</version>
<version>SPCEX-3.26.301</version>
</parent>
<build>

View file

@ -5585,7 +5585,8 @@ CREATE TABLE ORDER_CURRENCY
INITIAL_ORDER_ID BIGINT,
CREATED_AT TIMESTAMP,
UPDATED_AT TIMESTAMP,
REGISTRY_ID BIGINT
REGISTRY_ID BIGINT,
EXCHANGE_ORDER_ID BIGINT
);
COMMENT ON TABLE ORDER_CURRENCY IS 'Заявки для заключения сделок переноса на валютном рынке';
@ -5617,6 +5618,7 @@ COMMENT ON COLUMN ORDER_CURRENCY.INITIAL_ORDER_ID is 'Номер исходно
COMMENT ON COLUMN ORDER_CURRENCY.CREATED_AT is 'Создано';
COMMENT ON COLUMN ORDER_CURRENCY.UPDATED_AT is 'Обновлено';
COMMENT ON COLUMN ORDER_CURRENCY.REGISTRY_ID IS 'Идентификатор регистра';
COMMENT ON COLUMN ORDER_CURRENCY.EXCHANGE_ORDER_ID IS 'Биржевой номер заявки';
GRANT ALL PRIVILEGES ON TABLE ORDER_CURRENCY TO clearing;
DROP TABLE IF EXISTS OVERNIGHT_SETTINGS;
@ -5708,7 +5710,8 @@ CREATE TABLE S_ORDERS
SETTLE_DATE DATE,
SETTLE_DATE2 DATE,
QTY2 NUMERIC(72, 18),
VALUE2 NUMERIC(72, 18)
VALUE2 NUMERIC(72, 18),
EXCHANGE_ORDER_NUM VARCHAR(255)
);
COMMENT ON TABLE S_ORDERS IS 'Заявки из Торговой системы';
@ -5755,6 +5758,7 @@ COMMENT ON COLUMN S_ORDERS.SETTLE_DATE is 'Дата расчетов перво
COMMENT ON COLUMN S_ORDERS.SETTLE_DATE2 is 'Дата расчетов второй (дальней) ноги свопа';
COMMENT ON COLUMN S_ORDERS.QTY2 is 'Количество второй части свопа';
COMMENT ON COLUMN S_ORDERS.VALUE2 is 'Объем второй части свопа';
COMMENT ON COLUMN S_ORDERS.EXCHANGE_ORDER_NUM IS 'Биржевой номер заявки';
GRANT ALL PRIVILEGES ON TABLE S_ORDERS TO clearing;
CREATE TABLE ORDER_STATUS_DICTIONARY(ID bigint PRIMARY KEY, CODE varchar(4), NAME varchar(50));
@ -5775,6 +5779,7 @@ COMMENT ON COLUMN COMMENT_DICTIONARY.ID IS 'Идентификатор';
COMMENT ON COLUMN COMMENT_DICTIONARY.CODE IS 'Код';
COMMENT ON COLUMN COMMENT_DICTIONARY.NAME IS 'Наименование';
DROP TABLE IF EXISTS ORDER_CURRENCY_HISTORY;
CREATE TABLE ORDER_CURRENCY_HISTORY
(
ID bigint PRIMARY KEY,
@ -5806,9 +5811,9 @@ CREATE TABLE ORDER_CURRENCY_HISTORY
COMMENT VARCHAR(255),
INITIAL_ORDER_ID BIGINT,
CREATED_AT TIMESTAMP,
UPDATED_AT TIMESTAMP
UPDATED_AT TIMESTAMP,
EXCHANGE_ORDER_ID BIGINT
);
DROP TABLE IF EXISTS ORDER_CURRENCY_HISTORY;
COMMENT ON TABLE ORDER_CURRENCY_HISTORY IS 'История изменений таблицы ORDER_CURRENCY';
COMMENT ON COLUMN ORDER_CURRENCY_HISTORY.ID is 'Идентификатор записи';
@ -5841,6 +5846,7 @@ COMMENT ON COLUMN ORDER_CURRENCY_HISTORY.COMMENT is 'Комментарий';
COMMENT ON COLUMN ORDER_CURRENCY_HISTORY.INITIAL_ORDER_ID is 'Номер исходной заявки';
COMMENT ON COLUMN ORDER_CURRENCY_HISTORY.CREATED_AT is 'Создано';
COMMENT ON COLUMN ORDER_CURRENCY_HISTORY.UPDATED_AT is 'Обновлено';
COMMENT ON COLUMN ORDER_CURRENCY_HISTORY.EXCHANGE_ORDER_ID IS 'Биржевой номер заявки';
GRANT ALL PRIVILEGES ON TABLE ORDER_CURRENCY_HISTORY TO clearing;
/* views */

View file

@ -0,0 +1,14 @@
-- DB version: 3.24 -> 3.25
ALTER TABLE ORDER_CURRENCY ADD COLUMN IF NOT EXISTS EXCHANGE_ORDER_ID BIGINT;
COMMENT ON COLUMN ORDER_CURRENCY.EXCHANGE_ORDER_ID IS 'Биржевой номер заявки';
ALTER TABLE ORDER_CURRENCY_HISTORY ADD COLUMN IF NOT EXISTS EXCHANGE_ORDER_ID BIGINT;
COMMENT ON COLUMN ORDER_CURRENCY_HISTORY.EXCHANGE_ORDER_ID IS 'Биржевой номер заявки';
ALTER TABLE S_ORDERS ADD COLUMN IF NOT EXISTS EXCHANGE_ORDER_NUM VARCHAR(255);
COMMENT ON COLUMN S_ORDERS.EXCHANGE_ORDER_NUM IS 'Биржевой номер заявки';
INSERT INTO DB_VERSION(ID, VERSION) values (1, '3.26') ON CONFLICT (ID) DO UPDATE SET VERSION = EXCLUDED.VERSION;

View file

@ -7,12 +7,12 @@
<artifactId>dbf-exporter</artifactId>
<name>dbf-exporter</name>
<description>DBF exporter for DBF files</description>
<version>SPCEX-3.25.299</version>
<version>SPCEX-3.26.301</version>
<parent>
<artifactId>clearing-parent</artifactId>
<groupId>ru.spcex.clearing</groupId>
<version>SPCEX-3.25.299</version>
<version>SPCEX-3.26.301</version>
</parent>
<dependencies>

View file

@ -8,12 +8,12 @@
<artifactId>dbf-importer</artifactId>
<name>dbf-importer</name>
<description>DBF loader for DBF files</description>
<version>SPCEX-3.25.299</version>
<version>SPCEX-3.26.301</version>
<parent>
<artifactId>clearing-parent</artifactId>
<groupId>ru.spcex.clearing</groupId>
<version>SPCEX-3.25.299</version>
<version>SPCEX-3.26.301</version>
</parent>
<dependencies>

View file

@ -6,7 +6,7 @@
<parent>
<groupId>ru.spcex.clearing</groupId>
<artifactId>clearing-parent</artifactId>
<version>SPCEX-3.25.299</version>
<version>SPCEX-3.26.301</version>
</parent>
<artifactId>default-management</artifactId>

View file

@ -11,6 +11,7 @@ import ru.spcex.platform.imdg.api.Imdg;
import ru.spcex.platform.imdg.api.predicate.ImdgPredicateBuilder;
import ru.spcex.platform.imdg.validation.ImdgValidationContext;
import ru.spcex.platform.utils.enumeration.EnumMessage;
import ru.spcex.platform.utils.enumeration.IEnumKey;
import ru.spcex.platform.utils.validation.IValidationRule;
public class SpotPairPresent implements IValidationRule<ImdgValidationContext<OrderCurrencyUpdateRequest>> {
@ -19,6 +20,11 @@ public class SpotPairPresent implements IValidationRule<ImdgValidationContext<Or
@Override
public Optional<EnumMessage> validate(ImdgValidationContext<OrderCurrencyUpdateRequest> ctx) {
OrderCurrency oc = ctx.getStoredObject(OrderCurrencyValidationStored.OrderCurrency);
OrderStatus orderStatus = IEnumKey.getEnumByKey(OrderStatus.class, oc.getStatus());
if (OrderStatus.REJECTED == orderStatus || OrderStatus.FILL == orderStatus) {
return of(DefaultManagementErrors.OperationNotAllowed);
}
if (!OvernightType.SPOT.equalsByKey(oc.getOvernightType())) {
return empty();
}
@ -32,6 +38,7 @@ public class SpotPairPresent implements IValidationRule<ImdgValidationContext<Or
pb.equals("tradingClearingRegistryId", oc.getTradingClearingRegistryId()),
pb.equals("counterPartyId", oc.getCounterPartyId()),
pb.equals("status", OrderStatus.CREATED.getKey()),
pb.equals("type", oc.getType()),
pb.not(
pb.equals("id", oc.getId())
)

View file

@ -1,6 +1,7 @@
package ru.spcex.clearing.dflt.management.listener;
import java.math.BigDecimal;
import java.math.RoundingMode;
import java.time.Instant;
import java.time.LocalDate;
import java.util.Arrays;
@ -22,8 +23,6 @@ import ru.clearing.classes.statics.data.company.Company;
import ru.clearing.classes.statics.data.misc.Listing;
import ru.clearing.classes.statics.data.misc.Market;
import ru.clearing.classes.statics.data.misc.OrderCurrency;
import ru.clearing.classes.statics.data.misc.OvernightSettings;
import ru.clearing.classes.statics.data.misc.SCrossRate;
import ru.clearing.classes.statics.data.misc.SOrders;
import ru.clearing.classes.statics.data.registry.Registry;
import ru.clearing.classes.statics.data.registry.TradingClearingRegistry;
@ -59,8 +58,6 @@ import ru.spcex.platform.utils.validation.IValidator;
@Service
public class OrderCurrencyListener extends QueueConsumer implements InitializingBean {
protected final Logger log = LoggerFactory.getLogger(getClass());
private final Imdg<Registry> registryImdg;
private final Imdg<OvernightSettings> overnightSettingsImdg;
private final Imdg<OrderCurrency> orderCurrencyImdg;
private final Imdg<SOrders> sOrdersImdg;
private final Function<OrderCurrencyUpdateRequest, IValidator> orderCurrencyUpdateValidator;
@ -71,7 +68,6 @@ public class OrderCurrencyListener extends QueueConsumer implements Initializing
private final Function<CommonDeleteRequest, IValidator> orderCompanyDeleteValidator;
private final ImdgQueryService imdgQueryService;
private final IMessageResolver msgResolver;
private final TransferDateService transferDateService;
@Autowired
public OrderCurrencyListener(Consumer<String, Object> kafkaQueue,
@ -92,8 +88,6 @@ public class OrderCurrencyListener extends QueueConsumer implements Initializing
IMessageResolver msgResolver,
TransferDateService transferDateService) {
super(kafkaQueue, kafkaProducer);
this.registryImdg = imdgProvider.getImdg(IMDGDistributedNames.Map_Registry, Registry.class);
this.overnightSettingsImdg = imdgProvider.getImdg(IMDGDistributedNames.Map_OvernightSettings, OvernightSettings.class);
this.sOrdersImdg = imdgProvider.getImdg(IMDGDistributedNames.Map_SOrders, SOrders.class);
this.orderCurrencyUpdateValidator = orderCurrencyUpdateValidator;
this.orderCurrencyUpdateStatusValidator = orderCurrencyUpdateStatusValidator;
@ -104,7 +98,6 @@ public class OrderCurrencyListener extends QueueConsumer implements Initializing
this.imdgQueryService = imdgQueryService;
this.msgResolver = msgResolver;
this.orderCurrencyImdg = imdgProvider.getImdg(IMDGDistributedNames.Map_OrderCurrency, OrderCurrency.class);
this.transferDateService = transferDateService;
}
@Override
@ -232,9 +225,9 @@ public class OrderCurrencyListener extends QueueConsumer implements Initializing
LocalDate now = LocalDate.now();
//мб возвращать вместе с листингом?
CurrencyPairDictionary currPairT0 = imdgQueryService.getCurrencyPairDictionaryBySecurityId(listingT0.getSecurityId());
SCrossRate rateT0 = imdgQueryService.getSCrossRates(currPairT0.getBaseCurrency(), now);
Rates rateT0 = imdgQueryService.getRateOnNextWorkingDay(currPairT0.getBaseCurrency());
CurrencyPairDictionary currPairT1 = imdgQueryService.getCurrencyPairDictionaryBySecurityId(listingT1.getSecurityId());
SCrossRate rateT1 = imdgQueryService.getSCrossRates(currPairT1.getBaseCurrency(), now);
Rates rateT1 = imdgQueryService.getRateOnNextWorkingDay(currPairT1.getBaseCurrency());
var pair = new Pair<>(orderT0, orderT1);
Pair.forEach(pair, o -> {
@ -245,8 +238,8 @@ public class OrderCurrencyListener extends QueueConsumer implements Initializing
});
updateOrderFieldsByListing(orderT0, listingT0);
updateOrderFieldsByListing(orderT1, listingT1);
orderT0.setPrice(rateT0.getUnitRate());
orderT1.setPrice(BigDecimalUtil.safeSumBD(swap.getPrice(), rateT1.getUnitRate()));
orderT0.setPrice(rateT0.getValue().setScale(listingT0.getPrecision().intValue(), RoundingMode.HALF_UP));
orderT1.setPrice(BigDecimalUtil.safeSumBD(swap.getPrice(), rateT1.getValue()).setScale(listingT1.getPrecision().intValue(), RoundingMode.HALF_UP));
return pair;
}
@ -279,18 +272,26 @@ public class OrderCurrencyListener extends QueueConsumer implements Initializing
Market market = imdgQueryService.getSwapMarket();
Listing listing = imdgQueryService.findListing(rgs, market.getCode(), SettleCode.T1.getKey());
CurrencyPairDictionary pair = imdgQueryService.getCurrencyPairDictionaryBySecurityId(listing.getSecurityId());
BigDecimal n = transferDateService.numberOfDaysOfTransfer();
LocalDate searchingValueDate = LocalDate.now().plusDays(n.longValue());
Rates rates = imdgQueryService.getRate(pair.getBaseCurrency(), searchingValueDate);
Rates rates = imdgQueryService.getRateOnNextWorkingDay(pair.getBaseCurrency());
BigDecimal rateValue = null;
copyCommonFields(order1, swap);
swap.setSecurityId(listing.getSecurityId());
swap.setSecuritySymbol(listing.getSymbolCode());
swap.setListingId(listing.getId());
swap.setOvernightType(OvernightType.SWAP.getKey());
swap.setMarket(market.getCode());
swap.setPrice(safeBD(spotT1.getPrice()).subtract(safeBD(spotT0.getPrice())));
swap.setBasePrice(safeBD(rates.getValue()));
BigDecimal price = safeBD(spotT1.getPrice())
.subtract(safeBD(spotT0.getPrice()))
.setScale(listing.getPrecision().intValue(), RoundingMode.HALF_UP);
swap.setPrice(price);
if (rates != null) {
rateValue = rates.getValue().setScale(listing.getPrecision().intValue(), RoundingMode.HALF_UP);
} else {
log.warn("Rates not found for listing {}", listing.getId());
}
swap.setBasePrice(safeBD(rateValue));
swap.setCreated(Instant.now());
return swap;
}
@ -356,6 +357,7 @@ public class OrderCurrencyListener extends QueueConsumer implements Initializing
o.setListingId(oc.getListingId());
o.setMarket(oc.getMarket());
o.setPrice(oc.getPrice());
o.setBasePrice(oc.getBasePrice());
o.setSettleCode(oc.getSettleCode());
});
orderCurrencyImdg.insert(primaryOrder);
@ -438,6 +440,7 @@ public class OrderCurrencyListener extends QueueConsumer implements Initializing
continue;
}
orderCurrency.setStatus(status.getKey());
orderCurrency.setExchangeOrderId(Long.valueOf(sOrder.getExchangeOrderNum()));
orderCurrency.setUpdated(Instant.now());
orderCurrencyImdg.update(orderCurrency);
}
@ -455,6 +458,7 @@ public class OrderCurrencyListener extends QueueConsumer implements Initializing
continue;
}
orderCurrency.setStatus(status.getKey());
orderCurrency.setExchangeOrderId(Long.valueOf(sOrder.getExchangeOrderNum()));
orderCurrency.setUpdated(Instant.now());
orderCurrencyImdg.update(orderCurrency);
}

View file

@ -7,7 +7,6 @@ import java.nio.charset.Charset;
import java.nio.file.Files;
import java.nio.file.Path;
import java.time.Instant;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.Collection;
@ -24,8 +23,8 @@ import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import ru.clearing.classes.statics.data.misc.OrderCurrency;
import ru.clearing.classes.statics.data.misc.OvernightSettings;
import ru.clearing.classes.statics.data.misc.SCrossRate;
import ru.clearing.classes.statics.data.registry.Registry;
import ru.clearing.classes.statics.data.security.Rates;
import ru.spcex.clearing.dflt.management.config.settings.DefaultManagementSettings;
import ru.spcex.clearing.dflt.management.enums.SendOrdersTypes;
import ru.spcex.clearing.dflt.management.service.ImdgQueryService;
@ -102,12 +101,26 @@ public class TaskListener extends QueueConsumer implements InitializingBean {
log.info("CROR createOrder started, request={}", newReq);
Collection<Long> registryIds = imdgQueryService.getCurrencyRegistry();
//todo очередность создания
if (registryIds == null || registryIds.isEmpty()) {
log.info("No registries found for CROR processing");
NotificationNewRequest notification = new NotificationNewRequest();
notification.setObjectType(ObjectType.rgst.getKey());
notification.setPriority(Priority.HIGH.getKey());
notification.setComment("При создании заявок для заключения сделок переноса заявки не созданы: не найдены регистры учета дефицита активов");
kafkaSender.sendRequestToQueue(Consts.NOTIFICATION_NEW, notification);
return;
}
Rates rates = imdgQueryService.getRateOnNextWorkingDay(CurrencyCode.CNY.getKey());
if (rates == null) {
log.warn("No Rates found on nextWorkingDay");
NotificationNewRequest notification = new NotificationNewRequest();
notification.setObjectType(ObjectType.rgst.getKey());
notification.setPriority(Priority.HIGH.getKey());
notification.setComment("Ошибка при создании заявки: не определен Базовый курс");
kafkaSender.sendRequestToQueue(Consts.NOTIFICATION_NEW, notification);
return;
}
for (Long registryId : registryIds) {
try {
rejectByRegistryId(registryId);
@ -175,22 +188,22 @@ public class TaskListener extends QueueConsumer implements InitializingBean {
private String checkBalance(OrderCurrency orderCurrency) {
Registry pmtRegistry = imdgQueryService.getRegistryById(orderCurrency.getRegistryId());
Registry amtRegistry = null;
Registry amfRegistry = null;
boolean isRubPmt = pmtRegistry.getSecuritySymbol().equals(CurrencyCode.RUB.getKey());
if (!isRubPmt) {
amtRegistry = imdgQueryService.findAmtRegistry(pmtRegistry, CurrencyCode.RUB.getKey());
amfRegistry = imdgQueryService.findAmfRegistry(pmtRegistry, CurrencyCode.RUB.getKey());
}
String currency = isRubPmt ? CurrencyCode.CNY.getKey() : pmtRegistry.getSecuritySymbol();
SCrossRate sCrossRate = imdgQueryService.getSCrossRates(currency, LocalDate.now());
Rates rates = imdgQueryService.getRateOnNextWorkingDay(currency);
BigDecimal val = orderCurrency.getQuantityLot()
.multiply(orderCurrency.getLotSize())
.multiply(sCrossRate.getUnitRate());
.multiply(rates.getValue());
BigDecimal diff = isRubPmt ?
pmtRegistry.getBalance().add(val) :
amtRegistry.getBalance().subtract(val);
amfRegistry.getBalance().subtract(val);
if (diff.compareTo(BigDecimal.ZERO) < 0) {
return String.format("Для ТКР %s компании %s: баланс %s RUB;",
pmtRegistry.getTradingClearingRegistry(), pmtRegistry.getShortName(),

View file

@ -50,9 +50,11 @@ public class ImdgQueryService {
private final Imdg<Registry> registryImdg;
private final Imdg<OvernightSettings> overnightSettingsImdg;
private final Imdg<OrderCurrency> orderCurrencyImdg;
private final TransferDateService transferDateService;
public ImdgQueryService(ImdgProvider imdgProvider) {
public ImdgQueryService(ImdgProvider imdgProvider,
TransferDateService transferDateService) {
this.categoryImdg = imdgProvider.getImdg(IMDGDistributedNames.Map_ClearingMemberCategory, ClearingMemberCategory.class);
this.companyRoleSetImdg = imdgProvider.getImdg(IMDGDistributedNames.Map_CompanyRoleSet, CompanyRoleSet.class);
this.companyImdg = imdgProvider.getImdg(IMDGDistributedNames.Map_Company, Company.class);
@ -67,6 +69,7 @@ public class ImdgQueryService {
this.registryImdg = imdgProvider.getImdg(IMDGDistributedNames.Map_Registry, Registry.class);
this.overnightSettingsImdg = imdgProvider.getImdg(IMDGDistributedNames.Map_OvernightSettings, OvernightSettings.class);
this.orderCurrencyImdg = imdgProvider.getImdg(IMDGDistributedNames.Map_OrderCurrency, OrderCurrency.class);
this.transferDateService = transferDateService;
}
public Collection<Long> getCurrencyRegistry() {
ImdgPredicateBuilder builder = registryImdg.predicateBuilder();
@ -194,27 +197,18 @@ public class ImdgQueryService {
: findRiskParameterForOtherCurrency(registry);
}
public Rates getRate(String currency, LocalDate valueDate) {
public Rates getRateOnNextWorkingDay(String currency) {
LocalDate nextWorkingDate = transferDateService.findNextWorkingDate();
ImdgPredicateBuilder pb = ratesImdg.predicateBuilder();
return ratesImdg.getSingleObjectByPredicate(
pb.and(
pb.equals("currency", currency),
pb.equals("valueDate", valueDate),
pb.equals("valueDate", nextWorkingDate),
pb.equals("workflowStatus", WorkflowStatus.Active.getKey())
)
);
}
public SCrossRate getSCrossRates(String currency, LocalDate date) {
ImdgPredicateBuilder pb = sCrossRateImdg.predicateBuilder();
return sCrossRateImdg.getSingleObjectByPredicate(
pb.and(
pb.equals("currency", currency),
pb.equals("date", date)
)
);
}
public BigDecimal defineTransferRate(Long currencyPairDictionaryId, String securitySymbol) {
ImdgPredicateBuilder pb = riskParameterImdg.predicateBuilder();
boolean isRub = "RUB".equals(securitySymbol);
@ -335,11 +329,11 @@ public class ImdgQueryService {
);
}
public Registry findAmtRegistry(Registry registry, String securitySymbol) {
public Registry findAmfRegistry(Registry registry, String securitySymbol) {
ImdgPredicateBuilder pb = registryImdg.predicateBuilder();
return registryImdg.getSingleObjectByPredicate(
pb.and(
pb.regex("registryCode", "^AM.*T"),
pb.regex("registryCode", "^AM.*F"),
pb.equals("securitySymbol", securitySymbol),
pb.equals("tradingClearingRegistryId", registry.getTradingClearingRegistryId()),
pb.equals("companyId", registry.getCompanyId())

View file

@ -3,13 +3,11 @@ package ru.spcex.clearing.dflt.management.service;
import java.math.BigDecimal;
import java.math.MathContext;
import java.math.RoundingMode;
import java.time.LocalDate;
import java.util.Collection;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Service;
import ru.clearing.classes.statics.data.misc.Listing;
import ru.clearing.classes.statics.data.misc.SCrossRate;
import ru.clearing.classes.statics.data.registry.Registry;
import ru.clearing.classes.statics.data.security.Rates;
import ru.clearing.platform.dictionary.CurrencyPairDictionary;
@ -53,10 +51,8 @@ public class OrderCalculationService {
BigDecimal quantityLot = result.sum3().abs();
BigDecimal price;
long nextWorkDayDelta = n.longValue();
LocalDate searchingValueDate = LocalDate.now().plusDays(nextWorkDayDelta);
int precision = listing.getPrecision().intValue();
Rates rates = imdgQueryService.getRate(pair.getBaseCurrency(), searchingValueDate);
Rates rates = imdgQueryService.getRateOnNextWorkingDay(pair.getBaseCurrency());
price = swapPriceCalc(rates, s, n, precision);
return new FinalCalculationResult(price, rates.getValue().setScale(precision, RoundingMode.HALF_UP), s, quantityLot, result);
}
@ -74,8 +70,7 @@ public class OrderCalculationService {
? calculationRubSums(registry, listing.getLotSize().intValue(), s, n)
: calculationSums(registry, listing.getLotSize().intValue(), s, n);
long nextWorkDayDelta = n.longValue();
Rates rates = imdgQueryService.getRate(pair.getBaseCurrency(), LocalDate.now().plusDays(nextWorkDayDelta));
Rates rates = imdgQueryService.getRateOnNextWorkingDay(pair.getBaseCurrency());
BigDecimal quantityLot;
BigDecimal price;
if (SettleCode.T0 == settleCode) {
@ -94,12 +89,12 @@ public class OrderCalculationService {
BigDecimal planPosition = registry.getBalance();
BigDecimal sum1 = planPosition.abs();
SCrossRate sCrossRates = imdgQueryService.getSCrossRates(registry.getSecuritySymbol(), LocalDate.now());
if (sCrossRates == null) {
Rates rates = imdgQueryService.getRateOnNextWorkingDay(registry.getSecuritySymbol());
if (rates == null) {
throw new IllegalStateException(String.format("Not fond rate by security symbol: %s", CurrencyCode.CNY.getKey()));
}
BigDecimal rateValue = sCrossRates.getUnitRate();
BigDecimal sum3 = mathCeil(sum1, lotSize);
BigDecimal rateValue = rates.getValue();
BigDecimal sum3 = sum1.divide(BigDecimal.valueOf(lotSize), 0, RoundingMode.DOWN);
BigDecimal sum4 = sum3.multiply(rateValue, MC).negate();
BigDecimal sum5 = sum3.negate();
@ -115,30 +110,34 @@ public class OrderCalculationService {
private CalculationResult calculationRubSums(Registry registry, Integer lotSize, BigDecimal s, BigDecimal n) {
BigDecimal planPosition = registry.getBalance();
SCrossRate sCrossRates = imdgQueryService.getSCrossRates(CurrencyCode.CNY.getKey(), LocalDate.now());
if (sCrossRates == null) {
Rates rates = imdgQueryService.getRateOnNextWorkingDay(CurrencyCode.CNY.getKey());
if (rates == null) {
throw new IllegalStateException(String.format("Not fond rate by security symbol: %s", CurrencyCode.CNY.getKey()));
}
BigDecimal rateValue = sCrossRates.getUnitRate();
BigDecimal rateValue = rates.getValue();
BigDecimal sum1 = planPosition.divide(rateValue, MC).abs();
BigDecimal sum1 = planPosition.divide(rateValue, MC).abs(); //sum1 - рубли в юани
Registry am_t = imdgQueryService.findAmtRegistry(registry, "CNY");
Registry am_f = imdgQueryService.findAmfRegistry(registry, "CNY");
Collection<Registry> om_ts = imdgQueryService.findOTRegistry(registry, RegistryTradingParams.OM_T, "CNY");
Collection<Registry> tm_ts = imdgQueryService.findOTRegistry(registry, RegistryTradingParams.TM_T, "CNY");
log.trace("calculation for {}[{}]: AM*T[{}], OM*T[{}], TM*T[{}]",
log.trace("calculation for {}[{}]: AM*F[{}], OM*T[{}], TM*T[{}]",
registry.getRegistryCode(),
registry.getId(),
am_t != null ? am_t.getId() : null,
am_f != null ? am_f.getId() : null,
logColl(om_ts, SpcexObjectBase::getId, 10),
logColl(tm_ts, SpcexObjectBase::getId, 10));
BigDecimal planPositionCny = safeBD(am_t, Registry::getBalance)
BigDecimal planPositionCny = safeBD(am_f, Registry::getBalance)
.subtract(safeSumBD(om_ts, Registry::getBalance))
.add(safeSumBD(tm_ts, Registry::getBalance));
BigDecimal sum2 = planPositionCny.setScale(lotSize, RoundingMode.HALF_DOWN);
BigDecimal y = sum1.min(sum2);
BigDecimal sum3 = mathCeil(y, lotSize).negate();
BigDecimal lotSizBC = BigDecimal.valueOf(lotSize);
BigDecimal lotSizeCny = sum1.divide(lotSizBC, 0, RoundingMode.DOWN);
BigDecimal lotSizeCnyByAmf = sum2.divide(lotSizBC, 0, RoundingMode.DOWN);
log.trace("quantityLot by pmt: {}/{}={}", sum1, lotSizeCny, lotSizeCny);
log.trace("quantityLot by amf: {}/{}={}", sum2, lotSizeCny, lotSizeCnyByAmf);
BigDecimal sum3 = lotSizeCny.min(lotSizeCnyByAmf).negate();
BigDecimal sum4 = sum3.multiply(rateValue, MC).negate();
BigDecimal sum5 = sum3.negate();
@ -162,8 +161,7 @@ public class OrderCalculationService {
}
private BigDecimal swapPriceCalcT1(String baseCurrency, BigDecimal s, BigDecimal n, int precision) {
long nextWorkDayDelta = n.longValue();
Rates rate = imdgQueryService.getRate(baseCurrency, LocalDate.now().plusDays(nextWorkDayDelta));
Rates rate = imdgQueryService.getRateOnNextWorkingDay(baseCurrency);
BigDecimal p = n.divide(BigDecimal.valueOf(365), MC);
log.info("Calculation swap price: {}*{}*{}", rate.getValue(), s, p);
return rate.getValue()
@ -176,7 +174,7 @@ public class OrderCalculationService {
return "RUB".equals(registry.getSecuritySymbol());
}
private BigDecimal mathCeil(BigDecimal val, Integer multiplicity) {
public static BigDecimal mathCeil(BigDecimal val, Integer multiplicity) {
return BigDecimal.valueOf(Math.ceil(val.doubleValue() / multiplicity));
}
}

View file

@ -2,7 +2,6 @@ package ru.spcex.clearing.dflt.management.service;
import java.math.BigDecimal;
import java.nio.charset.StandardCharsets;
import java.time.LocalDate;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
@ -11,15 +10,7 @@ import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Service;
import ru.clearing.classes.statics.data.misc.OrderCurrency;
import ru.clearing.classes.statics.data.security.Rates;
import ru.clearing.platform.dictionary.CurrencyPairDictionary;
import ru.spcex.clearing.platform.messaging.domain.Consts;
import ru.spcex.clearing.platform.messaging.domain.cud.utilities.NotificationNewRequest;
import ru.spcex.clearing.platform.messaging.service.sender.KafkaSender;
import ru.spcex.platform.enumeration.ObjectType;
import ru.spcex.platform.enumeration.OvernightType;
import ru.spcex.platform.enumeration.Priority;
import ru.spcex.platform.enumeration.SettleCode;
import ru.spcex.platform.enumeration.Side;
@Service
@ -41,22 +32,9 @@ public class OrderCurrencyTriExportService {
* Возвращает содержимое tri-файла в виде строки.
*/
public String exportToTri(Collection<OrderCurrency> orders) {
boolean allSuccess = true;
List<String> rows = new ArrayList<>();
for (OrderCurrency orderCurrency : orders) {
String baseCurrency = resolveBaseRate(orderCurrency);
if (OvernightType.SWAP.equalsByKey(orderCurrency.getOvernightType()) && baseCurrency == null) {
allSuccess = false;
}
rows.add(toTriLine(orderCurrency, baseCurrency));
}
if (!allSuccess) {
String comment = "При формировании файла с заявками не определен Базовый курс";
NotificationNewRequest newReq = new NotificationNewRequest();
newReq.setObjectType(ObjectType.rgst.getKey());
newReq.setPriority(Priority.HIGH.getKey());
newReq.setComment(comment);
kafkaSender.sendRequestToQueue(Consts.NOTIFICATION_NEW, newReq);
rows.add(toTriLine(orderCurrency));
}
return rows.stream()
.reduce((a, b) -> a + System.lineSeparator() + b)
@ -70,7 +48,7 @@ public class OrderCurrencyTriExportService {
return exportToTri(orders).getBytes(StandardCharsets.UTF_8);
}
private String toTriLine(OrderCurrency orderCurrency, String baseCurrency) {
private String toTriLine(OrderCurrency orderCurrency) {
StringJoiner joiner = new StringJoiner(";", "", ";");
joiner.add("TRANS_ID=" + nullSafe(orderCurrency.getId()));
joiner.add("CLASSCODE=" + nullSafe(orderCurrency.getMarket()));
@ -86,7 +64,7 @@ public class OrderCurrencyTriExportService {
joiner.add("Ссылка=");
joiner.add("Код расчетов=" + nullSafe(orderCurrency.getSettleCode()));
joiner.add("На заявку №=");
joiner.add("Базовый курс=" + nullSafe(baseCurrency));
joiner.add("Базовый курс=" + nullSafe(orderCurrency.getBasePrice()));
return joiner.toString();
}
@ -102,29 +80,6 @@ public class OrderCurrencyTriExportService {
return "";
}
public String resolveBaseRate(OrderCurrency orderCurrency) {
if (OvernightType.SPOT.equalsByKey(orderCurrency.getOvernightType())) {
return "";
}
CurrencyPairDictionary currencyPairDictionary = imdgQueryService.getCurrencyPairDictionaryBySecurityId(orderCurrency.getSecurityId());
String baseCurrency = currencyPairDictionary.getBaseCurrency();
LocalDate rateDate = LocalDate.now();
if (SettleCode.T1.equalsByKey(orderCurrency.getSettleCode())) { //всегда т.к. SWAP?
BigDecimal n = transferDateService.numberOfDaysOfTransfer();
rateDate = rateDate.plusDays(n.longValue());
}
Rates rates = imdgQueryService.getRate(currencyPairDictionary.getBaseCurrency(), rateDate);
if (rates == null || rates.getValue() == null) {
log.warn("Не найден активный курс для валюты {} на дату {}", baseCurrency, rateDate);
return null;
}
return formatDecimalStripZeroes(rates.getValue());
}
private String formatDecimal(BigDecimal value) {
return value == null ? "" : value.toPlainString();
}
@ -136,4 +91,8 @@ public class OrderCurrencyTriExportService {
private String nullSafe(Object value) {
return value == null ? "" : String.valueOf(value);
}
private String nullSafe(BigDecimal value) {
return value == null || BigDecimal.ZERO.compareTo(value) == 0 ? "" : formatDecimalStripZeroes(value);
}
}

View file

@ -123,7 +123,7 @@ public class OrderTemplateBuilder {
order.setTradingCode(categoryP.tradingCode());
order.setCounterPartyId(clcc.companyId());
order.setCounterTradingCode(clcc.tradingCode());
order.setComment("Type=1");
order.setComment("Type=3");
order.setType("CMBL");
return order;
}
@ -139,7 +139,7 @@ public class OrderTemplateBuilder {
order.setTradingCode(clcc.tradingCode());
order.setCounterPartyId(categoryP.companyId());
order.setCounterTradingCode(categoryP.tradingCode());
order.setComment("Type=1");
order.setComment("Type=3");
order.setType("CMBL");
return order;
}

View file

@ -8,12 +8,12 @@
<name>Clearing dictionary</name>
<description>Clearing dictionary</description>
<packaging>jar</packaging>
<version>SPCEX-3.25.299</version>
<version>SPCEX-3.26.301</version>
<parent>
<artifactId>clearing-parent</artifactId>
<groupId>ru.spcex.clearing</groupId>
<version>SPCEX-3.25.299</version>
<version>SPCEX-3.26.301</version>
</parent>
<properties>

View file

@ -4,12 +4,12 @@
<parent>
<groupId>ru.spcex.clearing</groupId>
<artifactId>clearing-parent</artifactId>
<version>SPCEX-3.25.299</version>
<version>SPCEX-3.26.301</version>
</parent>
<artifactId>extdb-importer</artifactId>
<name>extdb-importer</name>
<description>Extdb importer module. Аналог trade-importer.</description>
<version>SPCEX-3.25.299</version>
<version>SPCEX-3.26.301</version>
<packaging>jar</packaging>
<properties>

View file

@ -5,7 +5,7 @@
<parent>
<artifactId>clearing-parent</artifactId>
<groupId>ru.spcex.clearing</groupId>
<version>SPCEX-3.25.299</version>
<version>SPCEX-3.26.301</version>
</parent>
<modelVersion>4.0.0</modelVersion>

View file

@ -114,7 +114,7 @@ public class Application extends MessageCracker implements quickfix.Application,
transaction.beginTransaction();
try {
if (executionReport.isSetField(ClOrdID.FIELD) && executionReport.isSetField(ExDestination.FIELD) && executionReport.isSetField(TransactTime.FIELD) && executionReport.isSetField(OrdStatus.FIELD)) {
// OrderID orderId = executionReport.getOrderID();
OrderID orderId = executionReport.getOrderID();
ExDestination exDestination = (ExDestination) executionReport.getField(new ExDestination());
TransactTime transactTime = executionReport.getTransactTime();
OrdStatus ordStatus = executionReport.getOrdStatus();
@ -136,6 +136,7 @@ public class Application extends MessageCracker implements quickfix.Application,
sOrders = new SOrders();
sOrders.setId(imdgProvider.getImdgIdGenerator().nextId());
sOrders.setOrderNum(orderNum);
sOrders.setExchangeOrderNum(orderId.getValue());
sOrders.setClassCode(exDestination.getValue());
sOrders.setTradeDate(transactTime.getValue().toLocalDate());

View file

@ -5,7 +5,7 @@
<parent>
<artifactId>clearing-parent</artifactId>
<groupId>ru.spcex.clearing</groupId>
<version>SPCEX-3.25.299</version>
<version>SPCEX-3.26.301</version>
</parent>
<modelVersion>4.0.0</modelVersion>

View file

@ -54,6 +54,7 @@ public class TkrAdapter {
MoneyAccountMsgRequest moneyAccountMsg = new MoneyAccountMsgRequest();
moneyAccountMsg.setAccount(moneyAccount.getAccount());
moneyAccountMsg.setCurrCode(moneyAccount.getCurrCode());
moneyAccountMsg.setEks_account(moneyAccount.getEksAccount());
return moneyAccountMsg;
}
}

View file

@ -5,12 +5,12 @@
<modelVersion>4.0.0</modelVersion>
<artifactId>imdg-hist</artifactId>
<packaging>jar</packaging>
<version>SPCEX-3.25.299</version>
<version>SPCEX-3.26.301</version>
<parent>
<artifactId>clearing-parent</artifactId>
<groupId>ru.spcex.clearing</groupId>
<version>SPCEX-3.25.299</version>
<version>SPCEX-3.26.301</version>
</parent>
@ -36,13 +36,13 @@
<dependency>
<groupId>ru.spcex.clearing</groupId>
<artifactId>classes</artifactId>
<version>SPCEX-3.25.299</version>
<version>SPCEX-3.26.301</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>ru.spcex.clearing</groupId>
<artifactId>dictionary</artifactId>
<version>SPCEX-3.25.299</version>
<version>SPCEX-3.26.301</version>
<scope>compile</scope>
</dependency>
@ -82,7 +82,7 @@
<dependency>
<groupId>ru.spcex.clearing</groupId>
<artifactId>cleaning-builders</artifactId>
<version>SPCEX-3.25.299</version>
<version>SPCEX-3.26.301</version>
<scope>compile</scope>
</dependency>
<dependency>

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load diff

View file

@ -7,12 +7,12 @@
<artifactId>imdg</artifactId>
<name>Clearing in memory data grid</name>
<packaging>jar</packaging>
<version>SPCEX-3.25.299</version>
<version>SPCEX-3.26.301</version>
<parent>
<artifactId>clearing-parent</artifactId>
<groupId>ru.spcex.clearing</groupId>
<version>SPCEX-3.25.299</version>
<version>SPCEX-3.26.301</version>
</parent>
<properties>
@ -32,13 +32,13 @@
<dependency>
<groupId>ru.spcex.clearing</groupId>
<artifactId>classes</artifactId>
<version>SPCEX-3.25.299</version>
<version>SPCEX-3.26.301</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>ru.spcex.clearing</groupId>
<artifactId>dictionary</artifactId>
<version>SPCEX-3.25.299</version>
<version>SPCEX-3.26.301</version>
<scope>compile</scope>
</dependency>
@ -89,7 +89,7 @@
<dependency>
<groupId>ru.spcex.clearing</groupId>
<artifactId>cleaning-builders</artifactId>
<version>SPCEX-3.25.299</version>
<version>SPCEX-3.26.301</version>
<scope>compile</scope>
</dependency>
<dependency>

View file

@ -54,6 +54,7 @@ public class OrderCurrencyHistoryMapStore extends TemplateEventMapStore<OrderCur
"COMMENT",
"INITIAL_ORDER_ID",
"REGISTRY_ID",
"EXCHANGE_ORDER_ID",
"CREATED_AT",
"UPDATED_AT"
};
@ -94,6 +95,7 @@ public class OrderCurrencyHistoryMapStore extends TemplateEventMapStore<OrderCur
object.getComment(),
object.getInitialOrderId(),
object.getRegistryId(),
object.getExchangeOrderId(),
TimeUtil.toDateFromInstant(object.getCreated()),
TimeUtil.toDateFromInstant(object.getUpdated())
};

View file

@ -58,6 +58,7 @@ public class OrderCurrencyMapStore extends TemplateMapStore<OrderCurrency> {
"COMMENT",
"INITIAL_ORDER_ID",
"REGISTRY_ID",
"EXCHANGE_ORDER_ID",
"CREATED_AT",
"UPDATED_AT"
};
@ -113,6 +114,7 @@ public class OrderCurrencyMapStore extends TemplateMapStore<OrderCurrency> {
object.setComment(resultSet.getString("COMMENT"));
object.setInitialOrderId(resultSet.getObject("INITIAL_ORDER_ID", Long.class));
object.setRegistryId(resultSet.getObject("REGISTRY_ID", Long.class));
object.setExchangeOrderId(resultSet.getObject("EXCHANGE_ORDER_ID", Long.class));
object.setCreated(getInstantFromTimestamp(resultSet, "CREATED_AT"));
object.setUpdated(getInstantFromTimestamp(resultSet, "UPDATED_AT"));
return object;
@ -146,6 +148,7 @@ public class OrderCurrencyMapStore extends TemplateMapStore<OrderCurrency> {
object.getComment(),
object.getInitialOrderId(),
object.getRegistryId(),
object.getExchangeOrderId(),
TimeUtil.toDateFromInstant(object.getCreated()),
TimeUtil.toDateFromInstant(object.getUpdated())
};

View file

@ -71,7 +71,8 @@ public class SOrdersMapStore extends TemplateMapStore<SOrders> {
"SETTLE_DATE",
"SETTLE_DATE2",
"QTY2",
"VALUE2"
"VALUE2",
"EXCHANGE_ORDER_NUM"
};
}
@ -127,6 +128,7 @@ public class SOrdersMapStore extends TemplateMapStore<SOrders> {
object.setSettleDate2(getLocalDateFromSqlDate(resultSet, "SETTLE_DATE2"));
object.setQty2(resultSet.getBigDecimal("QTY2"));
object.setValue2(resultSet.getBigDecimal("VALUE2"));
object.setExchangeOrderNum(resultSet.getString("EXCHANGE_ORDER_NUM"));
return object;
}
@ -176,7 +178,8 @@ public class SOrdersMapStore extends TemplateMapStore<SOrders> {
TimeUtil.toDateFromLocalDate(object.getSettleDate()),
TimeUtil.toDateFromLocalDate(object.getSettleDate2()),
object.getQty2(),
object.getValue2()
object.getValue2(),
object.getExchangeOrderNum()
};
}

View file

@ -3,13 +3,13 @@
<modelVersion>4.0.0</modelVersion>
<artifactId>lim-exporter</artifactId>
<name>Lim exporter</name>
<version>SPCEX-3.25.299</version>
<version>SPCEX-3.26.301</version>
<packaging>jar</packaging>
<parent>
<groupId>ru.spcex.clearing</groupId>
<artifactId>clearing-parent</artifactId>
<version>SPCEX-3.25.299</version>
<version>SPCEX-3.26.301</version>
</parent>
<properties>
@ -35,7 +35,7 @@
<dependency>
<groupId>ru.spcex.clearing</groupId>
<artifactId>classes</artifactId>
<version>SPCEX-3.25.299</version>
<version>SPCEX-3.26.301</version>
<scope>compile</scope>
</dependency>
<dependency>

View file

@ -7,12 +7,12 @@
<name>_parent_clearing</name>
<description>Clearing parent module</description>
<packaging>pom</packaging>
<version>SPCEX-3.25.299</version>
<version>SPCEX-3.26.301</version>
<parent>
<artifactId>clearing</artifactId>
<groupId>ru.spcex.clearing</groupId>
<version>SPCEX-3.25.299</version>
<version>SPCEX-3.26.301</version>
</parent>
<modules>

View file

@ -5,7 +5,7 @@
<parent>
<artifactId>clearing-parent</artifactId>
<groupId>ru.spcex.clearing</groupId>
<version>SPCEX-3.25.299</version>
<version>SPCEX-3.26.301</version>
</parent>
<modelVersion>4.0.0</modelVersion>

View file

@ -8,12 +8,12 @@
<artifactId>reports-service</artifactId>
<name>reports-service</name>
<description>Service for creating reports</description>
<version>SPCEX-3.25.299</version>
<version>SPCEX-3.26.301</version>
<parent>
<artifactId>clearing-parent</artifactId>
<groupId>ru.spcex.clearing</groupId>
<version>SPCEX-3.25.299</version>
<version>SPCEX-3.26.301</version>
</parent>
<dependencies>
<!-- Spring boot -->

View file

@ -5,7 +5,7 @@
<parent>
<artifactId>clearing-parent</artifactId>
<groupId>ru.spcex.clearing</groupId>
<version>SPCEX-3.25.299</version>
<version>SPCEX-3.26.301</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@ -51,7 +51,7 @@
<dependency>
<groupId>ru.spcex.clearing</groupId>
<artifactId>cleaning-builders</artifactId>
<version>SPCEX-3.25.299</version>
<version>SPCEX-3.26.301</version>
<scope>compile</scope>
</dependency>
<dependency>

View file

@ -5,7 +5,7 @@
<parent>
<artifactId>clearing-parent</artifactId>
<groupId>ru.spcex.clearing</groupId>
<version>SPCEX-3.25.299</version>
<version>SPCEX-3.26.301</version>
</parent>
<modelVersion>4.0.0</modelVersion>

View file

@ -8,12 +8,12 @@
<name>security-util clearing</name>
<description>Clearing misc util for verify user roles</description>
<packaging>jar</packaging>
<version>SPCEX-3.25.299</version>
<version>SPCEX-3.26.301</version>
<parent>
<artifactId>clearing-parent</artifactId>
<groupId>ru.spcex.clearing</groupId>
<version>SPCEX-3.25.299</version>
<version>SPCEX-3.26.301</version>
</parent>
<properties>
@ -35,13 +35,13 @@
<dependency>
<groupId>ru.spcex.clearing</groupId>
<artifactId>classes</artifactId>
<version>SPCEX-3.25.299</version>
<version>SPCEX-3.26.301</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>ru.spcex.clearing</groupId>
<artifactId>dictionary</artifactId>
<version>SPCEX-3.25.299</version>
<version>SPCEX-3.26.301</version>
<scope>compile</scope>
</dependency>
<dependency>

View file

@ -3,13 +3,13 @@
<modelVersion>4.0.0</modelVersion>
<artifactId>swt-exporter</artifactId>
<name>Swt exporter</name>
<version>SPCEX-3.25.299</version>
<version>SPCEX-3.26.301</version>
<packaging>jar</packaging>
<parent>
<groupId>ru.spcex.clearing</groupId>
<artifactId>clearing-parent</artifactId>
<version>SPCEX-3.25.299</version>
<version>SPCEX-3.26.301</version>
</parent>
<properties>
@ -35,7 +35,7 @@
<dependency>
<groupId>ru.spcex.clearing</groupId>
<artifactId>classes</artifactId>
<version>SPCEX-3.25.299</version>
<version>SPCEX-3.26.301</version>
<scope>compile</scope>
</dependency>
<dependency>

View file

@ -5,7 +5,7 @@
<parent>
<artifactId>clearing-parent</artifactId>
<groupId>ru.spcex.clearing</groupId>
<version>SPCEX-3.25.299</version>
<version>SPCEX-3.26.301</version>
</parent>
<modelVersion>4.0.0</modelVersion>

View file

@ -4,11 +4,11 @@
<parent>
<groupId>ru.spcex.clearing</groupId>
<artifactId>clearing-parent</artifactId>
<version>SPCEX-3.25.299</version>
<version>SPCEX-3.26.301</version>
</parent>
<artifactId>test-clearing</artifactId>
<name>Test-clearing</name>
<version>SPCEX-3.25.299</version>
<version>SPCEX-3.26.301</version>
<dependencies>
<dependency>
<groupId>ru.spcex.platform</groupId>

View file

@ -4,12 +4,12 @@
<parent>
<groupId>ru.spcex.clearing</groupId>
<artifactId>clearing-parent</artifactId>
<version>SPCEX-3.25.299</version>
<version>SPCEX-3.26.301</version>
</parent>
<artifactId>trade-importer</artifactId>
<name>trade-importer</name>
<description>Trade importer module</description>
<version>SPCEX-3.25.299</version>
<version>SPCEX-3.26.301</version>
<packaging>jar</packaging>
<properties>
@ -55,7 +55,7 @@
<dependency>
<groupId>ru.spcex.clearing</groupId>
<artifactId>classes</artifactId>
<version>SPCEX-3.25.299</version>
<version>SPCEX-3.26.301</version>
<scope>compile</scope>
</dependency>
<dependency>

View file

@ -5,7 +5,7 @@
<parent>
<artifactId>clearing-parent</artifactId>
<groupId>ru.spcex.clearing</groupId>
<version>SPCEX-3.25.299</version>
<version>SPCEX-3.26.301</version>
</parent>
<modelVersion>4.0.0</modelVersion>

View file

@ -7,12 +7,12 @@
<artifactId>xml-exporter</artifactId>
<name>xml-exporter</name>
<description>XML exporter for XML files</description>
<version>SPCEX-3.25.299</version>
<version>SPCEX-3.26.301</version>
<parent>
<artifactId>clearing-parent</artifactId>
<groupId>ru.spcex.clearing</groupId>
<version>SPCEX-3.25.299</version>
<version>SPCEX-3.26.301</version>
</parent>
<dependencies>

View file

@ -8,12 +8,12 @@
<artifactId>xml-importer</artifactId>
<name>xml-importer</name>
<description>XML loader for XML files</description>
<version>SPCEX-3.25.299</version>
<version>SPCEX-3.26.301</version>
<parent>
<artifactId>clearing-parent</artifactId>
<groupId>ru.spcex.clearing</groupId>
<version>SPCEX-3.25.299</version>
<version>SPCEX-3.26.301</version>
</parent>
<dependencies>

1523
log/backend-api-json.log Normal file

File diff suppressed because one or more lines are too long

2595
log/backend-api-text.log Normal file

File diff suppressed because one or more lines are too long

Binary file not shown.

View file

@ -0,0 +1,909 @@
{"@timestamp":"2026-04-29T12:48:18.073+03:00","@version":"1","message":"Starting DefaultManagementApplication using Java 21.0.3 on INFO352 with PID 23200 (E:\\job\\git\\mfd\\clearing\\clearing-parent\\default-management\\target\\classes started by ETreschenkov in E:\\job\\git\\mfd\\clearing)","logger_name":"ru.spcex.clearing.dflt.management.DefaultManagementApplication","thread_name":"main","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:18.096+03:00","@version":"1","message":"Running with Spring Boot v2.6.3, Spring v5.3.15","logger_name":"ru.spcex.clearing.dflt.management.DefaultManagementApplication","thread_name":"main","level":"DEBUG","level_value":10000}
{"@timestamp":"2026-04-29T12:48:18.097+03:00","@version":"1","message":"No active profile set, falling back to default profiles: default","logger_name":"ru.spcex.clearing.dflt.management.DefaultManagementApplication","thread_name":"main","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:18.621+03:00","@version":"1","message":"Hazelcast: client init","logger_name":"ru.spcex.platform.imdg.iml.hazelcast.service.HazelcastService","thread_name":"taskExecutorHazelcastClientInitializer-1","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:18.635+03:00","@version":"1","message":"Hazelcast: client created, trying connect to server (127.0.0.1:5701) ...","logger_name":"ru.spcex.platform.imdg.iml.hazelcast.service.HazelcastService","thread_name":"taskExecutorHazelcastClientInitializer-1","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:18.659+03:00","@version":"1","message":"ConsumerConfig values: \r\n\tallow.auto.create.topics = true\r\n\tauto.commit.interval.ms = 5000\r\n\tauto.offset.reset = latest\r\n\tbootstrap.servers = [localhost:9092]\r\n\tcheck.crcs = true\r\n\tclient.dns.lookup = use_all_dns_ips\r\n\tclient.id = consumer-dev-group-default-management-1\r\n\tclient.rack = \r\n\tconnections.max.idle.ms = 540000\r\n\tdefault.api.timeout.ms = 60000\r\n\tenable.auto.commit = true\r\n\texclude.internal.topics = true\r\n\tfetch.max.bytes = 52428800\r\n\tfetch.max.wait.ms = 500\r\n\tfetch.min.bytes = 1\r\n\tgroup.id = dev-group-default-management\r\n\tgroup.instance.id = null\r\n\theartbeat.interval.ms = 3000\r\n\tinterceptor.classes = []\r\n\tinternal.leave.group.on.close = true\r\n\tinternal.throw.on.fetch.stable.offset.unsupported = false\r\n\tisolation.level = read_uncommitted\r\n\tkey.deserializer = class org.apache.kafka.common.serialization.StringDeserializer\r\n\tmax.partition.fetch.bytes = 1048576\r\n\tmax.poll.interval.ms = 300000\r\n\tmax.poll.records = 500\r\n\tmetadata.max.age.ms = 300000\r\n\tmetric.reporters = []\r\n\tmetrics.num.samples = 2\r\n\tmetrics.recording.level = INFO\r\n\tmetrics.sample.window.ms = 30000\r\n\tpartition.assignment.strategy = [class org.apache.kafka.clients.consumer.RangeAssignor]\r\n\treceive.buffer.bytes = 65536\r\n\treconnect.backoff.max.ms = 1000\r\n\treconnect.backoff.ms = 50\r\n\trequest.timeout.ms = 30000\r\n\tretry.backoff.ms = 100\r\n\tsasl.client.callback.handler.class = null\r\n\tsasl.jaas.config = null\r\n\tsasl.kerberos.kinit.cmd = /usr/bin/kinit\r\n\tsasl.kerberos.min.time.before.relogin = 60000\r\n\tsasl.kerberos.service.name = null\r\n\tsasl.kerberos.ticket.renew.jitter = 0.05\r\n\tsasl.kerberos.ticket.renew.window.factor = 0.8\r\n\tsasl.login.callback.handler.class = null\r\n\tsasl.login.class = null\r\n\tsasl.login.refresh.buffer.seconds = 300\r\n\tsasl.login.refresh.min.period.seconds = 60\r\n\tsasl.login.refresh.window.factor = 0.8\r\n\tsasl.login.refresh.window.jitter = 0.05\r\n\tsasl.mechanism = GSSAPI\r\n\tsecurity.protocol = PLAINTEXT\r\n\tsecurity.providers = null\r\n\tsend.buffer.bytes = 131072\r\n\tsession.timeout.ms = 30000\r\n\tsocket.connection.setup.timeout.max.ms = 30000\r\n\tsocket.connection.setup.timeout.ms = 10000\r\n\tssl.cipher.suites = null\r\n\tssl.enabled.protocols = [TLSv1.2, TLSv1.3]\r\n\tssl.endpoint.identification.algorithm = https\r\n\tssl.engine.factory.class = null\r\n\tssl.key.password = null\r\n\tssl.keymanager.algorithm = SunX509\r\n\tssl.keystore.certificate.chain = null\r\n\tssl.keystore.key = null\r\n\tssl.keystore.location = null\r\n\tssl.keystore.password = null\r\n\tssl.keystore.type = JKS\r\n\tssl.protocol = TLSv1.3\r\n\tssl.provider = null\r\n\tssl.secure.random.implementation = null\r\n\tssl.trustmanager.algorithm = PKIX\r\n\tssl.truststore.certificates = null\r\n\tssl.truststore.location = null\r\n\tssl.truststore.password = null\r\n\tssl.truststore.type = JKS\r\n\tvalue.deserializer = class org.apache.kafka.common.serialization.StringDeserializer\r\n","logger_name":"org.apache.kafka.clients.consumer.ConsumerConfig","thread_name":"main","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:18.662+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] A non-empty group password is configured for the Hazelcast client. Starting with Hazelcast version 3.11, clients with the same group name, but with different group passwords (that do not use authentication) will be accepted to a cluster. The group password configuration will be removed completely in a future release.","logger_name":"com.hazelcast.client.HazelcastClient","thread_name":"taskExecutorHazelcastClientInitializer-1","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:18.736+03:00","@version":"1","message":"Kafka version: 2.8.1","logger_name":"org.apache.kafka.common.utils.AppInfoParser","thread_name":"main","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:18.737+03:00","@version":"1","message":"Kafka commitId: 839b886f9b732b15","logger_name":"org.apache.kafka.common.utils.AppInfoParser","thread_name":"main","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:18.737+03:00","@version":"1","message":"Kafka startTimeMs: 1777456098735","logger_name":"org.apache.kafka.common.utils.AppInfoParser","thread_name":"main","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:18.748+03:00","@version":"1","message":"ProducerConfig values: \r\n\tacks = -1\r\n\tbatch.size = 16384\r\n\tbootstrap.servers = [localhost:9092]\r\n\tbuffer.memory = 33554432\r\n\tclient.dns.lookup = use_all_dns_ips\r\n\tclient.id = producer-1\r\n\tcompression.type = none\r\n\tconnections.max.idle.ms = 540000\r\n\tdelivery.timeout.ms = 120000\r\n\tenable.idempotence = false\r\n\tinterceptor.classes = []\r\n\tinternal.auto.downgrade.txn.commit = false\r\n\tkey.serializer = class org.apache.kafka.common.serialization.StringSerializer\r\n\tlinger.ms = 1\r\n\tmax.block.ms = 60000\r\n\tmax.in.flight.requests.per.connection = 5\r\n\tmax.request.size = 1048576\r\n\tmetadata.max.age.ms = 300000\r\n\tmetadata.max.idle.ms = 300000\r\n\tmetric.reporters = []\r\n\tmetrics.num.samples = 2\r\n\tmetrics.recording.level = INFO\r\n\tmetrics.sample.window.ms = 30000\r\n\tpartitioner.class = class org.apache.kafka.clients.producer.internals.DefaultPartitioner\r\n\treceive.buffer.bytes = 32768\r\n\treconnect.backoff.max.ms = 1000\r\n\treconnect.backoff.ms = 50\r\n\trequest.timeout.ms = 30000\r\n\tretries = 0\r\n\tretry.backoff.ms = 100\r\n\tsasl.client.callback.handler.class = null\r\n\tsasl.jaas.config = null\r\n\tsasl.kerberos.kinit.cmd = /usr/bin/kinit\r\n\tsasl.kerberos.min.time.before.relogin = 60000\r\n\tsasl.kerberos.service.name = null\r\n\tsasl.kerberos.ticket.renew.jitter = 0.05\r\n\tsasl.kerberos.ticket.renew.window.factor = 0.8\r\n\tsasl.login.callback.handler.class = null\r\n\tsasl.login.class = null\r\n\tsasl.login.refresh.buffer.seconds = 300\r\n\tsasl.login.refresh.min.period.seconds = 60\r\n\tsasl.login.refresh.window.factor = 0.8\r\n\tsasl.login.refresh.window.jitter = 0.05\r\n\tsasl.mechanism = GSSAPI\r\n\tsecurity.protocol = PLAINTEXT\r\n\tsecurity.providers = null\r\n\tsend.buffer.bytes = 131072\r\n\tsocket.connection.setup.timeout.max.ms = 30000\r\n\tsocket.connection.setup.timeout.ms = 10000\r\n\tssl.cipher.suites = null\r\n\tssl.enabled.protocols = [TLSv1.2, TLSv1.3]\r\n\tssl.endpoint.identification.algorithm = https\r\n\tssl.engine.factory.class = null\r\n\tssl.key.password = null\r\n\tssl.keymanager.algorithm = SunX509\r\n\tssl.keystore.certificate.chain = null\r\n\tssl.keystore.key = null\r\n\tssl.keystore.location = null\r\n\tssl.keystore.password = null\r\n\tssl.keystore.type = JKS\r\n\tssl.protocol = TLSv1.3\r\n\tssl.provider = null\r\n\tssl.secure.random.implementation = null\r\n\tssl.trustmanager.algorithm = PKIX\r\n\tssl.truststore.certificates = null\r\n\tssl.truststore.location = null\r\n\tssl.truststore.password = null\r\n\tssl.truststore.type = JKS\r\n\ttransaction.timeout.ms = 60000\r\n\ttransactional.id = null\r\n\tvalue.serializer = class ru.spcex.clearing.platform.messaging.serialization.JsonSerializer\r\n","logger_name":"org.apache.kafka.clients.producer.ProducerConfig","thread_name":"main","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:18.763+03:00","@version":"1","message":"Kafka version: 2.8.1","logger_name":"org.apache.kafka.common.utils.AppInfoParser","thread_name":"main","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:18.763+03:00","@version":"1","message":"Kafka commitId: 839b886f9b732b15","logger_name":"org.apache.kafka.common.utils.AppInfoParser","thread_name":"main","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:18.763+03:00","@version":"1","message":"Kafka startTimeMs: 1777456098762","logger_name":"org.apache.kafka.common.utils.AppInfoParser","thread_name":"main","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:18.823+03:00","@version":"1","message":"For ru.spcex.clearing.dflt.management.listener.OrderCurrencyListener kafka producer not set. Did not send reply.","logger_name":"ru.spcex.clearing.dflt.management.listener.OrderCurrencyListener","thread_name":"main","level":"DEBUG","level_value":10000}
{"@timestamp":"2026-04-29T12:48:18.831+03:00","@version":"1","message":"Using kafka consumer org.apache.kafka.clients.consumer.KafkaConsumer@e23b44d for subscribe on \"[order-currency-status-update-fix, order-currency-status-update-importer, order-currency-company-delete, order-currency-status-update, order-overnight-type-update, order-currency-company-update, order-currency-update, order-currency-company-new]\"","logger_name":"ru.spcex.clearing.dflt.management.listener.OrderCurrencyListener","thread_name":"pool-2-thread-1","level":"DEBUG","level_value":10000}
{"@timestamp":"2026-04-29T12:48:18.832+03:00","@version":"1","message":"[Consumer clientId=consumer-dev-group-default-management-1, groupId=dev-group-default-management] Subscribed to topic(s): order-currency-status-update-fix, order-currency-status-update-importer, order-currency-company-delete, order-currency-status-update, order-overnight-type-update, order-currency-company-update, order-currency-update, order-currency-company-new","logger_name":"org.apache.kafka.clients.consumer.KafkaConsumer","thread_name":"pool-2-thread-1","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:18.835+03:00","@version":"1","message":"ConsumerConfig values: \r\n\tallow.auto.create.topics = true\r\n\tauto.commit.interval.ms = 5000\r\n\tauto.offset.reset = latest\r\n\tbootstrap.servers = [localhost:9092]\r\n\tcheck.crcs = true\r\n\tclient.dns.lookup = use_all_dns_ips\r\n\tclient.id = consumer-dev-group-default-management-2\r\n\tclient.rack = \r\n\tconnections.max.idle.ms = 540000\r\n\tdefault.api.timeout.ms = 60000\r\n\tenable.auto.commit = true\r\n\texclude.internal.topics = true\r\n\tfetch.max.bytes = 52428800\r\n\tfetch.max.wait.ms = 500\r\n\tfetch.min.bytes = 1\r\n\tgroup.id = dev-group-default-management\r\n\tgroup.instance.id = null\r\n\theartbeat.interval.ms = 3000\r\n\tinterceptor.classes = []\r\n\tinternal.leave.group.on.close = true\r\n\tinternal.throw.on.fetch.stable.offset.unsupported = false\r\n\tisolation.level = read_uncommitted\r\n\tkey.deserializer = class org.apache.kafka.common.serialization.StringDeserializer\r\n\tmax.partition.fetch.bytes = 1048576\r\n\tmax.poll.interval.ms = 300000\r\n\tmax.poll.records = 500\r\n\tmetadata.max.age.ms = 300000\r\n\tmetric.reporters = []\r\n\tmetrics.num.samples = 2\r\n\tmetrics.recording.level = INFO\r\n\tmetrics.sample.window.ms = 30000\r\n\tpartition.assignment.strategy = [class org.apache.kafka.clients.consumer.RangeAssignor]\r\n\treceive.buffer.bytes = 65536\r\n\treconnect.backoff.max.ms = 1000\r\n\treconnect.backoff.ms = 50\r\n\trequest.timeout.ms = 30000\r\n\tretry.backoff.ms = 100\r\n\tsasl.client.callback.handler.class = null\r\n\tsasl.jaas.config = null\r\n\tsasl.kerberos.kinit.cmd = /usr/bin/kinit\r\n\tsasl.kerberos.min.time.before.relogin = 60000\r\n\tsasl.kerberos.service.name = null\r\n\tsasl.kerberos.ticket.renew.jitter = 0.05\r\n\tsasl.kerberos.ticket.renew.window.factor = 0.8\r\n\tsasl.login.callback.handler.class = null\r\n\tsasl.login.class = null\r\n\tsasl.login.refresh.buffer.seconds = 300\r\n\tsasl.login.refresh.min.period.seconds = 60\r\n\tsasl.login.refresh.window.factor = 0.8\r\n\tsasl.login.refresh.window.jitter = 0.05\r\n\tsasl.mechanism = GSSAPI\r\n\tsecurity.protocol = PLAINTEXT\r\n\tsecurity.providers = null\r\n\tsend.buffer.bytes = 131072\r\n\tsession.timeout.ms = 30000\r\n\tsocket.connection.setup.timeout.max.ms = 30000\r\n\tsocket.connection.setup.timeout.ms = 10000\r\n\tssl.cipher.suites = null\r\n\tssl.enabled.protocols = [TLSv1.2, TLSv1.3]\r\n\tssl.endpoint.identification.algorithm = https\r\n\tssl.engine.factory.class = null\r\n\tssl.key.password = null\r\n\tssl.keymanager.algorithm = SunX509\r\n\tssl.keystore.certificate.chain = null\r\n\tssl.keystore.key = null\r\n\tssl.keystore.location = null\r\n\tssl.keystore.password = null\r\n\tssl.keystore.type = JKS\r\n\tssl.protocol = TLSv1.3\r\n\tssl.provider = null\r\n\tssl.secure.random.implementation = null\r\n\tssl.trustmanager.algorithm = PKIX\r\n\tssl.truststore.certificates = null\r\n\tssl.truststore.location = null\r\n\tssl.truststore.password = null\r\n\tssl.truststore.type = JKS\r\n\tvalue.deserializer = class org.apache.kafka.common.serialization.StringDeserializer\r\n","logger_name":"org.apache.kafka.clients.consumer.ConsumerConfig","thread_name":"main","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:18.841+03:00","@version":"1","message":"Kafka version: 2.8.1","logger_name":"org.apache.kafka.common.utils.AppInfoParser","thread_name":"main","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:18.841+03:00","@version":"1","message":"Kafka commitId: 839b886f9b732b15","logger_name":"org.apache.kafka.common.utils.AppInfoParser","thread_name":"main","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:18.842+03:00","@version":"1","message":"Kafka startTimeMs: 1777456098841","logger_name":"org.apache.kafka.common.utils.AppInfoParser","thread_name":"main","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:18.855+03:00","@version":"1","message":"For ru.spcex.clearing.dflt.management.listener.OvernightSettingsListener kafka producer not set. Did not send reply.","logger_name":"ru.spcex.clearing.dflt.management.listener.OvernightSettingsListener","thread_name":"main","level":"DEBUG","level_value":10000}
{"@timestamp":"2026-04-29T12:48:18.856+03:00","@version":"1","message":"Using kafka consumer org.apache.kafka.clients.consumer.KafkaConsumer@146dada5 for subscribe on \"[overnight-settings-update, overnight-settings-new]\"","logger_name":"ru.spcex.clearing.dflt.management.listener.OvernightSettingsListener","thread_name":"pool-4-thread-1","level":"DEBUG","level_value":10000}
{"@timestamp":"2026-04-29T12:48:18.857+03:00","@version":"1","message":"[Consumer clientId=consumer-dev-group-default-management-2, groupId=dev-group-default-management] Subscribed to topic(s): overnight-settings-update, overnight-settings-new","logger_name":"org.apache.kafka.clients.consumer.KafkaConsumer","thread_name":"pool-4-thread-1","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:18.861+03:00","@version":"1","message":"ConsumerConfig values: \r\n\tallow.auto.create.topics = true\r\n\tauto.commit.interval.ms = 5000\r\n\tauto.offset.reset = latest\r\n\tbootstrap.servers = [localhost:9092]\r\n\tcheck.crcs = true\r\n\tclient.dns.lookup = use_all_dns_ips\r\n\tclient.id = consumer-dev-group-default-management-3\r\n\tclient.rack = \r\n\tconnections.max.idle.ms = 540000\r\n\tdefault.api.timeout.ms = 60000\r\n\tenable.auto.commit = true\r\n\texclude.internal.topics = true\r\n\tfetch.max.bytes = 52428800\r\n\tfetch.max.wait.ms = 500\r\n\tfetch.min.bytes = 1\r\n\tgroup.id = dev-group-default-management\r\n\tgroup.instance.id = null\r\n\theartbeat.interval.ms = 3000\r\n\tinterceptor.classes = []\r\n\tinternal.leave.group.on.close = true\r\n\tinternal.throw.on.fetch.stable.offset.unsupported = false\r\n\tisolation.level = read_uncommitted\r\n\tkey.deserializer = class org.apache.kafka.common.serialization.StringDeserializer\r\n\tmax.partition.fetch.bytes = 1048576\r\n\tmax.poll.interval.ms = 300000\r\n\tmax.poll.records = 500\r\n\tmetadata.max.age.ms = 300000\r\n\tmetric.reporters = []\r\n\tmetrics.num.samples = 2\r\n\tmetrics.recording.level = INFO\r\n\tmetrics.sample.window.ms = 30000\r\n\tpartition.assignment.strategy = [class org.apache.kafka.clients.consumer.RangeAssignor]\r\n\treceive.buffer.bytes = 65536\r\n\treconnect.backoff.max.ms = 1000\r\n\treconnect.backoff.ms = 50\r\n\trequest.timeout.ms = 30000\r\n\tretry.backoff.ms = 100\r\n\tsasl.client.callback.handler.class = null\r\n\tsasl.jaas.config = null\r\n\tsasl.kerberos.kinit.cmd = /usr/bin/kinit\r\n\tsasl.kerberos.min.time.before.relogin = 60000\r\n\tsasl.kerberos.service.name = null\r\n\tsasl.kerberos.ticket.renew.jitter = 0.05\r\n\tsasl.kerberos.ticket.renew.window.factor = 0.8\r\n\tsasl.login.callback.handler.class = null\r\n\tsasl.login.class = null\r\n\tsasl.login.refresh.buffer.seconds = 300\r\n\tsasl.login.refresh.min.period.seconds = 60\r\n\tsasl.login.refresh.window.factor = 0.8\r\n\tsasl.login.refresh.window.jitter = 0.05\r\n\tsasl.mechanism = GSSAPI\r\n\tsecurity.protocol = PLAINTEXT\r\n\tsecurity.providers = null\r\n\tsend.buffer.bytes = 131072\r\n\tsession.timeout.ms = 30000\r\n\tsocket.connection.setup.timeout.max.ms = 30000\r\n\tsocket.connection.setup.timeout.ms = 10000\r\n\tssl.cipher.suites = null\r\n\tssl.enabled.protocols = [TLSv1.2, TLSv1.3]\r\n\tssl.endpoint.identification.algorithm = https\r\n\tssl.engine.factory.class = null\r\n\tssl.key.password = null\r\n\tssl.keymanager.algorithm = SunX509\r\n\tssl.keystore.certificate.chain = null\r\n\tssl.keystore.key = null\r\n\tssl.keystore.location = null\r\n\tssl.keystore.password = null\r\n\tssl.keystore.type = JKS\r\n\tssl.protocol = TLSv1.3\r\n\tssl.provider = null\r\n\tssl.secure.random.implementation = null\r\n\tssl.trustmanager.algorithm = PKIX\r\n\tssl.truststore.certificates = null\r\n\tssl.truststore.location = null\r\n\tssl.truststore.password = null\r\n\tssl.truststore.type = JKS\r\n\tvalue.deserializer = class org.apache.kafka.common.serialization.StringDeserializer\r\n","logger_name":"org.apache.kafka.clients.consumer.ConsumerConfig","thread_name":"main","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:18.865+03:00","@version":"1","message":"Kafka version: 2.8.1","logger_name":"org.apache.kafka.common.utils.AppInfoParser","thread_name":"main","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:18.865+03:00","@version":"1","message":"Kafka commitId: 839b886f9b732b15","logger_name":"org.apache.kafka.common.utils.AppInfoParser","thread_name":"main","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:18.865+03:00","@version":"1","message":"Kafka startTimeMs: 1777456098865","logger_name":"org.apache.kafka.common.utils.AppInfoParser","thread_name":"main","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:18.938+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Running with 2 response threads, dynamic=false","logger_name":"com.hazelcast.client.spi.ClientInvocationService","thread_name":"taskExecutorHazelcastClientInitializer-1","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:18.941+03:00","@version":"1","message":"For ru.spcex.clearing.dflt.management.listener.TaskListener kafka producer not set. Did not send reply.","logger_name":"ru.spcex.clearing.dflt.management.listener.TaskListener","thread_name":"main","level":"DEBUG","level_value":10000}
{"@timestamp":"2026-04-29T12:48:37.277+03:00","@version":"1","message":"Using kafka consumer org.apache.kafka.clients.consumer.KafkaConsumer@4cc19ee2 for subscribe on \"[launcher-SDOR, launcher-CROR]\"","logger_name":"ru.spcex.clearing.dflt.management.listener.TaskListener","thread_name":"pool-6-thread-1","level":"DEBUG","level_value":10000}
{"@timestamp":"2026-04-29T12:48:37.277+03:00","@version":"1","message":"[Consumer clientId=consumer-dev-group-default-management-3, groupId=dev-group-default-management] Subscribed to topic(s): launcher-SDOR, launcher-CROR","logger_name":"org.apache.kafka.clients.consumer.KafkaConsumer","thread_name":"pool-6-thread-1","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:37.342+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] HazelcastClient 3.12.4 (20191030 - eab1290) is STARTING","logger_name":"com.hazelcast.core.LifecycleService","thread_name":"taskExecutorHazelcastClientInitializer-1","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:37.343+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] HazelcastClient 3.12.4 (20191030 - eab1290) is STARTED","logger_name":"com.hazelcast.core.LifecycleService","thread_name":"taskExecutorHazelcastClientInitializer-1","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:37.365+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to cluster with name: dev","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:37.367+03:00","@version":"1","message":"[Consumer clientId=consumer-dev-group-default-management-3, groupId=dev-group-default-management] Error while fetching metadata with correlation id 2 : {launcher-SDOR=UNKNOWN_TOPIC_OR_PARTITION, launcher-CROR=UNKNOWN_TOPIC_OR_PARTITION}","logger_name":"org.apache.kafka.clients.NetworkClient","thread_name":"pool-6-thread-1","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:48:37.367+03:00","@version":"1","message":"[Consumer clientId=consumer-dev-group-default-management-1, groupId=dev-group-default-management] Error while fetching metadata with correlation id 2 : {order-currency-status-update-fix=UNKNOWN_TOPIC_OR_PARTITION, order-currency-status-update-importer=UNKNOWN_TOPIC_OR_PARTITION, order-currency-company-delete=UNKNOWN_TOPIC_OR_PARTITION, order-currency-status-update=UNKNOWN_TOPIC_OR_PARTITION, order-overnight-type-update=UNKNOWN_TOPIC_OR_PARTITION, order-currency-company-update=UNKNOWN_TOPIC_OR_PARTITION, order-currency-update=UNKNOWN_TOPIC_OR_PARTITION, order-currency-company-new=UNKNOWN_TOPIC_OR_PARTITION}","logger_name":"org.apache.kafka.clients.NetworkClient","thread_name":"pool-2-thread-1","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:48:37.367+03:00","@version":"1","message":"[Consumer clientId=consumer-dev-group-default-management-2, groupId=dev-group-default-management] Error while fetching metadata with correlation id 2 : {overnight-settings-update=UNKNOWN_TOPIC_OR_PARTITION, overnight-settings-new=UNKNOWN_TOPIC_OR_PARTITION}","logger_name":"org.apache.kafka.clients.NetworkClient","thread_name":"pool-4-thread-1","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:48:37.367+03:00","@version":"1","message":"[Producer clientId=producer-1] Cluster ID: l7Kw5Kw9S0ugUZsdFQ53AA","logger_name":"org.apache.kafka.clients.Metadata","thread_name":"kafka-producer-network-thread | producer-1","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:37.367+03:00","@version":"1","message":"[Consumer clientId=consumer-dev-group-default-management-3, groupId=dev-group-default-management] Cluster ID: l7Kw5Kw9S0ugUZsdFQ53AA","logger_name":"org.apache.kafka.clients.Metadata","thread_name":"pool-6-thread-1","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:37.367+03:00","@version":"1","message":"[Consumer clientId=consumer-dev-group-default-management-1, groupId=dev-group-default-management] Cluster ID: l7Kw5Kw9S0ugUZsdFQ53AA","logger_name":"org.apache.kafka.clients.Metadata","thread_name":"pool-2-thread-1","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:37.367+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:37.367+03:00","@version":"1","message":"[Consumer clientId=consumer-dev-group-default-management-2, groupId=dev-group-default-management] Cluster ID: l7Kw5Kw9S0ugUZsdFQ53AA","logger_name":"org.apache.kafka.clients.Metadata","thread_name":"pool-4-thread-1","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:37.373+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:48:37.373+03:00","@version":"1","message":"[Consumer clientId=consumer-dev-group-default-management-3, groupId=dev-group-default-management] Discovered group coordinator localhost:9092 (id: 2147483646 rack: null)","logger_name":"org.apache.kafka.clients.consumer.internals.AbstractCoordinator","thread_name":"pool-6-thread-1","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:37.373+03:00","@version":"1","message":"[Consumer clientId=consumer-dev-group-default-management-2, groupId=dev-group-default-management] Discovered group coordinator localhost:9092 (id: 2147483646 rack: null)","logger_name":"org.apache.kafka.clients.consumer.internals.AbstractCoordinator","thread_name":"pool-4-thread-1","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:37.373+03:00","@version":"1","message":"[Consumer clientId=consumer-dev-group-default-management-1, groupId=dev-group-default-management] Discovered group coordinator localhost:9092 (id: 2147483646 rack: null)","logger_name":"org.apache.kafka.clients.consumer.internals.AbstractCoordinator","thread_name":"pool-2-thread-1","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:37.374+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 1 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:48:37.375+03:00","@version":"1","message":"[Consumer clientId=consumer-dev-group-default-management-3, groupId=dev-group-default-management] (Re-)joining group","logger_name":"org.apache.kafka.clients.consumer.internals.AbstractCoordinator","thread_name":"pool-6-thread-1","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:37.375+03:00","@version":"1","message":"[Consumer clientId=consumer-dev-group-default-management-2, groupId=dev-group-default-management] (Re-)joining group","logger_name":"org.apache.kafka.clients.consumer.internals.AbstractCoordinator","thread_name":"pool-4-thread-1","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:37.375+03:00","@version":"1","message":"[Consumer clientId=consumer-dev-group-default-management-1, groupId=dev-group-default-management] (Re-)joining group","logger_name":"org.apache.kafka.clients.consumer.internals.AbstractCoordinator","thread_name":"pool-2-thread-1","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:37.387+03:00","@version":"1","message":"Started DefaultManagementApplication in 20.031 seconds (JVM running for 21.299)","logger_name":"ru.spcex.clearing.dflt.management.DefaultManagementApplication","thread_name":"main","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:37.395+03:00","@version":"1","message":"[Consumer clientId=consumer-dev-group-default-management-3, groupId=dev-group-default-management] (Re-)joining group","logger_name":"org.apache.kafka.clients.consumer.internals.AbstractCoordinator","thread_name":"pool-6-thread-1","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:37.395+03:00","@version":"1","message":"[Consumer clientId=consumer-dev-group-default-management-1, groupId=dev-group-default-management] (Re-)joining group","logger_name":"org.apache.kafka.clients.consumer.internals.AbstractCoordinator","thread_name":"pool-2-thread-1","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:37.395+03:00","@version":"1","message":"[Consumer clientId=consumer-dev-group-default-management-2, groupId=dev-group-default-management] (Re-)joining group","logger_name":"org.apache.kafka.clients.consumer.internals.AbstractCoordinator","thread_name":"pool-4-thread-1","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:37.475+03:00","@version":"1","message":"[Consumer clientId=consumer-dev-group-default-management-3, groupId=dev-group-default-management] Error while fetching metadata with correlation id 7 : {launcher-SDOR=UNKNOWN_TOPIC_OR_PARTITION, launcher-CROR=UNKNOWN_TOPIC_OR_PARTITION}","logger_name":"org.apache.kafka.clients.NetworkClient","thread_name":"pool-6-thread-1","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:48:37.475+03:00","@version":"1","message":"[Consumer clientId=consumer-dev-group-default-management-2, groupId=dev-group-default-management] Error while fetching metadata with correlation id 7 : {overnight-settings-update=UNKNOWN_TOPIC_OR_PARTITION, overnight-settings-new=UNKNOWN_TOPIC_OR_PARTITION}","logger_name":"org.apache.kafka.clients.NetworkClient","thread_name":"pool-4-thread-1","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:48:43.409+03:00","@version":"1","message":"[Consumer clientId=consumer-dev-group-default-management-3, groupId=dev-group-default-management] Successfully joined group with generation Generation{generationId=1, memberId='consumer-dev-group-default-management-3-4765fb13-f96f-41c0-a198-93149b709ac4', protocol='range'}","logger_name":"org.apache.kafka.clients.consumer.internals.AbstractCoordinator","thread_name":"pool-6-thread-1","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:43.409+03:00","@version":"1","message":"[Consumer clientId=consumer-dev-group-default-management-2, groupId=dev-group-default-management] Successfully joined group with generation Generation{generationId=1, memberId='consumer-dev-group-default-management-2-37ebac40-70b4-409c-906b-b3d1187eb609', protocol='range'}","logger_name":"org.apache.kafka.clients.consumer.internals.AbstractCoordinator","thread_name":"pool-4-thread-1","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:43.409+03:00","@version":"1","message":"[Consumer clientId=consumer-dev-group-default-management-1, groupId=dev-group-default-management] Successfully joined group with generation Generation{generationId=1, memberId='consumer-dev-group-default-management-1-7965f78e-7ba9-4d96-b71f-1ebdc59c4efb', protocol='range'}","logger_name":"org.apache.kafka.clients.consumer.internals.AbstractCoordinator","thread_name":"pool-2-thread-1","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:43.413+03:00","@version":"1","message":"[Consumer clientId=consumer-dev-group-default-management-1, groupId=dev-group-default-management] Finished assignment for group at generation 1: {consumer-dev-group-default-management-3-4765fb13-f96f-41c0-a198-93149b709ac4=Assignment(partitions=[launcher-SDOR-0, launcher-CROR-0]), consumer-dev-group-default-management-1-7965f78e-7ba9-4d96-b71f-1ebdc59c4efb=Assignment(partitions=[order-currency-status-update-fix-0, order-currency-status-update-importer-0, order-currency-company-delete-0, order-currency-status-update-0, order-overnight-type-update-0, order-currency-company-update-0, order-currency-update-0, order-currency-company-new-0]), consumer-dev-group-default-management-2-37ebac40-70b4-409c-906b-b3d1187eb609=Assignment(partitions=[overnight-settings-update-0, overnight-settings-new-0])}","logger_name":"org.apache.kafka.clients.consumer.internals.ConsumerCoordinator","thread_name":"pool-2-thread-1","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:43.434+03:00","@version":"1","message":"[Consumer clientId=consumer-dev-group-default-management-3, groupId=dev-group-default-management] Successfully synced group in generation Generation{generationId=1, memberId='consumer-dev-group-default-management-3-4765fb13-f96f-41c0-a198-93149b709ac4', protocol='range'}","logger_name":"org.apache.kafka.clients.consumer.internals.AbstractCoordinator","thread_name":"pool-6-thread-1","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:43.434+03:00","@version":"1","message":"[Consumer clientId=consumer-dev-group-default-management-1, groupId=dev-group-default-management] Successfully synced group in generation Generation{generationId=1, memberId='consumer-dev-group-default-management-1-7965f78e-7ba9-4d96-b71f-1ebdc59c4efb', protocol='range'}","logger_name":"org.apache.kafka.clients.consumer.internals.AbstractCoordinator","thread_name":"pool-2-thread-1","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:43.434+03:00","@version":"1","message":"[Consumer clientId=consumer-dev-group-default-management-2, groupId=dev-group-default-management] Successfully synced group in generation Generation{generationId=1, memberId='consumer-dev-group-default-management-2-37ebac40-70b4-409c-906b-b3d1187eb609', protocol='range'}","logger_name":"org.apache.kafka.clients.consumer.internals.AbstractCoordinator","thread_name":"pool-4-thread-1","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:43.434+03:00","@version":"1","message":"[Consumer clientId=consumer-dev-group-default-management-3, groupId=dev-group-default-management] Notifying assignor about the new Assignment(partitions=[launcher-SDOR-0, launcher-CROR-0])","logger_name":"org.apache.kafka.clients.consumer.internals.ConsumerCoordinator","thread_name":"pool-6-thread-1","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:43.434+03:00","@version":"1","message":"[Consumer clientId=consumer-dev-group-default-management-1, groupId=dev-group-default-management] Notifying assignor about the new Assignment(partitions=[order-currency-status-update-fix-0, order-currency-status-update-importer-0, order-currency-company-delete-0, order-currency-status-update-0, order-overnight-type-update-0, order-currency-company-update-0, order-currency-update-0, order-currency-company-new-0])","logger_name":"org.apache.kafka.clients.consumer.internals.ConsumerCoordinator","thread_name":"pool-2-thread-1","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:43.434+03:00","@version":"1","message":"[Consumer clientId=consumer-dev-group-default-management-2, groupId=dev-group-default-management] Notifying assignor about the new Assignment(partitions=[overnight-settings-update-0, overnight-settings-new-0])","logger_name":"org.apache.kafka.clients.consumer.internals.ConsumerCoordinator","thread_name":"pool-4-thread-1","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:43.435+03:00","@version":"1","message":"[Consumer clientId=consumer-dev-group-default-management-3, groupId=dev-group-default-management] Adding newly assigned partitions: launcher-CROR-0, launcher-SDOR-0","logger_name":"org.apache.kafka.clients.consumer.internals.ConsumerCoordinator","thread_name":"pool-6-thread-1","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:43.435+03:00","@version":"1","message":"[Consumer clientId=consumer-dev-group-default-management-1, groupId=dev-group-default-management] Adding newly assigned partitions: order-currency-status-update-importer-0, order-currency-status-update-0, order-currency-company-delete-0, order-currency-company-new-0, order-overnight-type-update-0, order-currency-update-0, order-currency-company-update-0, order-currency-status-update-fix-0","logger_name":"org.apache.kafka.clients.consumer.internals.ConsumerCoordinator","thread_name":"pool-2-thread-1","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:43.435+03:00","@version":"1","message":"[Consumer clientId=consumer-dev-group-default-management-2, groupId=dev-group-default-management] Adding newly assigned partitions: overnight-settings-new-0, overnight-settings-update-0","logger_name":"org.apache.kafka.clients.consumer.internals.ConsumerCoordinator","thread_name":"pool-4-thread-1","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:43.447+03:00","@version":"1","message":"[Consumer clientId=consumer-dev-group-default-management-1, groupId=dev-group-default-management] Found no committed offset for partition order-currency-status-update-importer-0","logger_name":"org.apache.kafka.clients.consumer.internals.ConsumerCoordinator","thread_name":"pool-2-thread-1","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:43.447+03:00","@version":"1","message":"[Consumer clientId=consumer-dev-group-default-management-3, groupId=dev-group-default-management] Found no committed offset for partition launcher-CROR-0","logger_name":"org.apache.kafka.clients.consumer.internals.ConsumerCoordinator","thread_name":"pool-6-thread-1","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:43.447+03:00","@version":"1","message":"[Consumer clientId=consumer-dev-group-default-management-2, groupId=dev-group-default-management] Found no committed offset for partition overnight-settings-new-0","logger_name":"org.apache.kafka.clients.consumer.internals.ConsumerCoordinator","thread_name":"pool-4-thread-1","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:43.447+03:00","@version":"1","message":"[Consumer clientId=consumer-dev-group-default-management-1, groupId=dev-group-default-management] Found no committed offset for partition order-currency-status-update-0","logger_name":"org.apache.kafka.clients.consumer.internals.ConsumerCoordinator","thread_name":"pool-2-thread-1","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:43.447+03:00","@version":"1","message":"[Consumer clientId=consumer-dev-group-default-management-3, groupId=dev-group-default-management] Found no committed offset for partition launcher-SDOR-0","logger_name":"org.apache.kafka.clients.consumer.internals.ConsumerCoordinator","thread_name":"pool-6-thread-1","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:43.447+03:00","@version":"1","message":"[Consumer clientId=consumer-dev-group-default-management-2, groupId=dev-group-default-management] Found no committed offset for partition overnight-settings-update-0","logger_name":"org.apache.kafka.clients.consumer.internals.ConsumerCoordinator","thread_name":"pool-4-thread-1","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:43.447+03:00","@version":"1","message":"[Consumer clientId=consumer-dev-group-default-management-1, groupId=dev-group-default-management] Found no committed offset for partition order-currency-company-delete-0","logger_name":"org.apache.kafka.clients.consumer.internals.ConsumerCoordinator","thread_name":"pool-2-thread-1","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:43.447+03:00","@version":"1","message":"[Consumer clientId=consumer-dev-group-default-management-1, groupId=dev-group-default-management] Found no committed offset for partition order-currency-company-new-0","logger_name":"org.apache.kafka.clients.consumer.internals.ConsumerCoordinator","thread_name":"pool-2-thread-1","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:43.447+03:00","@version":"1","message":"[Consumer clientId=consumer-dev-group-default-management-1, groupId=dev-group-default-management] Found no committed offset for partition order-overnight-type-update-0","logger_name":"org.apache.kafka.clients.consumer.internals.ConsumerCoordinator","thread_name":"pool-2-thread-1","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:43.447+03:00","@version":"1","message":"[Consumer clientId=consumer-dev-group-default-management-1, groupId=dev-group-default-management] Found no committed offset for partition order-currency-update-0","logger_name":"org.apache.kafka.clients.consumer.internals.ConsumerCoordinator","thread_name":"pool-2-thread-1","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:43.448+03:00","@version":"1","message":"[Consumer clientId=consumer-dev-group-default-management-1, groupId=dev-group-default-management] Found no committed offset for partition order-currency-company-update-0","logger_name":"org.apache.kafka.clients.consumer.internals.ConsumerCoordinator","thread_name":"pool-2-thread-1","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:43.448+03:00","@version":"1","message":"[Consumer clientId=consumer-dev-group-default-management-1, groupId=dev-group-default-management] Found no committed offset for partition order-currency-status-update-fix-0","logger_name":"org.apache.kafka.clients.consumer.internals.ConsumerCoordinator","thread_name":"pool-2-thread-1","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:43.458+03:00","@version":"1","message":"[Consumer clientId=consumer-dev-group-default-management-2, groupId=dev-group-default-management] Resetting offset for partition overnight-settings-new-0 to position FetchPosition{offset=0, offsetEpoch=Optional.empty, currentLeader=LeaderAndEpoch{leader=Optional[localhost:9092 (id: 1 rack: null)], epoch=0}}.","logger_name":"org.apache.kafka.clients.consumer.internals.SubscriptionState","thread_name":"pool-4-thread-1","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:43.458+03:00","@version":"1","message":"[Consumer clientId=consumer-dev-group-default-management-3, groupId=dev-group-default-management] Resetting offset for partition launcher-CROR-0 to position FetchPosition{offset=0, offsetEpoch=Optional.empty, currentLeader=LeaderAndEpoch{leader=Optional[localhost:9092 (id: 1 rack: null)], epoch=0}}.","logger_name":"org.apache.kafka.clients.consumer.internals.SubscriptionState","thread_name":"pool-6-thread-1","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:43.458+03:00","@version":"1","message":"[Consumer clientId=consumer-dev-group-default-management-1, groupId=dev-group-default-management] Resetting offset for partition order-currency-status-update-importer-0 to position FetchPosition{offset=0, offsetEpoch=Optional.empty, currentLeader=LeaderAndEpoch{leader=Optional[localhost:9092 (id: 1 rack: null)], epoch=0}}.","logger_name":"org.apache.kafka.clients.consumer.internals.SubscriptionState","thread_name":"pool-2-thread-1","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:43.459+03:00","@version":"1","message":"[Consumer clientId=consumer-dev-group-default-management-2, groupId=dev-group-default-management] Resetting offset for partition overnight-settings-update-0 to position FetchPosition{offset=0, offsetEpoch=Optional.empty, currentLeader=LeaderAndEpoch{leader=Optional[localhost:9092 (id: 1 rack: null)], epoch=0}}.","logger_name":"org.apache.kafka.clients.consumer.internals.SubscriptionState","thread_name":"pool-4-thread-1","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:43.459+03:00","@version":"1","message":"[Consumer clientId=consumer-dev-group-default-management-1, groupId=dev-group-default-management] Resetting offset for partition order-currency-status-update-0 to position FetchPosition{offset=0, offsetEpoch=Optional.empty, currentLeader=LeaderAndEpoch{leader=Optional[localhost:9092 (id: 1 rack: null)], epoch=0}}.","logger_name":"org.apache.kafka.clients.consumer.internals.SubscriptionState","thread_name":"pool-2-thread-1","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:43.459+03:00","@version":"1","message":"[Consumer clientId=consumer-dev-group-default-management-3, groupId=dev-group-default-management] Resetting offset for partition launcher-SDOR-0 to position FetchPosition{offset=0, offsetEpoch=Optional.empty, currentLeader=LeaderAndEpoch{leader=Optional[localhost:9092 (id: 1 rack: null)], epoch=0}}.","logger_name":"org.apache.kafka.clients.consumer.internals.SubscriptionState","thread_name":"pool-6-thread-1","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:43.459+03:00","@version":"1","message":"[Consumer clientId=consumer-dev-group-default-management-1, groupId=dev-group-default-management] Resetting offset for partition order-currency-company-delete-0 to position FetchPosition{offset=0, offsetEpoch=Optional.empty, currentLeader=LeaderAndEpoch{leader=Optional[localhost:9092 (id: 1 rack: null)], epoch=0}}.","logger_name":"org.apache.kafka.clients.consumer.internals.SubscriptionState","thread_name":"pool-2-thread-1","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:43.459+03:00","@version":"1","message":"[Consumer clientId=consumer-dev-group-default-management-1, groupId=dev-group-default-management] Resetting offset for partition order-currency-company-new-0 to position FetchPosition{offset=0, offsetEpoch=Optional.empty, currentLeader=LeaderAndEpoch{leader=Optional[localhost:9092 (id: 1 rack: null)], epoch=0}}.","logger_name":"org.apache.kafka.clients.consumer.internals.SubscriptionState","thread_name":"pool-2-thread-1","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:43.459+03:00","@version":"1","message":"[Consumer clientId=consumer-dev-group-default-management-1, groupId=dev-group-default-management] Resetting offset for partition order-overnight-type-update-0 to position FetchPosition{offset=0, offsetEpoch=Optional.empty, currentLeader=LeaderAndEpoch{leader=Optional[localhost:9092 (id: 1 rack: null)], epoch=0}}.","logger_name":"org.apache.kafka.clients.consumer.internals.SubscriptionState","thread_name":"pool-2-thread-1","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:43.46+03:00","@version":"1","message":"[Consumer clientId=consumer-dev-group-default-management-1, groupId=dev-group-default-management] Resetting offset for partition order-currency-update-0 to position FetchPosition{offset=0, offsetEpoch=Optional.empty, currentLeader=LeaderAndEpoch{leader=Optional[localhost:9092 (id: 1 rack: null)], epoch=0}}.","logger_name":"org.apache.kafka.clients.consumer.internals.SubscriptionState","thread_name":"pool-2-thread-1","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:43.46+03:00","@version":"1","message":"[Consumer clientId=consumer-dev-group-default-management-1, groupId=dev-group-default-management] Resetting offset for partition order-currency-company-update-0 to position FetchPosition{offset=0, offsetEpoch=Optional.empty, currentLeader=LeaderAndEpoch{leader=Optional[localhost:9092 (id: 1 rack: null)], epoch=0}}.","logger_name":"org.apache.kafka.clients.consumer.internals.SubscriptionState","thread_name":"pool-2-thread-1","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:43.46+03:00","@version":"1","message":"[Consumer clientId=consumer-dev-group-default-management-1, groupId=dev-group-default-management] Resetting offset for partition order-currency-status-update-fix-0 to position FetchPosition{offset=0, offsetEpoch=Optional.empty, currentLeader=LeaderAndEpoch{leader=Optional[localhost:9092 (id: 1 rack: null)], epoch=0}}.","logger_name":"org.apache.kafka.clients.consumer.internals.SubscriptionState","thread_name":"pool-2-thread-1","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:47.381+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:47.396+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:48:47.396+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 2 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:48:57.41+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:48:57.411+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:48:57.411+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 3 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:49:07.413+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:49:07.413+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:49:07.413+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 4 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:49:17.427+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:49:17.427+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:49:17.427+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 5 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:49:27.431+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:49:27.432+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:49:27.432+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 6 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:49:37.436+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:49:37.436+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:49:37.436+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 7 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:49:47.441+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:49:47.441+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:49:47.441+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 8 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:49:57.452+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:49:57.453+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:49:57.453+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 9 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:50:07.464+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:50:07.48+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:50:07.48+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 10 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:50:17.485+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:50:17.486+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:50:17.486+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 11 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:50:27.499+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:50:27.5+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:50:27.5+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 12 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:50:37.516+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:50:37.517+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:50:37.517+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 13 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:50:47.522+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:50:47.523+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:50:47.523+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 14 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:50:57.527+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:50:57.543+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:50:57.543+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 15 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:51:07.558+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:51:07.573+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:51:07.573+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 16 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:51:17.58+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:51:17.596+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:51:17.596+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 17 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:51:27.608+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:51:27.608+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:51:27.608+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 18 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:51:37.622+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:51:37.623+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:51:37.623+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 19 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:51:47.627+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:51:47.628+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:51:47.628+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 20 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:51:57.639+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:51:57.64+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:51:57.64+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 21 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:52:07.652+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:52:07.653+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:52:07.653+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 22 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:52:17.661+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:52:17.662+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:52:17.662+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 23 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:52:27.67+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:52:27.671+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:52:27.671+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 24 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:52:37.677+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:52:37.694+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:52:37.694+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 25 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:52:47.706+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:52:47.707+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:52:47.707+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 26 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:52:57.721+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:52:57.721+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:52:57.721+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 27 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:53:07.728+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:53:07.744+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:53:07.744+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 28 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:53:17.756+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:53:17.771+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:53:17.771+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 29 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:53:27.774+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:53:27.789+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:53:27.789+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 30 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:53:37.797+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:53:37.797+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:53:37.798+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 31 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:53:47.807+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:53:47.808+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:53:47.808+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 32 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:53:57.815+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:53:57.816+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:53:57.816+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 33 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:54:07.823+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:54:07.824+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:54:07.824+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 34 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:54:17.839+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:54:17.854+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:54:17.854+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 35 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:54:27.856+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:54:27.856+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:54:27.857+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 36 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:54:37.869+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:54:37.87+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:54:37.87+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 37 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:54:47.876+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:54:47.877+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:54:47.877+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 38 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:54:57.939+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:54:58.014+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:54:58.015+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 39 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:55:08.015+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:55:08.016+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:55:08.016+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 40 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:55:18.017+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:55:18.018+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:55:18.018+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 41 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:55:28.033+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:55:28.034+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:55:28.034+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 42 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:55:38.044+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:55:38.045+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:55:38.045+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 43 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:55:48.051+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:55:48.052+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:55:48.052+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 44 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:55:58.054+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:55:58.055+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:55:58.055+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 45 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:56:08.066+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:56:08.067+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:56:08.067+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 46 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:56:18.068+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:56:18.083+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:56:18.084+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 47 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:56:28.087+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:56:28.088+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:56:28.088+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 48 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:56:38.097+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:56:38.112+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:56:38.112+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 49 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:56:48.12+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:56:48.121+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:56:48.121+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 50 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:56:58.128+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:56:58.129+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:56:58.129+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 51 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:57:08.14+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:57:08.141+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:57:08.141+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 52 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:57:18.157+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:57:18.157+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:57:18.157+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 53 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:57:28.171+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:57:28.172+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:57:28.172+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 54 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:57:38.184+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:57:38.185+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:57:38.185+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 55 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:57:48.19+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:57:48.191+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:57:48.191+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 56 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:57:58.206+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:57:58.206+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:57:58.206+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 57 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:58:08.212+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:58:08.213+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:58:08.213+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 58 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:58:18.215+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:58:18.216+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:58:18.216+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 59 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:58:28.227+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:58:28.227+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:58:28.227+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 60 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:58:38.238+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:58:38.239+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:58:38.239+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 61 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:58:48.247+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:58:48.262+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:58:48.262+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 62 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:58:58.265+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:58:58.28+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:58:58.28+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 63 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:59:08.282+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:59:08.283+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:59:08.283+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 64 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:59:18.296+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:59:18.311+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:59:18.311+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 65 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:59:28.321+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:59:28.337+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:59:28.337+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 66 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:59:38.346+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:59:38.361+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:59:38.361+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 67 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:59:48.365+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:59:48.366+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:59:48.366+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 68 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:59:58.38+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T12:59:58.38+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T12:59:58.38+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 69 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:00:08.384+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:00:08.385+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:00:08.385+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 70 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:00:18.395+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:00:18.41+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:00:18.41+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 71 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:00:28.417+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:00:28.417+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:00:28.417+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 72 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:00:38.428+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:00:38.428+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:00:38.429+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 73 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:00:48.432+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:00:48.448+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:00:48.448+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 74 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:00:58.451+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:00:58.452+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:00:58.452+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 75 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:01:08.453+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:01:08.453+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:01:08.453+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 76 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:01:18.462+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:01:18.477+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:01:18.477+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 77 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:01:28.48+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:01:28.496+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:01:28.496+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 78 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:01:38.498+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:01:38.499+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:01:38.499+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 79 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:01:48.515+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:01:48.53+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:01:48.53+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 80 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:01:58.545+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:01:58.546+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:01:58.546+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 81 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:02:08.551+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:02:08.567+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:02:08.567+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 82 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:02:18.573+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:02:18.589+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:02:18.589+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 83 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:02:28.592+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:02:28.593+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:02:28.593+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 84 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:02:38.608+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:02:38.624+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:02:38.624+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 85 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:02:48.625+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:02:48.626+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:02:48.626+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 86 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:02:58.635+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:02:58.636+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:02:58.636+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 87 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:03:08.637+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:03:08.652+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:03:08.652+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 88 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:03:18.66+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:03:18.661+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:03:18.661+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 89 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:03:28.666+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:03:28.681+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:03:28.681+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 90 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:03:38.684+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:03:38.684+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:03:38.685+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 91 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:03:48.7+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:03:48.701+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:03:48.701+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 92 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:03:58.702+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:03:58.703+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:03:58.703+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 93 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:04:08.716+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:04:08.717+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:04:08.717+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 94 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:04:18.719+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:04:18.719+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:04:18.72+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 95 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:04:28.735+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:04:28.736+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:04:28.736+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 96 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:04:38.748+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:04:38.749+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:04:38.749+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 97 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:04:48.757+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:04:48.772+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:04:48.772+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 98 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:04:58.779+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:04:58.794+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:04:58.795+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 99 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:05:08.804+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:05:08.804+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:05:08.804+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 100 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:05:18.812+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:05:18.813+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:05:18.813+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 101 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:05:28.822+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:05:28.837+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:05:28.837+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 102 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:05:38.85+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:05:38.85+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:05:38.85+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 103 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:05:48.853+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:05:48.854+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:05:48.854+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 104 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:05:58.866+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:05:58.867+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:05:58.867+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 105 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:06:08.879+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:06:08.88+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:06:08.88+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 106 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:06:18.884+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:06:18.885+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:06:18.885+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 107 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:06:28.886+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:06:28.887+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:06:28.887+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 108 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:06:38.898+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:06:38.898+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:06:38.899+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 109 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:06:48.91+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:06:48.91+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:06:48.911+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 110 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:06:58.916+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:06:58.917+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:06:58.917+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 111 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:07:08.919+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:07:08.92+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:07:08.92+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 112 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:07:18.932+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:07:18.948+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:07:18.948+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 113 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:07:28.961+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:07:28.962+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:07:28.962+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 114 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:07:38.976+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:07:38.977+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:07:38.977+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 115 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:07:48.987+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:07:48.988+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:07:48.988+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 116 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:07:58.996+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:07:58.996+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:07:58.997+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 117 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:08:09.011+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:08:09.011+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:08:09.012+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 118 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:08:19.026+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:08:19.042+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:08:19.042+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 119 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:08:29.05+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:08:29.05+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:08:29.05+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 120 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:08:39.056+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:08:39.056+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:08:39.057+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 121 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:08:49.066+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:08:49.067+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:08:49.067+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 122 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:08:59.077+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:08:59.078+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:08:59.078+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 123 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:09:09.08+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:09:09.096+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:09:09.096+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 124 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:09:19.106+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:09:19.106+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:09:19.106+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 125 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:09:29.111+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:09:29.112+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:09:29.112+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 126 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:09:39.115+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:09:39.131+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:09:39.131+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 127 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:09:49.132+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:09:49.132+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:09:49.133+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 128 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:09:59.144+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:09:59.16+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:09:59.16+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 129 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:10:09.162+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:10:09.162+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:10:09.163+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 130 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:10:19.167+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:10:19.167+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:10:19.168+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 131 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:10:29.176+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:10:29.176+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:10:29.176+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 132 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:10:39.181+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:10:39.181+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:10:39.181+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 133 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:10:49.183+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:10:49.184+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:10:49.184+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 134 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:10:59.185+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:10:59.185+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:10:59.186+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 135 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:11:09.188+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:11:09.203+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:11:09.203+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 136 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:11:19.214+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:11:19.214+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:11:19.214+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 137 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:11:29.23+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:11:29.23+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:11:29.231+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 138 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:11:39.238+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:11:39.239+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:11:39.239+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 139 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:11:49.251+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:11:49.251+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:11:49.252+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 140 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:11:59.257+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:11:59.273+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:11:59.273+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 141 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:12:09.289+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:12:09.304+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:12:09.304+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 142 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:12:19.318+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:12:19.333+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:12:19.333+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 143 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:12:29.348+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:12:29.349+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:12:29.349+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 144 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:12:39.358+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:12:39.373+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:12:39.373+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 145 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:12:49.376+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:12:49.377+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:12:49.377+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 146 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:12:59.389+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:12:59.405+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:12:59.405+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 147 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:13:09.407+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:13:09.407+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:13:09.408+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 148 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:13:19.42+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:13:19.435+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:13:19.435+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 149 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:13:29.443+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:13:29.444+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:13:29.444+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 150 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:13:39.454+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:13:39.455+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:13:39.455+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 151 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:13:49.458+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:13:49.459+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:13:49.459+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 152 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:13:59.464+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:13:59.464+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:13:59.465+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 153 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:14:09.479+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:14:09.479+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:14:09.48+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 154 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:14:19.495+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:14:19.511+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:14:19.511+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 155 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:14:29.521+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:14:29.536+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:14:29.536+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 156 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:14:39.538+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:14:39.538+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:14:39.539+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 157 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:14:49.548+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:14:49.549+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:14:49.549+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 158 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:14:59.564+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:14:59.565+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:14:59.565+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 159 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:15:09.58+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:15:09.581+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:15:09.581+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 160 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:15:19.596+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:15:19.597+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:15:19.597+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 161 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:15:29.609+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:15:29.61+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:15:29.61+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 162 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:15:39.613+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:15:39.628+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:15:39.628+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 163 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:15:49.644+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:15:49.644+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:15:49.644+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 164 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:15:59.66+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:15:59.661+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:15:59.661+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 165 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:16:09.669+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:16:09.67+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:16:09.67+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 166 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:16:19.683+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:16:19.683+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:16:19.684+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 167 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:16:29.697+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:16:29.713+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:16:29.713+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 168 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:16:39.724+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:16:39.724+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:16:39.725+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 169 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:16:49.738+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:16:49.739+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:16:49.739+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 170 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:16:59.747+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:16:59.763+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:16:59.763+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 171 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:17:09.774+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:17:09.775+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:17:09.775+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 172 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:17:19.777+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:17:19.793+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:17:19.793+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 173 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:17:29.802+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:17:29.802+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:17:29.802+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 174 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:17:39.804+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:17:39.805+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:17:39.805+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 175 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:17:49.814+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:17:49.814+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:17:49.814+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 176 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:17:59.828+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:17:59.829+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:17:59.829+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 177 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:18:09.841+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:18:09.842+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:18:09.842+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 178 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:18:19.852+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:18:19.853+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:18:19.853+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 179 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:18:29.864+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:18:29.864+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:18:29.864+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 180 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:18:39.876+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:18:39.877+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:18:39.877+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 181 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:18:49.89+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:18:49.89+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:18:49.89+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 182 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:18:59.901+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:18:59.902+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:18:59.902+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 183 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:19:09.91+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:19:09.925+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:19:09.925+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 184 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:19:19.935+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:19:19.951+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:19:19.951+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 185 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:19:29.952+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:19:29.967+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:19:29.967+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 186 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:19:39.979+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:19:39.994+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:19:39.994+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 187 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:19:50.006+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:19:50.007+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:19:50.007+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 188 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:20:00.008+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:20:00.009+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:20:00.009+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 189 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:20:10.021+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:20:10.022+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:20:10.022+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 190 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:20:20.024+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:20:20.025+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:20:20.025+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 191 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:20:30.032+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:20:30.032+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:20:30.032+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 192 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:20:40.042+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:20:40.058+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:20:40.058+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 193 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:20:50.059+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:20:50.073+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:20:50.073+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 194 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:21:00.076+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:21:00.076+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:21:00.076+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 195 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:21:10.084+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:21:10.084+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:21:10.084+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 196 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:21:20.091+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:21:20.107+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:21:20.107+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 197 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:21:30.111+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:21:30.112+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:21:30.112+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 198 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:21:40.124+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:21:40.14+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:21:40.14+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 199 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:21:50.143+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:21:50.143+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:21:50.144+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 200 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:22:00.149+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:22:00.165+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:22:00.165+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 201 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:22:10.168+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:22:10.168+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:22:10.168+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 202 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:22:20.176+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:22:20.177+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:22:20.177+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 203 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:22:30.192+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:22:30.208+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:22:30.208+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 204 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:22:40.213+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:22:40.228+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:22:40.228+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 205 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:22:50.231+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:22:50.232+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:22:50.232+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 206 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:23:00.234+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:23:00.235+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:23:00.235+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 207 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:23:10.242+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:23:10.258+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:23:10.258+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 208 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:23:20.263+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:23:20.264+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:23:20.264+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 209 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:23:30.27+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:23:30.27+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:23:30.271+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 210 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:23:40.278+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:23:40.279+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:23:40.279+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 211 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:23:50.28+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:23:50.296+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:23:50.296+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 212 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:24:00.298+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:24:00.298+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:24:00.299+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 213 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:24:10.311+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:24:10.312+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:24:10.312+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 214 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:24:20.328+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:24:20.344+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:24:20.344+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 215 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:24:30.357+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:24:30.358+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:24:30.358+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 216 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:24:40.363+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:24:40.364+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:24:40.364+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 217 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:24:50.369+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:24:50.385+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:24:50.385+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 218 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:25:00.394+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:25:00.395+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:25:00.395+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 219 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:25:10.403+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:25:10.404+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:25:10.404+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 220 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:25:20.406+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:25:20.406+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:25:20.406+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 221 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:25:30.412+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:25:30.413+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:25:30.413+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 222 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:25:40.421+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:25:40.421+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:25:40.422+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 223 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:25:50.437+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:25:50.452+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:25:50.452+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 224 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:26:00.46+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:26:00.46+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:26:00.46+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 225 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:26:10.469+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:26:10.485+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:26:10.485+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 226 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:26:20.5+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:26:20.5+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:26:20.501+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 227 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:26:30.506+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:26:30.506+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:26:30.506+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 228 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:26:40.52+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:26:40.52+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:26:40.52+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 229 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:26:50.522+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:26:50.537+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:26:50.537+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 230 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:27:00.543+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:27:00.544+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:27:00.544+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 231 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:27:10.558+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:27:10.574+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:27:10.574+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 232 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:27:20.582+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:27:20.597+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:27:20.597+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 233 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:27:30.6+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:27:30.6+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:27:30.6+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 234 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:27:40.602+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:27:40.618+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:27:40.618+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 235 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:27:50.63+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:27:50.63+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:27:50.631+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 236 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:28:00.642+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:28:00.643+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:28:00.643+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 237 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:28:10.655+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:28:10.656+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:28:10.656+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 238 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:28:20.671+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:28:20.671+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:28:20.672+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 239 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:28:30.679+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:28:30.68+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:28:30.68+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 240 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:28:40.694+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:28:40.71+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:28:40.71+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 241 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:28:50.724+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:28:50.74+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:28:50.74+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 242 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:29:00.752+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:29:00.752+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:29:00.753+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 243 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:29:10.757+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:29:10.758+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:29:10.758+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 244 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:29:20.768+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:29:20.769+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:29:20.769+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 245 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:29:30.773+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:29:30.774+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:29:30.774+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 246 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:29:40.779+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:29:40.78+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:29:40.78+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 247 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:29:50.793+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:29:50.808+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:29:50.808+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 248 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:30:00.816+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:30:00.816+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:30:00.816+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 249 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:30:10.819+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:30:10.819+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:30:10.819+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 250 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:30:20.826+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:30:20.826+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:30:20.826+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 251 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:30:30.835+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:30:30.835+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:30:30.835+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 252 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:30:40.851+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:30:40.867+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:30:40.867+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 253 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:30:50.872+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:30:50.872+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:30:50.872+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 254 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:31:00.884+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:31:00.885+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:31:00.885+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 255 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:31:10.894+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:31:10.909+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:31:10.91+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 256 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:31:20.915+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:31:20.915+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:31:20.916+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 257 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:31:30.924+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:31:30.924+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:31:30.924+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 258 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:31:40.932+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:31:40.933+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:31:40.934+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 259 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:31:50.944+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:31:50.945+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:31:50.945+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 260 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:32:00.948+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:32:00.963+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:32:00.963+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 261 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:32:10.964+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:32:10.98+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:32:10.98+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 262 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:32:20.987+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:32:20.987+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:32:20.987+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 263 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:32:30.992+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:32:30.992+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:32:30.992+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 264 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:32:41+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:32:41.001+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:32:41.001+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 265 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:32:51.016+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:32:51.032+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:32:51.032+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 266 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:33:01.038+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:33:01.039+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:33:01.039+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 267 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:33:11.044+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:33:11.044+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:33:11.044+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 268 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:33:21.057+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:33:21.058+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:33:21.058+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 269 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:33:31.073+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Trying to connect to [127.0.0.1]:5701 as owner member","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:33:31.088+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Exception during initial connection to [127.0.0.1]:5701: com.hazelcast.core.HazelcastException: java.net.SocketException: Connection refused: getsockopt to address /127.0.0.1:5701","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:33:31.088+03:00","@version":"1","message":"hz.client_0 [dev] [3.12.4] Unable to get live cluster connection, retry in 10000 ms, attempt 270 of 2147483647.","logger_name":"com.hazelcast.client.connection.nio.ClusterConnectorService","thread_name":"hz.client_0.cluster-","level":"WARN","level_value":30000}
{"@timestamp":"2026-04-29T13:33:32.147+03:00","@version":"1","message":"Closing queue consumer TaskListener","logger_name":"ru.spcex.clearing.dflt.management.listener.TaskListener","thread_name":"SpringApplicationShutdownHook","level":"DEBUG","level_value":10000}
{"@timestamp":"2026-04-29T13:33:32.148+03:00","@version":"1","message":"Closing queue consumer OvernightSettingsListener","logger_name":"ru.spcex.clearing.dflt.management.listener.OvernightSettingsListener","thread_name":"SpringApplicationShutdownHook","level":"DEBUG","level_value":10000}
{"@timestamp":"2026-04-29T13:33:32.148+03:00","@version":"1","message":"Closing queue consumer OrderCurrencyListener","logger_name":"ru.spcex.clearing.dflt.management.listener.OrderCurrencyListener","thread_name":"SpringApplicationShutdownHook","level":"DEBUG","level_value":10000}
{"@timestamp":"2026-04-29T13:33:32.148+03:00","@version":"1","message":"[Producer clientId=producer-1] Closing the Kafka producer with timeoutMillis = 9223372036854775807 ms.","logger_name":"org.apache.kafka.clients.producer.KafkaProducer","thread_name":"SpringApplicationShutdownHook","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:33:32.15+03:00","@version":"1","message":"Metrics scheduler closed","logger_name":"org.apache.kafka.common.metrics.Metrics","thread_name":"SpringApplicationShutdownHook","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:33:32.15+03:00","@version":"1","message":"Closing reporter org.apache.kafka.common.metrics.JmxReporter","logger_name":"org.apache.kafka.common.metrics.Metrics","thread_name":"SpringApplicationShutdownHook","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:33:32.15+03:00","@version":"1","message":"Metrics reporters closed","logger_name":"org.apache.kafka.common.metrics.Metrics","thread_name":"SpringApplicationShutdownHook","level":"INFO","level_value":20000}
{"@timestamp":"2026-04-29T13:33:32.15+03:00","@version":"1","message":"App info kafka.producer for producer-1 unregistered","logger_name":"org.apache.kafka.common.utils.AppInfoParser","thread_name":"SpringApplicationShutdownHook","level":"INFO","level_value":20000}

Binary file not shown.

File diff suppressed because it is too large Load diff

11582
log/imdg-json.log Normal file

File diff suppressed because it is too large Load diff

11588
log/imdg-text.log Normal file

File diff suppressed because it is too large Load diff

View file

@ -7,6 +7,8 @@ public class MoneyAccountMsgRequest {
private String currCode;
@JsonProperty("account")
private String account;
@JsonProperty("eks_account")
private String eks_account;
@JsonProperty("status")
private String status;
@ -25,4 +27,12 @@ public class MoneyAccountMsgRequest {
public void setAccount(String account) {
this.account = account;
}
public String getEks_account() {
return eks_account;
}
public void setEks_account(String eks_account) {
this.eks_account = eks_account;
}
}

View file

@ -14,7 +14,7 @@
<parent>
<groupId>ru.spcex.clearing</groupId>
<artifactId>clearing</artifactId>
<version>SPCEX-3.25.299</version>
<version>SPCEX-3.26.301</version>
</parent>
<modules>

View file

@ -9,7 +9,7 @@
<name>__parent_ROOT</name>
<description>Clearing main parent</description>
<packaging>pom</packaging>
<version>SPCEX-3.25.299</version>
<version>SPCEX-3.26.301</version>
<modules>
<module>clearing-parent</module>
@ -24,7 +24,7 @@
<project.java.version>17</project.java.version>
<built.by>Maven</built.by>
<global.project.version>SPCEX-3.25.299</global.project.version>
<global.project.version>SPCEX-3.26.301</global.project.version>
<spring-boot.version>2.6.3</spring-boot.version>

View file

@ -5,7 +5,7 @@
<parent>
<artifactId>clearing</artifactId>
<groupId>ru.spcex.clearing</groupId>
<version>SPCEX-3.25.299</version>
<version>SPCEX-3.26.301</version>
</parent>
<modelVersion>4.0.0</modelVersion>