https://linen.dev logo
Join Slack
Powered by
# contributing-to-airbyte
  • j

    Jared Rhizor (Airbyte)

    12/09/2020, 6:52 PM
    Would it make sense to bundle the
    seed
    contents into the
    scheduler
    ?
    • 1
    • 24
  • s

    s

    12/09/2020, 9:44 PM
    I’m seeing the following in the output of standard tests:
    Copy code
    [        14 tests started         ]
    but there are only 7 standard tests so it looks like we’re running each test twice. Is this a known issue or expected?
    • 1
    • 17
  • m

    Michel

    12/09/2020, 10:04 PM
    When we send metrics to segment, right now we exclude some tests right?
    • 1
    • 15
  • j

    Jared Rhizor (Airbyte)

    12/10/2020, 5:57 PM
    Is there a reason we’re excluding check connection failure tests from the standard source tests?
    • 1
    • 58
  • m

    Michel

    12/11/2020, 12:16 AM
    Who dares install Docker 3 and test Airbyte with it :)
    • 1
    • 4
  • m

    Michel

    12/11/2020, 1:13 AM
    I am battling with changing files
    • 1
    • 16
  • r

    Roshan George

    12/11/2020, 9:00 PM
    Had to apply the following to get it to compile on Ubuntu 20.04.1 LTS
    Copy code
    diff --git a/build.gradle b/build.gradle
    index 71239569..ad8fcaa2 100644
    --- a/build.gradle
    +++ b/build.gradle
    @@ -1,7 +1,7 @@
     plugins {
         id 'base'
         id 'pmd'
    -    id 'com.diffplug.spotless' version '5.7.0'
    +    id 'com.diffplug.spotless' version '5.8.2'
     }
    Or suffer a
    Copy code
    Unable to store input properties for task ':com.diffplug.closet:spotlessJava'. Property 'steps' with value '[com.diffplug.spotless.FormatterStepImpl$Standard@2ac4ffae]' cannot be serialized.
    • 1
    • 7
  • c

    charles

    12/12/2020, 10:54 PM
    @Justin Lawrence @Seth Goldberg thanks for the feedback in office hours about the lack of documentation for the API. I have added the api docs into the source in docs/api. if you open the index.html file that is in that directory in your browser you should be able to see the docs. For now we are just using the default docs generated by openapi so they aren't gorgeous, but hopefully they can give you a little more clarity on how the API works. If you're curious about the inspiration behind it, you can check out the slack api docs.
    • 1
    • 1
  • b

    Bala

    12/13/2020, 11:56 PM
    Did anyone you had success with FB Marketing API?
    • 1
    • 8
  • c

    charles

    12/16/2020, 1:21 AM
    is it intentional that we don't write scheduler or server logs anywhere?
    • 1
    • 7
  • m

    Michel

    12/21/2020, 4:12 AM
    I have a build which keeps failing becase a file gets modified: https://github.com/airbytehq/airbyte/actions/runs/434293469 but I am unable to reproduce the file change locally (
    ./gradlew clean build
    )
    • 1
    • 10
  • c

    Chris (deprecated profile)

    12/21/2020, 3:59 PM
    Hello @Jared Rhizor (Airbyte) ! Would you have an idea why the current docker-compose up in DEV mode on master does not seem to work properly unless i modify the
    .env.dev
    file with:
    Copy code
    -CONFIG_ROOT=/tmp/config
    +CONFIG_ROOT=/tmp/data
    I'm not so sure why this was changed with the kube stuff
    • 1
    • 9
  • m

    Michel

    12/21/2020, 9:46 PM
    Let me know if it is ok to merge: https://github.com/airbytehq/airbyte/pull/1408
  • u

    user

    01/05/2021, 4:38 AM
    files that are not part of my PR. does it happen to someone else?
    • 0
    • 2
  • m

    Michel

    01/05/2021, 5:17 AM
    why do we have a format step before the build?
    • 1
    • 5
  • j

    Jeff Moszuti

    01/06/2021, 2:23 PM
    Hi, I'm kicking the tyres on the new Microsoft Team Source Connector. If I didn't correctly configure the application permission, the logs doesn't give me any clues why the syncing failed. The error message from the API call is not propagated through to the log (https://github.com/airbytehq/airbyte/blob/master/airbyte-integrations/connectors/source-microsoft-teams/source_microsoft_teams/source.py#L65). I've made a fix that I can submit. Should I create an issue and submit a PR?
    • 1
    • 9
  • c

    charles

    01/06/2021, 4:34 PM
    Anyone else having issues with github in assigning reviewers. It's not able to find most of the team for some reason.
    • 1
    • 1
  • j

    Jared Rhizor (Airbyte)

    01/08/2021, 5:08 PM
    Should we be pushing the “bases” images to Docker Hub?
    • 1
    • 6
  • m

    Murilo Nigris

    01/12/2021, 7:56 PM
    Hi Airbyte team! Thanks for helping out yesterday @charles! 😄 The error with the code was because one of the libraries used by the singer tap was updated and it was crashing, I forced to use an older version of that library. I was able to progress a little bit, but I'm getting another error, would someone be able give me a hint?
    • 1
    • 4
  • m

    Murilo Nigris

    01/13/2021, 2:27 PM
    Hi Airbyte team! Do I need to submit a documentation for the source I'm developing similar to https://docs.airbyte.io/integrations/sources/braintree ? If yes, how/where do I do it?
    • 1
    • 64
  • c

    charles

    01/13/2021, 4:23 PM
    is anyone else having to restart docker for mac somewhat frequently since the new update? the issue i'm seeing is that it is not removing bind mounts properly. it says they are removed them but then when i try to recreate the bind mounts it doesn't successfully create them (all the directories that get bound are empty). the only fix i have found is totally restarting docker for mac.
  • m

    Murilo Nigris

    01/14/2021, 5:30 PM
    Hi team/charles! I'm working on the appsflyer integration, when I ran the second step in the checklist:
    Copy code
    ./gradlew :airbyte-integrations:connectors:source-appsflyer-singer:build
    The task entered into an infinite loop (more than 10minutes, and was still running): The only thing I did was to add install_requires=tap-appsflyer in the setup.py
    • 1
    • 23
  • j

    Jared Rhizor (Airbyte)

    01/14/2021, 10:06 PM
    What do you think of these badges for connector build status?
    • 1
    • 61
  • s

    Samuel Gordalina

    01/19/2021, 9:40 PM
    Is there any api that airbyte exposes it's own health check? e.g.: the java server is up and running?
    • 1
    • 3
  • h

    Hudson

    01/19/2021, 9:44 PM
    Does it possible to use the API to get status and trigger a Sync job?
    • 1
    • 5
  • s

    Samuel Gordalina

    01/20/2021, 4:07 AM
    I see that
    web_backend
    api is very similar to connections but it adds some info, what's the purpose of this api?
    • 1
    • 28
  • m

    Murilo Nigris

    01/20/2021, 11:41 AM
    Hi Airbyte team! I'm working on the appsflyer connector, and I've 2 issues: 1. The tap-appsflyer defines in the setup.py the usage of pip package 'attrs==16.3.0', however pytest requires the 'attrs>=17'. When i run the gradlew integrationTest it fails. My solution was to force the usage of the 'attrs==19.1.0' in the Airbyte setup.py:
    Copy code
    install_requires=["airbyte-protocol", "tap-appsflyer==0.0.12", "requests", "attrs==19.1.0"]
    Is this solution ok? Otherwise I would have to submit a PR for singer and it usually takes some time, and I would rather not do it for now. 2. When I run the cmd below in the source-appsflyer-singer directory with venv activated, I get the error in the print, event though the appsflyer request succeeds.
    Copy code
    python main_dev.py discover --config secrets/config.json
    I've commited my changes in this branch
    • 1
    • 8
  • c

    charles

    01/20/2021, 10:20 PM
    what do folks thing about applying an ordering to how the fields of the spec are exposed in the UI? the common issue we have is for say, the postgres spec, in the UI password appears before username. This is because all of these properties are effectively in a map so we don't get any order guarantees. i would like a way to describe the order of the fields. e.g. for postgres i think the most approach form is host, port, database, username, password.
    • 1
    • 35
  • j

    Jared Rhizor (Airbyte)

    01/21/2021, 12:08 AM
    Something we just ran into trying to help Kelvin create a Github dashboard from normalized outputs
    • 1
    • 37
  • a

    Artem Astapenko

    01/21/2021, 2:03 PM
    Are we running CI on all PRs or only on PRs within team? I can’t see that it run for this https://github.com/airbytehq/airbyte/pull/1736
    • 1
    • 46
1...567...24Latest