Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions docs/src/rest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ info:

The `components/schemas`, `components/responses`, `components/examples`, `tags` sections define
the request and response shape for each operation in a Lance Namespace across all implementations.
See https://lancedb.github.io/lance-namespace/spec/operations for more details.
See https://lance.org/format/namespace/operations for more details.

The `servers`, `security`, `paths`, `components/parameters` sections are for the
Lance REST Namespace implementation, which defines a complete REST server that can work with Lance datasets.
See https://lancedb.github.io/lance-namespace/spec/impls/rest for more details.
See https://lance.org/format/namespace/impls/rest for more details.
servers:
- url: "{scheme}://{host}:{port}/{basePath}"
description: Generic server URL with all parts configurable
Expand Down
2 changes: 1 addition & 1 deletion docs/src/sdk_docs.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ Lance provides comprehensive documentation for all the language SDKs.
These auto-generated docs contain detailed information about
all classes, functions, and methods available in each language.

- [Python](https://lancedb.github.io/lance-python-doc)
- [Python](https://lance-format.github.io/lance-python-doc)
- [Rust](https://docs.rs/lance/latest/lance)
- [Java](https://www.javadoc.io/doc/com.lancedb/lance-core/latest/index.html)
2 changes: 1 addition & 1 deletion python/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Lance Python SDK

Please read the contribution guide at https://lancedb.github.io/lance/community/contributing#python-development.
Please read the contribution guide at the [CONTRIBUTING.md](https://github.com/lance-format/lance/blob/main/python/CONTRIBUTING.md) page
4 changes: 2 additions & 2 deletions python/python/lance/dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -702,7 +702,7 @@ def scanner(
All columns are fetched if None or unspecified.
filter: pa.compute.Expression or str
Expression or str that is a valid SQL where clause. See
`Lance filter pushdown <https://lancedb.github.io/lance/guide/read_and_write/#filter-push-down>`_
`Lance filter pushdown <https://lance.org/guide/read_and_write/#filter-push-down>`_
for valid SQL expressions.
limit: int, default None
Fetch up to this many rows. All rows if None or unspecified.
Expand Down Expand Up @@ -964,7 +964,7 @@ def to_table(
All columns are fetched if None or unspecified.
filter : pa.compute.Expression or str
Expression or str that is a valid SQL where clause. See
`Lance filter pushdown <https://lancedb.github.io/lance/guide/read_and_write/#filter-push-down>`_
`Lance filter pushdown <https://lance.org/guide/read_and_write/#filter-push-down>`_
for valid SQL expressions.
limit: int, default None
Fetch up to this many rows. All rows if None or unspecified.
Expand Down
2 changes: 1 addition & 1 deletion python/python/lance/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,6 @@ def batch_iter():
raise TypeError(
f"Unknown data type {type(data_obj)}. "
"Please check "
"https://lancedb.github.io/lance/guide/read_and_write/ "
"https://lance.org/guide/read_and_write/ "
"to see supported types."
)
2 changes: 1 addition & 1 deletion rust/lance-file/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# lance-file

`lance-file` is an internal sub-crate, containing readers and writers for the
[Lance file format](https://lancedb.github.io/lance/format/file/).
[Lance file format](https://lance.org/format/file/).

**Important Note**: This crate is **not intended for external usage**.
2 changes: 1 addition & 1 deletion rust/lance-namespace-impls/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,4 +78,4 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {

## Documentation

For more information about Lance and its namespace system, see the [Lance Namespace documentation](https://lancedb.github.io/lance/format/namespace).
For more information about Lance and its namespace system, see the [Lance Namespace documentation](https://lance.org/format/namespace).
2 changes: 1 addition & 1 deletion rust/lance-namespace/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,4 @@ async fn example(namespace: &dyn LanceNamespace) {

## Documentation

For more information about Lance and its namespace system, see the [Lance Namespace documentation](https://lancedb.github.io/lance/format/namespace).
For more information about Lance and its namespace system, see the [Lance Namespace documentation](https://lance.org/format/namespace).
2 changes: 1 addition & 1 deletion rust/lance-table/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# lance-table

`lance-table` is an internal sub-crate for the
[Lance table format](https://lancedb.github.io/lance/format/table/).
[Lance table format](https://lance.org/format/table/).

**Important Note**: This crate is **not intended for external usage**.
2 changes: 1 addition & 1 deletion rust/lance/src/session.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ pub(crate) mod index_extension;
/// A session contains two different caches:
/// - The index cache is used to cache opened indices and will cache index data
/// - The metadata cache is used to cache a variety of dataset metadata (more
/// details can be found in the [performance guide](https://lancedb.github.io/lance/guide/performance/)
/// details can be found in the [performance guide](https://lance.org/guide/performance/)
#[derive(Clone)]
pub struct Session {
/// Global cache for opened indices.
Expand Down
Loading