opção
LarLar Skill Infraestrutura em nuvem ingesting-into-data-lake

ingesting-into-data-lake

aws/agent-toolkit-for-aws aws/agent-toolkit-for-aws

Importa dados para o data lake da AWS a partir de arquivos S3, uploads locais, bancos de dados JDBC (Oracle, SQL Server, PostgreSQL, MySQL, RDS, Aurora), Amazon Redshift, Snowflake, BigQuery, DynamoDB ou tabelas existentes no catálogo Glue (migração). O destino padrão são as Tabelas S3; caso essas não sejam utilizadas, é suportado o formato Iceberg padrão em um bucket de uso geral. Permite cargas únicas, pipelines recorrentes e migrações. É acionado ao: importar dados, carregar dados, ingerir dados, sincronizar bancos de dados, migrar tabelas, mover dados para a AWS, definir

...Expandir tudo
0
Tempo atualizado 27 de Setembro de 2026

Sobre a ingestão em data lake

Uma habilidade de fluxo de trabalho para transferir dados para uma tabela consultável em um data lake da AWS a partir de diversas fontes: uploads de arquivos locais, arquivos do S3, bancos de dados JDBC (Oracle, SQL Server, PostgreSQL, MySQL, RDS, Aurora), Amazon Redshift, Snowflake, BigQuery, DynamoDB e tabelas de catálogo Glue existentes para migração. Ela lida com carregamentos únicos, pipelines recorrentes e processos de migração, utilizando por padrão as Tabelas S3 como destino, ao mesmo tempo em que suporta o formato Iceberg padrão em buckets de uso geral onde as Tabelas S3 ainda não foram adotadas — as orientações deixam claro que não se deve forçar mudanças em clientes que ainda não adotaram esse formato. Os comandos são executados por meio das ferramentas do servidor AWS MCP quando há conexão (para validação, execução em ambiente isolado e registro de auditoria), recorrendo ao AWS CLI quando necessário, e cada etapa é explicada antes de ser executada. O fluxo de trabalho verifica dependências e credenciais por meio do comando aws sts get-caller-identity, classifica a fonte de dados, confirma a existência de uma conexão Glue para fontes JDBC, Snowflake e BigQuery (delegando a configuração da conexão e a solução de problemas a uma habilidade separada dedicada à conexão com fontes de dados), esclarece o banco de dados, a tabela e o formato do destino, executa um procedimento específico da fonte e realiza três verificações obrigatórias: correspondência no número de linhas entre fonte e destino, verificação de valores nulos em colunas críticas e análise de amostra de três a cinco linhas. Os pipelines recorrentes são agendados por meio de gatilhos Glue conforme um cronograma definido, sendo que o MWAA é utilizado para ramificações em vários passos. A habilidade documenta diversos pontos importantes a serem observados: as Tabelas S3 exigem o Glue 5.1 ou versão superior e o formato de data lake Iceberg; a configuração do catálogo deve ser informada nos argumentos --conf job; o parâmetro de armazém é obrigatório; os nomes de tabela e coluna devem estar em minúsculas; destinos no formato Iceberg padrão precisam de uma cláusula LOCATION, enquanto as Tabelas S3 não exigem isso; e o DynamoDB não necessita de conexão Glue. Fontes SaaS e de streaming, como Salesforce, ServiceNow, SAP, MongoDB e Kafka, estão fora do escopo, assim como a execução de consultas e as auditorias de catálogo, que são tratadas por outras habilidades.

Perguntas frequentes

Qual é o formato de destino padrão?

As Tabelas S3 são o formato de destino padrão e recomendado. Nos casos em que uma conta ainda não adotou as Tabelas S3, a habilidade sugere o uso do formato Iceberg padrão no bucket de uso geral existente.

De quais fontes é possível realizar a ingestão?

