https://meltano.com/ logo
#announcements
Title
# announcements
v

victorious-balloon-87293

03/23/2021, 8:57 AM
Was trying to run an ELT Job with multiple entities(Incremental Replication), faced with this error: AttributeError: 'NoneType' object has no attribute 'settimeout'
s

salmon-salesclerk-77709

03/23/2021, 2:30 PM
Can you share your meltano.yml file and what commands you were running?
v

victorious-balloon-87293

03/24/2021, 4:10 AM
Copy code
version: 1
send_anonymous_usage_stats: true
project_id: 06ff22e7-9f63-4564-a39a-17f7d34db92a
plugins:
  extractors:
  - name: tap-mysql
    variant: transferwise
    pip_url: pipelinewise-tap-mysql
    config:
      host: <http://for-sap.calopyg26adf.ap-southeast-1.rds.amazonaws.com|for-sap.calopyg26adf.ap-southeast-1.rds.amazonaws.com>
      user: rdsuser
    select:
    - shopuplite-sl_hubs.*
    - shopuplite-sl_areas.*
    - shopuplite-sl_hub_zones.*
    metadata:
      shopuplite-sl_hubs:
        replication-method: INCREMENTAL
        replication-key: UPDATED_AT
      shopuplite-sl_areas:
        replication-method: INCREMENTAL
        replication-key: UPDATED_AT
      shopuplite-sl_hub_zones:
        replication-method: INCREMENTAL
        replication-key: UPDATED_AT
  loaders:
  - name: target-bigquery
    variant: adswerve
    pip_url: git+<https://github.com/adswerve/target-bigquery.git@v0.10.2>
    config:
      project_id: meta-imagery-307808
      dataset_id: shivam_test_meltano
      credentials_path: /home/shivam/shivam-test-2/credentials.json
  transforms:
  - name: tap-gitlab
    variant: meltano
    pip_url: <https://gitlab.com/meltano/dbt-tap-gitlab.git>
  transformers:
  - name: dbt
    pip_url: dbt==0.16.1
    config:
      source_schema: shivam_test_meltano
      target_schema: shivam_test_meltano
  files:
  - name: dbt
    pip_url: git+<https://gitlab.com/meltano/files-dbt.git>
This is the required file, is it because of set SQL sessions?
s

salmon-salesclerk-77709

03/24/2021, 1:36 PM
what commands are you running? Can you run with
meltano --log-level=debug
to see if there is anymore output?
v

victorious-balloon-87293

03/27/2021, 7:04 PM
image.png
this was the output
@salmon-salesclerk-77709
@salmon-salesclerk-77709
s

salmon-actor-23953

03/29/2021, 3:32 PM
Hi, @victorious-balloon-87293. This is a tricky one. It looks like the requests library has a behavior of throwing this error if the connection is closed between calls. This could likely be caused by a network error or a connection or auth issue on the MySQL tap. Can you confirm that your credentials are correct and you’re able to connect to the server from a mysql client running on the same machine?
r

ripe-musician-59933

03/29/2021, 3:39 PM