Installation Issue with Airbyte 1.2.0 on Linux VM using abctl

Summary

User successfully installed Airbyte 1.2.0 on a Linux VM using abctl, but is unable to create sources or destinations. Logs indicate version mismatches and null pointer exceptions related to workspace IDs.


Question

Hello everyone,

I’m trying to install Airbyte 1.2.0 on a Linux VM using abctl.

The installation appears successful, and Airbyte is running without any error logs from the pods. The PostgreSQL database seems properly set up, with all the expected schemas and tables created. The only record I’ve seen added so far is the one for the workspace.

global:
  env_vars:
    HTTP_PROXY: "<http://10.0.0.0:10>"
    HTTPS_PROXY: "<http://10.0.0.0:10>"
    NO_PROXY: "10.0.0.0/8,localhost,127.0.0.1,.domain.fr,.cluster.local,.local,.svc,airbyte-*"
    http_proxy: "<http://10.0.0.0:10>"
    https_proxy: "<http://10.0.0.0:10>"
    no_proxy: "10.0.0.0/8,localhost,127.0.0.1,.domain.fr,.cluster.local,.local,.svc,airbyte-*"
    JAVA_TOOL_OPTIONS: "-Dhttp.proxyHost=10.0.0.0 -Dhttp.proxyPort=10 -Dhttps.proxyHost=10.0.0.0 -Dhttps.proxyPort=10 -Dhttp.nonProxyHosts=10.*|localhost|127.0.0.1|*.internal|*.cluster.local|*.local|*.svc|airbyte-*"
    
webapp:
  image:
    repository: registry/airbyte-webapp-no-ipv6
    tag: 1.2.0```
```abctl local install -v --values=./values.yaml --host=domain.fr --port=8080 --insecure-cookies --no-browser --low-resource-mode```

However, I’m unable to create any sources or destinations.


server pod logs :
```2024-11-30 16:54:08,745 [main]  WARN    o.j.t.JooqLogger(lambda$warn$7):461 - Version mismatch         : Database version is older than what dialect POSTGRES supports: 13.16. Consider <https://www.jooq.org/download/support-matrix> to see what jOOQ version and edition supports which RDBMS versions.
2024-11-30 16:54:08,829 [main]  INFO    i.a.d.c.DatabaseAvailabilityCheck(check):57 - Database available.
2024-11-30 16:54:09,021 [main]  INFO    o.f.c.i.l.s.Slf4jLog(info):37 - Database: jdbc:<postgresql://airbyte-db-svc:5432/db-airbyte> (PostgreSQL 13.16)
2024-11-30 16:54:09,497 [main]  INFO    i.a.d.c.DatabaseMigrationCheck(check):46 - Current database migration version 1.1.0.005.
2024-11-30 16:54:09,502 [main]  INFO    i.a.d.c.DatabaseMigrationCheck(check):47 - Minimum Flyway version required 0.35.15.001.
2024-11-30 16:54:09,503 [main]  INFO    i.a.d.c.DatabaseMigrationCheck(check):62 - Verified that database has been migrated to the required minimum version 0.35.15.001.
2024-11-30 16:54:09,503 [main]  INFO    i.a.s.DatabaseEventListener(onApplicationEvent):45 - Checking jobs database flyway migration version...
2024-11-30 16:54:09,504 [main]  WARN    i.a.d.c.DatabaseAvailabilityCheck(check):38 - Waiting for database to become available...
2024-11-30 16:54:09,504 [main]  INFO    i.a.d.c.DatabaseAvailabilityCheck(lambda$isDatabaseConnected$1):75 - Testing airbyte jobs database connection...
2024-11-30 16:54:09,512 [main]  INFO    i.a.d.c.DatabaseAvailabilityCheck(check):57 - Database available.
2024-11-30 16:54:09,575 [main]  INFO    o.f.c.i.l.s.Slf4jLog(info):37 - Database: jdbc:<postgresql://airbyte-db-svc:5432/db-airbyte> (PostgreSQL 13.16)
2024-11-30 16:54:09,706 [main]  INFO    i.a.d.c.DatabaseMigrationCheck(check):46 - Current database migration version 1.1.0.000.
2024-11-30 16:54:09,707 [main]  INFO    i.a.d.c.DatabaseMigrationCheck(check):47 - Minimum Flyway version required 0.40.26.001.
2024-11-30 16:54:09,707 [main]  INFO    i.a.d.c.DatabaseMigrationCheck(check):62 - Verified that database has been migrated to the required minimum version 0.40.26.001.
2024-11-30 16:54:09,716 [main]  INFO    i.m.r.Micronaut(start):101 - Startup completed in 23600ms. Server Running: <http://airbyte-abctl-server-7ff674575f-zzgz5:8001>
2024-11-30 19:44:19,448 [io-executor-thread-6]  INFO    i.a.c.s.RemoteDefinitionsProvider(getRemoteConnectorRegistry):199 - Fetched latest remote definitions (-253858662)
2024-11-30 19:44:32,294 [io-executor-thread-2]  WARN    i.a.c.s.c.JobConverter(getWorkspaceId):403 - Unable to retrieve workspace ID for job null.
java.lang.NullPointerException: null
        at com.google.common.base.Preconditions.checkNotNull(Preconditions.java:904)
        at com.google.common.cache.LocalCache.get(LocalCache.java:4016)
        at com.google.common.cache.LocalCache.getOrLoad(LocalCache.java:4040)
        at com.google.common.cache.LocalCache$LocalLoadingCache.get(LocalCache.java:4989)
        at io.airbyte.persistence.job.WorkspaceHelper.lambda$getWorkspaceForJobId$4(WorkspaceHelper.java:162)
        at io.airbyte.persistence.job.WorkspaceHelper.handleCacheExceptions(WorkspaceHelper.java:231)
        at io.airbyte.persistence.job.WorkspaceHelper.getWorkspaceForJobId(WorkspaceHelper.java:162)
        at io.airbyte.commons.server.converters.JobConverter.getWorkspaceId(JobConverter.java:401)
        at io.airbyte.commons.server.converters.JobConverter.getAttemptLogs(JobConverter.java:320)
        at io.airbyte.commons.server.converters.JobConverter.getSynchronousJobRead(JobConverter.java:349)
        at io.airbyte.commons.server.handlers.ConnectorDefinitionSpecificationHandler.getSourceSpecificationRead(ConnectorDefinitionSpecificationHandler.java:145)
        at io.airbyte.commons.server.handlers.ConnectorDefinitionSpecificationHandler.getSourceDefinitionSpecification(ConnectorDefinitionSpecificationHandler.java:96)
        at io.airbyte.server.apis.SourceDefinitionSpecificationApiController.lambda$getSourceDefinitionSpecification$0(SourceDefinitionSpecificationApiController.java:38)
        at io.airbyte.server.apis.ApiHelper.execute(ApiHelper.kt:29)
        at io.airbyte.server.apis.SourceDefinitionSpecificationApiController.getSourceDefinitionSpecification(SourceDefinitionSpecificationApiController.java:38)
        at io.airbyte.server.apis.$SourceDefinitionSpecificationApiController$Definition$Exec.dispatch(Unknown Source)
        at io.micronaut.context.AbstractExecutableMethodsDefinition$DispatchedExecutableMethod.invokeUnsafe(AbstractExecutableMethodsDefinition.java:461)
        at io.micronaut.context.DefaultBeanContext$BeanContextUnsafeExecutionHandle.invokeUnsafe(DefaultBeanContext.java:4350)
        at io.micronaut.web.router.AbstractRouteMatch.execute(AbstractRouteMatch.java:272)
        at io.micronaut.web.router.DefaultUriRouteMatch.execute(DefaultUriRouteMatch.java:38)
        at io.micronaut.http.server.RouteExecutor.executeRouteAndConvertBody(RouteExecutor.java:498)
        at io.micronaut.http.server.RouteExecutor.lambda$callRoute$5(RouteExecutor.java:475)
        at io.micronaut.core.execution.ExecutionFlow.lambda$async$1(ExecutionFlow.java:87)
        at io.micronaut.core.propagation.PropagatedContext.lambda$wrap$3(PropagatedContext.java:211)
        at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
        at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
        at java.base/java.lang.Thread.run(Thread.java:1583)```
Has anyone encountered this issue before or have any insights on what might be causing this?

Thank you in advance for your help!

<br>

---

This topic has been created from a Slack thread to give it more visibility.
It will be on Read-Only mode here. [Click here](https://airbytehq.slack.com/archives/C021JANJ6TY/p1733008277452879) if you want
to access the original thread.

[Join the conversation on Slack](https://slack.airbyte.com)

<sub>
['airbyte', 'installation', 'abctl', 'postgresql', 'database-issues', 'null-pointer-exception']
</sub>

It produces the same after cleaning (prune) container and volumes
(to get rid of relicas from previous tests)

abctl local install -v --values=./values.yaml --port=8080 --no-browser
every thing looks good.

But when I want to add source or destination(gitlab or postgres):


2024-12-01 18:49:14,706 [main]  INFO    o.j.t.JooqLogger(lambda$info$5):386 -

jOOQ tip of the day: jOOQ offers out of the box functionality for common scenarios related to audit columns: <https://www.jooq.org/doc/latest/manual/code-generation/codegen-advanced/codegen-config-database/codegen-database-forced-types/codegen-database-forced-types-audit/>

2024-12-01 18:49:15,017 [main]  WARN    o.j.t.JooqLogger(lambda$warn$7):461 - Version mismatch         : Database version is older than what dialect POSTGRES supports: 13.16. Consider <https://www.jooq.org/download/support-matrix> to see what jOOQ version and edition supports which RDBMS versions.
2024-12-01 18:49:15,111 [main]  INFO    i.a.d.c.DatabaseAvailabilityCheck(check):57 - Database available.
2024-12-01 18:49:15,337 [main]  INFO    o.f.c.i.l.s.Slf4jLog(info):37 - Database: jdbc:<postgresql://airbyte-db-svc:5432/db-airbyte> (PostgreSQL 13.16)
2024-12-01 18:49:15,690 [main]  INFO    i.a.d.c.DatabaseMigrationCheck(check):46 - Current database migration version 1.1.0.005.
2024-12-01 18:49:15,691 [main]  INFO    i.a.d.c.DatabaseMigrationCheck(check):47 - Minimum Flyway version required 0.35.15.001.
2024-12-01 18:49:15,692 [main]  INFO    i.a.d.c.DatabaseMigrationCheck(check):62 - Verified that database has been migrated to the required minimum version 0.35.15.001.
2024-12-01 18:49:15,692 [main]  INFO    i.a.s.DatabaseEventListener(onApplicationEvent):45 - Checking jobs database flyway migration version...
2024-12-01 18:49:15,693 [main]  WARN    i.a.d.c.DatabaseAvailabilityCheck(check):38 - Waiting for database to become available...
2024-12-01 18:49:15,693 [main]  INFO    i.a.d.c.DatabaseAvailabilityCheck(lambda$isDatabaseConnected$1):75 - Testing airbyte jobs database connection...
2024-12-01 18:49:15,698 [main]  INFO    i.a.d.c.DatabaseAvailabilityCheck(check):57 - Database available.
2024-12-01 18:49:15,717 [main]  INFO    o.f.c.i.l.s.Slf4jLog(info):37 - Database: jdbc:<postgresql://airbyte-db-svc:5432/db-airbyte> (PostgreSQL 13.16)
2024-12-01 18:49:15,788 [main]  INFO    i.a.d.c.DatabaseMigrationCheck(check):46 - Current database migration version 1.1.0.000.
2024-12-01 18:49:15,789 [main]  INFO    i.a.d.c.DatabaseMigrationCheck(check):47 - Minimum Flyway version required 0.29.15.001.
2024-12-01 18:49:15,790 [main]  INFO    i.a.d.c.DatabaseMigrationCheck(check):62 - Verified that database has been migrated to the required minimum version 0.29.15.001.
2024-12-01 18:49:15,803 [main]  INFO    i.m.r.Micronaut(start):101 - Startup completed in 24032ms. Server Running: <http://airbyte-abctl-server-545cbc67d-6rrfl:8001>
2024-12-01 19:02:32,612 [io-executor-thread-6]  INFO    i.a.c.s.RemoteDefinitionsProvider(getRemoteConnectorRegistry):199 - Fetched latest remote definitions (-253858662)
2024-12-01 19:02:36,907 [io-executor-thread-2]  WARN    i.a.c.s.c.JobConverter(getWorkspaceId):403 - Unable to retrieve workspace ID for job null.
java.lang.NullPointerException: null
        at com.google.common.base.Preconditions.checkNotNull(Preconditions.java:904)
        at com.google.common.cache.LocalCache.get(LocalCache.java:4016)
        at com.google.common.cache.LocalCache.getOrLoad(LocalCache.java:4040)
        at com.google.common.cache.LocalCache$LocalLoadingCache.get(LocalCache.java:4989)
        at io.airbyte.persistence.job.WorkspaceHelper.lambda$getWorkspaceForJobId$4(WorkspaceHelper.java:162)
        at io.airbyte.persistence.job.WorkspaceHelper.handleCacheExceptions(WorkspaceHelper.java:231)
        at io.airbyte.persistence.job.WorkspaceHelper.getWorkspaceForJobId(WorkspaceHelper.java:162)
        at io.airbyte.commons.server.converters.JobConverter.getWorkspaceId(JobConverter.java:401)
        at io.airbyte.commons.server.converters.JobConverter.getAttemptLogs(JobConverter.java:320)
        at io.airbyte.commons.server.converters.JobConverter.getSynchronousJobRead(JobConverter.java:349)
        at io.airbyte.commons.server.handlers.ConnectorDefinitionSpecificationHandler.getSourceSpecificationRead(ConnectorDefinitionSpecificationHandler.java:145)
        at io.airbyte.commons.server.handlers.ConnectorDefinitionSpecificationHandler.getSourceDefinitionSpecification(ConnectorDefinitionSpecificationHandler.java:96)
        at io.airbyte.server.apis.SourceDefinitionSpecificationApiController.lambda$getSourceDefinitionSpecification$0(SourceDefinitionSpecificationApiController.java:38)
        at io.airbyte.server.apis.ApiHelper.execute(ApiHelper.kt:29)
        at io.airbyte.server.apis.SourceDefinitionSpecificationApiController.getSourceDefinitionSpecification(SourceDefinitionSpecificationApiController.java:38)
        at io.airbyte.server.apis.$SourceDefinitionSpecificationApiController$Definition$Exec.dispatch(Unknown Source)
        at io.micronaut.context.AbstractExecutableMethodsDefinition$DispatchedExecutableMethod.invokeUnsafe(AbstractExecutableMethodsDefinition.java:461)
        at io.micronaut.context.DefaultBeanContext$BeanContextUnsafeExecutionHandle.invokeUnsafe(DefaultBeanContext.java:4350)
        at io.micronaut.web.router.AbstractRouteMatch.execute(AbstractRouteMatch.java:272)
        at io.micronaut.web.router.DefaultUriRouteMatch.execute(DefaultUriRouteMatch.java:38)
        at io.micronaut.http.server.RouteExecutor.executeRouteAndConvertBody(RouteExecutor.java:498)
        at io.micronaut.http.server.RouteExecutor.lambda$callRoute$5(RouteExecutor.java:475)
        at io.micronaut.core.execution.ExecutionFlow.lambda$async$1(ExecutionFlow.java:87)
        at io.micronaut.core.propagation.PropagatedContext.lambda$wrap$3(PropagatedContext.java:211)
        at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
        at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
        at java.base/java.lang.Thread.run(Thread.java:1583)

2024-12-01 19:03:12,728 [scheduler-executor-thread-1]   INFO    i.a.c.t.s.DefaultTaskQueueMapper(getTaskQueue):31 - Called DefaultTaskQueueMapper getTaskQueue for geography auto```

Worker Logs :

2024-12-01 18:49:01,161 [main]  INFO    i.m.r.Micronaut(start):101 - Startup completed in 56588ms. Server Running: <http://airbyte-abctl-worker-54988fdb57-wb65g:9000>
2024-12-01 18:49:03,731 [Workflow Executor taskQueue="CHECK_CONNECTION", namespace="default": 1]        WARN    i.t.i.r.ReplayWorkflowTaskHandler(failureToWFTResult):287 - Workflow task processing failure. startedEventId=11, WorkflowId=49c81d1e-bd5c-45df-84f8-092b9985a55d, RunId=2732cd4a-33e8-4bfe-8629-947393382bba. If seen continuously the workflow might be stuck.
io.temporal.internal.statemachines.InternalWorkflowTaskException: Failure handling event 4 of type 'EVENT_TYPE_WORKFLOW_TASK_COMPLETED' during replay. {WorkflowTaskStartedEventId=11, CurrentStartedEventId=3}
        at io.temporal.internal.statemachines.WorkflowStateMachines.createEventProcessingException(WorkflowStateMachines.java:425)
        at io.temporal.internal.statemachines.WorkflowStateMachines.handleEventsBatch(WorkflowStateMachines.java:333)
        at io.temporal.internal.statemachines.WorkflowStateMachines.handleEvent(WorkflowStateMachines.java:292)
        at io.temporal.internal.replay.ReplayWorkflowRunTaskHandler.applyServerHistory(ReplayWorkflowRunTaskHandler.java:249)
        at io.temporal.internal.replay.ReplayWorkflowRunTaskHandler.handleWorkflowTaskImpl(ReplayWorkflowRunTaskHandler.java:231)
        at io.temporal.internal.replay.ReplayWorkflowRunTaskHandler.handleWorkflowTask(ReplayWorkflowRunTaskHandler.java:165)
        at io.temporal.internal.replay.ReplayWorkflowTaskHandler.handleWorkflowTaskWithQuery(ReplayWorkflowTaskHandler.java:135)
        at io.temporal.internal.replay.ReplayWorkflowTaskHandler.handleWorkflowTask(ReplayWorkflowTaskHandler.java:100)
        at io.temporal.internal.worker.WorkflowWorker$TaskHandlerImpl.handleTask(WorkflowWorker.java:455)
        at io.temporal.internal.worker.WorkflowWorker$TaskHandlerImpl.handle(WorkflowWorker.java:346)
        at io.temporal.internal.worker.WorkflowWorker$TaskHandlerImpl.handle(WorkflowWorker.java:286)
        at io.temporal.internal.worker.PollTaskExecutor.lambda$process$0(PollTaskExecutor.java:93)
        at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
        at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
        at java.base/java.lang.Thread.run(Thread.java:1583)
Caused by: java.lang.RuntimeException: WorkflowTask: failure executing STARTED->WORKFLOW_TASK_COMPLETED, transition history is [CREATED->WORKFLOW_TASK_SCHEDULED, SCHEDULED->WORKFLOW_TASK_STARTED]
        at io.temporal.internal.statemachines.StateMachine.executeTransition(StateMachine.java:163)
        at io.temporal.internal.statemachines.StateMachine.handleHistoryEvent(StateMachine.java:103)
        at io.temporal.internal.statemachines.EntityStateMachineBase.handleEvent(EntityStateMachineBase.java:84)
        at io.temporal.internal.statemachines.WorkflowStateMachines.handleSingleEvent(WorkflowStateMachines.java:476)
        at io.temporal.internal.statemachines.WorkflowStateMachines.handleEventsBatch(WorkflowStateMachines.java:331)
        ... 13 common frames omitted
Caused by: io.temporal.internal.sync.PotentialDeadlockException: [TMPRL1101] Potential deadlock detected. Workflow thread "workflow-method-49c81d1e-bd5c-45df-84f8-092b9985a55d-2732cd4a-33e8-4bfe-8629-947393382bba" didn't yield control for over a second. {detectionTimestamp=1733078942658, threadDumpTimestamp=1733078942662}

