Add DSQL loader operations reference#176
Draft
amaksimo wants to merge 1 commit into
Draft
Conversation
Adds references/data-loading.md covering the operational knowledge that isn't in connectivity-tools.md today: fresh-vs-warm partition behavior and the ~3-4K rec/s single-partition ceiling, --manifest-dir / --resume-job-id / --keep-manifest semantics (including the /tmp tmpfs gotcha on AL2023), --on-conflict do-nothing safety conditions, schema inference caveats with --dry-run, the 1+num_indexes write cost, and a five-symptom diagnostic decision tree. connectivity-tools.md keeps its short loader entry and links out. SKILL.md gets a new index entry.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
The current DSQL skill documents the loader at a basic invocation level (~30 lines in
connectivity-tools.md) but does not cover the operational knowledge that determines whether a load succeeds and at what rate. This PR adds a dedicatedreferences/data-loading.mdwith the operational details an agent needs when planning or diagnosing a load.New file:
plugins/databases-on-aws/skills/dsql/references/data-loading.mdTopics covered:
--manifest-dir,--resume-job-id,--keep-manifest. Includes the Amazon Linux 2023/tmptmpfs gotcha that silently makes resume impossible across an OOM/SIGKILL/reboot.--on-conflict do-nothingsemantics — when it is safe to use and a common pitfall (duplicate-PK rows in the source).--dry-runshould be used to surface the inferred schema first.1 + num_indexeswrite cost and when to defer index creation withCREATE INDEX ASYNC.The existing loader entry in
connectivity-tools.mdkeeps its install/quickstart content and now links out to the new reference.SKILL.mdgets a one-entry index update.Test plan
scaling-guide.md,development-guide.md,connectivity-tools.md).CREATE INDEX ASYNCreferences match existing usage in the skill.