Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Blog: Fix rendering of namespace creation option #6778

Merged
merged 1 commit into from
May 8, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions site/docs/blog/namespace-enforcement.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ Starting from Nessie version 0.52.3, it is required to have existing Namespaces
In case of tables that have implicit namespaces, new commits will fail after the upgrade as this rule will be enforced.
Therefore, it is necessary to explicitly create the namespaces.

Namespaces can be created using any of these options:
* Using SQL command (for Spark, `CREATE NAMESPACE catalogName.namespaceName`)
* Using [Iceberg Catalog API](https://github.com/apache/iceberg/blob/3ab00171b48bb793a3b71845eb12d5077ba892f1/nessie/src/main/java/org/apache/iceberg/nessie/NessieCatalog.java#L262).
Namespaces can be created using any of these options:
* Using SQL command (for Spark, `CREATE NAMESPACE catalogName.namespaceName`).
* Using [Iceberg Catalog API](https://github.com/apache/iceberg/blob/3ab00171b48bb793a3b71845eb12d5077ba892f1/nessie/src/main/java/org/apache/iceberg/nessie/NessieCatalog.java#L262).
* Using [content generator tool](https://github.com/projectnessie/nessie/blob/main/tools/content-generator/README.md) to batch create the missing namespaces with `create-missing-namespaces` option.

[More info from the spec](https://github.com/projectnessie/nessie/blob/main/api/NESSIE-SPEC-2-0.md#200-beta1).
Expand Down