workflow-method-49c81d1e-bd5c-45df-84f8-092b9985a55d-2732cd4a-33e8-4bfe-8629-947393382bba
        at java.base/java.lang.ClassLoader.defineClass1(Native Method)
        at java.base/java.lang.ClassLoader.defineClass(ClassLoader.java:1027)
        at java.base/java.security.SecureClassLoader.defineClass(SecureClassLoader.java:150)
        at java.base/jdk.internal.loader.BuiltinClassLoader.defineClass(BuiltinClassLoader.java:862)
        at java.base/jdk.internal.loader.BuiltinClassLoader.findClassOnClassPathOrNull(BuiltinClassLoader.java:760)
        at java.base/jdk.internal.loader.BuiltinClassLoader.loadClassOrNull(BuiltinClassLoader.java:681)
        at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:639)
        at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188)
        at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526)
        at kotlin.reflect.jvm.internal.impl.descriptors.impl.ModuleDescriptorImpl.setDependencies(ModuleDescriptorImpl.kt:125)
        at kotlin.reflect.jvm.internal.impl.descriptors.impl.ModuleDescriptorImpl.setDependencies(ModuleDescriptorImpl.kt:121)
        at kotlin.reflect.jvm.internal.impl.descriptors.impl.ModuleDescriptorImpl.setDependencies(ModuleDescriptorImpl.kt:117)
        at kotlin.reflect.jvm.internal.impl.load.kotlin.DeserializationComponentsForJava$Companion.createModuleData(DeserializationComponentsForJava.kt:136)
        at kotlin.reflect.jvm.internal.impl.descriptors.runtime.components.RuntimeModuleData$Companion.create(RuntimeModuleData.kt:32)
        at kotlin.reflect.jvm.internal.ModuleByClassLoaderKt.getOrCreateModule(moduleByClassLoader.kt:58)
        at kotlin.reflect.jvm.internal.KDeclarationContainerImpl$Data$moduleData$2.invoke(KDeclarationContainerImpl.kt:38)
        at kotlin.reflect.jvm.internal.KDeclarationContainerImpl$Data$moduleData$2.invoke(KDeclarationContainerImpl.kt:37)
        at kotlin.reflect.jvm.internal.ReflectProperties$LazySoftVal.invoke(ReflectProperties.java:70)
        at kotlin.reflect.jvm.internal.ReflectProperties$Val.getValue(ReflectProperties.java:32)
        at kotlin.reflect.jvm.internal.KDeclarationContainerImpl$Data.getModuleData(KDeclarationContainerImpl.kt:37)
        at kotlin.reflect.jvm.internal.KClassImpl$Data$descriptor$2.invoke(KClassImpl.kt:55)
        at kotlin.reflect.jvm.internal.KClassImpl$Data$descriptor$2.invoke(KClassImpl.kt:53)
        at kotlin.reflect.jvm.internal.ReflectProperties$LazySoftVal.invoke(ReflectProperties.java:70)
        at kotlin.reflect.jvm.internal.ReflectProperties$Val.getValue(ReflectProperties.java:32)
        at kotlin.reflect.jvm.internal.KClassImpl$Data.getDescriptor(KClassImpl.kt:53)```
        at kotlin.reflect.jvm.internal.KClassImpl$Data$nestedClasses$2.invoke(KClassImpl.kt:110)
        at kotlin.reflect.jvm.internal.ReflectProperties$LazySoftVal.invoke(ReflectProperties.java:70)
        at kotlin.reflect.jvm.internal.ReflectProperties$Val.getValue(ReflectProperties.java:32)
        at kotlin.reflect.jvm.internal.KClassImpl$Data.getNestedClasses(KClassImpl.kt:110)
        at kotlin.reflect.jvm.internal.KClassImpl.getNestedClasses(KClassImpl.kt:251)
        at kotlin.reflect.full.KClasses.getCompanionObject(KClasses.kt:47)
        at kotlin.reflect.jvm.ReflectJvmMapping.getKotlinFunction(ReflectJvmMapping.kt:135)
        at com.fasterxml.jackson.module.kotlin.ReflectionCache.kotlinFromJava(ReflectionCache.kt:73)
        at com.fasterxml.jackson.module.kotlin.ReflectionCache.findKotlinParameter(ReflectionCache.kt:154)
        at com.fasterxml.jackson.module.kotlin.KotlinNamesAnnotationIntrospector.findKotlinParameterName(KotlinNamesAnnotationIntrospector.kt:130)
        at com.fasterxml.jackson.module.kotlin.KotlinNamesAnnotationIntrospector.findImplicitPropertyName(KotlinNamesAnnotationIntrospector.kt:72)
        at com.fasterxml.jackson.databind.introspect.AnnotationIntrospectorPair.findImplicitPropertyName(AnnotationIntrospectorPair.java:463)
        at com.fasterxml.jackson.databind.introspect.POJOPropertiesCollector._addCreatorParam(POJOPropertiesCollector.java:743)
        at com.fasterxml.jackson.databind.introspect.POJOPropertiesCollector._addCreatorParam(POJOPropertiesCollector.java:732)
        at com.fasterxml.jackson.databind.introspect.POJOPropertiesCollector._addCreators(POJOPropertiesCollector.java:689)
        at com.fasterxml.jackson.databind.introspect.POJOPropertiesCollector.collectAll(POJOPropertiesCollector.java:485)
        at com.fasterxml.jackson.databind.introspect.POJOPropertiesCollector.getPropertyMap(POJOPropertiesCollector.java:413)
        at com.fasterxml.jackson.databind.introspect.POJOPropertiesCollector.getProperties(POJOPropertiesCollector.java:255)
        at com.fasterxml.jackson.databind.introspect.BasicBeanDescription._properties(BasicBeanDescription.java:164)
        at com.fasterxml.jackson.databind.introspect.BasicBeanDescription.findProperties(BasicBeanDescription.java:239)
        at com.fasterxml.jackson.databind.deser.BasicDeserializerFactory._findCreatorsFromProperties(BasicDeserializerFactory.java:317)
        at com.fasterxml.jackson.databind.deser.BasicDeserializerFactory._constructDefaultValueInstantiator(BasicDeserializerFactory.java:271)
        at com.fasterxml.jackson.databind.deser.BasicDeserializerFactory.createEnumDeserializer(BasicDeserializerFactory.java:1691)
        at com.fasterxml.jackson.databind.deser.DeserializerCache._createDeserializer2(DeserializerCache.java:407)
        at com.fasterxml.jackson.databind.deser.DeserializerCache._createDeserializer(DeserializerCache.java:394)
        at com.fasterxml.jackson.databind.deser.DeserializerCache._createAndCache2(DeserializerCache.java:295)
        at com.fasterxml.jackson.databind.deser.DeserializerCache._createAndCacheValueDeserializer(DeserializerCache.java:273)
        at com.fasterxml.jackson.databind.deser.DeserializerCache.findValueDeserializer(DeserializerCache.java:173)
        at com.fasterxml.jackson.databind.DeserializationContext.findNonContextualValueDeserializer(DeserializationContext.java:659)
        at com.fasterxml.jackson.databind.deser.BeanDeserializerBase.resolve(BeanDeserializerBase.java:550)
        at com.fasterxml.jackson.databind.deser.DeserializerCache._createAndCache2(DeserializerCache.java:326)
        at com.fasterxml.jackson.databind.deser.DeserializerCache._createAndCacheValueDeserializer(DeserializerCache.java:273)
        at com.fasterxml.jackson.databind.deser.DeserializerCache.findValueDeserializer(DeserializerCache.java:173)
        at com.fasterxml.jackson.databind.DeserializationContext.findRootValueDeserializer(DeserializationContext.java:669)
        at com.fasterxml.jackson.databind.ObjectMapper._findRootDeserializer(ObjectMapper.java:5036)
        at com.fasterxml.jackson.databind.ObjectMapper._readMapAndClose(ObjectMapper.java:4906)
        at com.fasterxml.jackson.databind.ObjectMapper.readValue(ObjectMapper.java:3942)
        at io.temporal.common.converter.JacksonJsonPayloadConverter.fromData(JacksonJsonPayloadConverter.java:99)
        at io.temporal.common.converter.PayloadAndFailureDataConverter.fromPayload(PayloadAndFailureDataConverter.java:95)
        at io.temporal.common.converter.DataConverter.fromPayloads(DataConverter.java:164)
        at io.temporal.internal.sync.POJOWorkflowImplementationFactory$POJOWorkflowImplementation.execute(POJOWorkflowImplementationFactory.java:313)
        at io.temporal.internal.sync.WorkflowExecutionHandler.runWorkflowMethod(WorkflowExecutionHandler.java:71)
        at io.temporal.internal.sync.SyncWorkflow.lambda$start$0(SyncWorkflow.java:136)
        at io.temporal.internal.sync.CancellationScopeImpl.run(CancellationScopeImpl.java:102)
        at io.temporal.internal.sync.WorkflowThreadImpl$RunnableWrapper.run(WorkflowThreadImpl.java:107)
        at io.temporal.worker.ActiveThreadReportingExecutor.lambda$submit$0(ActiveThreadReportingExecutor.java:53)
        at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:572)
        at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:317)
        at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
        at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
        at java.base/java.lang.Thread.run(Thread.java:1583)

        at io.temporal.internal.sync.WorkflowThreadContext.runUntilBlocked(WorkflowThreadContext.java:261)
        at io.temporal.internal.sync.WorkflowThreadImpl.runUntilBlocked(WorkflowThreadImpl.java:302)
        at io.temporal.internal.sync.DeterministicRunnerImpl.runUntilAllBlocked(DeterministicRunnerImpl.java:229)
        at io.temporal.internal.sync.SyncWorkflow.eventLoop(SyncWorkflow.java:206)
        at io.temporal.internal.replay.ReplayWorkflowExecutor.eventLoop(ReplayWorkflowExecutor.java:105)
        at io.temporal.internal.replay.ReplayWorkflowRunTaskHandler$StatesMachinesCallbackImpl.eventLoop(ReplayWorkflowRunTaskHandler.java:410)
        at io.temporal.internal.statemachines.WorkflowStateMachines.eventLoop(WorkflowStateMachines.java:721)
        at io.temporal.internal.statemachines.WorkflowStateMachines.access$700(WorkflowStateMachines.java:52)
        at io.temporal.internal.statemachines.WorkflowStateMachines$WorkflowTaskCommandsListener.workflowTaskStarted(WorkflowStateMachines.java:1239)
        at io.temporal.internal.statemachines.WorkflowTaskStateMachine.handleCompleted(WorkflowTaskStateMachine.java:139)
        at io.temporal.internal.statemachines.FixedTransitionAction.apply(FixedTransitionAction.java:46)
        at io.temporal.internal.statemachines.StateMachine.executeTransition(StateMachine.java:159)
        ... 17 common frames omitted

2024-12-01 18:49:04,436 [workflow-method-49c81d1e-bd5c-45df-84f8-092b9985a55d-2732cd4a-33e8-4bfe-8629-947393382bba]     ERROR   i.a.w.t.FailureConverter(getFailureReason-Q2Q30fc):31 - exception classified as OPERATION_TIMEOUT```

