Hari Haran R
09/04/2024, 3:17 AM"date_start_session": 1725349667,
what is the datetime format for this datetime, getting error thrown during incremental syncGraham Mackintosh
09/04/2024, 4:49 AMPiotr Stankiewicz
09/04/2024, 4:55 AMMaximilian Hein
09/04/2024, 6:35 AMSlackbot
09/04/2024, 7:03 AMSlackbot
09/04/2024, 7:06 AMkapa.ai
09/04/2024, 7:24 AMJAVA_HOME
variable in your environment is crucial for many Java applications. It should point to the location of your Java installation directory. Here's a general way to set `JAVA_HOME`: 1. Open your terminal. 2. Check if JAVA_HOME
is already set by typing echo $JAVA_HOME
. If it returns a directory path, JAVA_HOME
is set. If it returns empty, you need to set it. 3. Find where Java is installed. You can do this by executing the command update-alternatives --config java
. 4. Once you have the installation path, open your environment variables file. This could be ~/.bashrc
, ~/.bash_profile
, or ~/.zshrc
depending on your shell. 5. Add the following line to the file: export JAVA_HOME="your/java/installation/path"
. Replace "your/java/installation/path"
with your actual Java installation path. 6. Save the file and exit. 7. Run source ~/.bashrc
or source ~/.bash_profile
or source ~/.zshrc
to reload the environment variables. 8. Verify that JAVA_HOME
is set correctly by running echo $JAVA_HOME
again. Please note that the exact steps may vary depending on your operating system and shell. If you're using Docker, you might need to set the environment variable in the Dockerfile or docker-compose file. In the context of Airbyte, an issue was reported where the JAVA_HOME
was set to an invalid directory. The issue was discussed in this [Github issue](https://github.com/airbytehq/airbyte/issues/32435). The user was advised to set the JAVA_HOME
variable in their environment to match the location of their Java installation.xinghui huang
09/04/2024, 7:25 AMDurga Gurajala
09/04/2024, 8:19 AMIulian
09/04/2024, 8:38 AMSlackbot
09/04/2024, 9:01 AMHari Haran R
09/04/2024, 9:04 AMMoti Zamir
09/04/2024, 9:15 AMIlya Dashkovsky
09/04/2024, 9:28 AM2024-09-04 09:21:51 source > During the sync, the following streams did not sync successfully: products: AirbyteTracedException("'message'")
2024-09-04 09:21:51 source > None
Traceback (most recent call last):
File "/airbyte/integration_code/main.py", line 9, in <module>
run()
File "/airbyte/integration_code/source_shopify/run.py", line 19, in run
launch(source, sys.argv[1:])
File "/usr/local/lib/python3.9/site-packages/airbyte_cdk/entrypoint.py", line 235, in launch
for message in source_entrypoint.run(parsed_args):
File "/usr/local/lib/python3.9/site-packages/airbyte_cdk/entrypoint.py", line 122, in run
yield from map(AirbyteEntrypoint.airbyte_message_to_string, self.read(source_spec, config, config_catalog, state))
File "/usr/local/lib/python3.9/site-packages/airbyte_cdk/entrypoint.py", line 166, in read
for message in self.source.read(self.logger, config, catalog, state):
File "/usr/local/lib/python3.9/site-packages/airbyte_cdk/sources/abstract_source.py", line 185, in read
raise AirbyteTracedException(message=error_message, failure_type=FailureType.config_error)
airbyte_cdk.utils.traced_exception.AirbyteTracedException: None
2024-09-04 09:01:03 replication-orchestrator > Attempt 2 to update stream status incomplete null:products error: io.airbyte.api.client.invoker.generated.ApiException: updateStreamStatus call failed with: 400 - {"message":"Incomplete run cause must be set for runs that stopped in an incomplete state.","exceptionClassName":"io.airbyte.server.apis.StreamStatusesApiController$Validations$2","exceptionStack":["io.airbyte.server.apis.StreamStatusesApiController$Validations$2: Incomplete run cause must be set for runs that stopped in an incomplete state.","\tat io.airbyte.server.apis.StreamStatusesApiController$Validations.validate(StreamStatusesApiController.java:100)","\tat io.airbyte.server.apis.StreamStatusesApiController.updateStreamStatus(StreamStatusesApiController.java:58)","\tat io.airbyte.server.apis.$StreamStatusesApiController$Definition$Exec.dispatch(Unknown Source)","\tat io.micronaut.context.AbstractExecutableMethodsDefinition$DispatchedExecutableMethod.invokeUnsafe(AbstractExecutableMethodsDefinition.java:461)","\tat io.micronaut.context.DefaultBeanContext$BeanContextUnsafeExecutionHandle.invokeUnsafe(DefaultBeanContext.java:4276)","\tat io.micronaut.web.router.AbstractRouteMatch.execute(AbstractRouteMatch.java:271)","\tat io.micronaut.http.server.RouteExecutor.executeRouteAndConvertBody(RouteExecutor.java:488)","\tat io.micronaut.http.server.RouteExecutor.lambda$callRoute$6(RouteExecutor.java:465)","\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)"]}
Hari Haran R
09/04/2024, 9:30 AMHari Haran R
09/04/2024, 10:57 AMJulie Choong
09/04/2024, 11:24 AMChristopher Daniel
09/04/2024, 11:55 AMVlad Ivanyk
09/04/2024, 12:00 PMCosmin Gabriel Petrenciuc
09/04/2024, 12:30 PMJustin Javis
09/04/2024, 12:33 PMDanton Bertuol
09/04/2024, 2:49 PMViddu Devigere
09/04/2024, 3:15 PM2024-09-04 15:12:09 WARN i.t.i.a.ActivityTaskExecutors$BaseActivityTaskExecutor(execute):126 - Activity failure. ActivityId=0659758b-91c3-3c96-aee6-2c1dd945fe7e, activityType=ReplicateV2, attempt=1
java.lang.RuntimeException: io.temporal.serviceclient.CheckedExceptionWrapper: io.airbyte.workers.exception.WorkerException: Running the launcher replication-orchestrator failed
at io.airbyte.commons.temporal.HeartbeatUtils.withBackgroundHeartbeat(HeartbeatUtils.java:62) ~[io.airbyte-airbyte-commons-temporal-core-0.63.8.jar:?]
at io.airbyte.workers.temporal.sync.ReplicationActivityImpl.replicateV2(ReplicationActivityImpl.java:174) ~[io.airbyte-airbyte-workers-0.63.8.jar:?]
at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[?:?]
at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[?:?]
at io.temporal.internal.activity.RootActivityInboundCallsInterceptor$POJOActivityInboundCallsInterceptor.executeActivity(RootActivityInboundCallsInterceptor.java:64) ~[temporal-sdk-1.22.3.jar:?]
at io.temporal.internal.activity.RootActivityInboundCallsInterceptor.execute(RootActivityInboundCallsInterceptor.java:43) ~[temporal-sdk-1.22.3.jar:?]
at io.temporal.internal.activity.ActivityTaskExecutors$BaseActivityTaskExecutor.execute(ActivityTaskExecutors.java:107) ~[temporal-sdk-1.22.3.jar:?]
at io.temporal.internal.activity.ActivityTaskHandlerImpl.handle(ActivityTaskHandlerImpl.java:124) ~[temporal-sdk-1.22.3.jar:?]
at io.temporal.internal.worker.ActivityWorker$TaskHandlerImpl.handleActivity(ActivityWorker.java:278) ~[temporal-sdk-1.22.3.jar:?]
at io.temporal.internal.worker.ActivityWorker$TaskHandlerImpl.handle(ActivityWorker.java:243) ~[temporal-sdk-1.22.3.jar:?]
at io.temporal.internal.worker.ActivityWorker$TaskHandlerImpl.handle(ActivityWorker.java:216) ~[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: io.temporal.serviceclient.CheckedExceptionWrapper: io.airbyte.workers.exception.WorkerException: Running the launcher replication-orchestrator failed
at io.temporal.serviceclient.CheckedExceptionWrapper.wrap(CheckedExceptionWrapper.java:57) ~[temporal-serviceclient-1.22.3.jar:?]
at io.temporal.internal.sync.WorkflowInternal.wrap(WorkflowInternal.java:539) ~[temporal-sdk-1.22.3.jar:?]
at io.temporal.activity.Activity.wrap(Activity.java:52) ~[temporal-sdk-1.22.3.jar:?]
at io.airbyte.workers.temporal.TemporalAttemptExecution.get(TemporalAttemptExecution.java:143) ~[io.airbyte-airbyte-workers-0.63.8.jar:?]
at io.airbyte.workers.temporal.sync.ReplicationActivityImpl.lambda$replicateV2$3(ReplicationActivityImpl.java:207) ~[io.airbyte-airbyte-workers-0.63.8.jar:?]
at io.airbyte.commons.temporal.HeartbeatUtils.withBackgroundHeartbeat(HeartbeatUtils.java:57) ~[io.airbyte-airbyte-commons-temporal-core-0.63.8.jar:?]
... 14 more
Caused by: io.airbyte.workers.exception.WorkerException: Running the launcher replication-orchestrator failed
at io.airbyte.workers.sync.LauncherWorker.run(LauncherWorker.java:262) ~[io.airbyte-airbyte-commons-worker-0.63.8.jar:?]
at io.airbyte.workers.temporal.TemporalAttemptExecution.get(TemporalAttemptExecution.java:138) ~[io.airbyte-airbyte-workers-0.63.8.jar:?]
at io.airbyte.workers.temporal.sync.ReplicationActivityImpl.lambda$replicateV2$3(ReplicationActivityImpl.java:207) ~[io.airbyte-airbyte-workers-0.63.8.jar:?]
at io.airbyte.commons.temporal.HeartbeatUtils.withBackgroundHeartbeat(HeartbeatUtils.java:57) ~[io.airbyte-airbyte-commons-temporal-core-0.63.8.jar:?]
... 14 more
Caused by: io.airbyte.workers.exception.WorkerException: Failed to create pod orchestrator-repl-job-362-attempt-0, pre-existing pod exists which didn't advance out of the NOT_STARTED state.
at io.airbyte.workers.sync.LauncherWorker.run(LauncherWorker.java:226) ~[io.airbyte-airbyte-commons-worker-0.63.8.jar:?]
at io.airbyte.workers.temporal.TemporalAttemptExecution.get(TemporalAttemptExecution.java:138) ~[io.airbyte-airbyte-workers-0.63.8.jar:?]
at io.airbyte.workers.temporal.sync.ReplicationActivityImpl.lambda$replicateV2$3(ReplicationActivityImpl.java:207) ~[io.airbyte-airbyte-workers-0.63.8.jar:?]
at io.airbyte.commons.temporal.HeartbeatUtils.withBackgroundHeartbeat(HeartbeatUtils.java:57) ~[io.airbyte-airbyte-commons-temporal-core-0.63.8.jar:?]
... 14 more
Caused by: io.fabric8.kubernetes.client.KubernetesClientTimeoutException: Timed out waiting for [300000] milliseconds for [Pod] with name:[orchestrator-repl-job-362-attempt-0] in namespace [default].
at io.fabric8.kubernetes.client.dsl.internal.BaseOperation.waitUntilCondition(BaseOperation.java:946) ~[kubernetes-client-6.12.1.jar:?]
at io.fabric8.kubernetes.client.dsl.internal.BaseOperation.waitUntilCondition(BaseOperation.java:98) ~[kubernetes-client-6.12.1.jar:?]
at io.airbyte.workers.process.AsyncOrchestratorPodProcess.create(AsyncOrchestratorPodProcess.java:571) ~[io.airbyte-airbyte-commons-worker-0.63.8.jar:?]
at io.airbyte.workers.sync.LauncherWorker.run(LauncherWorker.java:217) ~[io.airbyte-airbyte-commons-worker-0.63.8.jar:?]
at io.airbyte.workers.temporal.TemporalAttemptExecution.get(TemporalAttemptExecution.java:138) ~[io.airbyte-airbyte-workers-0.63.8.jar:?]
at io.airbyte.workers.temporal.sync.ReplicationActivityImpl.lambda$replicateV2$3(ReplicationActivityImpl.java:207) ~[io.airbyte-airbyte-workers-0.63.8.jar:?]
at io.airbyte.commons.temporal.HeartbeatUtils.withBackgroundHeartbeat(HeartbeatUtils.java:57) ~[io.airbyte-airbyte-commons-temporal-core-0.63.8.jar:?]
... 14 more
Dhinesh Balakrishnan
09/04/2024, 3:41 PMDhinesh Balakrishnan
09/04/2024, 3:49 PMAldo Orozco
09/04/2024, 4:51 PMAldo Orozco
09/04/2024, 4:57 PMKarl Jose Buena
09/04/2024, 5:11 PMkapa.ai
09/04/2024, 6:30 PMAditya Gupta
09/04/2024, 6:31 PM