Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dev ([TS-1574] Sailfish updated from 3.3.13 to 3.3.144) #187

Closed
wants to merge 14 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM gradle:6.6-jdk11 AS build
FROM gradle:7.6-jdk11 AS build
ARG release_version
COPY ./ .
RUN gradle --no-daemon clean build dockerPrepare -Prelease_version=${release_version}
Expand Down
32 changes: 22 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Connect (3.11.1)
# Connect (3.11.2)

The "Connect" component is responsible for the communication with a target system.
This component implements the logic of the interaction protocol, receiving and sending messages from and to the system, respectively.
Expand Down Expand Up @@ -28,6 +28,7 @@ Parameters:
+ name - the service name that will be displayed in the events inside the report;
+ settings - the parameters that will be transformed to the actual service's settings specified in the **services.xml** file.
+ maxMessageBatchSize - the limitation for message batch size which connect sends to the first and to the second publish pins with. The default value is set to 100.
+ maxMessageFlushTime - defines maximum time between outgoing message batches in milliseconds. The default value is set to 1000.
+ enableMessageSendingEvent - if this option is set to `true`, connect sends a separate event for every message sent which incomes from the pin with the send attribute. The default value is set to true

## Metrics
Expand Down Expand Up @@ -102,6 +103,7 @@ spec:
type: "th2_service:Your_Service_Type"
name: "your_service"
maxMessageBatchSize: 100
maxMessageFlushTime: 1000
enableMessageSendingEvent: true
settings:
param1: "value1"
Expand All @@ -119,6 +121,12 @@ spec:

## Release notes

### 3.11.2

+ Sailfish updated from `3.3.132` to `3.3.144`
+ Added `maxMessageFlushTime` option
+ Use temporal directory for last layer in sailfish's workspace

### 3.11.1
+ Updated `sailfish-core` version from `3.3.54` to `3.3.132`

Expand All @@ -129,25 +137,29 @@ spec:
+ Updated `kotlin` form `1.5.30` to `1.6.21`
+ Renamed project to `conn-sailfish`

### 3.10.2

+ Events are made more convenient. Added event names and error logs. Error message moved from the name to the body of the event.

### 3.10.1

+ Update `sailfish-core` version from `3.2.1674` to `3.2.1741`
+ Updated `sailfish-core` version from `3.2.1674` to `3.2.1741`
+ Add exception for checking the property in `IMetadata`
+ Added synchronization by processor to `ServiceListener.onMessage()` otherwise processor sometimes misses some sequences
+ Added log about missed sequences
+ Added trace log to flowable processor

### 3.10.0

+ Update `th2-common` version from `3.25.1` to `3.33.0`
+ Update `org.jetbrains.kotlin.jvm` version from `1.3.72` to `1.5.30`
+ Updated `th2-common` version from `3.25.1` to `3.33.0`
+ Updated `org.jetbrains.kotlin.jvm` version from `1.3.72` to `1.5.30`

### 3.9.0

+ Update `sailfish-core` version from `3.2.1650` to `3.2.1674`
+ Updated `sailfish-core` version from `3.2.1650` to `3.2.1674`
+ Embedded Sailfish service based on MINA decodes the message as sender during sending. This approach is important for protocols in which a pair of messages have the same protocol message type and different structures depending on the direction.
+ Update `th2-common` version from `3.16.5` to `3.25.1`
+ Update `th2-sailfish-utils` version from `3.4.0` to `3.8.0`
+ Updated `th2-common` version from `3.16.5` to `3.25.1`
+ Updated `th2-sailfish-utils` version from `3.4.0` to `3.8.0`

### 3.8.1

Expand All @@ -159,11 +171,11 @@ spec:

### 3.7.2

+ Update Sailfish version to 3.2.1603
+ Updated Sailfish version to 3.2.1603

### 3.7.1

+ Update Sailfish version to 3.2.1572 (unwraps the EvolutionBatch when sending raw message)
+ Updated Sailfish version to 3.2.1572 (unwraps the EvolutionBatch when sending raw message)

### 3.7.0

Expand Down Expand Up @@ -191,7 +203,7 @@ spec:
+ reads dictionaries from the /var/th2/config/dictionary folder.
+ uses mq_router, grpc_router, cradle_manager optional JSON configs from the /var/th2/config folder
+ tries to load log4j.properties files from sources in order: '/var/th2/config', '/home/etc', configured path via cmd, default configuration
+ update Cradle version. Introduce async API for storing events
+ updated Cradle version. Introduce async API for storing events

### 3.4.1

Expand Down
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ dependencyCheck {
}

ext {
sailfishVersion = '3.3.132'
sailfishVersion = '3.3.144'
}