I also tried with --chart-version=1.1.0

when I create new source or destination


2024-12-01 19:54:37 INFO i.m.c.e.DefaultEnvironment(<init>):168 - Established active environments: [k8s, cloud, control-plane]
2024-12-01 19:54:41 INFO i.m.l.PropertiesLoggingLevelsConfigurer(configureLogLevelForPrefix):113 - Setting log level 'DEBUG' for logger: 'io.airbyte.bootloader'
2024-12-01 19:54:49 INFO i.a.f.ConfigFileClient(<init>):113 - path /flags does not exist, will return default flag values
2024-12-01 19:54:52 WARN i.a.m.l.MetricClientFactory(initialize):72 - MetricClient was not recognized or not provided. Accepted values are `datadog` or `otel`.
2024-12-01 19:54:54 INFO i.a.c.t.TemporalUtils(getTemporalClientWhenConnected):152 - Waiting for temporal server...
2024-12-01 19:54:54 WARN i.a.c.t.TemporalUtils(getTemporalClientWhenConnected):163 - Waiting for namespace default to be initialized in temporal...
2024-12-01 19:54:56 INFO i.t.s.WorkflowServiceStubsImpl(<init>):86 - Created WorkflowServiceStubs for channel: ManagedChannelOrphanWrapper{delegate=ManagedChannelImpl{logId=1, target=airbyte-abctl-temporal:7233}}
2024-12-01 19:55:02 INFO i.a.c.t.TemporalUtils(getTemporalClientWhenConnected):180 - Temporal namespace default initialized!
2024-12-01 19:55:02 INFO i.a.w.ApplicationInitializer(initializeCommonDependencies):154 - Initializing common worker dependencies.
2024-12-01 19:55:02 INFO i.a.w.ApplicationInitializer(configureTemporal):302 - Configuring Temporal....
2024-12-01T19:55:02.461232567Z main ERROR Recursive call to appender SecretMaskRewrite
2024-12-01T19:55:02.733724969Z main ERROR Recursive call to appender SecretMaskRewrite
2024-12-01 19:55:03 INFO i.a.c.t.TemporalUtils(configureTemporalNamespace):127 - Workflow execution TTL already set for namespace default. Remains unchanged as: 30 days
2024-12-01 19:55:08 INFO i.a.w.ApplicationInitializer(registerWorkerFactory):164 - Registering worker factories....
2024-12-01 19:55:10 INFO i.a.w.ApplicationInitializer(registerGetSpec):248 - Get Spec Workflow registered.
2024-12-01 19:55:10 INFO i.a.w.ApplicationInitializer(registerCheckConnection):200 - Check Connection Workflow registered.
2024-12-01 19:55:10 INFO i.a.w.ApplicationInitializer(registerDiscover):234 - Discover Workflow registered.
2024-12-01 19:55:10 INFO i.a.w.ApplicationInitializer(registerSync):261 - Registering sync workflow for task queue 'SYNC'...
2024-12-01 19:55:10 INFO i.a.w.ApplicationInitializer(registerSync):271 - Sync Workflow registered.
2024-12-01 19:55:11 INFO i.a.w.ApplicationInitializer(registerConnectionManager):216 - Connection Manager Workflow registered.
2024-12-01 19:55:11 INFO i.a.w.ApplicationInitializer(onApplicationEvent):136 - Starting worker factory...
2024-12-01 19:55:11 INFO i.t.i.w.Poller(start):91 - start: Poller{name=Workflow Poller taskQueue="DISCOVER_SCHEMA", namespace="default", identity=1@airbyte-abctl-worker-7bff885898-ctktv}
2024-12-01 19:55:11 INFO i.t.i.w.Poller(start):91 - start: Poller{name=Activity Poller taskQueue="DISCOVER_SCHEMA", namespace="default", identity=1@airbyte-abctl-worker-7bff885898-ctktv}
2024-12-01 19:55:11 INFO i.t.i.w.Poller(start):91 - start: Poller{name=Workflow Poller taskQueue="CONNECTION_UPDATER", namespace="default", identity=1@airbyte-abctl-worker-7bff885898-ctktv}
2024-12-01 19:55:11 INFO i.t.i.w.Poller(start):91 - start: Poller{name=Activity Poller taskQueue="CONNECTION_UPDATER", namespace="default", identity=1@airbyte-abctl-worker-7bff885898-ctktv}
2024-12-01 19:55:11 INFO i.t.i.w.Poller(start):91 - start: Poller{name=Workflow Poller taskQueue="CHECK_CONNECTION", namespace="default", identity=1@airbyte-abctl-worker-7bff885898-ctktv}
2024-12-01 19:55:11 INFO i.t.i.w.Poller(start):91 - start: Poller{name=Activity Poller taskQueue="CHECK_CONNECTION", namespace="default", identity=1@airbyte-abctl-worker-7bff885898-ctktv}
2024-12-01 19:55:11 INFO i.t.i.w.Poller(start):91 - start: Poller{name=Workflow Poller taskQueue="SYNC", namespace="default", identity=1@airbyte-abctl-worker-7bff885898-ctktv}
2024-12-01 19:55:11 INFO i.t.i.w.Poller(start):91 - start: Poller{name=Activity Poller taskQueue="SYNC", namespace="default", identity=1@airbyte-abctl-worker-7bff885898-ctktv}
2024-12-01 19:55:11 INFO i.t.i.w.Poller(start):91 - start: Poller{name=Workflow Poller taskQueue="GET_SPEC", namespace="default", identity=1@airbyte-abctl-worker-7bff885898-ctktv}
2024-12-01 19:55:11 INFO i.t.i.w.Poller(start):91 - start: Poller{name=Activity Poller taskQueue="GET_SPEC", namespace="default", identity=1@airbyte-abctl-worker-7bff885898-ctktv}
2024-12-01 19:55:11 INFO i.a.w.ApplicationInitializer(onApplicationEvent):139 - Application initialized.
2024-12-01 19:55:11 INFO i.m.r.Micronaut(start):101 - Startup completed in 46226ms. Server Running: <http://airbyte-abctl-worker-7bff885898-ctktv:9000>
2024-12-01 19:58:03 WARN i.t.i.r.ReplayWorkflowTaskHandler(failureToWFTResult):279 - Workflow task processing failure. startedEventId=3, WorkflowId=4ee3fcee-4631-434f-b7e7-e8c9df687b30, RunId=ac4e36ee-ce30-441f-9216-cd27cc07d183. If seen continuously the workflow might be stuck.
io.temporal.internal.statemachines.InternalWorkflowTaskException: Failure handling event 3 of type 'EVENT_TYPE_WORKFLOW_TASK_STARTED' during execution. {WorkflowTaskStartedEventId=3, CurrentStartedEventId=3}
        at io.temporal.internal.statemachines.WorkflowStateMachines.createEventProcessingException(WorkflowStateMachines.java:373) ~[temporal-sdk-1.22.3.jar:?]
        at io.temporal.internal.statemachines.WorkflowStateMachines.handleEventsBatch(WorkflowStateMachines.java:297) ~[temporal-sdk-1.22.3.jar:?]
        at io.temporal.internal.statemachines.WorkflowStateMachines.handleEvent(WorkflowStateMachines.java:260) ~[temporal-sdk-1.22.3.jar:?]
        at io.temporal.internal.replay.ReplayWorkflowRunTaskHandler.applyServerHistory(ReplayWorkflowRunTaskHandler.java:249) ~[temporal-sdk-1.22.3.jar:?]
        at io.temporal.internal.replay.ReplayWorkflowRunTaskHandler.handleWorkflowTaskImpl(ReplayWorkflowRunTaskHandler.java:231) ~[temporal-sdk-1.22.3.jar:?]
        at io.temporal.internal.replay.ReplayWorkflowRunTaskHandler.handleWorkflowTask(ReplayWorkflowRunTaskHandler.java:165) ~[temporal-sdk-1.22.3.jar:?]
        at io.temporal.internal.replay.ReplayWorkflowTaskHandler.handleWorkflowTaskWithQuery(ReplayWorkflowTaskHandler.java:133) ~[temporal-sdk-1.22.3.jar:?]
        at io.temporal.internal.replay.ReplayWorkflowTaskHandler.handleWorkflowTask(ReplayWorkflowTaskHandler.java:98) ~[temporal-sdk-1.22.3.jar:?]
        at io.temporal.internal.worker.WorkflowWorker$TaskHandlerImpl.handleTask(WorkflowWorker.java:413) ~[temporal-sdk-1.22.3.jar:?]
        at io.temporal.internal.worker.WorkflowWorker$TaskHandlerImpl.handle(WorkflowWorker.java:320) ~[temporal-sdk-1.22.3.jar:?]
        at io.temporal.internal.worker.WorkflowWorker$TaskHandlerImpl.handle(WorkflowWorker.java:261) ~[temporal-sdk-1.22.3.jar:?]
        at io.temporal.internal.worker.PollTaskExecutor.lambda$process$0(PollTaskExecutor.java:105) ~[temporal-sdk-1.22.3.jar:?]
        at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144) ~[?:?]
        at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642) ~[?:?]
        at java.base/java.lang.Thread.run(Thread.java:1583) [?:?]