Arquivos locais, arquivos do S3, bancos de dados JDBC (Oracle, SQL Server, PostgreSQL, MySQL, RDS, Aurora), Redshift, Snowflake, BigQuery, DynamoDB e tabelas de catálogo Glue existentes para migração.

Quais fontes exigem conexão Glue?

Fontes JDBC, Snowflake e BigQuery precisam de conexão Glue, o que é verificado por meio do comando aws glue get-connection. Arquivos locais, arquivos do S3, DynamoDB e migrações de catálogo não exigem conexão Glue.

Como a ingestão é validada?

São realizadas todas as três verificações, sem exceção: correspondência no número de linhas entre fonte e destino, aprovação na verificação de valores nulos em colunas críticas e análise de amostra de 3 a 5 linhas.

Quais fontes estão fora do escopo?

Plataformas SaaS e de streaming, como Salesforce, ServiceNow, SAP, MongoDB e Kafka, não são suportadas, assim como a configuração de conexão Glue, a criação de tabelas vazias, a execução de consultas e as auditorias de catálogo, que são tratadas por outras habilidades.

All Files

26 filesreferences/error-handling.md12.3 KBViewreferences/iceberg-catalog-config-and-usage.md7.9 KBViewreferences/jdbc-schema-discovery.md12.7 KBViewreferences/schema-evolution.md9.3 KBViewSKILL.md10.8 KBViewreferences/bigquery-ingest.md3.7 KBViewreferences/ctas-patterns.md3.0 KBViewreferences/glue-etl-migration.md4.5 KBViewreferences/incremental-loading.md13.1 KBViewreferences/data-quality-validation.md12.1 KBViewreferences/glue-job-config.md9.4 KBViewreferences/jdbc-performance.md10.3 KBViewreferences/migration-validation.md2.7 KBViewreferences/type-transformations.md7.8 KBViewreferences/athena-loading.md2.8 KBViewreferences/dynamodb-ingest.md7.2 KBViewreferences/glue-job-scripts.md9.6 KBViewreferences/s3-files.md5.7 KBViewreferences/upload-options.md1.0 KBViewreferences/catalog-migration.md6.9 KBViewreferences/format-specific-loading.md12.8 KBViewreferences/jdbc-ingest.md5.7 KBViewreferences/local-upload.md4.5 KBViewreferences/snowflake-ingest.md3.6 KBViewreferences/migration-troubleshooting.md2.6 KBViewreferences/testing-and-scheduling.md13.6 KBView

Ver no GitHub

Move data from a source into a queryable table in the data lake. This skill assumes the source connection (if one is needed) already exists. For Glue connection setup or troubleshooting, delegate to connecting-to-data-source.

Philosophy

Default to S3 Tables unless the environment says otherwise. S3 Tables is the recommended target for new data lake work. If the user's catalog inventory shows they haven't adopted S3 Tables, recommend standard Iceberg on their existing general-purpose bucket instead of forcing them to change posture.

Common Tasks

You MUST execute commands using AWS MCP server tools when connected -- they provide validation, sandboxed execution, and audit logging. Fall back to AWS CLI only if MCP is unavailable. You MUST explain each step before executing.

Workflow

1. Verify Dependencies and Context

  • You MUST check whether AWS MCP tools or AWS CLI are available and inform the user if missing
  • You MUST confirm target AWS region and verify credentials with aws sts get-caller-identity
  • For SageMaker Unified Studio project roles, note that target tables and connections may be scoped to the project. See the caller ARN detection pattern in querying-data-lake.

2. Classify the Source

User says...Source typeReference
"upload my file", "local CSV", "move to S3"Local filelocal-upload.md
"load from S3", "import CSV/JSON/Parquet from s3://"S3 filess3-files.md
"import from Oracle/Postgres/MySQL/SQL Server/Redshift/RDS/Aurora"JDBCjdbc-ingest.md
"pull from Snowflake", "Snowflake table to S3"Snowflakesnowflake-ingest.md
"import from BigQuery", "GCP analytics to S3"BigQuerybigquery-ingest.md
"export DynamoDB", "DynamoDB to data lake"DynamoDBdynamodb-ingest.md
"migrate Glue table", "convert Hive to Iceberg"Catalog migrationcatalog-migration.md

