Artur Siepietowski
03/07/2022, 8:48 AMSQL [select * from "public"."actor_definition" where "public"."actor_definition"."actor_type" = ?::"public"."actor_type"]; Error while reading field: "public"."actor_definition"."resource_requirements", at JDBC index: 15 at org.jooq_3.13.4.POSTGRES.debug(Unknown Source)
3. I was developing new connector and in logs I see error, but data is saved in destination:
2022-03-07 11:52:04 ERROR i.a.w.p.a.DefaultAirbyteStreamFactory(lambda$create$1):70 - Validation failed: null
2022-03-07 11:52:06 INFO i.a.v.j.JsonSchemaValidator(test):56 - JSON schema validation failed.
Augustin Lafanechere (Airbyte)
03/07/2022, 5:13 PMArtur Siepietowski
03/07/2022, 5:43 PM1. Does these logs comes from the migration process running in the bootloader?It comes from airbyte-server. I have managed to migrate to new version by 1. Exporting workspace, 2. Dropping airbyte database 3. Running all deployments and pods with new version 4. Importing workspace It worked for me but I think it is not a correct approach? Should bumping version 0.35.28-alpha to 0.35.46-alpha went seamlessly without dropping db?
1. This is probably because the schema you defined for a stream does not match the input data. Double check your schema to make sure it corresponds to your source data.By
input data
you means HTTP Body from service or data produced from method: parse_response
?
What type schema should have if there could be 0 or more objects? shouldn't it be: "type":["null", "object"]
?Augustin Lafanechere (Airbyte)
03/07/2022, 6:28 PMByAbsolutelyyou means HTTP Body from service or data produced from method:input data
?parse_response
What type schema should have if there could be 0 or more objects? shouldn't it be:Yes!?"type":["null", "object"]