Hi I have few specific tables (10) I would exclusi...
# ingestion
a
Hi I have few specific tables (10) I would exclusively like ingest, can you please help me to set up the recipe to ingest them all at once?
Copy code
type: athena
    config:
        aws_region: xxx
        work_group: xxx
        username: '${xxx}'
        password: '${xxx}'
        s3_staging_dir: 'xxx'
        include_views: true
        include_tables: true
        database: table1, table2 ... table10
sink:
    type: datahub-rest
    config:
        server: 'xxx'
        token: xxx
m
roughly:
Copy code
config:
   table_pattern:
     allow:
       - MyDatabase.table1
       - MyDatabase.table2
...