Release v1.0.7 improves route reconciliation performance via configurable max workers for route controller instances. Also improves debugging by enabling correlation of log lines using unique reconciliation IDs. Finally, includes documentation improvements and Helm chart enhancements.
What's Changed
- Add Trace IDs and metadata to better correlate log lines for a single reconciliation (#648)
- Add DISABLE_TAGGING_SERVICE_API environment variable to helm chart (#655)
- Add
PodDisruptionBudget
andtopologySpreadConstraints
to helm chart (#651) - Add configurable max workers for route controller instances (#672)
Documentation Improvements
Full Change log: v1.0.6...v1.0.7
Log Lines
Example new log lines including trace ID, start with reconcile_start
and end with reconcile_end
:
2024-11-01T15:30:40.995-0700 INFO controller.route gwlog/metadata.go:76 reconcile_start {"type": "route", "name": "drift-5-nwppj20ozc", "namespace": "e2e-test", "trace_id": "1d3cb3c5-c8e1-4c2f-b313-4a19c6f85e6d"}
2024-11-01T15:30:40.995-0700 INFO controller.route controllers/route_controller.go:275 Found aws-vpc-lattice for Route for drift-5-nwppj20ozc, e2e-test {"trace_id": "1d3cb3c5-c8e1-4c2f-b313-4a19c6f85e6d"}
2024-11-01T15:30:40.995-0700 INFO controller.route controllers/route_controller.go:190 reconcile, deleting {"name": "drift-5-nwppj20ozc", "trace_id": "1d3cb3c5-c8e1-4c2f-b313-4a19c6f85e6d"}
2024-11-01T15:30:40.995-0700 INFO controller.route gateway/model_build_lattice_service.go:140 No custom-domain-name for route drift-5-nwppj20ozc-e2e-test {"trace_id": "1d3cb3c5-c8e1-4c2f-b313-4a19c6f85e6d"}
2024-11-01T15:30:41.495-0700 INFO controller.route lattice/service_manager.go:353 Success DeleteService svc-012345012345012345 {"trace_id": "1d3cb3c5-c8e1-4c2f-b313-4a19c6f85e6d"}
2024-11-01T15:30:41.524-0700 INFO controller.route controllers/route_controller.go:202 reconciled {"name": "drift-5-nwppj20ozc", "trace_id": "1d3cb3c5-c8e1-4c2f-b313-4a19c6f85e6d"}
2024-11-01T15:30:41.556-0700 INFO controller.route gwlog/metadata.go:82 reconcile_end {"type": "route", "name": "drift-5-nwppj20ozc", "namespace": "e2e-test", "trace_id": "1d3cb3c5-c8e1-4c2f-b313-4a19c6f85e6d"}