ext.excludeSailfish = { rcd ->
Expand Down Expand Up @@ -63,7 +63,7 @@ repositories {
mavenCentral()
mavenLocal()

configurations.all {
configurations.configureEach {
resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
resolutionStrategy.cacheDynamicVersionsFor 0, 'seconds'
}
Expand Down Expand Up @@ -106,21 +106,21 @@ dependencies {

implementation("com.exactpro.sf:sailfish-core:${sailfishVersion}")

testImplementation 'org.junit.jupiter:junit-jupiter:5.7.1'
testImplementation 'org.junit.jupiter:junit-jupiter:5.9.0'
}

test {
useJUnitPlatform()
}

application {
mainClassName 'com.exactpro.th2.conn.MicroserviceMain'
mainClass.set('com.exactpro.th2.conn.MicroserviceMain')
}

applicationName = 'service'

distTar {
archiveName "${applicationName}.tar"
archiveFileName.set("${applicationName}.tar")
}

dockerPrepare {
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
release_version = 3.11.1
release_version = 3.11.2
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
#

#Tue Jun 09 10:46:12 MSK 2020
distributionUrl=https\://services.gradle.org/distributions/gradle-6.6-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-all.zip
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
Expand Down
8 changes: 5 additions & 3 deletions src/main/java/com/exactpro/th2/conn/MessageSender.java
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ private void sendMessage(RawMessage protoMsg) throws InterruptedException {
logger.debug("Message sent. Base64 view: {}", Base64.getEncoder().encodeToString(data));
}
} catch (Exception ex) {
Event errorEvent = createErrorEvent("SendError")
Event errorEvent = createErrorEvent("SendError", ex)
.bodyData(EventUtils.createMessageBean("Cannot send message. Message body in base64:"))
.bodyData(EventUtils.createMessageBean(Base64.getEncoder().encodeToString(data)));
EventStoreExtensions.addException(errorEvent, ex);
Expand All @@ -124,10 +124,12 @@ private void storeErrorEvent(Event errorEvent, @Nullable EventID parentId) {
}
}

private Event createErrorEvent(String eventType) {
private Event createErrorEvent(String eventType, Exception e) {
return Event.start().endTimestamp()
.status(Status.FAILED)
.type(eventType);
.type(eventType)
.name("Failed to send raw message")
.exception(e, true);
}

private IMetadata toSailfishMetadata(RawMessage protoMsg) {
Expand Down
17 changes: 10 additions & 7 deletions src/main/java/com/exactpro/th2/conn/MicroserviceMain.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.nio.file.Files;
import java.time.Instant;
import java.util.Deque;
import java.util.Map;
Expand Down Expand Up @@ -83,7 +84,6 @@
public class MicroserviceMain {
private static final Logger LOGGER = LoggerFactory.getLogger(MicroserviceMain.class);

public static final int MAX_MESSAGES_COUNT = 100;
public static final long NANOSECONDS_IN_SECOND = 1_000_000_000L;
public static final String PASSWORD_PARAMETER = "password";
public static final String DEFAULT_PASSWORD_PARAMETER = "default";
Expand Down Expand Up @@ -128,7 +128,8 @@ public static void main(String[] args) {
processor.onComplete();
});

IServiceFactory serviceFactory = new ServiceFactory(workspaceFolder);
IServiceFactory serviceFactory = new ServiceFactory(workspaceFolder,
Files.createTempDirectory("sailfish-workspace").toFile());
disposer.register(() -> {
LOGGER.info("Close service factory");
serviceFactory.close();
Expand Down Expand Up @@ -181,7 +182,7 @@ public static void main(String[] args) {
});

createPipeline(processor, processor::onComplete, eventBatchRouter, rawMessageRouter,
configuration.getMaxMessageBatchSize(), configuration.isEnableMessageSendingEvent())
configuration.getMaxMessageBatchSize(), configuration.getMaxMessageFlushTime(), configuration.isEnableMessageSendingEvent())
.blockingSubscribe(new TermibnationSubscriber<>(serviceProxy, messageSender));
} catch (SailfishURIException | WorkspaceSecurityException e) { LOGGER.error(e.getMessage(), e); exitCode = 2;
} catch (IOException e) { LOGGER.error(e.getMessage(), e); exitCode = 3;
Expand Down Expand Up @@ -211,7 +212,9 @@ private static Object getParamValue(ISettingsProxy settings, String parameterNam
Flowable<ConnectivityMessage> flowable, Action terminateFlowable,
MessageRouter<EventBatch> eventBatchRouter,
MessageRouter<RawMessageBatch> rawMessageRouter,
int maxMessageBatchSize, boolean enableMessageSendingEvent) {
int maxMessageBatchSize,
long maxMessageFlushTime,
boolean enableMessageSendingEvent) {
LOGGER.info("AvailableProcessors '{}'", Runtime.getRuntime().availableProcessors());

return flowable
Expand All @@ -238,7 +241,7 @@ private static Object getParamValue(ISettingsProxy settings, String parameterNam
if (enableMessageSendingEvent && direction == Direction.SECOND) {
subscribeToSendMessage(eventBatchRouter, messageConnectable);
}
createPackAndPublishPipeline(direction, messageConnectable, rawMessageRouter, maxMessageBatchSize);
createPackAndPublishPipeline(direction, messageConnectable, rawMessageRouter, maxMessageBatchSize, maxMessageFlushTime);

return messageConnectable;
});
Expand Down Expand Up @@ -273,7 +276,7 @@ private static void subscribeToSendMessage(MessageRouter<EventBatch> eventBatchR
}

private static void createPackAndPublishPipeline(Direction direction, Flowable<ConnectivityMessage> messageConnectable,
MessageRouter<RawMessageBatch> rawMessageRouter, int maxMessageBatchSize) {
MessageRouter<RawMessageBatch> rawMessageRouter, int maxMessageBatchSize, long maxMessageFlushTime) {

LOGGER.info("Map group {}", direction);
Flowable<ConnectivityBatch> batchConnectable = messageConnectable
Expand All @@ -282,7 +285,7 @@ private static void createPackAndPublishPipeline(Direction direction, Flowable<C
message.getSequence(),
message.getDirection()
))
.window(1, TimeUnit.SECONDS, PIPELINE_SCHEDULER, maxMessageBatchSize)
.window(maxMessageFlushTime, TimeUnit.MILLISECONDS, PIPELINE_SCHEDULER, maxMessageBatchSize)
.concatMapSingle(Flowable::toList)
.filter(list -> !list.isEmpty())
.map(ConnectivityBatch::new)
Expand Down
5 changes: 4 additions & 1 deletion src/main/java/com/exactpro/th2/conn/ServiceListener.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
import com.exactpro.sf.services.ServiceHandlerRoute;
import com.exactpro.th2.common.event.Event;
import com.exactpro.th2.common.event.Event.Status;
import com.exactpro.th2.common.event.EventUtils;
import com.exactpro.th2.conn.events.EventDispatcher;
import com.exactpro.th2.conn.events.EventHolder;
import com.exactpro.th2.conn.utility.EventStoreExtensions;
Expand Down Expand Up @@ -144,11 +145,13 @@ public void onMessage(IServiceProxy service, IMessage message, boolean rejected,
@Override
public void onEvent(IServiceProxy service, ServiceEvent serviceEvent) {
LOGGER.info("Session '{}' emitted service event '{}'", sessionAlias, serviceEvent);
String eventName = "Service [" + serviceEvent.getServiceName().getServiceName() + "] emitted event with status " + serviceEvent.getLevel();
try {
Event event = Event.start().endTimestamp()
.name(serviceEvent.getMessage())
.name(eventName)
.status(serviceEvent.getLevel() == Level.ERROR ? Status.FAILED : Status.PASSED)
.type("Service event")
.bodyData(EventUtils.createMessageBean(serviceEvent.getMessage()))
.description(serviceEvent.getDetails());

eventDispatcher.store(EventHolder.createServiceEvent(event));
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2020-2021 Exactpro (Exactpro Systems Limited)
* Copyright 2020-2022 Exactpro (Exactpro Systems Limited)
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
Expand All @@ -22,10 +22,12 @@ public class ConnectivityConfiguration {

private int maxMessageBatchSize = 100;

private long maxMessageFlushTime = 1000;

@JsonProperty(value = "session-alias", required = true)
private String sessionAlias;

@JsonProperty(value = "workspace",required = true)
@JsonProperty(value = "workspace", required = true)
private String workspaceFolder;

@JsonProperty(required = true)
Expand All @@ -45,6 +47,10 @@ public int getMaxMessageBatchSize() {
return maxMessageBatchSize;
}

public long getMaxMessageFlushTime() {
return maxMessageFlushTime;
}

public String getSessionAlias() {
return sessionAlias;
}
Expand Down
7 changes: 1 addition & 6 deletions src/main/resources/log4j.properties
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
################################################################################
log4j.rootLogger=INFO, FILE, CON
log4j.appender.FILE=org.apache.log4j.FileAppender
log4j.appender.FILE.File=evolution_all.log
log4j.appender.FILE.Append=false
log4j.appender.FILE.layout=org.apache.log4j.PatternLayout
log4j.appender.FILE.layout.ConversionPattern=%d{dd MMM yyyy HH:mm:ss,SSS} %-6p [%-15t] %c - %m%n
log4j.rootLogger=INFO, CON

log4j.appender.CON=org.apache.log4j.ConsoleAppender
log4j.appender.CON.layout=org.apache.log4j.PatternLayout
Expand Down
Loading
Loading