Caused by: java.lang.RuntimeException: WorkflowTask: failure executing SCHEDULED->WORKFLOW_TASK_STARTED, transition history is [CREATED->WORKFLOW_TASK_SCHEDULED]
        at io.temporal.internal.statemachines.StateMachine.executeTransition(StateMachine.java:163) ~[temporal-sdk-1.22.3.jar:?]
        at io.temporal.internal.statemachines.StateMachine.handleHistoryEvent(StateMachine.java:103) ~[temporal-sdk-1.22.3.jar:?]
        at io.temporal.internal.statemachines.EntityStateMachineBase.handleEvent(EntityStateMachineBase.java:84) ~[temporal-sdk-1.22.3.jar:?]
        at io.temporal.internal.statemachines.WorkflowStateMachines.handleSingleEvent(WorkflowStateMachines.java:419) ~[temporal-sdk-1.22.3.jar:?]
        at io.temporal.internal.statemachines.WorkflowStateMachines.handleEventsBatch(WorkflowStateMachines.java:295) ~[temporal-sdk-1.22.3.jar:?]
        ... 13 more
Caused by: io.temporal.internal.sync.PotentialDeadlockException: Potential deadlock detected. Workflow thread "workflow-method-4ee3fcee-4631-434f-b7e7-e8c9df687b30-ac4e36ee-ce30-441f-9216-cd27cc07d183" didn't yield control for over a second. {detectionTimestamp=1733083083330, threadDumpTimestamp=1733083083333}

