Skip to content

Commit

Permalink
add readme entries and rollback changes for tests purposes
Browse files Browse the repository at this point in the history
  • Loading branch information
Łukasz Bigorajski committed Feb 27, 2025
1 parent 6a458ea commit 97d4e46
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ class SwaggerEnricher(
collector: ServiceInvocationCollector,
contextId: ContextId,
metaData: MetaData,
componentUseCase: ComponentUseContext
componentUseContext: ComponentUseContext
): Future[AnyRef] =
measuring {
swaggerHttpService.invoke(
Expand Down
4 changes: 4 additions & 0 deletions docs/Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,10 @@
* Configuration entry `kafkaEspProperties.forceLatestRead` is replaced with `kafkaEspProperties.defaultOffsetResetStrategy` with possible values: "ToLatest", "ToEarliest", "None".
* [#7545](https://github.com/TouK/nussknacker/pull/7545) Added `useMiniClusterForDeployment` option allowing to run Flink scenarios on Flink MiniCluster
* [#7568](https://github.com/TouK/nussknacker/pull/7568) The "JSON" button was renamed to "Export" to mark that it generates data usable in "Import"
* [#7586](https://github.com/TouK/nussknacker/pull/7586) Extended the configuration for action parameters, allowing
DEPLOY parameters to be configured for services.
* Instead of having separate entries for each node, action parameters are now grouped into a single entry per component
in the UI. The configured parameters are then applied to all nodes for that component.

## 1.18

Expand Down
4 changes: 4 additions & 0 deletions docs/MigrationGuide.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,10 @@ To see the biggest differences please consult the [changelog](Changelog.md).
* Other changes:
* `StatusDetails` was renamed to `DeploymentStatusDetails`
* Fields: `externalDeploymentId`, `externalDeploymentId`, `attributes`, `attributes` were removed from `StatusDetails`
* [#7586](https://github.com/TouK/nussknacker/pull/7586) Renamed ComponentUseCase to ComponentUseContext.
* Moved NodeDeploymentData from FlinkCustomNodeContext to ComponentUseContext.EngineRuntime.
* Introduced ComponentUseCase in ScenarioCompiler, which retains its previous functionality but is now intended for
internal use only.

### Other changes

Expand Down
2 changes: 1 addition & 1 deletion examples/installation/.env
Original file line number Diff line number Diff line change
@@ -1 +1 @@
NUSSKNACKER_VERSION=1.100.0
NUSSKNACKER_VERSION=latest
10 changes: 0 additions & 10 deletions examples/installation/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ services:
FLINK_REST_URL: "http://flink-jobmanager:8081"
JDK_JAVA_OPTIONS: "-Xmx400M -XX:MaxMetaspaceSize=300M -XX:MaxDirectMemorySize=100M"
USAGE_REPORTS_SOURCE: "example-installation-docker-compose"
JAVA_DEBUG_PORT: '5005'
depends_on:
postgres:
condition: service_healthy
Expand All @@ -63,11 +62,8 @@ services:
retries: 10
volumes:
- ./designer/application-customizations.conf:/opt/nussknacker/conf/application-customizations.conf
- /Users/bigos/IdeaProjects/nussknacker/nussknacker-enterprise-components/base/target/scala-2.12/nussknacker-enterprise-components-base_2.12-0.9.1-nu1.19.jar:/opt/nussknacker/components/common/nussknacker-enterprise-components-base_2.12-0.9.1-nu1.19.jar
volumes_from:
- flink-jobmanager
ports:
- 5005:5005
deploy:
resources:
limits:
Expand Down Expand Up @@ -220,9 +216,6 @@ services:
command: jobmanager
environment:
JOB_MANAGER_RPC_ADDRESS: "flink-jobmanager"
JVM_ARGS: "-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=*:5005"
ports:
- 5003:5005
healthcheck:
test: [ "CMD-SHELL", "curl -f http://localhost:8081/jobs/overview" ]
interval: 10s
Expand All @@ -239,9 +232,6 @@ services:
command: taskmanager
environment:
JOB_MANAGER_RPC_ADDRESS: "flink-jobmanager"
JVM_ARGS: "-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=*:5005"
ports:
- 5004:5005
depends_on:
flink-jobmanager:
condition: service_healthy
Expand Down

0 comments on commit 97d4e46

Please sign in to comment.