If the user names Salesforce, ServiceNow, SAP, MongoDB, Kafka, or another SaaS/streaming source, decline -- these are not supported in this release.

If the source table is referenced by a fuzzy or business name ("migrate our orders table", "pull from the sales warehouse"), delegate to finding-data-lake-assets to resolve before proceeding.

3. Confirm Connection Exists (if applicable)

For JDBC, Snowflake, and BigQuery sources, a Glue connection is required. Check:

aws glue get-connection --name <CONNECTION_NAME> --region <REGION>

If the connection does not exist, stop and delegate to connecting-to-data-source to create and test it. Do not proceed with ingest until the connection is verified.

Local files, S3 files, DynamoDB, and catalog migration do not need a Glue connection.

4. Clarify the Target

You MUST ask the user (or suggest based on catalog inventory) before creating or writing to any table:

  • Database/namespace: Does a specific target database exist? Or should one be created?
  • Table: Existing table (append/merge) or new table (delegate to creating-data-lake-table)?
  • Format: S3 Tables (default), standard Iceberg, or raw Parquet?

Inventory-aware defaults:

If you have already run exploring-data-catalog or can quickly check, use what exists:

  • Account has an s3tablescatalog federated catalog and active table buckets: recommend S3 Tables
  • Account has general-purpose buckets with Iceberg tables and no S3 Tables usage: recommend standard Iceberg on their existing bucket
  • Account uses Parquet/ORC on S3 without Iceberg metadata: ask whether to adopt Iceberg now (recommend yes) or continue with raw files

Do not force S3 Tables on customers who haven't adopted it. See iceberg-catalog-config-and-usage.md.

Delegations from this step:

  • Target table doesn't exist -> creating-data-lake-table
  • Target database named by fuzzy term -> finding-data-lake-assets
  • User doesn't know what exists -> exploring-data-catalog

5. Execute Source Workflow

Read the source-specific reference and follow its phases. Each is self-contained with job templates, gotchas, and troubleshooting:

  • Local / S3 / JDBC / Snowflake / BigQuery / DynamoDB / catalog migration -- one reference per source

Common Glue 5.1 or higher job configuration and PySpark templates are shared in glue-job-config.md and glue-job-scripts.md.

6. Validate

Run all three, do not skip:

  1. Row count matches expected (source vs target)
  2. Null check on critical columns
  3. Spot-check 3-5 sample rows

See data-quality-validation.md.

7. Schedule (if recurring)

For recurring pipelines, create a Glue Trigger with a cron schedule. See testing-and-scheduling.md. Simple single-step pipelines use Glue Triggers; multi-step with branching uses MWAA.

Argument Routing

  • S3 path only: Infer one-time load, start Step 2 with S3 files
  • Connection name: Start Step 3 with the named connection
  • Table name: Start Step 4, ask whether this is source or target
  • --target flag: Pre-fill the target format in Step 4
  • No args: Walk through interactively

Gotchas

  • S3 Tables requires Glue 5.1 or higher and --datalake-formats iceberg job argument
  • All spark.sql.catalog.* config MUST go in --conf job arguments, never in spark.conf.set(). Glue 5.x throws AnalysisException: Cannot modify the value of a static config otherwise. See iceberg-catalog-config-and-usage.md for correct catalog configs.
  • The warehouse parameter is required in S3 Tables catalog config. Without it Spark fails with "Cannot derive default warehouse location".
  • Table and column names in S3 Tables MUST be all lowercase
  • overwritePartitions() only replaces partitions present in the DataFrame -- for full refresh with deletes, use createOrReplace()
  • Standard Iceberg targets MUST include a LOCATION clause; S3 Tables MUST NOT
  • DynamoDB does not need a Glue connection -- do not attempt to create one
  • Connection failures during ingest delegate back to connecting-to-data-source; do not debug network/credentials in this skill
  • For target tables in SageMaker Unified Studio projects, ensure the project role has write access to the target namespace before the Glue job runs

Troubleshooting

ErrorLikely causeAction
Access Denied on S3Missing IAM permissionsCheck Glue role has s3:GetObject, s3:PutObject
Access Denied on S3 TablesMissing s3tables:* permissionsAdd S3 Tables inline policy to Glue role
CTAS timeoutDataset too large for AthenaSwitch to Glue ETL or batch with WHERE filters
JDBC connection timeout/auth failureConnection-level issueDelegate to connecting-to-data-source
Throughput exceeded (DynamoDB)Read percent too highLower read.percent or use native export

See error-handling.md for the full catalog.

References

Source-specific

  • local-upload.md -- Local files
  • s3-files.md -- S3 files (CSV, JSON, Parquet, Avro, ORC)
  • jdbc-ingest.md -- Oracle, SQL Server, PostgreSQL, MySQL, RDS, Aurora, Redshift
  • snowflake-ingest.md -- Snowflake
  • bigquery-ingest.md -- BigQuery
  • dynamodb-ingest.md -- DynamoDB (export and Glue direct read)
  • catalog-migration.md -- Existing Glue catalog tables (Hive, self-managed Iceberg)

Cross-cutting

  • iceberg-catalog-config-and-usage.md -- S3 Tables, standard Iceberg, raw files: catalog config, engine access patterns
  • glue-job-config.md -- Job sizing, monitoring, retry
  • glue-job-scripts.md -- PySpark templates (append, upsert, custom SQL, full refresh)
  • incremental-loading.md -- Watermark strategies
  • testing-and-scheduling.md -- Glue Triggers, MWAA
  • data-quality-validation.md -- Row counts, null checks, Glue Data Quality
  • schema-evolution.md -- ALTER TABLE ADD COLUMNS, nested JSON
  • type-transformations.md -- Type conflict resolution
  • format-specific-loading.md -- CSV/JSON/Parquet/Avro/ORC specifics
  • athena-loading.md -- Athena INSERT INTO as simple-load fallback
  • error-handling.md -- Ingest errors (connection errors delegate to connecting-to-data-source)
  • upload-options.md -- aws s3 cp vs sync, multipart

Migration-specific

  • ctas-patterns.md -- Athena CTAS syntax and partition transforms
  • glue-etl-migration.md -- Large-table migration via Glue 5.1 or higher PySpark
  • migration-validation.md -- Full validation checklist
  • migration-troubleshooting.md -- CTAS failures, visibility, partitions

JDBC-specific

  • jdbc-schema-discovery.md -- Crawler, direct inspection, custom SQL
  • jdbc-performance.md -- Parallel reads, partitioning

Instalar ingesting-into-data-lake

Baixe e extraia os arquivos de habilidades para o seu diretório .claude/skills/.

Baixar ZIP

Clone o repositório e copie os arquivos da habilidade para o seu projeto.

git clone https://github.com/aws/agent-toolkit-for-aws/blob/main/skills/specialized-skills/analytics-skills/ingesting-into-data-lake/SKILL.md # Copy SKILL.md to your .claude/skills/ directory

Copiar Copiar
Configuração rápida: Copie a pasta da habilidade para .claude/skills/Claude, que detectará e utilizará automaticamente essa habilidade.

Habilidades relacionadas

Cloudflare Manager
Tempo atualizado 29 de Junho de 2026
pinecone
Tempo atualizado 29 de Junho de 2026
sentry-architecture-variants
Tempo atualizado 29 de Junho de 2026
azure-setup-guide
Tempo atualizado 29 de Junho de 2026
OR