Skip to content

Registry + Artifacts: Add usage table - #3057

Open
ngrayluna wants to merge 18 commits into
mainfrom
registry_limit_table
Open

Registry + Artifacts: Add usage table#3057
ngrayluna wants to merge 18 commits into
mainfrom
registry_limit_table

Conversation

@ngrayluna

@ngrayluna ngrayluna commented Aug 11, 2026

Copy link
Copy Markdown
Contributor

Description

Adds:

  • snippet with usage limits for artifacts and registry (the source of truth)
  • adds said snippet/table to artifacts and registry overview pages
  • a new support article

Note that I decided to keep it as one table because artifacts and registry are heavily tied together + keeping separate include snippets is prone to drift.

Related issues

@mintlify

mintlify Bot commented Aug 11, 2026

Copy link
Copy Markdown
Contributor

Preview deployment for your docs. Learn more about Mintlify Previews.

Project Status Preview Updated (UTC)
wandb 🟢 Ready View Preview Aug 11, 2026, 3:50 PM

📄 Preview this PR's docs · 5783fa0

Page Change
Artifact Registry Usage Limits Added · +12 −0
What Are Artifact Registry Limits Added · +19 −0
Artifacts Changed · +6 −0
Registry Changed · +7 −0
Support Changed · +1 −1
Models Changed · +2 −2
Artifacts Changed · +4 −1
Experiments Changed · +4 −1

Updated 2026-08-20 18:52:04 UTC for deployment.

@github-actions

github-actions Bot commented Aug 11, 2026

Copy link
Copy Markdown
Contributor

Readability impact

Word-weighted Flesch-Kincaid grade change across 6 changed pages: +0.1 (harder).

Lower Flesch-Kincaid grade and higher reading ease both mean easier to read. This check is informational and never blocks a PR.

Human readability

Page FK grade before FK grade after FK Δ Reading ease Δ Direction
models/artifacts.mdx 9.0 9.1 +0.1 -1.5 harder
models/registry.mdx 11.2 11.3 +0.1 -0.7 harder
snippets/_includes/artifact-registry-usage-limits.mdx 7.2 n/a
support.mdx 7.9 7.9 +0.0 +0.0 unchanged
support/models.mdx 11.4 11.4 +0.0 +0.0 unchanged
support/models/articles/what-are-artifact-registry-limits.mdx too little prose to score
support/models/tags/artifacts.mdx 7.9 8.0 +0.1 -0.9 harder
support/models/tags/experiments.mdx 7.0 7.1 +0.1 -0.3 harder

AI agent comprehension

Rated 0-3 (higher is easier for an agent to parse and act on).

Page Before After Δ
support/models/tags/experiments.mdx 2 2 +0
models/registry.mdx 2 2 +0
models/artifacts.mdx 2 2 +0
support/models/tags/artifacts.mdx 2 2 +0
support/models.mdx 2 2 +0
support.mdx 2 2 +0
snippets/_includes/artifact-registry-usage-limits.mdx 3

Curated-docs baseline median FK grade by type: conceptual 10.5, procedural 8.8, reference 9.4.

From workflow run 32405215077

@github-actions

github-actions Bot commented Aug 11, 2026

Copy link
Copy Markdown
Contributor

🔗 Link Checker Results

All links are valid!

No broken links were detected.

Preview: https://wb-21fd5541-registry-limit-table.mintlify.site

@github-actions

github-actions Bot commented Aug 13, 2026

Copy link
Copy Markdown
Contributor

Knowledgebase navigation update

  • Keywords not on the allowed list: 1 distinct keyword.

Generator warnings

  • Unknown keyword Python API used in support/models/articles/how-do-i-delete-many-artifacts-at-once.mdx. Add it to docengine-site/knowledgebase.yaml to suppress this warning.

From workflow run 32405215334

@ngrayluna ngrayluna changed the title Registry + Artifacts: Add limits table Registry + Artifacts: Add usage table Aug 13, 2026
@ngrayluna
ngrayluna marked this pull request as ready for review August 13, 2026 20:31
@ngrayluna
ngrayluna requested a review from a team as a code owner August 13, 2026 20:31
@@ -0,0 +1,12 @@
| Dimension | Scope | Counting | Free | Pro | Enterprise |

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

these limits most likely will no affect on prem, not sure if we need to call that out or not

| Linked versions per Registry Collection | Per Registry Collection | Distinct linked artifact versions in one registry collection | 500 | 1,000 | 2,500 |
| Versions per artifact sequence | Per artifact sequence | Committed versions in one branch (sequence) | 1,000 | 10,000 | 50,000 |

An artifact *sequence* is a specific, versioned artifact in a project. For example, if you log an artifact named `model`, W&B creates a sequence called `model`. Each time you log a new version of that artifact, W&B creates a new version in the sequence: `model:v0`, `model:v1`, and `model:v2`.

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In general, "Sequence" and "Portofolio" are internal terminology we use to distinguish project collections vs registry collections. With that, I would just maybe rename this to "Versions per project collection" and keep "Linked versions per registry collection"?

| Linked versions per Registry Collection | Per Registry Collection | Distinct linked artifact versions in one registry collection | 500 | 1,000 | 2,500 |
| Versions per artifact sequence | Per artifact sequence | Committed versions in one branch (sequence) | 1,000 | 10,000 | 50,000 |

An artifact *sequence* is a specific, versioned artifact in a project. For example, if you log an artifact named `model`, W&B creates a sequence called `model`. Each time you log a new version of that artifact, W&B creates a new version in the sequence: `model:v0`, `model:v1`, and `model:v2`.

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

also, here, a sequence isn't exactly a specific, versioned artifact. It is a collection of artifacts which is ordered / versioned

| Dimension | Scope | Counting | Free | Pro | Enterprise |
| --- | --- | --- | --- | --- | --- |
| Registries| Organization | Registry projects in the organization | 5 | 25 | 250|
| Artifacts | Organization | Committed artifact versions across the whole organization | 100,000 | 5,000,000 | 100,000,000 |

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Committed is an internal detail, here you can probably say Artifact versions across the whole org

| --- | --- | --- | --- | --- | --- |
| Registries| Organization | Registry projects in the organization | 5 | 25 | 250|
| Artifacts | Organization | Committed artifact versions across the whole organization | 100,000 | 5,000,000 | 100,000,000 |
| Unique tags | Organization | Distinct tag definitions in the org | 1,000 | 1,000 | 10,000 |

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
| Unique tags | Organization | Distinct tag definitions in the org | 1,000 | 1,000 | 10,000 |
| Unique tags | Organization | Distinct tag definitions in the organization | 1,000 | 1,000 | 10,000 |

| Artifacts | Organization | Committed artifact versions across the whole organization | 100,000 | 5,000,000 | 100,000,000 |
| Unique tags | Organization | Distinct tag definitions in the org | 1,000 | 1,000 | 10,000 |
| Collections | Per Registry | Portfolios inside one registry | 50 | 250 | 5,000 |
| Linked versions per Registry Collection | Per Registry Collection | Distinct linked artifact versions in one registry collection | 500 | 1,000 | 2,500 |

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
| Linked versions per Registry Collection | Per Registry Collection | Distinct linked artifact versions in one registry collection | 500 | 1,000 | 2,500 |
| Linked versions | Per Registry Collection | Distinct linked artifact versions in one registry collection | 500 | 1,000 | 2,500 |

| Unique tags | Organization | Distinct tag definitions in the org | 1,000 | 1,000 | 10,000 |
| Collections | Per Registry | Portfolios inside one registry | 50 | 250 | 5,000 |
| Linked versions per Registry Collection | Per Registry Collection | Distinct linked artifact versions in one registry collection | 500 | 1,000 | 2,500 |
| Versions per artifact sequence | Per artifact sequence | Committed versions in one branch (sequence) | 1,000 | 10,000 | 50,000 |

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
| Versions per artifact sequence | Per artifact sequence | Committed versions in one branch (sequence) | 1,000 | 10,000 | 50,000 |
| Artifact Versions | Per project collection | Versions in one project collection | 1,000 | 10,000 | 50,000 |

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants