-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathelk-stack.log
3356 lines (3279 loc) · 401 KB
/
elk-stack.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2023-09-24T22:02:06.356+05:30 INFO 16200 --- [main] c.p.apigateway.ApiGatewayApplication : Starting ApiGatewayApplication using Java 17.0.8 with PID 16200 (C:\Users\prasa\Documents\Project\springboot-microservice-hotel-management\api-gateway\api-gateway\target\classes started by prasa in C:\Users\prasa\Documents\Project\springboot-microservice-hotel-management\api-gateway\api-gateway)
2023-09-24T22:02:06.359+05:30 INFO 16200 --- [main] c.p.apigateway.ApiGatewayApplication : No active profile set, falling back to 1 default profile: "default"
2023-09-24T22:02:07.228+05:30 INFO 16200 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=ad4ccbd7-9ef6-3941-ad20-81e836f02f91
2023-09-24T22:02:07.283+05:30 INFO 16200 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration' of type [org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2023-09-24T22:02:07.284+05:30 INFO 16200 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration$ReactorDeferringLoadBalancerFilterConfig' of type [org.springframework.cloud.client.loadbalancer.reactive.LoadBalancerBeanPostProcessorAutoConfiguration$ReactorDeferringLoadBalancerFilterConfig] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2023-09-24T22:02:07.287+05:30 INFO 16200 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'reactorDeferringLoadBalancerExchangeFilterFunction' of type [org.springframework.cloud.client.loadbalancer.reactive.DeferringLoadBalancerExchangeFilterFunction] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2023-09-24T22:02:08.062+05:30 INFO 16200 --- [main] o.s.c.g.r.RouteDefinitionRouteLocator : Loaded RoutePredicateFactory [After]
2023-09-24T22:02:08.062+05:30 INFO 16200 --- [main] o.s.c.g.r.RouteDefinitionRouteLocator : Loaded RoutePredicateFactory [Before]
2023-09-24T22:02:08.062+05:30 INFO 16200 --- [main] o.s.c.g.r.RouteDefinitionRouteLocator : Loaded RoutePredicateFactory [Between]
2023-09-24T22:02:08.062+05:30 INFO 16200 --- [main] o.s.c.g.r.RouteDefinitionRouteLocator : Loaded RoutePredicateFactory [Cookie]
2023-09-24T22:02:08.062+05:30 INFO 16200 --- [main] o.s.c.g.r.RouteDefinitionRouteLocator : Loaded RoutePredicateFactory [Header]
2023-09-24T22:02:08.062+05:30 INFO 16200 --- [main] o.s.c.g.r.RouteDefinitionRouteLocator : Loaded RoutePredicateFactory [Host]
2023-09-24T22:02:08.062+05:30 INFO 16200 --- [main] o.s.c.g.r.RouteDefinitionRouteLocator : Loaded RoutePredicateFactory [Method]
2023-09-24T22:02:08.062+05:30 INFO 16200 --- [main] o.s.c.g.r.RouteDefinitionRouteLocator : Loaded RoutePredicateFactory [Path]
2023-09-24T22:02:08.062+05:30 INFO 16200 --- [main] o.s.c.g.r.RouteDefinitionRouteLocator : Loaded RoutePredicateFactory [Query]
2023-09-24T22:02:08.062+05:30 INFO 16200 --- [main] o.s.c.g.r.RouteDefinitionRouteLocator : Loaded RoutePredicateFactory [ReadBody]
2023-09-24T22:02:08.062+05:30 INFO 16200 --- [main] o.s.c.g.r.RouteDefinitionRouteLocator : Loaded RoutePredicateFactory [RemoteAddr]
2023-09-24T22:02:08.063+05:30 INFO 16200 --- [main] o.s.c.g.r.RouteDefinitionRouteLocator : Loaded RoutePredicateFactory [XForwardedRemoteAddr]
2023-09-24T22:02:08.063+05:30 INFO 16200 --- [main] o.s.c.g.r.RouteDefinitionRouteLocator : Loaded RoutePredicateFactory [Weight]
2023-09-24T22:02:08.063+05:30 INFO 16200 --- [main] o.s.c.g.r.RouteDefinitionRouteLocator : Loaded RoutePredicateFactory [CloudFoundryRouteService]
2023-09-24T22:02:08.311+05:30 INFO 16200 --- [main] DiscoveryClientOptionalArgsConfiguration : Eureka HTTP Client uses RestTemplate.
2023-09-24T22:02:08.511+05:30 WARN 16200 --- [main] iguration$LoadBalancerCaffeineWarnLogger : Spring Cloud LoadBalancer is currently working with the default cache. While this cache implementation is useful for development and tests, it's recommended to use Caffeine cache in production.You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath.
2023-09-24T22:02:08.540+05:30 INFO 16200 --- [main] o.s.c.n.eureka.InstanceInfoFactory : Setting initial instance status as: STARTING
2023-09-24T22:02:08.625+05:30 INFO 16200 --- [main] com.netflix.discovery.DiscoveryClient : Initializing Eureka in region us-east-1
2023-09-24T22:02:08.634+05:30 INFO 16200 --- [main] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2023-09-24T22:02:08.671+05:30 INFO 16200 --- [main] com.netflix.discovery.DiscoveryClient : Disable delta property : false
2023-09-24T22:02:08.672+05:30 INFO 16200 --- [main] com.netflix.discovery.DiscoveryClient : Single vip registry refresh property : null
2023-09-24T22:02:08.672+05:30 INFO 16200 --- [main] com.netflix.discovery.DiscoveryClient : Force full registry fetch : false
2023-09-24T22:02:08.672+05:30 INFO 16200 --- [main] com.netflix.discovery.DiscoveryClient : Application is null : false
2023-09-24T22:02:08.672+05:30 INFO 16200 --- [main] com.netflix.discovery.DiscoveryClient : Registered Applications size is zero : true
2023-09-24T22:02:08.672+05:30 INFO 16200 --- [main] com.netflix.discovery.DiscoveryClient : Application version is -1: true
2023-09-24T22:02:08.672+05:30 INFO 16200 --- [main] com.netflix.discovery.DiscoveryClient : Getting all instance registry info from the eureka server
2023-09-24T22:02:09.130+05:30 INFO 16200 --- [main] com.netflix.discovery.DiscoveryClient : The response status is 200
2023-09-24T22:02:09.131+05:30 INFO 16200 --- [main] com.netflix.discovery.DiscoveryClient : Starting heartbeat executor: renew interval is: 30
2023-09-24T22:02:09.132+05:30 INFO 16200 --- [main] c.n.discovery.InstanceInfoReplicator : InstanceInfoReplicator onDemand update allowed rate per min is 4
2023-09-24T22:02:09.137+05:30 INFO 16200 --- [main] com.netflix.discovery.DiscoveryClient : Discovery Client initialized at timestamp 1695573129135 with initial instances count: 0
2023-09-24T22:02:09.138+05:30 INFO 16200 --- [main] o.s.c.n.e.s.EurekaServiceRegistry : Registering application API-GATEWAY with eureka with status UP
2023-09-24T22:02:09.138+05:30 INFO 16200 --- [main] com.netflix.discovery.DiscoveryClient : Saw local status change event StatusChangeEvent [timestamp=1695573129138, current=UP, previous=STARTING]
2023-09-24T22:02:09.140+05:30 INFO 16200 --- [DiscoveryClient-InstanceInfoReplicator-0] com.netflix.discovery.DiscoveryClient : DiscoveryClient_API-GATEWAY/MSI:api-gateway:8081: registering service...
2023-09-24T22:02:09.179+05:30 INFO 16200 --- [main] com.prasad.apigateway.util.JwtService : Entry into GatewayFilter method
2023-09-24T22:02:09.183+05:30 INFO 16200 --- [main] com.prasad.apigateway.util.JwtService : Entry into GatewayFilter method
2023-09-24T22:02:09.249+05:30 INFO 16200 --- [DiscoveryClient-InstanceInfoReplicator-0] com.netflix.discovery.DiscoveryClient : DiscoveryClient_API-GATEWAY/MSI:api-gateway:8081 - registration status: 204
2023-09-24T22:02:09.373+05:30 INFO 16200 --- [main] o.s.b.web.embedded.netty.NettyWebServer : Netty started on port 8081
2023-09-24T22:02:09.376+05:30 INFO 16200 --- [main] .s.c.n.e.s.EurekaAutoServiceRegistration : Updating port to 8081
2023-09-24T22:02:09.483+05:30 INFO 16200 --- [main] com.prasad.apigateway.util.JwtService : Entry into GatewayFilter method
2023-09-24T22:02:09.484+05:30 INFO 16200 --- [main] com.prasad.apigateway.util.JwtService : Entry into GatewayFilter method
2023-09-24T22:02:09.488+05:30 INFO 16200 --- [main] c.p.apigateway.ApiGatewayApplication : Started ApiGatewayApplication in 3.664 seconds (process running for 4.05)
2023-09-24T22:02:19.352+05:30 INFO 13876 --- [main] c.p.c.CustomerServiceApplication : Starting CustomerServiceApplication using Java 17.0.8 with PID 13876 (C:\Users\prasa\Documents\Project\springboot-microservice-hotel-management\customer-service\customer-service\target\classes started by prasa in C:\Users\prasa\Documents\Project\springboot-microservice-hotel-management\customer-service\customer-service)
2023-09-24T22:02:19.355+05:30 INFO 13876 --- [main] c.p.c.CustomerServiceApplication : No active profile set, falling back to 1 default profile: "default"
2023-09-24T22:02:20.167+05:30 INFO 13876 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2023-09-24T22:02:20.302+05:30 INFO 13876 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 125 ms. Found 1 JPA repository interfaces.
2023-09-24T22:02:20.586+05:30 INFO 13876 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=bb436bb8-58c8-37ab-a29c-618127d56a8a
2023-09-24T22:02:21.009+05:30 INFO 13876 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8082 (http)
2023-09-24T22:02:21.022+05:30 INFO 13876 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2023-09-24T22:02:21.022+05:30 INFO 13876 --- [main] o.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/10.1.12]
2023-09-24T22:02:21.151+05:30 INFO 13876 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2023-09-24T22:02:21.152+05:30 INFO 13876 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 1728 ms
2023-09-24T22:02:21.184+05:30 INFO 13876 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting...
2023-09-24T22:02:21.440+05:30 INFO 13876 --- [main] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Added connection conn0: url=jdbc:h2:mem:userdb user=SA
2023-09-24T22:02:21.442+05:30 INFO 13876 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Start completed.
2023-09-24T22:02:21.459+05:30 INFO 13876 --- [main] o.s.b.a.h2.H2ConsoleAutoConfiguration : H2 console available at '/h2-console'. Database available at 'jdbc:h2:mem:userdb'
2023-09-24T22:02:21.732+05:30 INFO 13876 --- [main] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [name: default]
2023-09-24T22:02:21.813+05:30 INFO 13876 --- [main] org.hibernate.Version : HHH000412: Hibernate ORM core version 6.2.7.Final
2023-09-24T22:02:21.816+05:30 INFO 13876 --- [main] org.hibernate.cfg.Environment : HHH000406: Using bytecode reflection optimizer
2023-09-24T22:02:22.030+05:30 INFO 13876 --- [main] o.h.b.i.BytecodeProviderInitiator : HHH000021: Bytecode provider name : bytebuddy
2023-09-24T22:02:22.168+05:30 INFO 13876 --- [main] o.s.o.j.p.SpringPersistenceUnitInfo : No LoadTimeWeaver setup: ignoring JPA class transformer
2023-09-24T22:02:22.355+05:30 INFO 13876 --- [main] o.h.b.i.BytecodeProviderInitiator : HHH000021: Bytecode provider name : bytebuddy
2023-09-24T22:02:22.817+05:30 INFO 13876 --- [main] o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
2023-09-24T22:02:22.848+05:30 INFO 13876 --- [main] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default'
2023-09-24T22:02:23.357+05:30 WARN 13876 --- [main] JpaBaseConfiguration$JpaWebConfiguration : spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning
2023-09-24T22:02:23.448+05:30 INFO 13876 --- [main] o.s.s.web.DefaultSecurityFilterChain : Will secure any request with [org.springframework.security.web.session.DisableEncodeUrlFilter@2740585b, org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@3816efab, org.springframework.security.web.context.SecurityContextHolderFilter@7a0f1f9d, org.springframework.security.web.header.HeaderWriterFilter@65cf8da0, org.springframework.security.web.authentication.logout.LogoutFilter@3bf306d3, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@5e97da56, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@3f31cf8f, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@2d6e09f0, org.springframework.security.web.session.SessionManagementFilter@5ab70df7, org.springframework.security.web.access.ExceptionTranslationFilter@7e92e9a2, org.springframework.security.web.access.intercept.AuthorizationFilter@6c9e7af2]
2023-09-24T22:02:24.730+05:30 INFO 13876 --- [main] DiscoveryClientOptionalArgsConfiguration : Eureka HTTP Client uses RestTemplate.
2023-09-24T22:02:24.882+05:30 WARN 13876 --- [main] iguration$LoadBalancerCaffeineWarnLogger : Spring Cloud LoadBalancer is currently working with the default cache. While this cache implementation is useful for development and tests, it's recommended to use Caffeine cache in production.You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath.
2023-09-24T22:02:24.908+05:30 INFO 13876 --- [main] o.s.c.n.eureka.InstanceInfoFactory : Setting initial instance status as: STARTING
2023-09-24T22:02:24.988+05:30 INFO 13876 --- [main] com.netflix.discovery.DiscoveryClient : Initializing Eureka in region us-east-1
2023-09-24T22:02:24.993+05:30 INFO 13876 --- [main] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2023-09-24T22:02:25.017+05:30 INFO 13876 --- [main] com.netflix.discovery.DiscoveryClient : Disable delta property : false
2023-09-24T22:02:25.017+05:30 INFO 13876 --- [main] com.netflix.discovery.DiscoveryClient : Single vip registry refresh property : null
2023-09-24T22:02:25.017+05:30 INFO 13876 --- [main] com.netflix.discovery.DiscoveryClient : Force full registry fetch : false
2023-09-24T22:02:25.017+05:30 INFO 13876 --- [main] com.netflix.discovery.DiscoveryClient : Application is null : false
2023-09-24T22:02:25.017+05:30 INFO 13876 --- [main] com.netflix.discovery.DiscoveryClient : Registered Applications size is zero : true
2023-09-24T22:02:25.017+05:30 INFO 13876 --- [main] com.netflix.discovery.DiscoveryClient : Application version is -1: true
2023-09-24T22:02:25.017+05:30 INFO 13876 --- [main] com.netflix.discovery.DiscoveryClient : Getting all instance registry info from the eureka server
2023-09-24T22:02:25.336+05:30 INFO 13876 --- [main] com.netflix.discovery.DiscoveryClient : The response status is 200
2023-09-24T22:02:25.337+05:30 INFO 13876 --- [main] com.netflix.discovery.DiscoveryClient : Starting heartbeat executor: renew interval is: 30
2023-09-24T22:02:25.339+05:30 INFO 13876 --- [main] c.n.discovery.InstanceInfoReplicator : InstanceInfoReplicator onDemand update allowed rate per min is 4
2023-09-24T22:02:25.343+05:30 INFO 13876 --- [main] com.netflix.discovery.DiscoveryClient : Discovery Client initialized at timestamp 1695573145342 with initial instances count: 0
2023-09-24T22:02:25.345+05:30 INFO 13876 --- [main] o.s.c.n.e.s.EurekaServiceRegistry : Registering application CUSTOMER-SERVICE with eureka with status UP
2023-09-24T22:02:25.346+05:30 INFO 13876 --- [main] com.netflix.discovery.DiscoveryClient : Saw local status change event StatusChangeEvent [timestamp=1695573145346, current=UP, previous=STARTING]
2023-09-24T22:02:25.348+05:30 INFO 13876 --- [DiscoveryClient-InstanceInfoReplicator-0] com.netflix.discovery.DiscoveryClient : DiscoveryClient_CUSTOMER-SERVICE/MSI:customer-service:8082: registering service...
2023-09-24T22:02:25.370+05:30 INFO 13876 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8082 (http) with context path ''
2023-09-24T22:02:25.371+05:30 INFO 13876 --- [main] .s.c.n.e.s.EurekaAutoServiceRegistration : Updating port to 8082
2023-09-24T22:02:25.381+05:30 INFO 13876 --- [DiscoveryClient-InstanceInfoReplicator-0] com.netflix.discovery.DiscoveryClient : DiscoveryClient_CUSTOMER-SERVICE/MSI:customer-service:8082 - registration status: 204
2023-09-24T22:02:25.430+05:30 INFO 13876 --- [main] c.p.c.CustomerServiceApplication : Started CustomerServiceApplication in 6.55 seconds (process running for 6.953)
2023-09-24T22:02:39.135+05:30 INFO 16200 --- [DiscoveryClient-CacheRefreshExecutor-0] com.netflix.discovery.DiscoveryClient : Disable delta property : false
2023-09-24T22:02:39.135+05:30 INFO 16200 --- [DiscoveryClient-CacheRefreshExecutor-0] com.netflix.discovery.DiscoveryClient : Single vip registry refresh property : null
2023-09-24T22:02:39.135+05:30 INFO 16200 --- [DiscoveryClient-CacheRefreshExecutor-0] com.netflix.discovery.DiscoveryClient : Force full registry fetch : false
2023-09-24T22:02:39.135+05:30 INFO 16200 --- [DiscoveryClient-CacheRefreshExecutor-0] com.netflix.discovery.DiscoveryClient : Application is null : false
2023-09-24T22:02:39.135+05:30 INFO 16200 --- [DiscoveryClient-CacheRefreshExecutor-0] com.netflix.discovery.DiscoveryClient : Registered Applications size is zero : true
2023-09-24T22:02:39.135+05:30 INFO 16200 --- [DiscoveryClient-CacheRefreshExecutor-0] com.netflix.discovery.DiscoveryClient : Application version is -1: false
2023-09-24T22:02:39.135+05:30 INFO 16200 --- [DiscoveryClient-CacheRefreshExecutor-0] com.netflix.discovery.DiscoveryClient : Getting all instance registry info from the eureka server
2023-09-24T22:02:39.146+05:30 INFO 16200 --- [DiscoveryClient-CacheRefreshExecutor-0] com.netflix.discovery.DiscoveryClient : The response status is 200
2023-09-24T22:02:39.148+05:30 INFO 16200 --- [DiscoveryClient-CacheRefreshExecutor-0] com.prasad.apigateway.util.JwtService : Entry into GatewayFilter method
2023-09-24T22:02:39.150+05:30 INFO 16200 --- [DiscoveryClient-CacheRefreshExecutor-0] com.prasad.apigateway.util.JwtService : Entry into GatewayFilter method
2023-09-24T22:02:45.680+05:30 INFO 10152 --- [main] c.p.r.ReservationServiceApplication : Starting ReservationServiceApplication using Java 17.0.8 with PID 10152 (C:\Users\prasa\Documents\Project\springboot-microservice-hotel-management\reservation-service\reservation-service\target\classes started by prasa in C:\Users\prasa\Documents\Project\springboot-microservice-hotel-management\reservation-service\reservation-service)
2023-09-24T22:02:45.683+05:30 INFO 10152 --- [main] c.p.r.ReservationServiceApplication : No active profile set, falling back to 1 default profile: "default"
2023-09-24T22:02:46.429+05:30 INFO 10152 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2023-09-24T22:02:46.564+05:30 INFO 10152 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 125 ms. Found 1 JPA repository interfaces.
2023-09-24T22:02:46.828+05:30 INFO 10152 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=82ccf91b-e1fe-369d-8b60-648b4e1018be
2023-09-24T22:02:46.902+05:30 INFO 10152 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'com.prasad.reservationservice.feign.HotelFeign' of type [org.springframework.cloud.openfeign.FeignClientFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2023-09-24T22:02:46.904+05:30 INFO 10152 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'com.prasad.reservationservice.feign.PaymentFeign' of type [org.springframework.cloud.openfeign.FeignClientFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2023-09-24T22:02:47.289+05:30 INFO 10152 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8083 (http)
2023-09-24T22:02:47.300+05:30 INFO 10152 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2023-09-24T22:02:47.300+05:30 INFO 10152 --- [main] o.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/10.1.12]
2023-09-24T22:02:47.430+05:30 INFO 10152 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2023-09-24T22:02:47.431+05:30 INFO 10152 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 1683 ms
2023-09-24T22:02:47.465+05:30 INFO 10152 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting...
2023-09-24T22:02:47.672+05:30 INFO 10152 --- [main] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Added connection conn0: url=jdbc:h2:mem:reservationdb user=SA
2023-09-24T22:02:47.675+05:30 INFO 10152 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Start completed.
2023-09-24T22:02:47.685+05:30 INFO 10152 --- [main] o.s.b.a.h2.H2ConsoleAutoConfiguration : H2 console available at '/h2-console'. Database available at 'jdbc:h2:mem:reservationdb'
2023-09-24T22:02:47.879+05:30 INFO 10152 --- [main] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [name: default]
2023-09-24T22:02:47.948+05:30 INFO 10152 --- [main] org.hibernate.Version : HHH000412: Hibernate ORM core version 6.2.7.Final
2023-09-24T22:02:47.950+05:30 INFO 10152 --- [main] org.hibernate.cfg.Environment : HHH000406: Using bytecode reflection optimizer
2023-09-24T22:02:48.124+05:30 INFO 10152 --- [main] o.h.b.i.BytecodeProviderInitiator : HHH000021: Bytecode provider name : bytebuddy
2023-09-24T22:02:48.255+05:30 INFO 10152 --- [main] o.s.o.j.p.SpringPersistenceUnitInfo : No LoadTimeWeaver setup: ignoring JPA class transformer
2023-09-24T22:02:48.529+05:30 INFO 10152 --- [main] o.h.b.i.BytecodeProviderInitiator : HHH000021: Bytecode provider name : bytebuddy
2023-09-24T22:02:48.955+05:30 INFO 10152 --- [main] o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
2023-09-24T22:02:48.987+05:30 INFO 10152 --- [main] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default'
2023-09-24T22:02:49.374+05:30 WARN 10152 --- [main] JpaBaseConfiguration$JpaWebConfiguration : spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning
2023-09-24T22:02:50.751+05:30 INFO 10152 --- [main] DiscoveryClientOptionalArgsConfiguration : Eureka HTTP Client uses RestTemplate.
2023-09-24T22:02:50.852+05:30 WARN 10152 --- [main] iguration$LoadBalancerCaffeineWarnLogger : Spring Cloud LoadBalancer is currently working with the default cache. While this cache implementation is useful for development and tests, it's recommended to use Caffeine cache in production.You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath.
2023-09-24T22:02:50.925+05:30 INFO 10152 --- [main] o.s.c.n.eureka.InstanceInfoFactory : Setting initial instance status as: STARTING
2023-09-24T22:02:51.008+05:30 INFO 10152 --- [main] com.netflix.discovery.DiscoveryClient : Initializing Eureka in region us-east-1
2023-09-24T22:02:51.017+05:30 INFO 10152 --- [main] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2023-09-24T22:02:51.044+05:30 INFO 10152 --- [main] com.netflix.discovery.DiscoveryClient : Disable delta property : false
2023-09-24T22:02:51.044+05:30 INFO 10152 --- [main] com.netflix.discovery.DiscoveryClient : Single vip registry refresh property : null
2023-09-24T22:02:51.045+05:30 INFO 10152 --- [main] com.netflix.discovery.DiscoveryClient : Force full registry fetch : false
2023-09-24T22:02:51.045+05:30 INFO 10152 --- [main] com.netflix.discovery.DiscoveryClient : Application is null : false
2023-09-24T22:02:51.045+05:30 INFO 10152 --- [main] com.netflix.discovery.DiscoveryClient : Registered Applications size is zero : true
2023-09-24T22:02:51.045+05:30 INFO 10152 --- [main] com.netflix.discovery.DiscoveryClient : Application version is -1: true
2023-09-24T22:02:51.045+05:30 INFO 10152 --- [main] com.netflix.discovery.DiscoveryClient : Getting all instance registry info from the eureka server
2023-09-24T22:02:51.367+05:30 INFO 10152 --- [main] com.netflix.discovery.DiscoveryClient : The response status is 200
2023-09-24T22:02:51.369+05:30 INFO 10152 --- [main] com.netflix.discovery.DiscoveryClient : Starting heartbeat executor: renew interval is: 30
2023-09-24T22:02:51.371+05:30 INFO 10152 --- [main] c.n.discovery.InstanceInfoReplicator : InstanceInfoReplicator onDemand update allowed rate per min is 4
2023-09-24T22:02:51.374+05:30 INFO 10152 --- [main] com.netflix.discovery.DiscoveryClient : Discovery Client initialized at timestamp 1695573171373 with initial instances count: 2
2023-09-24T22:02:51.376+05:30 INFO 10152 --- [main] o.s.c.n.e.s.EurekaServiceRegistry : Registering application RESERVATION-SERVICE with eureka with status UP
2023-09-24T22:02:51.377+05:30 INFO 10152 --- [main] com.netflix.discovery.DiscoveryClient : Saw local status change event StatusChangeEvent [timestamp=1695573171377, current=UP, previous=STARTING]
2023-09-24T22:02:51.378+05:30 INFO 10152 --- [DiscoveryClient-InstanceInfoReplicator-0] com.netflix.discovery.DiscoveryClient : DiscoveryClient_RESERVATION-SERVICE/MSI:reservation-service:8083: registering service...
2023-09-24T22:02:51.399+05:30 INFO 10152 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8083 (http) with context path ''
2023-09-24T22:02:51.400+05:30 INFO 10152 --- [main] .s.c.n.e.s.EurekaAutoServiceRegistration : Updating port to 8083
2023-09-24T22:02:51.410+05:30 INFO 10152 --- [DiscoveryClient-InstanceInfoReplicator-0] com.netflix.discovery.DiscoveryClient : DiscoveryClient_RESERVATION-SERVICE/MSI:reservation-service:8083 - registration status: 204
2023-09-24T22:02:51.489+05:30 INFO 10152 --- [main] o.a.k.clients.consumer.ConsumerConfig : ConsumerConfig values:
allow.auto.create.topics = true
auto.commit.interval.ms = 5000
auto.include.jmx.reporter = true
auto.offset.reset = latest
bootstrap.servers = [localhost:9092]
check.crcs = true
client.dns.lookup = use_all_dns_ips
client.id = consumer-br-group-1
client.rack =
connections.max.idle.ms = 540000
default.api.timeout.ms = 60000
enable.auto.commit = false
exclude.internal.topics = true
fetch.max.bytes = 52428800
fetch.max.wait.ms = 500
fetch.min.bytes = 1
group.id = br-group
group.instance.id = null
heartbeat.interval.ms = 3000
interceptor.classes = []
internal.leave.group.on.close = true
internal.throw.on.fetch.stable.offset.unsupported = false
isolation.level = read_uncommitted
key.deserializer = class org.apache.kafka.common.serialization.StringDeserializer
max.partition.fetch.bytes = 1048576
max.poll.interval.ms = 300000
max.poll.records = 500
metadata.max.age.ms = 300000
metric.reporters = []
metrics.num.samples = 2
metrics.recording.level = INFO
metrics.sample.window.ms = 30000
partition.assignment.strategy = [class org.apache.kafka.clients.consumer.RangeAssignor, class org.apache.kafka.clients.consumer.CooperativeStickyAssignor]
receive.buffer.bytes = 65536
reconnect.backoff.max.ms = 1000
reconnect.backoff.ms = 50
request.timeout.ms = 30000
retry.backoff.ms = 100
sasl.client.callback.handler.class = null
sasl.jaas.config = null
sasl.kerberos.kinit.cmd = /usr/bin/kinit
sasl.kerberos.min.time.before.relogin = 60000
sasl.kerberos.service.name = null
sasl.kerberos.ticket.renew.jitter = 0.05
sasl.kerberos.ticket.renew.window.factor = 0.8
sasl.login.callback.handler.class = null
sasl.login.class = null
sasl.login.connect.timeout.ms = null
sasl.login.read.timeout.ms = null
sasl.login.refresh.buffer.seconds = 300
sasl.login.refresh.min.period.seconds = 60
sasl.login.refresh.window.factor = 0.8
sasl.login.refresh.window.jitter = 0.05
sasl.login.retry.backoff.max.ms = 10000
sasl.login.retry.backoff.ms = 100
sasl.mechanism = GSSAPI
sasl.oauthbearer.clock.skew.seconds = 30
sasl.oauthbearer.expected.audience = null
sasl.oauthbearer.expected.issuer = null
sasl.oauthbearer.jwks.endpoint.refresh.ms = 3600000
sasl.oauthbearer.jwks.endpoint.retry.backoff.max.ms = 10000
sasl.oauthbearer.jwks.endpoint.retry.backoff.ms = 100
sasl.oauthbearer.jwks.endpoint.url = null
sasl.oauthbearer.scope.claim.name = scope
sasl.oauthbearer.sub.claim.name = sub
sasl.oauthbearer.token.endpoint.url = null
security.protocol = PLAINTEXT
security.providers = null
send.buffer.bytes = 131072
session.timeout.ms = 45000
socket.connection.setup.timeout.max.ms = 30000
socket.connection.setup.timeout.ms = 10000
ssl.cipher.suites = null
ssl.enabled.protocols = [TLSv1.2, TLSv1.3]
ssl.endpoint.identification.algorithm = https
ssl.engine.factory.class = null
ssl.key.password = null
ssl.keymanager.algorithm = SunX509
ssl.keystore.certificate.chain = null
ssl.keystore.key = null
ssl.keystore.location = null
ssl.keystore.password = null
ssl.keystore.type = JKS
ssl.protocol = TLSv1.3
ssl.provider = null
ssl.secure.random.implementation = null
ssl.trustmanager.algorithm = PKIX
ssl.truststore.certificates = null
ssl.truststore.location = null
ssl.truststore.password = null
ssl.truststore.type = JKS
value.deserializer = class org.springframework.kafka.support.serializer.JsonDeserializer
2023-09-24T22:02:51.573+05:30 INFO 10152 --- [main] o.a.kafka.common.utils.AppInfoParser : Kafka version: 3.4.1
2023-09-24T22:02:51.573+05:30 INFO 10152 --- [main] o.a.kafka.common.utils.AppInfoParser : Kafka commitId: 8a516edc2755df89
2023-09-24T22:02:51.573+05:30 INFO 10152 --- [main] o.a.kafka.common.utils.AppInfoParser : Kafka startTimeMs: 1695573171572
2023-09-24T22:02:51.576+05:30 INFO 10152 --- [main] o.a.k.clients.consumer.KafkaConsumer : [Consumer clientId=consumer-br-group-1, groupId=br-group] Subscribed to topic(s): HotelPaymentTopic
2023-09-24T22:02:51.591+05:30 INFO 10152 --- [main] c.p.r.ReservationServiceApplication : Started ReservationServiceApplication in 6.388 seconds (process running for 6.755)
2023-09-24T22:02:51.947+05:30 INFO 10152 --- [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] org.apache.kafka.clients.Metadata : [Consumer clientId=consumer-br-group-1, groupId=br-group] Resetting the last seen epoch of partition HotelPaymentTopic-0 to 0 since the associated topicId changed from null to VeLBtdSdRBmYEHQ0MpRrwg
2023-09-24T22:02:51.949+05:30 INFO 10152 --- [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] org.apache.kafka.clients.Metadata : [Consumer clientId=consumer-br-group-1, groupId=br-group] Cluster ID: rZ9N99pPSQ64i6RbJzxAeg
2023-09-24T22:02:51.950+05:30 INFO 10152 --- [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.internals.ConsumerCoordinator : [Consumer clientId=consumer-br-group-1, groupId=br-group] Discovered group coordinator MSI:9092 (id: 2147483647 rack: null)
2023-09-24T22:02:51.953+05:30 INFO 10152 --- [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.internals.ConsumerCoordinator : [Consumer clientId=consumer-br-group-1, groupId=br-group] (Re-)joining group
2023-09-24T22:02:51.985+05:30 INFO 10152 --- [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.internals.ConsumerCoordinator : [Consumer clientId=consumer-br-group-1, groupId=br-group] Request joining group due to: need to re-join with the given member-id: consumer-br-group-1-ab8617ed-ad0c-453e-aeaa-16e9828a98ce
2023-09-24T22:02:51.986+05:30 INFO 10152 --- [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.internals.ConsumerCoordinator : [Consumer clientId=consumer-br-group-1, groupId=br-group] Request joining group due to: rebalance failed due to 'The group member needs to have a valid member id before actually entering a consumer group.' (MemberIdRequiredException)
2023-09-24T22:02:51.986+05:30 INFO 10152 --- [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.internals.ConsumerCoordinator : [Consumer clientId=consumer-br-group-1, groupId=br-group] (Re-)joining group
2023-09-24T22:02:51.998+05:30 INFO 10152 --- [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.internals.ConsumerCoordinator : [Consumer clientId=consumer-br-group-1, groupId=br-group] Successfully joined group with generation Generation{generationId=7, memberId='consumer-br-group-1-ab8617ed-ad0c-453e-aeaa-16e9828a98ce', protocol='range'}
2023-09-24T22:02:51.999+05:30 INFO 10152 --- [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.internals.ConsumerCoordinator : [Consumer clientId=consumer-br-group-1, groupId=br-group] Finished assignment for group at generation 7: {consumer-br-group-1-ab8617ed-ad0c-453e-aeaa-16e9828a98ce=Assignment(partitions=[HotelPaymentTopic-0])}
2023-09-24T22:02:52.027+05:30 INFO 10152 --- [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.internals.ConsumerCoordinator : [Consumer clientId=consumer-br-group-1, groupId=br-group] Successfully synced group in generation Generation{generationId=7, memberId='consumer-br-group-1-ab8617ed-ad0c-453e-aeaa-16e9828a98ce', protocol='range'}
2023-09-24T22:02:52.028+05:30 INFO 10152 --- [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.internals.ConsumerCoordinator : [Consumer clientId=consumer-br-group-1, groupId=br-group] Notifying assignor about the new Assignment(partitions=[HotelPaymentTopic-0])
2023-09-24T22:02:52.030+05:30 INFO 10152 --- [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.internals.ConsumerCoordinator : [Consumer clientId=consumer-br-group-1, groupId=br-group] Adding newly assigned partitions: HotelPaymentTopic-0
2023-09-24T22:02:52.041+05:30 INFO 10152 --- [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.internals.ConsumerCoordinator : [Consumer clientId=consumer-br-group-1, groupId=br-group] Setting offset for partition HotelPaymentTopic-0 to the committed offset FetchPosition{offset=0, offsetEpoch=Optional.empty, currentLeader=LeaderAndEpoch{leader=Optional[MSI:9092 (id: 0 rack: null)], epoch=0}}
2023-09-24T22:02:52.042+05:30 INFO 10152 --- [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer : br-group: partitions assigned: [HotelPaymentTopic-0]
2023-09-24T22:02:55.342+05:30 INFO 13876 --- [DiscoveryClient-CacheRefreshExecutor-0] com.netflix.discovery.DiscoveryClient : Disable delta property : false
2023-09-24T22:02:55.342+05:30 INFO 13876 --- [DiscoveryClient-CacheRefreshExecutor-0] com.netflix.discovery.DiscoveryClient : Single vip registry refresh property : null
2023-09-24T22:02:55.342+05:30 INFO 13876 --- [DiscoveryClient-CacheRefreshExecutor-0] com.netflix.discovery.DiscoveryClient : Force full registry fetch : false
2023-09-24T22:02:55.342+05:30 INFO 13876 --- [DiscoveryClient-CacheRefreshExecutor-0] com.netflix.discovery.DiscoveryClient : Application is null : false
2023-09-24T22:02:55.342+05:30 INFO 13876 --- [DiscoveryClient-CacheRefreshExecutor-0] com.netflix.discovery.DiscoveryClient : Registered Applications size is zero : true
2023-09-24T22:02:55.342+05:30 INFO 13876 --- [DiscoveryClient-CacheRefreshExecutor-0] com.netflix.discovery.DiscoveryClient : Application version is -1: false
2023-09-24T22:02:55.343+05:30 INFO 13876 --- [DiscoveryClient-CacheRefreshExecutor-0] com.netflix.discovery.DiscoveryClient : Getting all instance registry info from the eureka server
2023-09-24T22:02:55.355+05:30 INFO 13876 --- [DiscoveryClient-CacheRefreshExecutor-0] com.netflix.discovery.DiscoveryClient : The response status is 200
2023-09-24T22:02:58.176+05:30 INFO 15556 --- [main] c.p.p.PaymentServiceApplication : Starting PaymentServiceApplication using Java 17.0.8 with PID 15556 (C:\Users\prasa\Documents\Project\springboot-microservice-hotel-management\payment-service\payment-service\target\classes started by prasa in C:\Users\prasa\Documents\Project\springboot-microservice-hotel-management\payment-service\payment-service)
2023-09-24T22:02:58.178+05:30 INFO 15556 --- [main] c.p.p.PaymentServiceApplication : No active profile set, falling back to 1 default profile: "default"
2023-09-24T22:02:58.922+05:30 INFO 15556 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2023-09-24T22:02:59.061+05:30 INFO 15556 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 129 ms. Found 1 JPA repository interfaces.
2023-09-24T22:02:59.299+05:30 INFO 15556 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=9116d0af-59ea-3457-a2b0-b62b15d62514
2023-09-24T22:02:59.712+05:30 INFO 15556 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8085 (http)
2023-09-24T22:02:59.722+05:30 INFO 15556 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2023-09-24T22:02:59.722+05:30 INFO 15556 --- [main] o.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/10.1.12]
2023-09-24T22:02:59.842+05:30 INFO 15556 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2023-09-24T22:02:59.842+05:30 INFO 15556 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 1607 ms
2023-09-24T22:02:59.872+05:30 INFO 15556 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting...
2023-09-24T22:03:00.060+05:30 INFO 15556 --- [main] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Added connection conn0: url=jdbc:h2:mem:paymentdb user=SA
2023-09-24T22:03:00.062+05:30 INFO 15556 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Start completed.
2023-09-24T22:03:00.071+05:30 INFO 15556 --- [main] o.s.b.a.h2.H2ConsoleAutoConfiguration : H2 console available at '/h2-console'. Database available at 'jdbc:h2:mem:paymentdb'
2023-09-24T22:03:00.219+05:30 INFO 15556 --- [main] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [name: default]
2023-09-24T22:03:00.264+05:30 INFO 15556 --- [main] org.hibernate.Version : HHH000412: Hibernate ORM core version 6.2.7.Final
2023-09-24T22:03:00.267+05:30 INFO 15556 --- [main] org.hibernate.cfg.Environment : HHH000406: Using bytecode reflection optimizer
2023-09-24T22:03:00.403+05:30 INFO 15556 --- [main] o.h.b.i.BytecodeProviderInitiator : HHH000021: Bytecode provider name : bytebuddy
2023-09-24T22:03:00.522+05:30 INFO 15556 --- [main] o.s.o.j.p.SpringPersistenceUnitInfo : No LoadTimeWeaver setup: ignoring JPA class transformer
2023-09-24T22:03:00.738+05:30 INFO 15556 --- [main] o.h.b.i.BytecodeProviderInitiator : HHH000021: Bytecode provider name : bytebuddy
2023-09-24T22:03:01.261+05:30 INFO 15556 --- [main] o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
2023-09-24T22:03:01.296+05:30 INFO 15556 --- [main] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default'
2023-09-24T22:03:01.828+05:30 WARN 15556 --- [main] JpaBaseConfiguration$JpaWebConfiguration : spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning
2023-09-24T22:03:02.903+05:30 INFO 21916 --- [main] c.p.n.NotificationServiceApplication : Starting NotificationServiceApplication using Java 17.0.8 with PID 21916 (C:\Users\prasa\Documents\Project\springboot-microservice-hotel-management\notification-service\notification-service\target\classes started by prasa in C:\Users\prasa\Documents\Project\springboot-microservice-hotel-management\notification-service\notification-service)
2023-09-24T22:03:02.906+05:30 INFO 21916 --- [main] c.p.n.NotificationServiceApplication : No active profile set, falling back to 1 default profile: "default"
2023-09-24T22:03:03.254+05:30 INFO 15556 --- [main] DiscoveryClientOptionalArgsConfiguration : Eureka HTTP Client uses RestTemplate.
2023-09-24T22:03:03.423+05:30 WARN 15556 --- [main] iguration$LoadBalancerCaffeineWarnLogger : Spring Cloud LoadBalancer is currently working with the default cache. While this cache implementation is useful for development and tests, it's recommended to use Caffeine cache in production.You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath.
2023-09-24T22:03:03.457+05:30 INFO 15556 --- [main] o.s.c.n.eureka.InstanceInfoFactory : Setting initial instance status as: STARTING
2023-09-24T22:03:03.549+05:30 INFO 15556 --- [main] com.netflix.discovery.DiscoveryClient : Initializing Eureka in region us-east-1
2023-09-24T22:03:03.556+05:30 INFO 15556 --- [main] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2023-09-24T22:03:03.581+05:30 INFO 15556 --- [main] com.netflix.discovery.DiscoveryClient : Disable delta property : false
2023-09-24T22:03:03.581+05:30 INFO 15556 --- [main] com.netflix.discovery.DiscoveryClient : Single vip registry refresh property : null
2023-09-24T22:03:03.581+05:30 INFO 15556 --- [main] com.netflix.discovery.DiscoveryClient : Force full registry fetch : false
2023-09-24T22:03:03.581+05:30 INFO 15556 --- [main] com.netflix.discovery.DiscoveryClient : Application is null : false
2023-09-24T22:03:03.582+05:30 INFO 15556 --- [main] com.netflix.discovery.DiscoveryClient : Registered Applications size is zero : true
2023-09-24T22:03:03.582+05:30 INFO 15556 --- [main] com.netflix.discovery.DiscoveryClient : Application version is -1: true
2023-09-24T22:03:03.582+05:30 INFO 15556 --- [main] com.netflix.discovery.DiscoveryClient : Getting all instance registry info from the eureka server
2023-09-24T22:03:03.836+05:30 INFO 21916 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2023-09-24T22:03:03.950+05:30 INFO 15556 --- [main] com.netflix.discovery.DiscoveryClient : The response status is 200
2023-09-24T22:03:03.953+05:30 INFO 15556 --- [main] com.netflix.discovery.DiscoveryClient : Starting heartbeat executor: renew interval is: 30
2023-09-24T22:03:03.955+05:30 INFO 15556 --- [main] c.n.discovery.InstanceInfoReplicator : InstanceInfoReplicator onDemand update allowed rate per min is 4
2023-09-24T22:03:03.959+05:30 INFO 15556 --- [main] com.netflix.discovery.DiscoveryClient : Discovery Client initialized at timestamp 1695573183958 with initial instances count: 3
2023-09-24T22:03:03.967+05:30 INFO 15556 --- [main] o.s.c.n.e.s.EurekaServiceRegistry : Registering application PAYMENT-SERVICE with eureka with status UP
2023-09-24T22:03:03.968+05:30 INFO 15556 --- [main] com.netflix.discovery.DiscoveryClient : Saw local status change event StatusChangeEvent [timestamp=1695573183968, current=UP, previous=STARTING]
2023-09-24T22:03:03.970+05:30 INFO 15556 --- [DiscoveryClient-InstanceInfoReplicator-0] com.netflix.discovery.DiscoveryClient : DiscoveryClient_PAYMENT-SERVICE/MSI:payment-service:8085: registering service...
2023-09-24T22:03:03.989+05:30 INFO 21916 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 142 ms. Found 1 JPA repository interfaces.
2023-09-24T22:03:04.006+05:30 INFO 15556 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8085 (http) with context path ''
2023-09-24T22:03:04.007+05:30 INFO 15556 --- [main] .s.c.n.e.s.EurekaAutoServiceRegistration : Updating port to 8085
2023-09-24T22:03:04.024+05:30 INFO 15556 --- [DiscoveryClient-InstanceInfoReplicator-0] com.netflix.discovery.DiscoveryClient : DiscoveryClient_PAYMENT-SERVICE/MSI:payment-service:8085 - registration status: 204
2023-09-24T22:03:04.087+05:30 INFO 15556 --- [main] c.p.p.PaymentServiceApplication : Started PaymentServiceApplication in 6.406 seconds (process running for 6.796)
2023-09-24T22:03:04.301+05:30 INFO 21916 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=b16f15bd-c37a-3a33-94c2-1813d40ff1ca
2023-09-24T22:03:04.669+05:30 INFO 21916 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8086 (http)
2023-09-24T22:03:04.677+05:30 INFO 21916 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2023-09-24T22:03:04.678+05:30 INFO 21916 --- [main] o.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/10.1.12]
2023-09-24T22:03:04.807+05:30 INFO 21916 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2023-09-24T22:03:04.807+05:30 INFO 21916 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 1828 ms
2023-09-24T22:03:04.845+05:30 INFO 21916 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting...
2023-09-24T22:03:05.057+05:30 INFO 21916 --- [main] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Added connection conn0: url=jdbc:h2:mem:notificationdb user=SA
2023-09-24T22:03:05.058+05:30 INFO 21916 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Start completed.
2023-09-24T22:03:05.069+05:30 INFO 21916 --- [main] o.s.b.a.h2.H2ConsoleAutoConfiguration : H2 console available at '/h2-console'. Database available at 'jdbc:h2:mem:notificationdb'
2023-09-24T22:03:05.200+05:30 INFO 21916 --- [main] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [name: default]
2023-09-24T22:03:05.254+05:30 INFO 21916 --- [main] org.hibernate.Version : HHH000412: Hibernate ORM core version 6.2.7.Final
2023-09-24T22:03:05.256+05:30 INFO 21916 --- [main] org.hibernate.cfg.Environment : HHH000406: Using bytecode reflection optimizer
2023-09-24T22:03:05.387+05:30 INFO 21916 --- [main] o.h.b.i.BytecodeProviderInitiator : HHH000021: Bytecode provider name : bytebuddy
2023-09-24T22:03:05.497+05:30 INFO 21916 --- [main] o.s.o.j.p.SpringPersistenceUnitInfo : No LoadTimeWeaver setup: ignoring JPA class transformer
2023-09-24T22:03:05.684+05:30 INFO 21916 --- [main] o.h.b.i.BytecodeProviderInitiator : HHH000021: Bytecode provider name : bytebuddy
2023-09-24T22:03:06.152+05:30 INFO 21916 --- [main] o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
2023-09-24T22:03:06.179+05:30 INFO 21916 --- [main] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default'
2023-09-24T22:03:06.540+05:30 WARN 21916 --- [main] JpaBaseConfiguration$JpaWebConfiguration : spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning
2023-09-24T22:03:07.685+05:30 INFO 21916 --- [main] DiscoveryClientOptionalArgsConfiguration : Eureka HTTP Client uses RestTemplate.
2023-09-24T22:03:07.822+05:30 WARN 21916 --- [main] iguration$LoadBalancerCaffeineWarnLogger : Spring Cloud LoadBalancer is currently working with the default cache. While this cache implementation is useful for development and tests, it's recommended to use Caffeine cache in production.You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath.
2023-09-24T22:03:07.884+05:30 INFO 21916 --- [main] o.s.c.n.eureka.InstanceInfoFactory : Setting initial instance status as: STARTING
2023-09-24T22:03:07.981+05:30 INFO 21916 --- [main] com.netflix.discovery.DiscoveryClient : Initializing Eureka in region us-east-1
2023-09-24T22:03:07.986+05:30 INFO 21916 --- [main] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2023-09-24T22:03:08.011+05:30 INFO 21916 --- [main] com.netflix.discovery.DiscoveryClient : Disable delta property : false
2023-09-24T22:03:08.011+05:30 INFO 21916 --- [main] com.netflix.discovery.DiscoveryClient : Single vip registry refresh property : null
2023-09-24T22:03:08.011+05:30 INFO 21916 --- [main] com.netflix.discovery.DiscoveryClient : Force full registry fetch : false
2023-09-24T22:03:08.011+05:30 INFO 21916 --- [main] com.netflix.discovery.DiscoveryClient : Application is null : false
2023-09-24T22:03:08.011+05:30 INFO 21916 --- [main] com.netflix.discovery.DiscoveryClient : Registered Applications size is zero : true
2023-09-24T22:03:08.012+05:30 INFO 21916 --- [main] com.netflix.discovery.DiscoveryClient : Application version is -1: true
2023-09-24T22:03:08.012+05:30 INFO 21916 --- [main] com.netflix.discovery.DiscoveryClient : Getting all instance registry info from the eureka server
2023-09-24T22:03:08.474+05:30 INFO 21916 --- [main] com.netflix.discovery.DiscoveryClient : The response status is 200
2023-09-24T22:03:08.478+05:30 INFO 21916 --- [main] com.netflix.discovery.DiscoveryClient : Starting heartbeat executor: renew interval is: 30
2023-09-24T22:03:08.481+05:30 INFO 21916 --- [main] c.n.discovery.InstanceInfoReplicator : InstanceInfoReplicator onDemand update allowed rate per min is 4
2023-09-24T22:03:08.486+05:30 INFO 21916 --- [main] com.netflix.discovery.DiscoveryClient : Discovery Client initialized at timestamp 1695573188486 with initial instances count: 3
2023-09-24T22:03:08.490+05:30 INFO 21916 --- [main] o.s.c.n.e.s.EurekaServiceRegistry : Registering application NOTIFICATION-SERVICE with eureka with status UP
2023-09-24T22:03:08.490+05:30 INFO 21916 --- [main] com.netflix.discovery.DiscoveryClient : Saw local status change event StatusChangeEvent [timestamp=1695573188490, current=UP, previous=STARTING]
2023-09-24T22:03:08.492+05:30 INFO 21916 --- [DiscoveryClient-InstanceInfoReplicator-0] com.netflix.discovery.DiscoveryClient : DiscoveryClient_NOTIFICATION-SERVICE/MSI:notification-service:8086: registering service...
2023-09-24T22:03:08.525+05:30 INFO 21916 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8086 (http) with context path ''
2023-09-24T22:03:08.527+05:30 INFO 21916 --- [main] .s.c.n.e.s.EurekaAutoServiceRegistration : Updating port to 8086
2023-09-24T22:03:08.543+05:30 INFO 21916 --- [DiscoveryClient-InstanceInfoReplicator-0] com.netflix.discovery.DiscoveryClient : DiscoveryClient_NOTIFICATION-SERVICE/MSI:notification-service:8086 - registration status: 204
2023-09-24T22:03:08.659+05:30 INFO 21916 --- [main] o.a.k.clients.consumer.ConsumerConfig : ConsumerConfig values:
allow.auto.create.topics = true
auto.commit.interval.ms = 5000
auto.include.jmx.reporter = true
auto.offset.reset = latest
bootstrap.servers = [localhost:9092]
check.crcs = true
client.dns.lookup = use_all_dns_ips
client.id = consumer-ar-group-1
client.rack =
connections.max.idle.ms = 540000
default.api.timeout.ms = 60000
enable.auto.commit = false
exclude.internal.topics = true
fetch.max.bytes = 52428800
fetch.max.wait.ms = 500
fetch.min.bytes = 1
group.id = ar-group
group.instance.id = null
heartbeat.interval.ms = 3000
interceptor.classes = []
internal.leave.group.on.close = true
internal.throw.on.fetch.stable.offset.unsupported = false
isolation.level = read_uncommitted
key.deserializer = class org.apache.kafka.common.serialization.StringDeserializer
max.partition.fetch.bytes = 1048576
max.poll.interval.ms = 300000
max.poll.records = 500
metadata.max.age.ms = 300000
metric.reporters = []
metrics.num.samples = 2
metrics.recording.level = INFO
metrics.sample.window.ms = 30000
partition.assignment.strategy = [class org.apache.kafka.clients.consumer.RangeAssignor, class org.apache.kafka.clients.consumer.CooperativeStickyAssignor]
receive.buffer.bytes = 65536
reconnect.backoff.max.ms = 1000
reconnect.backoff.ms = 50
request.timeout.ms = 30000
retry.backoff.ms = 100
sasl.client.callback.handler.class = null
sasl.jaas.config = null
sasl.kerberos.kinit.cmd = /usr/bin/kinit
sasl.kerberos.min.time.before.relogin = 60000
sasl.kerberos.service.name = null
sasl.kerberos.ticket.renew.jitter = 0.05
sasl.kerberos.ticket.renew.window.factor = 0.8
sasl.login.callback.handler.class = null
sasl.login.class = null
sasl.login.connect.timeout.ms = null
sasl.login.read.timeout.ms = null
sasl.login.refresh.buffer.seconds = 300
sasl.login.refresh.min.period.seconds = 60
sasl.login.refresh.window.factor = 0.8
sasl.login.refresh.window.jitter = 0.05
sasl.login.retry.backoff.max.ms = 10000
sasl.login.retry.backoff.ms = 100
sasl.mechanism = GSSAPI
sasl.oauthbearer.clock.skew.seconds = 30
sasl.oauthbearer.expected.audience = null
sasl.oauthbearer.expected.issuer = null
sasl.oauthbearer.jwks.endpoint.refresh.ms = 3600000
sasl.oauthbearer.jwks.endpoint.retry.backoff.max.ms = 10000
sasl.oauthbearer.jwks.endpoint.retry.backoff.ms = 100
sasl.oauthbearer.jwks.endpoint.url = null
sasl.oauthbearer.scope.claim.name = scope
sasl.oauthbearer.sub.claim.name = sub
sasl.oauthbearer.token.endpoint.url = null
security.protocol = PLAINTEXT
security.providers = null
send.buffer.bytes = 131072
session.timeout.ms = 45000
socket.connection.setup.timeout.max.ms = 30000
socket.connection.setup.timeout.ms = 10000
ssl.cipher.suites = null
ssl.enabled.protocols = [TLSv1.2, TLSv1.3]
ssl.endpoint.identification.algorithm = https
ssl.engine.factory.class = null
ssl.key.password = null
ssl.keymanager.algorithm = SunX509
ssl.keystore.certificate.chain = null
ssl.keystore.key = null
ssl.keystore.location = null
ssl.keystore.password = null
ssl.keystore.type = JKS
ssl.protocol = TLSv1.3
ssl.provider = null
ssl.secure.random.implementation = null
ssl.trustmanager.algorithm = PKIX
ssl.truststore.certificates = null
ssl.truststore.location = null
ssl.truststore.password = null
ssl.truststore.type = JKS
value.deserializer = class org.springframework.kafka.support.serializer.JsonDeserializer
2023-09-24T22:03:08.782+05:30 INFO 21916 --- [main] o.a.kafka.common.utils.AppInfoParser : Kafka version: 3.4.1
2023-09-24T22:03:08.783+05:30 INFO 21916 --- [main] o.a.kafka.common.utils.AppInfoParser : Kafka commitId: 8a516edc2755df89
2023-09-24T22:03:08.783+05:30 INFO 21916 --- [main] o.a.kafka.common.utils.AppInfoParser : Kafka startTimeMs: 1695573188781
2023-09-24T22:03:08.786+05:30 INFO 21916 --- [main] o.a.k.clients.consumer.KafkaConsumer : [Consumer clientId=consumer-ar-group-1, groupId=ar-group] Subscribed to topic(s): HotelNotificationTopic
2023-09-24T22:03:08.805+05:30 INFO 21916 --- [main] c.p.n.NotificationServiceApplication : Started NotificationServiceApplication in 6.823 seconds (process running for 7.336)
2023-09-24T22:03:09.095+05:30 INFO 8448 --- [main] c.p.h.HotelManagementServiceApplication : Starting HotelManagementServiceApplication using Java 17.0.8 with PID 8448 (C:\Users\prasa\Documents\Project\springboot-microservice-hotel-management\hotel-management-service\hotel-management-service\target\classes started by prasa in C:\Users\prasa\Documents\Project\springboot-microservice-hotel-management\hotel-management-service\hotel-management-service)
2023-09-24T22:03:09.097+05:30 INFO 8448 --- [main] c.p.h.HotelManagementServiceApplication : No active profile set, falling back to 1 default profile: "default"
2023-09-24T22:03:09.124+05:30 INFO 21916 --- [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] org.apache.kafka.clients.Metadata : [Consumer clientId=consumer-ar-group-1, groupId=ar-group] Resetting the last seen epoch of partition HotelNotificationTopic-0 to 0 since the associated topicId changed from null to uqhGmPIjQ_GGHqf7GrTrAw
2023-09-24T22:03:09.127+05:30 INFO 21916 --- [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] org.apache.kafka.clients.Metadata : [Consumer clientId=consumer-ar-group-1, groupId=ar-group] Cluster ID: rZ9N99pPSQ64i6RbJzxAeg
2023-09-24T22:03:09.129+05:30 INFO 21916 --- [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.internals.ConsumerCoordinator : [Consumer clientId=consumer-ar-group-1, groupId=ar-group] Discovered group coordinator MSI:9092 (id: 2147483647 rack: null)
2023-09-24T22:03:09.132+05:30 INFO 21916 --- [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.internals.ConsumerCoordinator : [Consumer clientId=consumer-ar-group-1, groupId=ar-group] (Re-)joining group
2023-09-24T22:03:09.147+05:30 INFO 21916 --- [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.internals.ConsumerCoordinator : [Consumer clientId=consumer-ar-group-1, groupId=ar-group] Request joining group due to: need to re-join with the given member-id: consumer-ar-group-1-2edb5b10-21d1-4ce4-9f7c-2b041d970ad2
2023-09-24T22:03:09.148+05:30 INFO 21916 --- [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.internals.ConsumerCoordinator : [Consumer clientId=consumer-ar-group-1, groupId=ar-group] Request joining group due to: rebalance failed due to 'The group member needs to have a valid member id before actually entering a consumer group.' (MemberIdRequiredException)
2023-09-24T22:03:09.148+05:30 INFO 21916 --- [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.internals.ConsumerCoordinator : [Consumer clientId=consumer-ar-group-1, groupId=ar-group] (Re-)joining group
2023-09-24T22:03:09.151+05:30 INFO 21916 --- [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.internals.ConsumerCoordinator : [Consumer clientId=consumer-ar-group-1, groupId=ar-group] Successfully joined group with generation Generation{generationId=11, memberId='consumer-ar-group-1-2edb5b10-21d1-4ce4-9f7c-2b041d970ad2', protocol='range'}
2023-09-24T22:03:09.154+05:30 INFO 21916 --- [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.internals.ConsumerCoordinator : [Consumer clientId=consumer-ar-group-1, groupId=ar-group] Finished assignment for group at generation 11: {consumer-ar-group-1-2edb5b10-21d1-4ce4-9f7c-2b041d970ad2=Assignment(partitions=[HotelNotificationTopic-0])}
2023-09-24T22:03:09.161+05:30 INFO 21916 --- [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.internals.ConsumerCoordinator : [Consumer clientId=consumer-ar-group-1, groupId=ar-group] Successfully synced group in generation Generation{generationId=11, memberId='consumer-ar-group-1-2edb5b10-21d1-4ce4-9f7c-2b041d970ad2', protocol='range'}
2023-09-24T22:03:09.161+05:30 INFO 21916 --- [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.internals.ConsumerCoordinator : [Consumer clientId=consumer-ar-group-1, groupId=ar-group] Notifying assignor about the new Assignment(partitions=[HotelNotificationTopic-0])
2023-09-24T22:03:09.163+05:30 INFO 21916 --- [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.internals.ConsumerCoordinator : [Consumer clientId=consumer-ar-group-1, groupId=ar-group] Adding newly assigned partitions: HotelNotificationTopic-0
2023-09-24T22:03:09.178+05:30 INFO 21916 --- [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.internals.ConsumerCoordinator : [Consumer clientId=consumer-ar-group-1, groupId=ar-group] Setting offset for partition HotelNotificationTopic-0 to the committed offset FetchPosition{offset=8, offsetEpoch=Optional.empty, currentLeader=LeaderAndEpoch{leader=Optional[MSI:9092 (id: 0 rack: null)], epoch=0}}
2023-09-24T22:03:09.180+05:30 INFO 21916 --- [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer : ar-group: partitions assigned: [HotelNotificationTopic-0]
2023-09-24T22:03:09.184+05:30 INFO 16200 --- [DiscoveryClient-CacheRefreshExecutor-0] com.prasad.apigateway.util.JwtService : Entry into GatewayFilter method
2023-09-24T22:03:09.197+05:30 INFO 16200 --- [DiscoveryClient-CacheRefreshExecutor-0] com.prasad.apigateway.util.JwtService : Entry into GatewayFilter method
2023-09-24T22:03:09.734+05:30 INFO 8448 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2023-09-24T22:03:09.853+05:30 INFO 8448 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 111 ms. Found 1 JPA repository interfaces.
2023-09-24T22:03:10.036+05:30 INFO 8448 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=3e79107c-82dc-3ee4-8787-3e2a734e20c7
2023-09-24T22:03:10.395+05:30 INFO 8448 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8084 (http)
2023-09-24T22:03:10.403+05:30 INFO 8448 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2023-09-24T22:03:10.404+05:30 INFO 8448 --- [main] o.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/10.1.12]
2023-09-24T22:03:10.521+05:30 INFO 8448 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2023-09-24T22:03:10.522+05:30 INFO 8448 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 1366 ms
2023-09-24T22:03:10.549+05:30 INFO 8448 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting...
2023-09-24T22:03:10.727+05:30 INFO 8448 --- [main] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Added connection conn0: url=jdbc:h2:mem:hoteldb user=SA
2023-09-24T22:03:10.729+05:30 INFO 8448 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Start completed.
2023-09-24T22:03:10.742+05:30 INFO 8448 --- [main] o.s.b.a.h2.H2ConsoleAutoConfiguration : H2 console available at '/h2-console'. Database available at 'jdbc:h2:mem:hoteldb'
2023-09-24T22:03:10.865+05:30 INFO 8448 --- [main] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [name: default]
2023-09-24T22:03:10.924+05:30 INFO 8448 --- [main] org.hibernate.Version : HHH000412: Hibernate ORM core version 6.2.7.Final
2023-09-24T22:03:10.927+05:30 INFO 8448 --- [main] org.hibernate.cfg.Environment : HHH000406: Using bytecode reflection optimizer
2023-09-24T22:03:11.076+05:30 INFO 8448 --- [main] o.h.b.i.BytecodeProviderInitiator : HHH000021: Bytecode provider name : bytebuddy
2023-09-24T22:03:11.205+05:30 INFO 8448 --- [main] o.s.o.j.p.SpringPersistenceUnitInfo : No LoadTimeWeaver setup: ignoring JPA class transformer
2023-09-24T22:03:11.431+05:30 INFO 8448 --- [main] o.h.b.i.BytecodeProviderInitiator : HHH000021: Bytecode provider name : bytebuddy
2023-09-24T22:03:11.984+05:30 INFO 8448 --- [main] o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
2023-09-24T22:03:12.030+05:30 INFO 8448 --- [main] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default'
2023-09-24T22:03:12.307+05:30 WARN 8448 --- [main] JpaBaseConfiguration$JpaWebConfiguration : spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning
2023-09-24T22:03:13.203+05:30 INFO 8448 --- [main] DiscoveryClientOptionalArgsConfiguration : Eureka HTTP Client uses RestTemplate.
2023-09-24T22:03:13.300+05:30 WARN 8448 --- [main] iguration$LoadBalancerCaffeineWarnLogger : Spring Cloud LoadBalancer is currently working with the default cache. While this cache implementation is useful for development and tests, it's recommended to use Caffeine cache in production.You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath.
2023-09-24T22:03:13.317+05:30 INFO 8448 --- [main] o.s.c.n.eureka.InstanceInfoFactory : Setting initial instance status as: STARTING
2023-09-24T22:03:13.376+05:30 INFO 8448 --- [main] com.netflix.discovery.DiscoveryClient : Initializing Eureka in region us-east-1
2023-09-24T22:03:13.380+05:30 INFO 8448 --- [main] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2023-09-24T22:03:13.400+05:30 INFO 8448 --- [main] com.netflix.discovery.DiscoveryClient : Disable delta property : false
2023-09-24T22:03:13.400+05:30 INFO 8448 --- [main] com.netflix.discovery.DiscoveryClient : Single vip registry refresh property : null
2023-09-24T22:03:13.400+05:30 INFO 8448 --- [main] com.netflix.discovery.DiscoveryClient : Force full registry fetch : false
2023-09-24T22:03:13.401+05:30 INFO 8448 --- [main] com.netflix.discovery.DiscoveryClient : Application is null : false
2023-09-24T22:03:13.401+05:30 INFO 8448 --- [main] com.netflix.discovery.DiscoveryClient : Registered Applications size is zero : true
2023-09-24T22:03:13.401+05:30 INFO 8448 --- [main] com.netflix.discovery.DiscoveryClient : Application version is -1: true
2023-09-24T22:03:13.401+05:30 INFO 8448 --- [main] com.netflix.discovery.DiscoveryClient : Getting all instance registry info from the eureka server
2023-09-24T22:03:13.710+05:30 INFO 8448 --- [main] com.netflix.discovery.DiscoveryClient : The response status is 200
2023-09-24T22:03:13.712+05:30 INFO 8448 --- [main] com.netflix.discovery.DiscoveryClient : Starting heartbeat executor: renew interval is: 30
2023-09-24T22:03:13.715+05:30 INFO 8448 --- [main] c.n.discovery.InstanceInfoReplicator : InstanceInfoReplicator onDemand update allowed rate per min is 4
2023-09-24T22:03:13.719+05:30 INFO 8448 --- [main] com.netflix.discovery.DiscoveryClient : Discovery Client initialized at timestamp 1695573193719 with initial instances count: 3
2023-09-24T22:03:13.722+05:30 INFO 8448 --- [main] o.s.c.n.e.s.EurekaServiceRegistry : Registering application HOTEL-MANAGEMENT-SERVICE with eureka with status UP
2023-09-24T22:03:13.723+05:30 INFO 8448 --- [main] com.netflix.discovery.DiscoveryClient : Saw local status change event StatusChangeEvent [timestamp=1695573193723, current=UP, previous=STARTING]
2023-09-24T22:03:13.724+05:30 INFO 8448 --- [DiscoveryClient-InstanceInfoReplicator-0] com.netflix.discovery.DiscoveryClient : DiscoveryClient_HOTEL-MANAGEMENT-SERVICE/MSI:hotel-management-service:8084: registering service...
2023-09-24T22:03:13.749+05:30 INFO 8448 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8084 (http) with context path ''
2023-09-24T22:03:13.750+05:30 INFO 8448 --- [main] .s.c.n.e.s.EurekaAutoServiceRegistration : Updating port to 8084
2023-09-24T22:03:13.763+05:30 INFO 8448 --- [DiscoveryClient-InstanceInfoReplicator-0] com.netflix.discovery.DiscoveryClient : DiscoveryClient_HOTEL-MANAGEMENT-SERVICE/MSI:hotel-management-service:8084 - registration status: 204
2023-09-24T22:03:13.824+05:30 INFO 8448 --- [main] c.p.h.HotelManagementServiceApplication : Started HotelManagementServiceApplication in 5.331 seconds (process running for 5.845)
2023-09-24T22:03:39.228+05:30 INFO 16200 --- [DiscoveryClient-CacheRefreshExecutor-0] com.prasad.apigateway.util.JwtService : Entry into GatewayFilter method
2023-09-24T22:03:39.229+05:30 INFO 16200 --- [DiscoveryClient-CacheRefreshExecutor-0] com.prasad.apigateway.util.JwtService : Entry into GatewayFilter method
2023-09-24T22:04:09.251+05:30 INFO 16200 --- [DiscoveryClient-CacheRefreshExecutor-0] com.prasad.apigateway.util.JwtService : Entry into GatewayFilter method
2023-09-24T22:04:09.253+05:30 INFO 16200 --- [DiscoveryClient-CacheRefreshExecutor-0] com.prasad.apigateway.util.JwtService : Entry into GatewayFilter method
2023-09-24T22:04:13.031+05:30 INFO 16200 --- [reactor-http-nio-3] com.prasad.apigateway.util.JwtService : Entry into GatewayFilter method
2023-09-24T22:04:13.033+05:30 INFO 16200 --- [reactor-http-nio-3] com.prasad.apigateway.util.JwtService : Entry into GatewayFilter method
2023-09-24T22:04:13.320+05:30 INFO 13876 --- [http-nio-8082-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring DispatcherServlet 'dispatcherServlet'
2023-09-24T22:04:13.320+05:30 INFO 13876 --- [http-nio-8082-exec-1] o.s.web.servlet.DispatcherServlet : Initializing Servlet 'dispatcherServlet'
2023-09-24T22:04:13.322+05:30 INFO 13876 --- [http-nio-8082-exec-1] o.s.web.servlet.DispatcherServlet : Completed initialization in 2 ms
2023-09-24T22:04:13.388+05:30 INFO 13876 --- [http-nio-8082-exec-1] c.p.c.proxy.CustomerServiceProxy : Entry into addCustomer method
2023-09-24T22:04:13.783+05:30 INFO 13876 --- [http-nio-8082-exec-1] c.p.c.service.CustomerService : sending notification via Kafka
2023-09-24T22:04:13.831+05:30 INFO 13876 --- [http-nio-8082-exec-1] o.a.k.clients.producer.ProducerConfig : ProducerConfig values:
acks = -1
auto.include.jmx.reporter = true
batch.size = 16384
bootstrap.servers = [localhost:9092]
buffer.memory = 33554432
client.dns.lookup = use_all_dns_ips
client.id = producer-1
compression.type = none
connections.max.idle.ms = 540000
delivery.timeout.ms = 120000
enable.idempotence = true
interceptor.classes = []
key.serializer = class org.apache.kafka.common.serialization.StringSerializer
linger.ms = 0
max.block.ms = 60000
max.in.flight.requests.per.connection = 5
max.request.size = 1048576
metadata.max.age.ms = 300000
metadata.max.idle.ms = 300000
metric.reporters = []
metrics.num.samples = 2
metrics.recording.level = INFO
metrics.sample.window.ms = 30000
partitioner.adaptive.partitioning.enable = true
partitioner.availability.timeout.ms = 0
partitioner.class = null
partitioner.ignore.keys = false
receive.buffer.bytes = 32768
reconnect.backoff.max.ms = 1000
reconnect.backoff.ms = 50
request.timeout.ms = 30000
retries = 2147483647
retry.backoff.ms = 100
sasl.client.callback.handler.class = null
sasl.jaas.config = null
sasl.kerberos.kinit.cmd = /usr/bin/kinit
sasl.kerberos.min.time.before.relogin = 60000
sasl.kerberos.service.name = null
sasl.kerberos.ticket.renew.jitter = 0.05
sasl.kerberos.ticket.renew.window.factor = 0.8
sasl.login.callback.handler.class = null
sasl.login.class = null
sasl.login.connect.timeout.ms = null
sasl.login.read.timeout.ms = null
sasl.login.refresh.buffer.seconds = 300
sasl.login.refresh.min.period.seconds = 60
sasl.login.refresh.window.factor = 0.8
sasl.login.refresh.window.jitter = 0.05
sasl.login.retry.backoff.max.ms = 10000
sasl.login.retry.backoff.ms = 100
sasl.mechanism = GSSAPI
sasl.oauthbearer.clock.skew.seconds = 30
sasl.oauthbearer.expected.audience = null
sasl.oauthbearer.expected.issuer = null
sasl.oauthbearer.jwks.endpoint.refresh.ms = 3600000
sasl.oauthbearer.jwks.endpoint.retry.backoff.max.ms = 10000
sasl.oauthbearer.jwks.endpoint.retry.backoff.ms = 100
sasl.oauthbearer.jwks.endpoint.url = null
sasl.oauthbearer.scope.claim.name = scope
sasl.oauthbearer.sub.claim.name = sub
sasl.oauthbearer.token.endpoint.url = null
security.protocol = PLAINTEXT
security.providers = null
send.buffer.bytes = 131072
socket.connection.setup.timeout.max.ms = 30000
socket.connection.setup.timeout.ms = 10000
ssl.cipher.suites = null
ssl.enabled.protocols = [TLSv1.2, TLSv1.3]
ssl.endpoint.identification.algorithm = https
ssl.engine.factory.class = null
ssl.key.password = null
ssl.keymanager.algorithm = SunX509
ssl.keystore.certificate.chain = null
ssl.keystore.key = null
ssl.keystore.location = null
ssl.keystore.password = null
ssl.keystore.type = JKS
ssl.protocol = TLSv1.3
ssl.provider = null
ssl.secure.random.implementation = null
ssl.trustmanager.algorithm = PKIX
ssl.truststore.certificates = null
ssl.truststore.location = null
ssl.truststore.password = null
ssl.truststore.type = JKS
transaction.timeout.ms = 60000
transactional.id = null
value.serializer = class org.springframework.kafka.support.serializer.JsonSerializer
2023-09-24T22:04:13.864+05:30 INFO 13876 --- [http-nio-8082-exec-1] o.a.k.clients.producer.KafkaProducer : [Producer clientId=producer-1] Instantiated an idempotent producer.
2023-09-24T22:04:13.926+05:30 INFO 13876 --- [http-nio-8082-exec-1] o.a.kafka.common.utils.AppInfoParser : Kafka version: 3.4.1
2023-09-24T22:04:13.926+05:30 INFO 13876 --- [http-nio-8082-exec-1] o.a.kafka.common.utils.AppInfoParser : Kafka commitId: 8a516edc2755df89
2023-09-24T22:04:13.926+05:30 INFO 13876 --- [http-nio-8082-exec-1] o.a.kafka.common.utils.AppInfoParser : Kafka startTimeMs: 1695573253923
2023-09-24T22:04:14.341+05:30 INFO 13876 --- [kafka-producer-network-thread | producer-1] org.apache.kafka.clients.Metadata : [Producer clientId=producer-1] Resetting the last seen epoch of partition HotelNotificationTopic-0 to 0 since the associated topicId changed from null to uqhGmPIjQ_GGHqf7GrTrAw
2023-09-24T22:04:14.345+05:30 INFO 13876 --- [kafka-producer-network-thread | producer-1] org.apache.kafka.clients.Metadata : [Producer clientId=producer-1] Cluster ID: rZ9N99pPSQ64i6RbJzxAeg
2023-09-24T22:04:14.347+05:30 INFO 13876 --- [kafka-producer-network-thread | producer-1] o.a.k.c.p.internals.TransactionManager : [Producer clientId=producer-1] ProducerId set to 1006 with epoch 0
2023-09-24T22:04:14.370+05:30 INFO 13876 --- [http-nio-8082-exec-1] c.p.c.service.CustomerService : Customer registered : [email protected]
2023-09-24T22:04:14.370+05:30 INFO 13876 --- [http-nio-8082-exec-1] c.p.c.proxy.CustomerServiceProxy : Exit from addCustomer method
2023-09-24T22:04:14.401+05:30 INFO 13876 --- [kafka-producer-network-thread | producer-1] c.p.c.service.CustomerService : Sent message with offset=[8]
2023-09-24T22:04:14.429+05:30 INFO 21916 --- [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] c.p.n.service.NotificationService : Kafka Message consumed : Notification(id=null, userId=1, message=Welcome to our Hotel Reservation platform, timestamp=Sun Sep 24 22:04:13 IST 2023)
2023-09-24T22:04:14.525+05:30 INFO 21916 --- [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] c.p.n.service.NotificationService : Notification saved : Notification(id=1, userId=1, message=Welcome to our Hotel Reservation platform, timestamp=Sun Sep 24 22:04:13 IST 2023)
2023-09-24T22:04:14.525+05:30 ERROR 21916 --- [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] c.p.n.service.NotificationService : Notification written from Kafka to Database
2023-09-24T22:04:23.634+05:30 INFO 13876 --- [http-nio-8082-exec-2] c.p.customerservice.service.JwtService : Entry into generateToken method
2023-09-24T22:04:23.634+05:30 INFO 13876 --- [http-nio-8082-exec-2] c.p.customerservice.service.JwtService : Entry into createToken method : JWT Token is being created for [email protected]
2023-09-24T22:04:32.860+05:30 INFO 16200 --- [reactor-http-nio-3] com.prasad.apigateway.util.JwtService : Entry into validateToken method : JWT Token is being extracted for eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJwcmFzYWRAcG9vamFyeS5jb20iLCJpYXQiOjE2OTU1NDYwODEsImV4cCI6MTY5NTU0Nzg4MX0.-JJLA8ogkE1Noujhr-A4RgxzcBNMP_iAOXfZ2Z41r5s
2023-09-24T22:04:32.892+05:30 ERROR 16200 --- [reactor-http-nio-3] com.prasad.apigateway.util.JwtService : Invalid access
2023-09-24T22:04:32.916+05:30 ERROR 16200 --- [reactor-http-nio-3] a.w.r.e.AbstractErrorWebExceptionHandler : [629c6dff-4] 500 Server Error for HTTP GET "/customer/"
java.lang.RuntimeException: Invalid access
at com.prasad.apigateway.filter.AuthFilter.lambda$apply$0(AuthFilter.java:69) ~[classes/:na]
Suppressed: reactor.core.publisher.FluxOnAssembly$OnAssemblyException:
Error has been observed at the following site(s):
*__checkpoint ⇢ org.springframework.cloud.gateway.filter.WeightCalculatorWebFilter [DefaultWebFilterChain]
*__checkpoint ⇢ HTTP GET "/customer/" [ExceptionHandlingWebHandler]
Original Stack Trace:
at com.prasad.apigateway.filter.AuthFilter.lambda$apply$0(AuthFilter.java:69) ~[classes/:na]
at org.springframework.cloud.gateway.filter.OrderedGatewayFilter.filter(OrderedGatewayFilter.java:44) ~[spring-cloud-gateway-server-4.0.7.jar:4.0.7]
at org.springframework.cloud.gateway.handler.FilteringWebHandler$DefaultGatewayFilterChain.lambda$filter$0(FilteringWebHandler.java:117) ~[spring-cloud-gateway-server-4.0.7.jar:4.0.7]
at reactor.core.publisher.MonoDefer.subscribe(MonoDefer.java:45) ~[reactor-core-3.5.9.jar:3.5.9]
at reactor.core.publisher.MonoDefer.subscribe(MonoDefer.java:53) ~[reactor-core-3.5.9.jar:3.5.9]
at reactor.core.publisher.Mono.subscribe(Mono.java:4495) ~[reactor-core-3.5.9.jar:3.5.9]
at reactor.core.publisher.MonoIgnoreThen$ThenIgnoreMain.subscribeNext(MonoIgnoreThen.java:263) ~[reactor-core-3.5.9.jar:3.5.9]
at reactor.core.publisher.MonoIgnoreThen.subscribe(MonoIgnoreThen.java:51) ~[reactor-core-3.5.9.jar:3.5.9]
at reactor.core.publisher.InternalMonoOperator.subscribe(InternalMonoOperator.java:64) ~[reactor-core-3.5.9.jar:3.5.9]
at reactor.core.publisher.MonoDefer.subscribe(MonoDefer.java:53) ~[reactor-core-3.5.9.jar:3.5.9]
at reactor.core.publisher.MonoDefer.subscribe(MonoDefer.java:53) ~[reactor-core-3.5.9.jar:3.5.9]
at reactor.core.publisher.InternalMonoOperator.subscribe(InternalMonoOperator.java:64) ~[reactor-core-3.5.9.jar:3.5.9]
at reactor.core.publisher.MonoDefer.subscribe(MonoDefer.java:53) ~[reactor-core-3.5.9.jar:3.5.9]
at reactor.core.publisher.Mono.subscribe(Mono.java:4495) ~[reactor-core-3.5.9.jar:3.5.9]
at reactor.core.publisher.MonoIgnoreThen$ThenIgnoreMain.subscribeNext(MonoIgnoreThen.java:263) ~[reactor-core-3.5.9.jar:3.5.9]
at reactor.core.publisher.MonoIgnoreThen.subscribe(MonoIgnoreThen.java:51) ~[reactor-core-3.5.9.jar:3.5.9]
at reactor.core.publisher.InternalMonoOperator.subscribe(InternalMonoOperator.java:64) ~[reactor-core-3.5.9.jar:3.5.9]
at reactor.core.publisher.MonoFlatMap$FlatMapMain.onNext(MonoFlatMap.java:165) ~[reactor-core-3.5.9.jar:3.5.9]
at reactor.core.publisher.FluxOnErrorResume$ResumeSubscriber.onNext(FluxOnErrorResume.java:79) ~[reactor-core-3.5.9.jar:3.5.9]
at reactor.core.publisher.FluxSwitchIfEmpty$SwitchIfEmptySubscriber.onNext(FluxSwitchIfEmpty.java:74) ~[reactor-core-3.5.9.jar:3.5.9]
at reactor.core.publisher.MonoNext$NextSubscriber.onNext(MonoNext.java:82) ~[reactor-core-3.5.9.jar:3.5.9]
at reactor.core.publisher.FluxConcatMapNoPrefetch$FluxConcatMapNoPrefetchSubscriber.innerNext(FluxConcatMapNoPrefetch.java:258) ~[reactor-core-3.5.9.jar:3.5.9]
at reactor.core.publisher.FluxConcatMap$ConcatMapInner.onNext(FluxConcatMap.java:863) ~[reactor-core-3.5.9.jar:3.5.9]
at reactor.core.publisher.FluxMap$MapSubscriber.onNext(FluxMap.java:122) ~[reactor-core-3.5.9.jar:3.5.9]
at reactor.core.publisher.FluxSwitchIfEmpty$SwitchIfEmptySubscriber.onNext(FluxSwitchIfEmpty.java:74) ~[reactor-core-3.5.9.jar:3.5.9]
at reactor.core.publisher.MonoFlatMap$FlatMapMain.onNext(MonoFlatMap.java:158) ~[reactor-core-3.5.9.jar:3.5.9]
at reactor.core.publisher.FluxMap$MapSubscriber.onNext(FluxMap.java:122) ~[reactor-core-3.5.9.jar:3.5.9]
at reactor.core.publisher.MonoNext$NextSubscriber.onNext(MonoNext.java:82) ~[reactor-core-3.5.9.jar:3.5.9]
at reactor.core.publisher.FluxConcatMapNoPrefetch$FluxConcatMapNoPrefetchSubscriber.innerNext(FluxConcatMapNoPrefetch.java:258) ~[reactor-core-3.5.9.jar:3.5.9]
at reactor.core.publisher.FluxConcatMap$ConcatMapInner.onNext(FluxConcatMap.java:863) ~[reactor-core-3.5.9.jar:3.5.9]
at reactor.core.publisher.FluxOnErrorResume$ResumeSubscriber.onNext(FluxOnErrorResume.java:79) ~[reactor-core-3.5.9.jar:3.5.9]
at reactor.core.publisher.MonoPeekTerminal$MonoTerminalPeekSubscriber.onNext(MonoPeekTerminal.java:180) ~[reactor-core-3.5.9.jar:3.5.9]
at reactor.core.publisher.MonoFilterWhen$MonoFilterWhenMain.onNext(MonoFilterWhen.java:136) ~[reactor-core-3.5.9.jar:3.5.9]
at reactor.core.publisher.Operators$ScalarSubscription.request(Operators.java:2545) ~[reactor-core-3.5.9.jar:3.5.9]
at reactor.core.publisher.MonoFilterWhen$MonoFilterWhenMain.request(MonoFilterWhen.java:182) ~[reactor-core-3.5.9.jar:3.5.9]
at reactor.core.publisher.MonoPeekTerminal$MonoTerminalPeekSubscriber.request(MonoPeekTerminal.java:139) ~[reactor-core-3.5.9.jar:3.5.9]
at reactor.core.publisher.Operators$MultiSubscriptionSubscriber.request(Operators.java:2305) ~[reactor-core-3.5.9.jar:3.5.9]
at reactor.core.publisher.Operators$MultiSubscriptionSubscriber.request(Operators.java:2305) ~[reactor-core-3.5.9.jar:3.5.9]
at reactor.core.publisher.FluxConcatMapNoPrefetch$FluxConcatMapNoPrefetchSubscriber.request(FluxConcatMapNoPrefetch.java:338) ~[reactor-core-3.5.9.jar:3.5.9]
at reactor.core.publisher.MonoNext$NextSubscriber.request(MonoNext.java:108) ~[reactor-core-3.5.9.jar:3.5.9]
at reactor.core.publisher.FluxMap$MapSubscriber.request(FluxMap.java:164) ~[reactor-core-3.5.9.jar:3.5.9]
at reactor.core.publisher.MonoFlatMap$FlatMapMain.request(MonoFlatMap.java:194) ~[reactor-core-3.5.9.jar:3.5.9]
at reactor.core.publisher.Operators$MultiSubscriptionSubscriber.request(Operators.java:2305) ~[reactor-core-3.5.9.jar:3.5.9]
at reactor.core.publisher.FluxMap$MapSubscriber.request(FluxMap.java:164) ~[reactor-core-3.5.9.jar:3.5.9]
at reactor.core.publisher.Operators$MultiSubscriptionSubscriber.request(Operators.java:2305) ~[reactor-core-3.5.9.jar:3.5.9]
at reactor.core.publisher.FluxConcatMapNoPrefetch$FluxConcatMapNoPrefetchSubscriber.request(FluxConcatMapNoPrefetch.java:338) ~[reactor-core-3.5.9.jar:3.5.9]
at reactor.core.publisher.MonoNext$NextSubscriber.request(MonoNext.java:108) ~[reactor-core-3.5.9.jar:3.5.9]
at reactor.core.publisher.Operators$MultiSubscriptionSubscriber.set(Operators.java:2341) ~[reactor-core-3.5.9.jar:3.5.9]
at reactor.core.publisher.Operators$MultiSubscriptionSubscriber.onSubscribe(Operators.java:2215) ~[reactor-core-3.5.9.jar:3.5.9]
at reactor.core.publisher.MonoNext$NextSubscriber.onSubscribe(MonoNext.java:70) ~[reactor-core-3.5.9.jar:3.5.9]
at reactor.core.publisher.FluxConcatMapNoPrefetch$FluxConcatMapNoPrefetchSubscriber.onSubscribe(FluxConcatMapNoPrefetch.java:164) ~[reactor-core-3.5.9.jar:3.5.9]
at reactor.core.publisher.FluxIterable.subscribe(FluxIterable.java:201) ~[reactor-core-3.5.9.jar:3.5.9]
at reactor.core.publisher.FluxIterable.subscribe(FluxIterable.java:83) ~[reactor-core-3.5.9.jar:3.5.9]
at reactor.core.publisher.InternalMonoOperator.subscribe(InternalMonoOperator.java:64) ~[reactor-core-3.5.9.jar:3.5.9]
at reactor.core.publisher.MonoDefer.subscribe(MonoDefer.java:53) ~[reactor-core-3.5.9.jar:3.5.9]
at reactor.core.publisher.InternalMonoOperator.subscribe(InternalMonoOperator.java:64) ~[reactor-core-3.5.9.jar:3.5.9]
at reactor.core.publisher.MonoDefer.subscribe(MonoDefer.java:53) ~[reactor-core-3.5.9.jar:3.5.9]
at reactor.core.publisher.Mono.subscribe(Mono.java:4495) ~[reactor-core-3.5.9.jar:3.5.9]
at reactor.core.publisher.MonoIgnoreThen$ThenIgnoreMain.subscribeNext(MonoIgnoreThen.java:263) ~[reactor-core-3.5.9.jar:3.5.9]
at reactor.core.publisher.MonoIgnoreThen.subscribe(MonoIgnoreThen.java:51) ~[reactor-core-3.5.9.jar:3.5.9]
at reactor.core.publisher.InternalMonoOperator.subscribe(InternalMonoOperator.java:64) ~[reactor-core-3.5.9.jar:3.5.9]
at reactor.core.publisher.MonoDeferContextual.subscribe(MonoDeferContextual.java:55) ~[reactor-core-3.5.9.jar:3.5.9]
at reactor.netty.http.server.HttpServer$HttpServerHandle.onStateChange(HttpServer.java:1052) ~[reactor-netty-http-1.1.10.jar:1.1.10]
at reactor.netty.ReactorNetty$CompositeConnectionObserver.onStateChange(ReactorNetty.java:710) ~[reactor-netty-core-1.1.10.jar:1.1.10]
at reactor.netty.transport.ServerTransport$ChildObserver.onStateChange(ServerTransport.java:481) ~[reactor-netty-core-1.1.10.jar:1.1.10]
at reactor.netty.http.server.HttpServerOperations.onInboundNext(HttpServerOperations.java:647) ~[reactor-netty-http-1.1.10.jar:1.1.10]
at reactor.netty.channel.ChannelOperationsHandler.channelRead(ChannelOperationsHandler.java:114) ~[reactor-netty-core-1.1.10.jar:1.1.10]
at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444) ~[netty-transport-4.1.97.Final.jar:4.1.97.Final]
at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420) ~[netty-transport-4.1.97.Final.jar:4.1.97.Final]
at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412) ~[netty-transport-4.1.97.Final.jar:4.1.97.Final]
at reactor.netty.http.server.HttpTrafficHandler.channelRead(HttpTrafficHandler.java:238) ~[reactor-netty-http-1.1.10.jar:1.1.10]
at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:442) ~[netty-transport-4.1.97.Final.jar:4.1.97.Final]
at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420) ~[netty-transport-4.1.97.Final.jar:4.1.97.Final]
at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412) ~[netty-transport-4.1.97.Final.jar:4.1.97.Final]
at io.netty.channel.CombinedChannelDuplexHandler$DelegatingChannelHandlerContext.fireChannelRead(CombinedChannelDuplexHandler.java:436) ~[netty-transport-4.1.97.Final.jar:4.1.97.Final]
at io.netty.handler.codec.ByteToMessageDecoder.fireChannelRead(ByteToMessageDecoder.java:346) ~[netty-codec-4.1.97.Final.jar:4.1.97.Final]
at io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:318) ~[netty-codec-4.1.97.Final.jar:4.1.97.Final]
at io.netty.channel.CombinedChannelDuplexHandler.channelRead(CombinedChannelDuplexHandler.java:251) ~[netty-transport-4.1.97.Final.jar:4.1.97.Final]
at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:442) ~[netty-transport-4.1.97.Final.jar:4.1.97.Final]
at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420) ~[netty-transport-4.1.97.Final.jar:4.1.97.Final]
at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412) ~[netty-transport-4.1.97.Final.jar:4.1.97.Final]
at io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(DefaultChannelPipeline.java:1410) ~[netty-transport-4.1.97.Final.jar:4.1.97.Final]
at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:440) ~[netty-transport-4.1.97.Final.jar:4.1.97.Final]
at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420) ~[netty-transport-4.1.97.Final.jar:4.1.97.Final]
at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:919) ~[netty-transport-4.1.97.Final.jar:4.1.97.Final]
at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:166) ~[netty-transport-4.1.97.Final.jar:4.1.97.Final]
at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) ~[netty-transport-4.1.97.Final.jar:4.1.97.Final]
at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) ~[netty-transport-4.1.97.Final.jar:4.1.97.Final]
at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) ~[netty-transport-4.1.97.Final.jar:4.1.97.Final]
at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) ~[netty-transport-4.1.97.Final.jar:4.1.97.Final]
at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) ~[netty-common-4.1.97.Final.jar:4.1.97.Final]
at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) ~[netty-common-4.1.97.Final.jar:4.1.97.Final]
at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) ~[netty-common-4.1.97.Final.jar:4.1.97.Final]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]
2023-09-24T22:04:39.269+05:30 INFO 16200 --- [DiscoveryClient-CacheRefreshExecutor-0] com.prasad.apigateway.util.JwtService : Entry into GatewayFilter method
2023-09-24T22:04:39.271+05:30 INFO 16200 --- [DiscoveryClient-CacheRefreshExecutor-0] com.prasad.apigateway.util.JwtService : Entry into GatewayFilter method
2023-09-24T22:04:43.445+05:30 INFO 13876 --- [http-nio-8082-exec-4] c.p.customerservice.service.JwtService : Entry into generateToken method
2023-09-24T22:04:43.446+05:30 INFO 13876 --- [http-nio-8082-exec-4] c.p.customerservice.service.JwtService : Entry into createToken method : JWT Token is being created for [email protected]
2023-09-24T22:04:55.579+05:30 INFO 16200 --- [reactor-http-nio-3] com.prasad.apigateway.util.JwtService : Entry into validateToken method : JWT Token is being extracted for eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJwcmFzYWRAcG9vamFyeS5jb20iLCJpYXQiOjE2OTU1NzMyODMsImV4cCI6MTY5NTU3NTA4M30.I5cyisxMNxUj6Ex4fUsXvH3jlZ6hDUJGIDV_Q_MCC20
2023-09-24T22:04:55.590+05:30 INFO 13876 --- [http-nio-8082-exec-5] c.p.c.proxy.CustomerServiceProxy : Entry into getAllCustomer method
2023-09-24T22:04:55.598+05:30 INFO 13876 --- [http-nio-8082-exec-5] c.p.c.proxy.CustomerServiceProxy : Exit from getAllCustomer method
2023-09-24T22:05:09.296+05:30 INFO 16200 --- [DiscoveryClient-CacheRefreshExecutor-0] com.prasad.apigateway.util.JwtService : Entry into GatewayFilter method
2023-09-24T22:05:09.298+05:30 INFO 16200 --- [DiscoveryClient-CacheRefreshExecutor-0] com.prasad.apigateway.util.JwtService : Entry into GatewayFilter method
2023-09-24T22:05:39.320+05:30 INFO 16200 --- [DiscoveryClient-CacheRefreshExecutor-0] com.prasad.apigateway.util.JwtService : Entry into GatewayFilter method
2023-09-24T22:05:39.321+05:30 INFO 16200 --- [DiscoveryClient-CacheRefreshExecutor-0] com.prasad.apigateway.util.JwtService : Entry into GatewayFilter method
2023-09-24T22:06:09.340+05:30 INFO 16200 --- [DiscoveryClient-CacheRefreshExecutor-0] com.prasad.apigateway.util.JwtService : Entry into GatewayFilter method
2023-09-24T22:06:09.342+05:30 INFO 16200 --- [DiscoveryClient-CacheRefreshExecutor-0] com.prasad.apigateway.util.JwtService : Entry into GatewayFilter method
2023-09-24T22:06:39.369+05:30 INFO 16200 --- [DiscoveryClient-CacheRefreshExecutor-0] com.prasad.apigateway.util.JwtService : Entry into GatewayFilter method
2023-09-24T22:06:39.370+05:30 INFO 16200 --- [DiscoveryClient-CacheRefreshExecutor-0] com.prasad.apigateway.util.JwtService : Entry into GatewayFilter method
2023-09-24T22:07:08.676+05:30 INFO 16200 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2023-09-24T22:07:09.389+05:30 INFO 16200 --- [DiscoveryClient-CacheRefreshExecutor-0] com.prasad.apigateway.util.JwtService : Entry into GatewayFilter method
2023-09-24T22:07:09.390+05:30 INFO 16200 --- [DiscoveryClient-CacheRefreshExecutor-0] com.prasad.apigateway.util.JwtService : Entry into GatewayFilter method
2023-09-24T22:07:25.024+05:30 INFO 13876 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2023-09-24T22:07:39.406+05:30 INFO 16200 --- [DiscoveryClient-CacheRefreshExecutor-0] com.prasad.apigateway.util.JwtService : Entry into GatewayFilter method
2023-09-24T22:07:39.408+05:30 INFO 16200 --- [DiscoveryClient-CacheRefreshExecutor-0] com.prasad.apigateway.util.JwtService : Entry into GatewayFilter method
2023-09-24T22:07:51.055+05:30 INFO 10152 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2023-09-24T22:08:03.594+05:30 INFO 15556 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2023-09-24T22:08:08.016+05:30 INFO 21916 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2023-09-24T22:08:09.423+05:30 INFO 16200 --- [DiscoveryClient-CacheRefreshExecutor-0] com.prasad.apigateway.util.JwtService : Entry into GatewayFilter method
2023-09-24T22:08:09.424+05:30 INFO 16200 --- [DiscoveryClient-CacheRefreshExecutor-0] com.prasad.apigateway.util.JwtService : Entry into GatewayFilter method
2023-09-24T22:08:13.404+05:30 INFO 8448 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2023-09-24T22:08:39.447+05:30 INFO 16200 --- [DiscoveryClient-CacheRefreshExecutor-0] com.prasad.apigateway.util.JwtService : Entry into GatewayFilter method
2023-09-24T22:08:39.449+05:30 INFO 16200 --- [DiscoveryClient-CacheRefreshExecutor-0] com.prasad.apigateway.util.JwtService : Entry into GatewayFilter method
2023-09-24T22:09:09.460+05:30 INFO 16200 --- [DiscoveryClient-CacheRefreshExecutor-0] com.prasad.apigateway.util.JwtService : Entry into GatewayFilter method
2023-09-24T22:09:09.461+05:30 INFO 16200 --- [DiscoveryClient-CacheRefreshExecutor-0] com.prasad.apigateway.util.JwtService : Entry into GatewayFilter method
2023-09-24T22:09:39.483+05:30 INFO 16200 --- [DiscoveryClient-CacheRefreshExecutor-0] com.prasad.apigateway.util.JwtService : Entry into GatewayFilter method
2023-09-24T22:09:39.484+05:30 INFO 16200 --- [DiscoveryClient-CacheRefreshExecutor-0] com.prasad.apigateway.util.JwtService : Entry into GatewayFilter method
2023-09-24T22:10:09.494+05:30 INFO 16200 --- [DiscoveryClient-CacheRefreshExecutor-0] com.prasad.apigateway.util.JwtService : Entry into GatewayFilter method
2023-09-24T22:10:09.496+05:30 INFO 16200 --- [DiscoveryClient-CacheRefreshExecutor-0] com.prasad.apigateway.util.JwtService : Entry into GatewayFilter method
2023-09-24T22:10:39.518+05:30 INFO 16200 --- [DiscoveryClient-CacheRefreshExecutor-0] com.prasad.apigateway.util.JwtService : Entry into GatewayFilter method
2023-09-24T22:10:39.519+05:30 INFO 16200 --- [DiscoveryClient-CacheRefreshExecutor-0] com.prasad.apigateway.util.JwtService : Entry into GatewayFilter method
2023-09-24T22:11:09.541+05:30 INFO 16200 --- [DiscoveryClient-CacheRefreshExecutor-0] com.prasad.apigateway.util.JwtService : Entry into GatewayFilter method
2023-09-24T22:11:09.543+05:30 INFO 16200 --- [DiscoveryClient-CacheRefreshExecutor-0] com.prasad.apigateway.util.JwtService : Entry into GatewayFilter method
2023-09-24T22:11:39.556+05:30 INFO 16200 --- [DiscoveryClient-CacheRefreshExecutor-0] com.prasad.apigateway.util.JwtService : Entry into GatewayFilter method
2023-09-24T22:11:39.558+05:30 INFO 16200 --- [DiscoveryClient-CacheRefreshExecutor-0] com.prasad.apigateway.util.JwtService : Entry into GatewayFilter method
2023-09-24T22:11:52.161+05:30 INFO 10152 --- [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] org.apache.kafka.clients.NetworkClient : [Consumer clientId=consumer-br-group-1, groupId=br-group] Node -1 disconnected.
2023-09-24T22:12:08.687+05:30 INFO 16200 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2023-09-24T22:12:09.327+05:30 INFO 21916 --- [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] org.apache.kafka.clients.NetworkClient : [Consumer clientId=consumer-ar-group-1, groupId=ar-group] Node -1 disconnected.
2023-09-24T22:12:09.579+05:30 INFO 16200 --- [DiscoveryClient-CacheRefreshExecutor-0] com.prasad.apigateway.util.JwtService : Entry into GatewayFilter method
2023-09-24T22:12:09.581+05:30 INFO 16200 --- [DiscoveryClient-CacheRefreshExecutor-0] com.prasad.apigateway.util.JwtService : Entry into GatewayFilter method
2023-09-24T22:12:25.035+05:30 INFO 13876 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2023-09-24T22:12:39.600+05:30 INFO 16200 --- [DiscoveryClient-CacheRefreshExecutor-0] com.prasad.apigateway.util.JwtService : Entry into GatewayFilter method
2023-09-24T22:12:39.602+05:30 INFO 16200 --- [DiscoveryClient-CacheRefreshExecutor-0] com.prasad.apigateway.util.JwtService : Entry into GatewayFilter method
2023-09-24T22:12:51.067+05:30 INFO 10152 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2023-09-24T22:13:03.607+05:30 INFO 15556 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2023-09-24T22:13:08.023+05:30 INFO 21916 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2023-09-24T22:13:09.624+05:30 INFO 16200 --- [DiscoveryClient-CacheRefreshExecutor-0] com.prasad.apigateway.util.JwtService : Entry into GatewayFilter method
2023-09-24T22:13:09.626+05:30 INFO 16200 --- [DiscoveryClient-CacheRefreshExecutor-0] com.prasad.apigateway.util.JwtService : Entry into GatewayFilter method
2023-09-24T22:13:13.415+05:30 INFO 8448 --- [AsyncResolver-bootstrap-executor-0] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2023-09-24T22:13:14.411+05:30 INFO 13876 --- [kafka-producer-network-thread | producer-1] org.apache.kafka.clients.NetworkClient : [Producer clientId=producer-1] Node -1 disconnected.
2023-09-24T22:13:39.648+05:30 INFO 16200 --- [DiscoveryClient-CacheRefreshExecutor-0] com.prasad.apigateway.util.JwtService : Entry into GatewayFilter method
2023-09-24T22:13:39.649+05:30 INFO 16200 --- [DiscoveryClient-CacheRefreshExecutor-0] com.prasad.apigateway.util.JwtService : Entry into GatewayFilter method
2023-09-24T22:14:09.660+05:30 INFO 16200 --- [DiscoveryClient-CacheRefreshExecutor-0] com.prasad.apigateway.util.JwtService : Entry into GatewayFilter method
2023-09-24T22:14:09.661+05:30 INFO 16200 --- [DiscoveryClient-CacheRefreshExecutor-0] com.prasad.apigateway.util.JwtService : Entry into GatewayFilter method
2023-09-24T22:14:39.684+05:30 INFO 16200 --- [DiscoveryClient-CacheRefreshExecutor-0] com.prasad.apigateway.util.JwtService : Entry into GatewayFilter method
2023-09-24T22:14:39.685+05:30 INFO 16200 --- [DiscoveryClient-CacheRefreshExecutor-0] com.prasad.apigateway.util.JwtService : Entry into GatewayFilter method
2023-09-24T22:15:09.697+05:30 INFO 16200 --- [DiscoveryClient-CacheRefreshExecutor-0] com.prasad.apigateway.util.JwtService : Entry into GatewayFilter method
2023-09-24T22:15:09.698+05:30 INFO 16200 --- [DiscoveryClient-CacheRefreshExecutor-0] com.prasad.apigateway.util.JwtService : Entry into GatewayFilter method
2023-09-24T22:15:21.610+05:30 INFO 13876 --- [SpringApplicationShutdownHook] o.s.c.n.e.s.EurekaServiceRegistry : Unregistering application CUSTOMER-SERVICE with eureka with status DOWN
2023-09-24T22:15:21.610+05:30 INFO 13876 --- [SpringApplicationShutdownHook] com.netflix.discovery.DiscoveryClient : Saw local status change event StatusChangeEvent [timestamp=1695573921610, current=DOWN, previous=UP]
2023-09-24T22:15:21.610+05:30 INFO 13876 --- [DiscoveryClient-InstanceInfoReplicator-0] com.netflix.discovery.DiscoveryClient : DiscoveryClient_CUSTOMER-SERVICE/MSI:customer-service:8082: registering service...
2023-09-24T22:15:21.618+05:30 INFO 13876 --- [DiscoveryClient-InstanceInfoReplicator-0] com.netflix.discovery.DiscoveryClient : DiscoveryClient_CUSTOMER-SERVICE/MSI:customer-service:8082 - registration status: 204
2023-09-24T22:15:21.634+05:30 INFO 13876 --- [SpringApplicationShutdownHook] o.a.k.clients.producer.KafkaProducer : [Producer clientId=producer-1] Closing the Kafka producer with timeoutMillis = 30000 ms.
2023-09-24T22:15:21.639+05:30 INFO 13876 --- [SpringApplicationShutdownHook] o.apache.kafka.common.metrics.Metrics : Metrics scheduler closed
2023-09-24T22:15:21.639+05:30 INFO 13876 --- [SpringApplicationShutdownHook] o.apache.kafka.common.metrics.Metrics : Closing reporter org.apache.kafka.common.metrics.JmxReporter
2023-09-24T22:15:21.639+05:30 INFO 13876 --- [SpringApplicationShutdownHook] o.apache.kafka.common.metrics.Metrics : Metrics reporters closed
2023-09-24T22:15:21.640+05:30 INFO 13876 --- [SpringApplicationShutdownHook] o.a.kafka.common.utils.AppInfoParser : App info kafka.producer for producer-1 unregistered
2023-09-24T22:15:21.647+05:30 INFO 13876 --- [SpringApplicationShutdownHook] j.LocalContainerEntityManagerFactoryBean : Closing JPA EntityManagerFactory for persistence unit 'default'
2023-09-24T22:15:21.844+05:30 INFO 13876 --- [SpringApplicationShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown initiated...
2023-09-24T22:15:21.856+05:30 INFO 13876 --- [SpringApplicationShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown completed.
2023-09-24T22:15:21.856+05:30 INFO 13876 --- [SpringApplicationShutdownHook] com.netflix.discovery.DiscoveryClient : Shutting down DiscoveryClient ...
2023-09-24T22:15:24.873+05:30 INFO 13876 --- [SpringApplicationShutdownHook] com.netflix.discovery.DiscoveryClient : Unregistering ...
2023-09-24T22:15:24.879+05:30 INFO 13876 --- [SpringApplicationShutdownHook] com.netflix.discovery.DiscoveryClient : DiscoveryClient_CUSTOMER-SERVICE/MSI:customer-service:8082 - deregister status: 200
2023-09-24T22:15:24.883+05:30 INFO 13876 --- [SpringApplicationShutdownHook] com.netflix.discovery.DiscoveryClient : Completed shut down of DiscoveryClient
2023-09-24T22:15:26.723+05:30 INFO 8944 --- [main] c.p.c.CustomerServiceApplication : Starting CustomerServiceApplication using Java 17.0.8 with PID 8944 (C:\Users\prasa\Documents\Project\springboot-microservice-hotel-management\customer-service\customer-service\target\classes started by prasa in C:\Users\prasa\Documents\Project\springboot-microservice-hotel-management\customer-service\customer-service)
2023-09-24T22:15:26.725+05:30 INFO 8944 --- [main] c.p.c.CustomerServiceApplication : No active profile set, falling back to 1 default profile: "default"
2023-09-24T22:15:27.670+05:30 INFO 8944 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2023-09-24T22:15:27.844+05:30 INFO 8944 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 162 ms. Found 1 JPA repository interfaces.
2023-09-24T22:15:28.188+05:30 INFO 8944 --- [main] o.s.cloud.context.scope.GenericScope : BeanFactory id=bb436bb8-58c8-37ab-a29c-618127d56a8a
2023-09-24T22:15:28.773+05:30 INFO 8944 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8082 (http)
2023-09-24T22:15:28.800+05:30 INFO 8944 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2023-09-24T22:15:28.801+05:30 INFO 8944 --- [main] o.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/10.1.12]
2023-09-24T22:15:28.997+05:30 INFO 8944 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2023-09-24T22:15:28.998+05:30 INFO 8944 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 2207 ms
2023-09-24T22:15:29.043+05:30 INFO 8944 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting...
2023-09-24T22:15:29.289+05:30 INFO 8944 --- [main] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Added connection conn0: url=jdbc:h2:mem:userdb user=SA
2023-09-24T22:15:29.290+05:30 INFO 8944 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Start completed.
2023-09-24T22:15:29.299+05:30 INFO 8944 --- [main] o.s.b.a.h2.H2ConsoleAutoConfiguration : H2 console available at '/h2-console'. Database available at 'jdbc:h2:mem:userdb'
2023-09-24T22:15:29.541+05:30 INFO 8944 --- [main] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [name: default]
2023-09-24T22:15:29.646+05:30 INFO 8944 --- [main] org.hibernate.Version : HHH000412: Hibernate ORM core version 6.2.7.Final
2023-09-24T22:15:29.650+05:30 INFO 8944 --- [main] org.hibernate.cfg.Environment : HHH000406: Using bytecode reflection optimizer
2023-09-24T22:15:29.922+05:30 INFO 8944 --- [main] o.h.b.i.BytecodeProviderInitiator : HHH000021: Bytecode provider name : bytebuddy
2023-09-24T22:15:30.094+05:30 INFO 8944 --- [main] o.s.o.j.p.SpringPersistenceUnitInfo : No LoadTimeWeaver setup: ignoring JPA class transformer
2023-09-24T22:15:30.328+05:30 INFO 8944 --- [main] o.h.b.i.BytecodeProviderInitiator : HHH000021: Bytecode provider name : bytebuddy
2023-09-24T22:15:30.891+05:30 INFO 8944 --- [main] o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
2023-09-24T22:15:30.924+05:30 INFO 8944 --- [main] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default'
2023-09-24T22:15:31.518+05:30 WARN 8944 --- [main] JpaBaseConfiguration$JpaWebConfiguration : spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning
2023-09-24T22:15:31.623+05:30 INFO 8944 --- [main] o.s.s.web.DefaultSecurityFilterChain : Will secure any request with [org.springframework.security.web.session.DisableEncodeUrlFilter@5fdff4f1, org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@117be84a, org.springframework.security.web.context.SecurityContextHolderFilter@3fe59f84, org.springframework.security.web.header.HeaderWriterFilter@28721794, org.springframework.security.web.authentication.logout.LogoutFilter@77430c79, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@373c8f35, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@32f2de5c, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@140fa482, org.springframework.security.web.session.SessionManagementFilter@2f650dae, org.springframework.security.web.access.ExceptionTranslationFilter@5f14eb51, org.springframework.security.web.access.intercept.AuthorizationFilter@5643052d]
2023-09-24T22:15:33.198+05:30 INFO 8944 --- [main] DiscoveryClientOptionalArgsConfiguration : Eureka HTTP Client uses RestTemplate.
2023-09-24T22:15:33.397+05:30 WARN 8944 --- [main] iguration$LoadBalancerCaffeineWarnLogger : Spring Cloud LoadBalancer is currently working with the default cache. While this cache implementation is useful for development and tests, it's recommended to use Caffeine cache in production.You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath.
2023-09-24T22:15:33.434+05:30 INFO 8944 --- [main] o.s.c.n.eureka.InstanceInfoFactory : Setting initial instance status as: STARTING
2023-09-24T22:15:33.551+05:30 INFO 8944 --- [main] com.netflix.discovery.DiscoveryClient : Initializing Eureka in region us-east-1
2023-09-24T22:15:33.557+05:30 INFO 8944 --- [main] c.n.d.s.r.aws.ConfigClusterResolver : Resolving eureka endpoints via configuration
2023-09-24T22:15:33.588+05:30 INFO 8944 --- [main] com.netflix.discovery.DiscoveryClient : Disable delta property : false
2023-09-24T22:15:33.588+05:30 INFO 8944 --- [main] com.netflix.discovery.DiscoveryClient : Single vip registry refresh property : null
2023-09-24T22:15:33.588+05:30 INFO 8944 --- [main] com.netflix.discovery.DiscoveryClient : Force full registry fetch : false
2023-09-24T22:15:33.588+05:30 INFO 8944 --- [main] com.netflix.discovery.DiscoveryClient : Application is null : false
2023-09-24T22:15:33.588+05:30 INFO 8944 --- [main] com.netflix.discovery.DiscoveryClient : Registered Applications size is zero : true
2023-09-24T22:15:33.588+05:30 INFO 8944 --- [main] com.netflix.discovery.DiscoveryClient : Application version is -1: true
2023-09-24T22:15:33.589+05:30 INFO 8944 --- [main] com.netflix.discovery.DiscoveryClient : Getting all instance registry info from the eureka server
2023-09-24T22:15:34.249+05:30 INFO 8944 --- [main] com.netflix.discovery.DiscoveryClient : The response status is 200
2023-09-24T22:15:34.250+05:30 INFO 8944 --- [main] com.netflix.discovery.DiscoveryClient : Starting heartbeat executor: renew interval is: 30
2023-09-24T22:15:34.253+05:30 INFO 8944 --- [main] c.n.discovery.InstanceInfoReplicator : InstanceInfoReplicator onDemand update allowed rate per min is 4
2023-09-24T22:15:34.257+05:30 INFO 8944 --- [main] com.netflix.discovery.DiscoveryClient : Discovery Client initialized at timestamp 1695573934255 with initial instances count: 0
2023-09-24T22:15:34.259+05:30 INFO 8944 --- [main] o.s.c.n.e.s.EurekaServiceRegistry : Registering application CUSTOMER-SERVICE with eureka with status UP
2023-09-24T22:15:34.260+05:30 INFO 8944 --- [main] com.netflix.discovery.DiscoveryClient : Saw local status change event StatusChangeEvent [timestamp=1695573934260, current=UP, previous=STARTING]
2023-09-24T22:15:34.261+05:30 INFO 8944 --- [DiscoveryClient-InstanceInfoReplicator-0] com.netflix.discovery.DiscoveryClient : DiscoveryClient_CUSTOMER-SERVICE/MSI:customer-service:8082: registering service...
2023-09-24T22:15:34.286+05:30 INFO 8944 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8082 (http) with context path ''
2023-09-24T22:15:34.287+05:30 INFO 8944 --- [main] .s.c.n.e.s.EurekaAutoServiceRegistration : Updating port to 8082
2023-09-24T22:15:34.363+05:30 INFO 8944 --- [main] c.p.c.CustomerServiceApplication : Started CustomerServiceApplication in 8.129 seconds (process running for 8.504)
2023-09-24T22:15:34.400+05:30 INFO 8944 --- [DiscoveryClient-InstanceInfoReplicator-0] com.netflix.discovery.DiscoveryClient : DiscoveryClient_CUSTOMER-SERVICE/MSI:customer-service:8082 - registration status: 204
2023-09-24T22:15:34.402+05:30 INFO 15556 --- [DiscoveryClient-HeartbeatExecutor-0] com.netflix.discovery.DiscoveryClient : DiscoveryClient_PAYMENT-SERVICE/MSI:payment-service:8085 - Re-registering apps/PAYMENT-SERVICE
2023-09-24T22:15:34.402+05:30 INFO 15556 --- [DiscoveryClient-HeartbeatExecutor-0] com.netflix.discovery.DiscoveryClient : DiscoveryClient_PAYMENT-SERVICE/MSI:payment-service:8085: registering service...
2023-09-24T22:15:34.408+05:30 INFO 15556 --- [DiscoveryClient-HeartbeatExecutor-0] com.netflix.discovery.DiscoveryClient : DiscoveryClient_PAYMENT-SERVICE/MSI:payment-service:8085 - registration status: 204
2023-09-24T22:15:38.854+05:30 INFO 21916 --- [DiscoveryClient-CacheRefreshExecutor-0] c.n.d.s.t.d.RedirectingEurekaHttpClient : Request execution error. endpoint=DefaultEndpoint{ serviceUrl='http://localhost:8080/eureka/} exception=I/O error on GET request for "http://localhost:8080/eureka/apps/delta": Connect to http://localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused: no further information stacktrace=org.springframework.web.client.ResourceAccessException: I/O error on GET request for "http://localhost:8080/eureka/apps/delta": Connect to http://localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused: no further information
at org.springframework.web.client.RestTemplate.createResourceAccessException(RestTemplate.java:888)
at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:868)
at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:764)
at org.springframework.web.client.RestTemplate.exchange(RestTemplate.java:646)
at org.springframework.cloud.netflix.eureka.http.RestTemplateEurekaHttpClient.getApplicationsInternal(RestTemplateEurekaHttpClient.java:149)
at org.springframework.cloud.netflix.eureka.http.RestTemplateEurekaHttpClient.getDelta(RestTemplateEurekaHttpClient.java:159)
at com.netflix.discovery.shared.transport.decorator.EurekaHttpClientDecorator$7.execute(EurekaHttpClientDecorator.java:152)
at com.netflix.discovery.shared.transport.decorator.RedirectingEurekaHttpClient.execute(RedirectingEurekaHttpClient.java:91)
at com.netflix.discovery.shared.transport.decorator.EurekaHttpClientDecorator.getDelta(EurekaHttpClientDecorator.java:149)
at com.netflix.discovery.shared.transport.decorator.EurekaHttpClientDecorator$7.execute(EurekaHttpClientDecorator.java:152)
at com.netflix.discovery.shared.transport.decorator.RetryableEurekaHttpClient.execute(RetryableEurekaHttpClient.java:120)
at com.netflix.discovery.shared.transport.decorator.EurekaHttpClientDecorator.getDelta(EurekaHttpClientDecorator.java:149)
at com.netflix.discovery.shared.transport.decorator.EurekaHttpClientDecorator$7.execute(EurekaHttpClientDecorator.java:152)
at com.netflix.discovery.shared.transport.decorator.SessionedEurekaHttpClient.execute(SessionedEurekaHttpClient.java:77)
at com.netflix.discovery.shared.transport.decorator.EurekaHttpClientDecorator.getDelta(EurekaHttpClientDecorator.java:149)
at com.netflix.discovery.DiscoveryClient.getAndUpdateDelta(DiscoveryClient.java:1079)
at com.netflix.discovery.DiscoveryClient.fetchRegistry(DiscoveryClient.java:960)
at com.netflix.discovery.DiscoveryClient.refreshRegistry(DiscoveryClient.java:1475)
at com.netflix.discovery.DiscoveryClient$CacheRefreshThread.run(DiscoveryClient.java:1442)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:833)
Caused by: org.apache.hc.client5.http.HttpHostConnectException: Connect to http://localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused: no further information
at java.base/sun.nio.ch.Net.pollConnect(Native Method)
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
at java.base/java.net.Socket.connect(Socket.java:633)
at org.apache.hc.client5.http.socket.PlainConnectionSocketFactory.lambda$connectSocket$0(PlainConnectionSocketFactory.java:85)
at java.base/java.security.AccessController.doPrivileged(AccessController.java:569)
at org.apache.hc.client5.http.socket.PlainConnectionSocketFactory.connectSocket(PlainConnectionSocketFactory.java:84)
at org.apache.hc.client5.http.socket.ConnectionSocketFactory.connectSocket(ConnectionSocketFactory.java:113)
at org.apache.hc.client5.http.impl.io.DefaultHttpClientConnectionOperator.connect(DefaultHttpClientConnectionOperator.java:181)
at org.apache.hc.client5.http.impl.io.PoolingHttpClientConnectionManager.connect(PoolingHttpClientConnectionManager.java:447)
at org.apache.hc.client5.http.impl.classic.InternalExecRuntime.connectEndpoint(InternalExecRuntime.java:162)
at org.apache.hc.client5.http.impl.classic.InternalExecRuntime.connectEndpoint(InternalExecRuntime.java:172)
at org.apache.hc.client5.http.impl.classic.ConnectExec.execute(ConnectExec.java:142)
at org.apache.hc.client5.http.impl.classic.ExecChainElement.execute(ExecChainElement.java:51)
at org.apache.hc.client5.http.impl.classic.ProtocolExec.execute(ProtocolExec.java:192)
at org.apache.hc.client5.http.impl.classic.ExecChainElement.execute(ExecChainElement.java:51)
at org.apache.hc.client5.http.impl.classic.HttpRequestRetryExec.execute(HttpRequestRetryExec.java:96)
at org.apache.hc.client5.http.impl.classic.ExecChainElement.execute(ExecChainElement.java:51)
at org.apache.hc.client5.http.impl.classic.ContentCompressionExec.execute(ContentCompressionExec.java:152)
at org.apache.hc.client5.http.impl.classic.ExecChainElement.execute(ExecChainElement.java:51)
at org.apache.hc.client5.http.impl.classic.RedirectExec.execute(RedirectExec.java:115)
at org.apache.hc.client5.http.impl.classic.ExecChainElement.execute(ExecChainElement.java:51)
at org.apache.hc.client5.http.impl.classic.InternalHttpClient.doExecute(InternalHttpClient.java:170)
at org.apache.hc.client5.http.impl.classic.CloseableHttpClient.execute(CloseableHttpClient.java:106)
at org.apache.hc.client5.http.impl.classic.CloseableHttpClient.execute(CloseableHttpClient.java:55)
at org.springframework.http.client.HttpComponentsClientHttpRequest.executeInternal(HttpComponentsClientHttpRequest.java:93)
at org.springframework.http.client.AbstractBufferingClientHttpRequest.executeInternal(AbstractBufferingClientHttpRequest.java:48)
at org.springframework.http.client.AbstractClientHttpRequest.execute(AbstractClientHttpRequest.java:66)
at org.springframework.http.client.InterceptingClientHttpRequest$InterceptingRequestExecution.execute(InterceptingClientHttpRequest.java:101)
at org.springframework.cloud.netflix.eureka.http.RestTemplateTransportClientFactory.lambda$restTemplate$0(RestTemplateTransportClientFactory.java:143)
at org.springframework.http.client.InterceptingClientHttpRequest$InterceptingRequestExecution.execute(InterceptingClientHttpRequest.java:87)
at org.springframework.http.client.InterceptingClientHttpRequest.executeInternal(InterceptingClientHttpRequest.java:71)
at org.springframework.http.client.AbstractBufferingClientHttpRequest.executeInternal(AbstractBufferingClientHttpRequest.java:48)
at org.springframework.http.client.AbstractClientHttpRequest.execute(AbstractClientHttpRequest.java:66)
at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:862)
... 22 more
2023-09-24T22:15:38.854+05:30 INFO 21916 --- [DiscoveryClient-HeartbeatExecutor-0] c.n.d.s.t.d.RedirectingEurekaHttpClient : Request execution error. endpoint=DefaultEndpoint{ serviceUrl='http://localhost:8080/eureka/} exception=I/O error on PUT request for "http://localhost:8080/eureka/apps/NOTIFICATION-SERVICE/MSI:notification-service:8086": Connect to http://localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused: no further information stacktrace=org.springframework.web.client.ResourceAccessException: I/O error on PUT request for "http://localhost:8080/eureka/apps/NOTIFICATION-SERVICE/MSI:notification-service:8086": Connect to http://localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused: no further information
at org.springframework.web.client.RestTemplate.createResourceAccessException(RestTemplate.java:888)
at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:868)
at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:764)
at org.springframework.web.client.RestTemplate.exchange(RestTemplate.java:646)
at org.springframework.cloud.netflix.eureka.http.RestTemplateEurekaHttpClient.sendHeartBeat(RestTemplateEurekaHttpClient.java:103)
at com.netflix.discovery.shared.transport.decorator.EurekaHttpClientDecorator$3.execute(EurekaHttpClientDecorator.java:92)
at com.netflix.discovery.shared.transport.decorator.RedirectingEurekaHttpClient.execute(RedirectingEurekaHttpClient.java:91)
at com.netflix.discovery.shared.transport.decorator.EurekaHttpClientDecorator.sendHeartBeat(EurekaHttpClientDecorator.java:89)
at com.netflix.discovery.shared.transport.decorator.EurekaHttpClientDecorator$3.execute(EurekaHttpClientDecorator.java:92)
at com.netflix.discovery.shared.transport.decorator.RetryableEurekaHttpClient.execute(RetryableEurekaHttpClient.java:120)
at com.netflix.discovery.shared.transport.decorator.EurekaHttpClientDecorator.sendHeartBeat(EurekaHttpClientDecorator.java:89)
at com.netflix.discovery.shared.transport.decorator.EurekaHttpClientDecorator$3.execute(EurekaHttpClientDecorator.java:92)
at com.netflix.discovery.shared.transport.decorator.SessionedEurekaHttpClient.execute(SessionedEurekaHttpClient.java:77)
at com.netflix.discovery.shared.transport.decorator.EurekaHttpClientDecorator.sendHeartBeat(EurekaHttpClientDecorator.java:89)
at com.netflix.discovery.DiscoveryClient.renew(DiscoveryClient.java:837)
at com.netflix.discovery.DiscoveryClient$HeartbeatThread.run(DiscoveryClient.java:1401)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:833)
Caused by: org.apache.hc.client5.http.HttpHostConnectException: Connect to http://localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused: no further information
at java.base/sun.nio.ch.Net.pollConnect(Native Method)
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
at java.base/java.net.Socket.connect(Socket.java:633)
at org.apache.hc.client5.http.socket.PlainConnectionSocketFactory.lambda$connectSocket$0(PlainConnectionSocketFactory.java:85)
at java.base/java.security.AccessController.doPrivileged(AccessController.java:569)
at org.apache.hc.client5.http.socket.PlainConnectionSocketFactory.connectSocket(PlainConnectionSocketFactory.java:84)
at org.apache.hc.client5.http.socket.ConnectionSocketFactory.connectSocket(ConnectionSocketFactory.java:113)
at org.apache.hc.client5.http.impl.io.DefaultHttpClientConnectionOperator.connect(DefaultHttpClientConnectionOperator.java:181)
at org.apache.hc.client5.http.impl.io.PoolingHttpClientConnectionManager.connect(PoolingHttpClientConnectionManager.java:447)
at org.apache.hc.client5.http.impl.classic.InternalExecRuntime.connectEndpoint(InternalExecRuntime.java:162)
at org.apache.hc.client5.http.impl.classic.InternalExecRuntime.connectEndpoint(InternalExecRuntime.java:172)
at org.apache.hc.client5.http.impl.classic.ConnectExec.execute(ConnectExec.java:142)
at org.apache.hc.client5.http.impl.classic.ExecChainElement.execute(ExecChainElement.java:51)
at org.apache.hc.client5.http.impl.classic.ProtocolExec.execute(ProtocolExec.java:192)
at org.apache.hc.client5.http.impl.classic.ExecChainElement.execute(ExecChainElement.java:51)
at org.apache.hc.client5.http.impl.classic.HttpRequestRetryExec.execute(HttpRequestRetryExec.java:96)
at org.apache.hc.client5.http.impl.classic.ExecChainElement.execute(ExecChainElement.java:51)
at org.apache.hc.client5.http.impl.classic.ContentCompressionExec.execute(ContentCompressionExec.java:152)
at org.apache.hc.client5.http.impl.classic.ExecChainElement.execute(ExecChainElement.java:51)
at org.apache.hc.client5.http.impl.classic.RedirectExec.execute(RedirectExec.java:115)
at org.apache.hc.client5.http.impl.classic.ExecChainElement.execute(ExecChainElement.java:51)
at org.apache.hc.client5.http.impl.classic.InternalHttpClient.doExecute(InternalHttpClient.java:170)
at org.apache.hc.client5.http.impl.classic.CloseableHttpClient.execute(CloseableHttpClient.java:106)
at org.apache.hc.client5.http.impl.classic.CloseableHttpClient.execute(CloseableHttpClient.java:55)
at org.springframework.http.client.HttpComponentsClientHttpRequest.executeInternal(HttpComponentsClientHttpRequest.java:93)
at org.springframework.http.client.AbstractBufferingClientHttpRequest.executeInternal(AbstractBufferingClientHttpRequest.java:48)
at org.springframework.http.client.AbstractClientHttpRequest.execute(AbstractClientHttpRequest.java:66)
at org.springframework.http.client.InterceptingClientHttpRequest$InterceptingRequestExecution.execute(InterceptingClientHttpRequest.java:101)
at org.springframework.cloud.netflix.eureka.http.RestTemplateTransportClientFactory.lambda$restTemplate$0(RestTemplateTransportClientFactory.java:143)
at org.springframework.http.client.InterceptingClientHttpRequest$InterceptingRequestExecution.execute(InterceptingClientHttpRequest.java:87)
at org.springframework.http.client.InterceptingClientHttpRequest.executeInternal(InterceptingClientHttpRequest.java:71)
at org.springframework.http.client.AbstractBufferingClientHttpRequest.executeInternal(AbstractBufferingClientHttpRequest.java:48)
at org.springframework.http.client.AbstractClientHttpRequest.execute(AbstractClientHttpRequest.java:66)