workflow-method-4ee3fcee-4631-434f-b7e7-e8c9df687b30-ac4e36ee-ce30-441f-9216-cd27cc07d183```
Defaulted container "connector-sidecar" out of: connector-sidecar, main, init (init)
Unsetting empty environment variable 'DATA_PLANE_SERVICE_ACCOUNT_CREDENTIALS_PATH'
Unsetting empty environment variable 'KEYCLOAK_INTERNAL_REALM_ISSUER'
Unsetting empty environment variable 'DATA_PLANE_SERVICE_ACCOUNT_EMAIL'
Unsetting empty environment variable 'KEYCLOAK_CLIENT_ID'
Unsetting empty environment variable 'CONTROL_PLANE_AUTH_ENDPOINT'
2024-12-01T19:58:31.058978868Z main INFO Loading mask data from '/seed/specs_secrets_mask.yaml
2024-12-01 19:58:34 INFO i.m.c.e.DefaultEnvironment(&lt;init&gt;):168 - Established active environments: [k8s, cloud, worker-v2, control-plane, oss, local-secrets]
2024-12-01 19:58:37 INFO i.a.c.ApplicationKt(main):20 - Context started
2024-12-01 19:58:37 INFO i.a.c.ApplicationKt(main):21 - 5816388346.00 ns/exec (total: 5.82s, 1 executions)
2024-12-01 19:58:39 INFO i.a.c.ApplicationKt(main):28 - Sidecar created
2024-12-01 19:58:39 INFO i.a.c.ApplicationKt(main):29 - 3988823657.50 ns/exec (total: 7.98s, 2 executions)
2024-12-01 19:58:41 INFO i.a.c.i.LineGobbler(voidCall):166 -
2024-12-01T19:58:41.494186642Z pool-5-thread-1 ERROR Recursive call to appender SecretMaskRewrite
2024-12-01 19:58:42 INFO i.a.c.i.LineGobbler(voidCall):166 - ----- START CHECK -----
2024-12-01 19:58:42 INFO i.a.c.i.LineGobbler(voidCall):166 -
2024-12-01 19:58:42 WARN c.a.l.CommonsLog(warn):113 - JAXB is unavailable. Will fallback to SDK implementation which may be less performant.If you are using Java 9+, you will need to include javax.xml.bind:jaxb-api as a dependency.```

It looks two problems:

  1. job id is null
  2. temporal deadlock
    Are you able to run Airbyte without any additional values to run a test?
            Pod: airbyte-abctl-webapp-f76fbd46b-kx47c.180d63567aa23317
            Reason: BackOff
            Message: Back-off restarting failed container airbyte-webapp-container in pod airbyte-abctl-webapp-f76fbd46b-kx47c_airbyte-abctl(1b3a13ca-5893-4551-9b3c-d95fc920204d)
            Count: 7
            Logs: /docker-entrypoint.sh: /docker-entrypoint.d/ is not empty, will attempt to perform configuration
          /docker-entrypoint.sh: Looking for shell scripts in /docker-entrypoint.d/
          /docker-entrypoint.sh: Launching /docker-entrypoint.d/10-listen-on-ipv6-by-default.sh
          10-listen-on-ipv6-by-default.sh: info: ipv6 not available
          /docker-entrypoint.sh: Sourcing /docker-entrypoint.d/15-local-resolvers.envsh
          /docker-entrypoint.sh: Launching /docker-entrypoint.d/20-envsubst-on-templates.sh
          20-envsubst-on-templates.sh: Running envsubst on /etc/nginx/templates/default.conf.template to /etc/nginx/conf.d/default.conf
          /docker-entrypoint.sh: Launching /docker-entrypoint.d/30-tune-worker-processes.sh
          /docker-entrypoint.sh: Configuration complete; ready for start up
          2024/12/02 14:44:33 [emerg] 1#1: socket() [::]:8080 failed (97: Address family not supported by protocol)
          nginx: [emerg] socket() [::]:8080 failed (97: Address family not supported by protocol)```

corpo vm without ipv6
this is why I disable it.

I run again with my “no ipv6 image” and without my global enviremonment for test.
however it will fail since we are behind corpo proxy.


USER root

# Ensure the airbyte user exists
RUN adduser -D -s /bin/bash airbyte

# Add the script to remove IPv6
COPY remove_ipv6.sh /tmp/remove_ipv6.sh
RUN chmod +x /tmp/remove_ipv6.sh && \
    /tmp/remove_ipv6.sh && \
    echo "Nginx configuration after IPv6 removal:" && \
    cat /etc/nginx/templates/default.conf.template && \
    rm /tmp/remove_ipv6.sh

USER airbyte```
 abctl local install -v --values=./values.yaml --port=8080 --no-browser

```{
  "url": "<https://domain.fr/workspaces/d1cb1494-0558-45c1-8072-063dd8931c56/source/new-source>",
  "airbyteVersion": "1.2.0",
  "errorType": "HttpError",
  "errorConstructor": "Zu",
  "error": {
    "i18nKey": "errors.http.internalServerError",
    "i18nParams": {
      "status": 500
    },
    "name": "HttpError",
    "requestId": "sytTZwcTisBGbKejehnYdy",
    "request": {
      "url": "/api/v1/source_definitions/list_enterprise_source_stubs",
      "method": "post"
    },
    "status": 500,
    "response": {
      "message": "Internal Server Error: java.io.IOException: HTTP error fetching enterprise sources",
      "exceptionClassName": "java.lang.RuntimeException",
      "exceptionStack": [
        "java.lang.RuntimeException: java.io.IOException: HTTP error fetching enterprise sources",
        "\tat io.airbyte.server.apis.ApiHelper.execute(ApiHelper.kt:41)",
        "\tat io.airbyte.server.apis.SourceDefinitionApiController.listEnterpriseSourceStubs(SourceDefinitionApiController.java:125)",
        "\tat io.airbyte.server.apis.$SourceDefinitionApiController$Definition$Exec.dispatch(Unknown Source)",
        "\tat io.micronaut.context.AbstractExecutableMethodsDefinition$DispatchedExecutableMethod.invokeUnsafe(AbstractExecutableMethodsDefinition.java:461)",
        "\tat io.micronaut.context.DefaultBeanContext$BeanContextUnsafeExecutionHandle.invokeUnsafe(DefaultBeanContext.java:4350)",
        "\tat io.micronaut.web.router.AbstractRouteMatch.execute(AbstractRouteMatch.java:231)",
        "\tat io.micronaut.web.router.DefaultUriRouteMatch.execute(DefaultUriRouteMatch.java:38)",
        "\tat io.micronaut.http.server.RouteExecutor.executeRouteAndConvertBody(RouteExecutor.java:498)",
        "\tat io.micronaut.http.server.RouteExecutor.lambda$callRoute$5(RouteExecutor.java:475)",
        "\tat io.micronaut.core.execution.ExecutionFlow.lambda$async$1(ExecutionFlow.java:87)",
        "\tat io.micronaut.core.propagation.PropagatedContext.lambda$wrap$3(PropagatedContext.java:211)",
        "\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)",
        "\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)",
        "\tat java.base/java.lang.Thread.run(Thread.java:1583)",
        "Caused by: java.io.IOException: HTTP error fetching enterprise sources",
        "\tat io.airbyte.commons.server.handlers.EnterpriseSourceStubsHandler.listEnterpriseSourceStubs(EnterpriseSourceStubsHandler.kt:57)",
        "\tat io.airbyte.server.apis.ApiHelper.execute(ApiHelper.kt:29)",
        "\t... 13 more",
        "Caused by: java.net.SocketTimeoutException: Connect timed out",
        "\tat java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:546)",
        "\tat java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:592)",
        "\tat java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)",
        "\tat java.base/java.net.Socket.connect(Socket.java:751)",
        "\tat okhttp3.internal.platform.Platform.connectSocket(Platform.kt:128)",
        "\tat okhttp3.internal.connection.RealConnection.connectSocket(RealConnection.kt:295)",
        "\tat okhttp3.internal.connection.RealConnection.connect(RealConnection.kt:207)",
        "\tat okhttp3.internal.connection.ExchangeFinder.findConnection(ExchangeFinder.kt:226)",
        "\tat okhttp3.internal.connection.ExchangeFinder.findHealthyConnection(ExchangeFinder.kt:106)",
        "\tat okhttp3.internal.connection.ExchangeFinder.find(ExchangeFinder.kt:74)",
        "\tat okhttp3.internal.connection.RealCall.initExchange$okhttp(RealCall.kt:255)",
        "\tat okhttp3.internal.connection.ConnectInterceptor.intercept(ConnectInterceptor.kt:32)",
        "\tat okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109)",
        "\tat okhttp3.internal.cache.CacheInterceptor.intercept(CacheInterceptor.kt:95)",
        "\tat okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109)",
        "\tat okhttp3.internal.http.BridgeInterceptor.intercept(BridgeInterceptor.kt:83)",
        "\tat okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109)",
        "\tat okhttp3.internal.http.RetryAndFollowUpInterceptor.intercept(RetryAndFollowUpInterceptor.kt:76)",
        "\tat okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109)",
        "\tat okhttp3.internal.connection.RealCall.getResponseWithInterceptorChain$okhttp(RealCall.kt:201)",
        "\tat okhttp3.internal.connection.RealCall.execute(RealCall.kt:154)",
        "\tat io.airbyte.commons.server.handlers.EnterpriseSourceStubsHandler.listEnterpriseSourceStubs(EnterpriseSourceStubsHandler.kt:39)",
        "\t... 14 more"
      ],
      "rootCauseExceptionClassName": "java.io.IOException",
      "rootCauseExceptionStack": [
        "java.io.IOException: HTTP error fetching enterprise sources",
        "\tat io.airbyte.commons.server.handlers.EnterpriseSourceStubsHandler.listEnterpriseSourceStubs(EnterpriseSourceStubsHandler.kt:57)",
        "\tat io.airbyte.server.apis.ApiHelper.execute(ApiHelper.kt:29)",
        "\tat io.airbyte.server.apis.SourceDefinitionApiController.listEnterpriseSourceStubs(SourceDefinitionApiController.java:125)",
        "\tat io.airbyte.server.apis.$SourceDefinitionApiController$Definition$Exec.dispatch(Unknown Source)",
        "\tat io.micronaut.context.AbstractExecutableMethodsDefinition$DispatchedExecutableMethod.invokeUnsafe(AbstractExecutableMethodsDefinition.java:461)",
        "\tat io.micronaut.context.DefaultBeanContext$BeanContextUnsafeExecutionHandle.invokeUnsafe(DefaultBeanContext.java:4350)",
        "\tat io.micronaut.web.router.AbstractRouteMatch.execute(AbstractRouteMatch.java:231)",
        "\tat io.micronaut.web.router.DefaultUriRouteMatch.execute(DefaultUriRouteMatch.java:38)",
        "\tat io.micronaut.http.server.RouteExecutor.executeRouteAndConvertBody(RouteExecutor.java:498)",
        "\tat io.micronaut.http.server.RouteExecutor.lambda$callRoute$5(RouteExecutor.java:475)",
        "\tat io.micronaut.core.execution.ExecutionFlow.lambda$async$1(ExecutionFlow.java:87)",
        "\tat io.micronaut.core.propagation.PropagatedContext.lambda$wrap$3(PropagatedContext.java:211)",
        "\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)",
        "\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)",
        "\tat java.base/java.lang.Thread.run(Thread.java:1583)",
        "Caused by: java.net.SocketTimeoutException: Connect timed out",
        "\tat java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:546)",
        "\tat java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:592)",
        "\tat java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)",
        "\tat java.base/java.net.Socket.connect(Socket.java:751)",
        "\tat okhttp3.internal.platform.Platform.connectSocket(Platform.kt:128)",
        "\tat okhttp3.internal.connection.RealConnection.connectSocket(RealConnection.kt:295)",
        "\tat okhttp3.internal.connection.RealConnection.connect(RealConnection.kt:207)",
        "\tat okhttp3.internal.connection.ExchangeFinder.findConnection(ExchangeFinder.kt:226)",
        "\tat okhttp3.internal.connection.ExchangeFinder.findHealthyConnection(ExchangeFinder.kt:106)",
        "\tat okhttp3.internal.connection.ExchangeFinder.find(ExchangeFinder.kt:74)",
        "\tat okhttp3.internal.connection.RealCall.initExchange$okhttp(RealCall.kt:255)",
        "\tat okhttp3.internal.connection.ConnectInterceptor.intercept(ConnectInterceptor.kt:32)",
        "\tat okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109)",
        "\tat okhttp3.internal.cache.CacheInterceptor.intercept(CacheInterceptor.kt:95)",
        "\tat okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109)",
        "\tat okhttp3.internal.http.BridgeInterceptor.intercept(BridgeInterceptor.kt:83)",
        "\tat okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109)",
        "\tat okhttp3.internal.http.RetryAndFollowUpInterceptor.intercept(RetryAndFollowUpInterceptor.kt:76)",
        "\tat okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109)",
        "\tat okhttp3.internal.connection.RealCall.getResponseWithInterceptorChain$okhttp(RealCall.kt:201)",
        "\tat okhttp3.internal.connection.RealCall.execute(RealCall.kt:154)",
        "\tat io.airbyte.commons.server.handlers.EnterpriseSourceStubsHandler.listEnterpriseSourceStubs(EnterpriseSourceStubsHandler.kt:39)",
        "\t... 14 more"
      ]
    }
  },
  "stacktrace": "HttpError: errors.http.internalServerError\n    at Uve (<https://domain.fr/assets/core-ihmc9y4fn3.js:120:10572>)\n    at async Lgt.Xt.suspense [as queryFn] (<https://domain.fr/assets/core-ihmc9y4fn3.js:384:95031>)",
  "userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36",
  "featureFlags": {}
}```

this is why I configure values.yaml as I previously shared.

“Loop is closed” My first post details where I am in my airbyte deployment journey

<@U01MMSDJGC9> does it provide any relevant informations ?

No insights about these errors?