Commit bd86541a authored by Ali Saeed's avatar Ali Saeed

Init Cloud Gateway Service

parent db9a8642
......@@ -9,11 +9,13 @@
<module name="users-service" />
<module name="invoicing-service" />
<module name="service-discovery" />
<module name="cloud-gateway" />
</profile>
</annotationProcessing>
</component>
<component name="JavacSettings">
<option name="ADDITIONAL_OPTIONS_OVERRIDE">
<module name="cloud-gateway" options="-parameters" />
<module name="invoicing-service" options="-parameters" />
<module name="service-discovery" options="-parameters" />
<module name="users-service" options="-parameters" />
......
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="Encoding">
<file url="file://$PROJECT_DIR$/cloud-gateway/src/main/java" charset="UTF-8" />
<file url="file://$PROJECT_DIR$/cloud-gateway/src/main/resources" charset="UTF-8" />
<file url="file://$PROJECT_DIR$/invoicing-service/src/main/java" charset="UTF-8" />
<file url="file://$PROJECT_DIR$/invoicing-service/src/main/resources" charset="UTF-8" />
<file url="file://$PROJECT_DIR$/service-discovery/src/main/java" charset="UTF-8" />
......
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.0.1</version>
<relativePath/>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>cloud-gateway</artifactId>
<name>cloud-gateway</name>
<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<spring-cloud.version>2022.0.0</spring-cloud.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-gateway</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>${spring-cloud.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>netflix-candidates</id>
<name>Netflix Candidates</name>
<url>https://artifactory-oss.prod.netflix.net/artifactory/maven-oss-candidates</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
</project>
\ No newline at end of file
package org.example;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class CloudGatewayApplication {
public static void main(String[] args) {
SpringApplication.run(CloudGatewayApplication.class, args);
}
}
......@@ -13,6 +13,7 @@
<module>users-service</module>
<module>invoicing-service</module>
<module>service-discovery</module>
<module>cloud-gateway</module>
</modules>
<properties>
......
......@@ -6922,3 +6922,157 @@ Unconditional classes:
2024-04-26 17:16:00.120 [Eureka-CacheFillTimer] DEBUG c.n.e.registry.ResponseCacheImpl - Updating the client cache from response cache
2024-04-26 17:16:00.120 [Eureka-CacheFillTimer] DEBUG c.n.e.registry.ResponseCacheImpl - Updating the client cache from response cache for key : Application ALL_APPS_DELTA V2 JSON
2024-04-26 17:16:00.120 [Eureka-CacheFillTimer] DEBUG c.n.e.registry.ResponseCacheImpl - Updating the client cache from response cache for key : Application ALL_APPS V2 JSON
2024-04-26 17:16:27.760 [http-nio-8761-exec-10] DEBUG o.s.c.n.e.server.InstanceRegistry - renew INVOICING-SERVICE serverId localhost:invoicing-service:8081, isReplication {}false
2024-04-26 17:16:27.760 [http-nio-8761-exec-10] DEBUG c.n.e.r.AbstractInstanceRegistry - Processing override status using rule: [com.netflix.eureka.registry.rule.DownOrStartingRule, com.netflix.eureka.registry.rule.OverrideExistsRule, com.netflix.eureka.registry.rule.LeaseExistsRule, com.netflix.eureka.registry.rule.AlwaysMatchInstanceStatusRule]
2024-04-26 17:16:27.760 [http-nio-8761-exec-10] DEBUG c.n.e.registry.rule.LeaseExistsRule - There is already an existing lease with status UP for instance localhost:invoicing-service:8081
2024-04-26 17:16:27.760 [http-nio-8761-exec-10] DEBUG c.n.e.resources.InstanceResource - Found (Renew): INVOICING-SERVICE - localhost:invoicing-service:8081; reply status=200
2024-04-26 17:16:29.093 [http-nio-8761-exec-1] DEBUG o.s.c.n.e.server.InstanceRegistry - renew USERS-SERVICE serverId localhost:users-service:8080, isReplication {}false
2024-04-26 17:16:29.094 [http-nio-8761-exec-1] DEBUG c.n.e.r.AbstractInstanceRegistry - Processing override status using rule: [com.netflix.eureka.registry.rule.DownOrStartingRule, com.netflix.eureka.registry.rule.OverrideExistsRule, com.netflix.eureka.registry.rule.LeaseExistsRule, com.netflix.eureka.registry.rule.AlwaysMatchInstanceStatusRule]
2024-04-26 17:16:29.094 [http-nio-8761-exec-1] DEBUG c.n.e.registry.rule.LeaseExistsRule - There is already an existing lease with status UP for instance localhost:users-service:8080
2024-04-26 17:16:29.094 [http-nio-8761-exec-1] DEBUG c.n.e.resources.InstanceResource - Found (Renew): USERS-SERVICE - localhost:users-service:8080; reply status=200
2024-04-26 17:16:30.128 [Eureka-CacheFillTimer] DEBUG c.n.e.registry.ResponseCacheImpl - Updating the client cache from response cache
2024-04-26 17:16:30.128 [Eureka-CacheFillTimer] DEBUG c.n.e.registry.ResponseCacheImpl - Updating the client cache from response cache for key : Application ALL_APPS_DELTA V2 JSON
2024-04-26 17:16:30.128 [Eureka-CacheFillTimer] DEBUG c.n.e.registry.ResponseCacheImpl - Updating the client cache from response cache for key : Application ALL_APPS V2 JSON
2024-04-26 17:16:31.493 [Eureka-EvictionTimer] INFO c.n.e.r.AbstractInstanceRegistry - Running the evict task with compensationTime 0ms
2024-04-26 17:16:31.493 [Eureka-EvictionTimer] DEBUG c.n.e.r.AbstractInstanceRegistry - Running the evict task
2024-04-26 17:16:31.493 [Eureka-EvictionTimer] DEBUG c.n.e.r.AbstractInstanceRegistry - DS: lease expiration is currently disabled.
2024-04-26 17:16:57.777 [http-nio-8761-exec-4] DEBUG o.s.c.n.e.server.InstanceRegistry - renew INVOICING-SERVICE serverId localhost:invoicing-service:8081, isReplication {}false
2024-04-26 17:16:57.778 [http-nio-8761-exec-4] DEBUG c.n.e.r.AbstractInstanceRegistry - Processing override status using rule: [com.netflix.eureka.registry.rule.DownOrStartingRule, com.netflix.eureka.registry.rule.OverrideExistsRule, com.netflix.eureka.registry.rule.LeaseExistsRule, com.netflix.eureka.registry.rule.AlwaysMatchInstanceStatusRule]
2024-04-26 17:16:57.778 [http-nio-8761-exec-4] DEBUG c.n.e.registry.rule.LeaseExistsRule - There is already an existing lease with status UP for instance localhost:invoicing-service:8081
2024-04-26 17:16:57.778 [http-nio-8761-exec-4] DEBUG c.n.e.resources.InstanceResource - Found (Renew): INVOICING-SERVICE - localhost:invoicing-service:8081; reply status=200
2024-04-26 17:16:59.133 [http-nio-8761-exec-7] DEBUG o.s.c.n.e.server.InstanceRegistry - renew USERS-SERVICE serverId localhost:users-service:8080, isReplication {}false
2024-04-26 17:16:59.133 [http-nio-8761-exec-7] DEBUG c.n.e.r.AbstractInstanceRegistry - Processing override status using rule: [com.netflix.eureka.registry.rule.DownOrStartingRule, com.netflix.eureka.registry.rule.OverrideExistsRule, com.netflix.eureka.registry.rule.LeaseExistsRule, com.netflix.eureka.registry.rule.AlwaysMatchInstanceStatusRule]
2024-04-26 17:16:59.133 [http-nio-8761-exec-7] DEBUG c.n.e.registry.rule.LeaseExistsRule - There is already an existing lease with status UP for instance localhost:users-service:8080
2024-04-26 17:16:59.134 [http-nio-8761-exec-7] DEBUG c.n.e.resources.InstanceResource - Found (Renew): USERS-SERVICE - localhost:users-service:8080; reply status=200
2024-04-26 17:17:00.130 [Eureka-CacheFillTimer] DEBUG c.n.e.registry.ResponseCacheImpl - Updating the client cache from response cache
2024-04-26 17:17:00.130 [Eureka-CacheFillTimer] DEBUG c.n.e.registry.ResponseCacheImpl - Updating the client cache from response cache for key : Application ALL_APPS_DELTA V2 JSON
2024-04-26 17:17:00.130 [Eureka-CacheFillTimer] DEBUG c.n.e.registry.ResponseCacheImpl - Updating the client cache from response cache for key : Application ALL_APPS V2 JSON
2024-04-26 17:17:27.793 [http-nio-8761-exec-8] DEBUG o.s.c.n.e.server.InstanceRegistry - renew INVOICING-SERVICE serverId localhost:invoicing-service:8081, isReplication {}false
2024-04-26 17:17:27.794 [http-nio-8761-exec-8] DEBUG c.n.e.r.AbstractInstanceRegistry - Processing override status using rule: [com.netflix.eureka.registry.rule.DownOrStartingRule, com.netflix.eureka.registry.rule.OverrideExistsRule, com.netflix.eureka.registry.rule.LeaseExistsRule, com.netflix.eureka.registry.rule.AlwaysMatchInstanceStatusRule]
2024-04-26 17:17:27.794 [http-nio-8761-exec-8] DEBUG c.n.e.registry.rule.LeaseExistsRule - There is already an existing lease with status UP for instance localhost:invoicing-service:8081
2024-04-26 17:17:27.794 [http-nio-8761-exec-8] DEBUG c.n.e.resources.InstanceResource - Found (Renew): INVOICING-SERVICE - localhost:invoicing-service:8081; reply status=200
2024-04-26 17:17:29.151 [http-nio-8761-exec-2] DEBUG o.s.c.n.e.server.InstanceRegistry - renew USERS-SERVICE serverId localhost:users-service:8080, isReplication {}false
2024-04-26 17:17:29.151 [http-nio-8761-exec-2] DEBUG c.n.e.r.AbstractInstanceRegistry - Processing override status using rule: [com.netflix.eureka.registry.rule.DownOrStartingRule, com.netflix.eureka.registry.rule.OverrideExistsRule, com.netflix.eureka.registry.rule.LeaseExistsRule, com.netflix.eureka.registry.rule.AlwaysMatchInstanceStatusRule]
2024-04-26 17:17:29.151 [http-nio-8761-exec-2] DEBUG c.n.e.registry.rule.LeaseExistsRule - There is already an existing lease with status UP for instance localhost:users-service:8080
2024-04-26 17:17:29.152 [http-nio-8761-exec-2] DEBUG c.n.e.resources.InstanceResource - Found (Renew): USERS-SERVICE - localhost:users-service:8080; reply status=200
2024-04-26 17:17:30.131 [Eureka-CacheFillTimer] DEBUG c.n.e.registry.ResponseCacheImpl - Updating the client cache from response cache
2024-04-26 17:17:30.131 [Eureka-CacheFillTimer] DEBUG c.n.e.registry.ResponseCacheImpl - Updating the client cache from response cache for key : Application ALL_APPS_DELTA V2 JSON
2024-04-26 17:17:30.131 [Eureka-CacheFillTimer] DEBUG c.n.e.registry.ResponseCacheImpl - Updating the client cache from response cache for key : Application ALL_APPS V2 JSON
2024-04-26 17:17:31.495 [Eureka-EvictionTimer] INFO c.n.e.r.AbstractInstanceRegistry - Running the evict task with compensationTime 1ms
2024-04-26 17:17:31.495 [Eureka-EvictionTimer] DEBUG c.n.e.r.AbstractInstanceRegistry - Running the evict task
2024-04-26 17:17:31.495 [Eureka-EvictionTimer] DEBUG c.n.e.r.AbstractInstanceRegistry - DS: lease expiration is currently disabled.
2024-04-26 17:17:57.813 [http-nio-8761-exec-3] DEBUG o.s.c.n.e.server.InstanceRegistry - renew INVOICING-SERVICE serverId localhost:invoicing-service:8081, isReplication {}false
2024-04-26 17:17:57.813 [http-nio-8761-exec-3] DEBUG c.n.e.r.AbstractInstanceRegistry - Processing override status using rule: [com.netflix.eureka.registry.rule.DownOrStartingRule, com.netflix.eureka.registry.rule.OverrideExistsRule, com.netflix.eureka.registry.rule.LeaseExistsRule, com.netflix.eureka.registry.rule.AlwaysMatchInstanceStatusRule]
2024-04-26 17:17:57.813 [http-nio-8761-exec-3] DEBUG c.n.e.registry.rule.LeaseExistsRule - There is already an existing lease with status UP for instance localhost:invoicing-service:8081
2024-04-26 17:17:57.813 [http-nio-8761-exec-3] DEBUG c.n.e.resources.InstanceResource - Found (Renew): INVOICING-SERVICE - localhost:invoicing-service:8081; reply status=200
2024-04-26 17:17:59.167 [http-nio-8761-exec-5] DEBUG o.s.c.n.e.server.InstanceRegistry - renew USERS-SERVICE serverId localhost:users-service:8080, isReplication {}false
2024-04-26 17:17:59.167 [http-nio-8761-exec-5] DEBUG c.n.e.r.AbstractInstanceRegistry - Processing override status using rule: [com.netflix.eureka.registry.rule.DownOrStartingRule, com.netflix.eureka.registry.rule.OverrideExistsRule, com.netflix.eureka.registry.rule.LeaseExistsRule, com.netflix.eureka.registry.rule.AlwaysMatchInstanceStatusRule]
2024-04-26 17:17:59.167 [http-nio-8761-exec-5] DEBUG c.n.e.registry.rule.LeaseExistsRule - There is already an existing lease with status UP for instance localhost:users-service:8080
2024-04-26 17:17:59.168 [http-nio-8761-exec-5] DEBUG c.n.e.resources.InstanceResource - Found (Renew): USERS-SERVICE - localhost:users-service:8080; reply status=200
2024-04-26 17:18:00.132 [Eureka-CacheFillTimer] DEBUG c.n.e.registry.ResponseCacheImpl - Updating the client cache from response cache
2024-04-26 17:18:00.132 [Eureka-CacheFillTimer] DEBUG c.n.e.registry.ResponseCacheImpl - Updating the client cache from response cache for key : Application ALL_APPS_DELTA V2 JSON
2024-04-26 17:18:00.132 [Eureka-CacheFillTimer] DEBUG c.n.e.r.AbstractInstanceRegistry - The number of elements in the delta queue is : 0
2024-04-26 17:18:00.132 [Eureka-CacheFillTimer] DEBUG c.n.e.registry.ResponseCacheImpl - New application cache entry {name=ALL_APPS_DELTA, type=Application, format=JSON} with apps hashcode UP_2_
2024-04-26 17:18:00.133 [Eureka-CacheFillTimer] DEBUG c.n.e.registry.ResponseCacheImpl - Updating the client cache from response cache for key : Application ALL_APPS V2 JSON
2024-04-26 17:18:00.133 [Eureka-CacheFillTimer] DEBUG c.n.e.r.AbstractInstanceRegistry - Fetching applications registry with remote regions: false, Regions argument []
2024-04-26 17:18:00.137 [Eureka-CacheFillTimer] DEBUG c.n.e.registry.ResponseCacheImpl - New application cache entry {name=ALL_APPS, type=Application, format=JSON} with apps hashcode UP_2_
2024-04-26 17:18:27.827 [http-nio-8761-exec-7] DEBUG o.s.c.n.e.server.InstanceRegistry - renew INVOICING-SERVICE serverId localhost:invoicing-service:8081, isReplication {}false
2024-04-26 17:18:27.827 [http-nio-8761-exec-7] DEBUG c.n.e.r.AbstractInstanceRegistry - Processing override status using rule: [com.netflix.eureka.registry.rule.DownOrStartingRule, com.netflix.eureka.registry.rule.OverrideExistsRule, com.netflix.eureka.registry.rule.LeaseExistsRule, com.netflix.eureka.registry.rule.AlwaysMatchInstanceStatusRule]
2024-04-26 17:18:27.827 [http-nio-8761-exec-7] DEBUG c.n.e.registry.rule.LeaseExistsRule - There is already an existing lease with status UP for instance localhost:invoicing-service:8081
2024-04-26 17:18:27.827 [http-nio-8761-exec-7] DEBUG c.n.e.resources.InstanceResource - Found (Renew): INVOICING-SERVICE - localhost:invoicing-service:8081; reply status=200
2024-04-26 17:18:29.188 [http-nio-8761-exec-8] DEBUG o.s.c.n.e.server.InstanceRegistry - renew USERS-SERVICE serverId localhost:users-service:8080, isReplication {}false
2024-04-26 17:18:29.189 [http-nio-8761-exec-8] DEBUG c.n.e.r.AbstractInstanceRegistry - Processing override status using rule: [com.netflix.eureka.registry.rule.DownOrStartingRule, com.netflix.eureka.registry.rule.OverrideExistsRule, com.netflix.eureka.registry.rule.LeaseExistsRule, com.netflix.eureka.registry.rule.AlwaysMatchInstanceStatusRule]
2024-04-26 17:18:29.189 [http-nio-8761-exec-8] DEBUG c.n.e.registry.rule.LeaseExistsRule - There is already an existing lease with status UP for instance localhost:users-service:8080
2024-04-26 17:18:29.189 [http-nio-8761-exec-8] DEBUG c.n.e.resources.InstanceResource - Found (Renew): USERS-SERVICE - localhost:users-service:8080; reply status=200
2024-04-26 17:18:30.132 [Eureka-CacheFillTimer] DEBUG c.n.e.registry.ResponseCacheImpl - Updating the client cache from response cache
2024-04-26 17:18:30.132 [Eureka-CacheFillTimer] DEBUG c.n.e.registry.ResponseCacheImpl - Updating the client cache from response cache for key : Application ALL_APPS_DELTA V2 JSON
2024-04-26 17:18:30.132 [Eureka-CacheFillTimer] DEBUG c.n.e.registry.ResponseCacheImpl - Updating the client cache from response cache for key : Application ALL_APPS V2 JSON
2024-04-26 17:18:31.225 [ReplicaAwareInstanceRegistry - RenewalThresholdUpdater] INFO c.n.e.r.PeerAwareInstanceRegistryImpl - Current renewal threshold is : 5
2024-04-26 17:18:31.495 [Eureka-EvictionTimer] INFO c.n.e.r.AbstractInstanceRegistry - Running the evict task with compensationTime 0ms
2024-04-26 17:18:31.495 [Eureka-EvictionTimer] DEBUG c.n.e.r.AbstractInstanceRegistry - Running the evict task
2024-04-26 17:18:31.495 [Eureka-EvictionTimer] DEBUG c.n.e.r.AbstractInstanceRegistry - DS: lease expiration is currently disabled.
2024-04-26 17:18:57.843 [http-nio-8761-exec-2] DEBUG o.s.c.n.e.server.InstanceRegistry - renew INVOICING-SERVICE serverId localhost:invoicing-service:8081, isReplication {}false
2024-04-26 17:18:57.843 [http-nio-8761-exec-2] DEBUG c.n.e.r.AbstractInstanceRegistry - Processing override status using rule: [com.netflix.eureka.registry.rule.DownOrStartingRule, com.netflix.eureka.registry.rule.OverrideExistsRule, com.netflix.eureka.registry.rule.LeaseExistsRule, com.netflix.eureka.registry.rule.AlwaysMatchInstanceStatusRule]
2024-04-26 17:18:57.843 [http-nio-8761-exec-2] DEBUG c.n.e.registry.rule.LeaseExistsRule - There is already an existing lease with status UP for instance localhost:invoicing-service:8081
2024-04-26 17:18:57.843 [http-nio-8761-exec-2] DEBUG c.n.e.resources.InstanceResource - Found (Renew): INVOICING-SERVICE - localhost:invoicing-service:8081; reply status=200
2024-04-26 17:18:59.208 [http-nio-8761-exec-1] DEBUG o.s.c.n.e.server.InstanceRegistry - renew USERS-SERVICE serverId localhost:users-service:8080, isReplication {}false
2024-04-26 17:18:59.208 [http-nio-8761-exec-1] DEBUG c.n.e.r.AbstractInstanceRegistry - Processing override status using rule: [com.netflix.eureka.registry.rule.DownOrStartingRule, com.netflix.eureka.registry.rule.OverrideExistsRule, com.netflix.eureka.registry.rule.LeaseExistsRule, com.netflix.eureka.registry.rule.AlwaysMatchInstanceStatusRule]
2024-04-26 17:18:59.208 [http-nio-8761-exec-1] DEBUG c.n.e.registry.rule.LeaseExistsRule - There is already an existing lease with status UP for instance localhost:users-service:8080
2024-04-26 17:18:59.209 [http-nio-8761-exec-1] DEBUG c.n.e.resources.InstanceResource - Found (Renew): USERS-SERVICE - localhost:users-service:8080; reply status=200
2024-04-26 17:19:00.139 [Eureka-CacheFillTimer] DEBUG c.n.e.registry.ResponseCacheImpl - Updating the client cache from response cache
2024-04-26 17:19:00.139 [Eureka-CacheFillTimer] DEBUG c.n.e.registry.ResponseCacheImpl - Updating the client cache from response cache for key : Application ALL_APPS_DELTA V2 JSON
2024-04-26 17:19:00.139 [Eureka-CacheFillTimer] DEBUG c.n.e.registry.ResponseCacheImpl - Updating the client cache from response cache for key : Application ALL_APPS V2 JSON
2024-04-26 17:19:27.862 [http-nio-8761-exec-4] DEBUG o.s.c.n.e.server.InstanceRegistry - renew INVOICING-SERVICE serverId localhost:invoicing-service:8081, isReplication {}false
2024-04-26 17:19:27.862 [http-nio-8761-exec-4] DEBUG c.n.e.r.AbstractInstanceRegistry - Processing override status using rule: [com.netflix.eureka.registry.rule.DownOrStartingRule, com.netflix.eureka.registry.rule.OverrideExistsRule, com.netflix.eureka.registry.rule.LeaseExistsRule, com.netflix.eureka.registry.rule.AlwaysMatchInstanceStatusRule]
2024-04-26 17:19:27.863 [http-nio-8761-exec-4] DEBUG c.n.e.registry.rule.LeaseExistsRule - There is already an existing lease with status UP for instance localhost:invoicing-service:8081
2024-04-26 17:19:27.863 [http-nio-8761-exec-4] DEBUG c.n.e.resources.InstanceResource - Found (Renew): INVOICING-SERVICE - localhost:invoicing-service:8081; reply status=200
2024-04-26 17:19:29.218 [http-nio-8761-exec-7] DEBUG o.s.c.n.e.server.InstanceRegistry - renew USERS-SERVICE serverId localhost:users-service:8080, isReplication {}false
2024-04-26 17:19:29.218 [http-nio-8761-exec-7] DEBUG c.n.e.r.AbstractInstanceRegistry - Processing override status using rule: [com.netflix.eureka.registry.rule.DownOrStartingRule, com.netflix.eureka.registry.rule.OverrideExistsRule, com.netflix.eureka.registry.rule.LeaseExistsRule, com.netflix.eureka.registry.rule.AlwaysMatchInstanceStatusRule]
2024-04-26 17:19:29.218 [http-nio-8761-exec-7] DEBUG c.n.e.registry.rule.LeaseExistsRule - There is already an existing lease with status UP for instance localhost:users-service:8080
2024-04-26 17:19:29.218 [http-nio-8761-exec-7] DEBUG c.n.e.resources.InstanceResource - Found (Renew): USERS-SERVICE - localhost:users-service:8080; reply status=200
2024-04-26 17:19:30.139 [Eureka-CacheFillTimer] DEBUG c.n.e.registry.ResponseCacheImpl - Updating the client cache from response cache
2024-04-26 17:19:30.139 [Eureka-CacheFillTimer] DEBUG c.n.e.registry.ResponseCacheImpl - Updating the client cache from response cache for key : Application ALL_APPS_DELTA V2 JSON
2024-04-26 17:19:30.139 [Eureka-CacheFillTimer] DEBUG c.n.e.registry.ResponseCacheImpl - Updating the client cache from response cache for key : Application ALL_APPS V2 JSON
2024-04-26 17:19:31.496 [Eureka-EvictionTimer] INFO c.n.e.r.AbstractInstanceRegistry - Running the evict task with compensationTime 0ms
2024-04-26 17:19:31.496 [Eureka-EvictionTimer] DEBUG c.n.e.r.AbstractInstanceRegistry - Running the evict task
2024-04-26 17:19:31.496 [Eureka-EvictionTimer] DEBUG c.n.e.r.AbstractInstanceRegistry - DS: lease expiration is currently disabled.
2024-04-26 17:19:57.884 [http-nio-8761-exec-9] DEBUG o.s.c.n.e.server.InstanceRegistry - renew INVOICING-SERVICE serverId localhost:invoicing-service:8081, isReplication {}false
2024-04-26 17:19:57.884 [http-nio-8761-exec-9] DEBUG c.n.e.r.AbstractInstanceRegistry - Processing override status using rule: [com.netflix.eureka.registry.rule.DownOrStartingRule, com.netflix.eureka.registry.rule.OverrideExistsRule, com.netflix.eureka.registry.rule.LeaseExistsRule, com.netflix.eureka.registry.rule.AlwaysMatchInstanceStatusRule]
2024-04-26 17:19:57.884 [http-nio-8761-exec-9] DEBUG c.n.e.registry.rule.LeaseExistsRule - There is already an existing lease with status UP for instance localhost:invoicing-service:8081
2024-04-26 17:19:57.884 [http-nio-8761-exec-9] DEBUG c.n.e.resources.InstanceResource - Found (Renew): INVOICING-SERVICE - localhost:invoicing-service:8081; reply status=200
2024-04-26 17:19:59.225 [http-nio-8761-exec-10] DEBUG o.s.c.n.e.server.InstanceRegistry - renew USERS-SERVICE serverId localhost:users-service:8080, isReplication {}false
2024-04-26 17:19:59.225 [http-nio-8761-exec-10] DEBUG c.n.e.r.AbstractInstanceRegistry - Processing override status using rule: [com.netflix.eureka.registry.rule.DownOrStartingRule, com.netflix.eureka.registry.rule.OverrideExistsRule, com.netflix.eureka.registry.rule.LeaseExistsRule, com.netflix.eureka.registry.rule.AlwaysMatchInstanceStatusRule]
2024-04-26 17:19:59.225 [http-nio-8761-exec-10] DEBUG c.n.e.registry.rule.LeaseExistsRule - There is already an existing lease with status UP for instance localhost:users-service:8080
2024-04-26 17:19:59.225 [http-nio-8761-exec-10] DEBUG c.n.e.resources.InstanceResource - Found (Renew): USERS-SERVICE - localhost:users-service:8080; reply status=200
2024-04-26 17:20:00.141 [Eureka-CacheFillTimer] DEBUG c.n.e.registry.ResponseCacheImpl - Updating the client cache from response cache
2024-04-26 17:20:00.141 [Eureka-CacheFillTimer] DEBUG c.n.e.registry.ResponseCacheImpl - Updating the client cache from response cache for key : Application ALL_APPS_DELTA V2 JSON
2024-04-26 17:20:00.141 [Eureka-CacheFillTimer] DEBUG c.n.e.registry.ResponseCacheImpl - Updating the client cache from response cache for key : Application ALL_APPS V2 JSON
2024-04-26 17:20:27.895 [http-nio-8761-exec-1] DEBUG o.s.c.n.e.server.InstanceRegistry - renew INVOICING-SERVICE serverId localhost:invoicing-service:8081, isReplication {}false
2024-04-26 17:20:27.895 [http-nio-8761-exec-1] DEBUG c.n.e.r.AbstractInstanceRegistry - Processing override status using rule: [com.netflix.eureka.registry.rule.DownOrStartingRule, com.netflix.eureka.registry.rule.OverrideExistsRule, com.netflix.eureka.registry.rule.LeaseExistsRule, com.netflix.eureka.registry.rule.AlwaysMatchInstanceStatusRule]
2024-04-26 17:20:27.895 [http-nio-8761-exec-1] DEBUG c.n.e.registry.rule.LeaseExistsRule - There is already an existing lease with status UP for instance localhost:invoicing-service:8081
2024-04-26 17:20:27.896 [http-nio-8761-exec-1] DEBUG c.n.e.resources.InstanceResource - Found (Renew): INVOICING-SERVICE - localhost:invoicing-service:8081; reply status=200
2024-04-26 17:20:29.241 [http-nio-8761-exec-5] DEBUG o.s.c.n.e.server.InstanceRegistry - renew USERS-SERVICE serverId localhost:users-service:8080, isReplication {}false
2024-04-26 17:20:29.241 [http-nio-8761-exec-5] DEBUG c.n.e.r.AbstractInstanceRegistry - Processing override status using rule: [com.netflix.eureka.registry.rule.DownOrStartingRule, com.netflix.eureka.registry.rule.OverrideExistsRule, com.netflix.eureka.registry.rule.LeaseExistsRule, com.netflix.eureka.registry.rule.AlwaysMatchInstanceStatusRule]
2024-04-26 17:20:29.241 [http-nio-8761-exec-5] DEBUG c.n.e.registry.rule.LeaseExistsRule - There is already an existing lease with status UP for instance localhost:users-service:8080
2024-04-26 17:20:29.241 [http-nio-8761-exec-5] DEBUG c.n.e.resources.InstanceResource - Found (Renew): USERS-SERVICE - localhost:users-service:8080; reply status=200
2024-04-26 17:20:30.146 [Eureka-CacheFillTimer] DEBUG c.n.e.registry.ResponseCacheImpl - Updating the client cache from response cache
2024-04-26 17:20:30.146 [Eureka-CacheFillTimer] DEBUG c.n.e.registry.ResponseCacheImpl - Updating the client cache from response cache for key : Application ALL_APPS_DELTA V2 JSON
2024-04-26 17:20:30.146 [Eureka-CacheFillTimer] DEBUG c.n.e.registry.ResponseCacheImpl - Updating the client cache from response cache for key : Application ALL_APPS V2 JSON
2024-04-26 17:20:31.500 [Eureka-EvictionTimer] INFO c.n.e.r.AbstractInstanceRegistry - Running the evict task with compensationTime 4ms
2024-04-26 17:20:31.500 [Eureka-EvictionTimer] DEBUG c.n.e.r.AbstractInstanceRegistry - Running the evict task
2024-04-26 17:20:31.500 [Eureka-EvictionTimer] DEBUG c.n.e.r.AbstractInstanceRegistry - DS: lease expiration is currently disabled.
2024-04-26 17:20:57.925 [http-nio-8761-exec-7] DEBUG o.s.c.n.e.server.InstanceRegistry - renew INVOICING-SERVICE serverId localhost:invoicing-service:8081, isReplication {}false
2024-04-26 17:20:57.926 [http-nio-8761-exec-7] DEBUG c.n.e.r.AbstractInstanceRegistry - Processing override status using rule: [com.netflix.eureka.registry.rule.DownOrStartingRule, com.netflix.eureka.registry.rule.OverrideExistsRule, com.netflix.eureka.registry.rule.LeaseExistsRule, com.netflix.eureka.registry.rule.AlwaysMatchInstanceStatusRule]
2024-04-26 17:20:57.926 [http-nio-8761-exec-7] DEBUG c.n.e.registry.rule.LeaseExistsRule - There is already an existing lease with status UP for instance localhost:invoicing-service:8081
2024-04-26 17:20:57.926 [http-nio-8761-exec-7] DEBUG c.n.e.resources.InstanceResource - Found (Renew): INVOICING-SERVICE - localhost:invoicing-service:8081; reply status=200
2024-04-26 17:20:59.248 [http-nio-8761-exec-9] DEBUG o.s.c.n.e.server.InstanceRegistry - renew USERS-SERVICE serverId localhost:users-service:8080, isReplication {}false
2024-04-26 17:20:59.248 [http-nio-8761-exec-9] DEBUG c.n.e.r.AbstractInstanceRegistry - Processing override status using rule: [com.netflix.eureka.registry.rule.DownOrStartingRule, com.netflix.eureka.registry.rule.OverrideExistsRule, com.netflix.eureka.registry.rule.LeaseExistsRule, com.netflix.eureka.registry.rule.AlwaysMatchInstanceStatusRule]
2024-04-26 17:20:59.248 [http-nio-8761-exec-9] DEBUG c.n.e.registry.rule.LeaseExistsRule - There is already an existing lease with status UP for instance localhost:users-service:8080
2024-04-26 17:20:59.248 [http-nio-8761-exec-9] DEBUG c.n.e.resources.InstanceResource - Found (Renew): USERS-SERVICE - localhost:users-service:8080; reply status=200
2024-04-26 17:21:00.157 [Eureka-CacheFillTimer] DEBUG c.n.e.registry.ResponseCacheImpl - Updating the client cache from response cache
2024-04-26 17:21:00.157 [Eureka-CacheFillTimer] DEBUG c.n.e.registry.ResponseCacheImpl - Updating the client cache from response cache for key : Application ALL_APPS_DELTA V2 JSON
2024-04-26 17:21:00.157 [Eureka-CacheFillTimer] DEBUG c.n.e.r.AbstractInstanceRegistry - The number of elements in the delta queue is : 0
2024-04-26 17:21:00.158 [Eureka-CacheFillTimer] DEBUG c.n.e.registry.ResponseCacheImpl - New application cache entry {name=ALL_APPS_DELTA, type=Application, format=JSON} with apps hashcode UP_2_
2024-04-26 17:21:00.158 [Eureka-CacheFillTimer] DEBUG c.n.e.registry.ResponseCacheImpl - Updating the client cache from response cache for key : Application ALL_APPS V2 JSON
2024-04-26 17:21:00.158 [Eureka-CacheFillTimer] DEBUG c.n.e.r.AbstractInstanceRegistry - Fetching applications registry with remote regions: false, Regions argument []
2024-04-26 17:21:00.159 [Eureka-CacheFillTimer] DEBUG c.n.e.registry.ResponseCacheImpl - New application cache entry {name=ALL_APPS, type=Application, format=JSON} with apps hashcode UP_2_
2024-04-26 17:21:06.132 [SpringApplicationShutdownHook] DEBUG o.s.b.a.ApplicationAvailabilityBean - Application availability state ReadinessState changed from ACCEPTING_TRAFFIC to REFUSING_TRAFFIC
2024-04-26 17:21:06.133 [SpringApplicationShutdownHook] DEBUG o.s.b.w.s.c.AnnotationConfigServletWebServerApplicationContext - Closing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1b955cac, started on Fri Apr 26 17:03:16 AST 2024
2024-04-26 17:21:06.134 [SpringApplicationShutdownHook] INFO o.s.c.n.e.s.EurekaServiceRegistry - Unregistering application UNKNOWN with eureka with status DOWN
2024-04-26 17:21:06.136 [SpringApplicationShutdownHook] DEBUG o.s.c.s.DefaultLifecycleProcessor - Stopping beans in phase 2147482623
2024-04-26 17:21:06.138 [SpringApplicationShutdownHook] DEBUG o.s.c.s.DefaultLifecycleProcessor - Bean 'webServerGracefulShutdown' completed its stop procedure
2024-04-26 17:21:06.138 [SpringApplicationShutdownHook] DEBUG o.s.c.s.DefaultLifecycleProcessor - Stopping beans in phase 2147481599
2024-04-26 17:21:06.179 [SpringApplicationShutdownHook] DEBUG o.s.c.s.DefaultLifecycleProcessor - Bean 'webServerStartStop' completed its stop procedure
2024-04-26 17:21:06.179 [SpringApplicationShutdownHook] DEBUG o.s.c.s.DefaultLifecycleProcessor - Stopping beans in phase 0
2024-04-26 17:21:06.179 [SpringApplicationShutdownHook] INFO o.s.c.n.e.s.EurekaServerBootstrap - Shutting down Eureka Server..
2024-04-26 17:21:06.193 [SpringApplicationShutdownHook] INFO c.n.e.DefaultEurekaServerContext - Shutting down ...
2024-04-26 17:21:06.227 [SpringApplicationShutdownHook] INFO c.n.e.DefaultEurekaServerContext - Shut down
2024-04-26 17:21:06.227 [SpringApplicationShutdownHook] INFO o.s.c.n.e.s.EurekaServerBootstrap - Eureka Service is now shutdown...
2024-04-26 17:21:06.227 [SpringApplicationShutdownHook] DEBUG o.s.c.s.DefaultLifecycleProcessor - Bean 'org.springframework.cloud.netflix.eureka.server.EurekaServerInitializerConfiguration' completed its stop procedure
2024-04-26 17:21:06.228 [SpringApplicationShutdownHook] DEBUG o.s.c.s.DefaultLifecycleProcessor - Stopping beans in phase -2147483647
2024-04-26 17:21:06.228 [SpringApplicationShutdownHook] DEBUG o.s.c.s.DefaultLifecycleProcessor - Bean 'springBootLoggingLifecycle' completed its stop procedure
2024-04-26 17:21:06.229 [SpringApplicationShutdownHook] INFO c.n.e.DefaultEurekaServerContext - Shutting down ...
2024-04-26 17:21:06.271 [SpringApplicationShutdownHook] INFO c.n.e.DefaultEurekaServerContext - Shut down
2024-04-26 17:21:06.285 [SpringApplicationShutdownHook] DEBUG o.s.s.c.ThreadPoolTaskExecutor - Shutting down ExecutorService 'applicationTaskExecutor'
2024-04-26 17:21:06.286 [SpringApplicationShutdownHook] INFO c.netflix.discovery.DiscoveryClient - Shutting down DiscoveryClient ...
2024-04-26 17:21:06.288 [SpringApplicationShutdownHook] INFO c.netflix.discovery.DiscoveryClient - Completed shut down of DiscoveryClient
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment