Skip to content

Commit

Permalink
remove unused references
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinjqliu committed Mar 1, 2024
1 parent 8a7b876 commit 10adb1c
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 10 deletions.
9 changes: 0 additions & 9 deletions mkdocs/docs/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -265,15 +265,6 @@ catalog:
The In-Memory catalog uses in-memory data-structures to store information.
This is useful for test, demo, and playground. Do not use in production as the data is not persisted.

While you can specify In-Memory catalog in the configuration file like this, it is not recommended since information is only persisted for the duration of the function call.

```yaml
catalog:
default:
type: in_memory
warehouse: /tmp/warehouse # default warehouse location
```

# Concurrency

PyIceberg uses multiple threads to parallelize operations. The number of workers can be configured by supplying a `max-workers` entry in the configuration file, or by setting the `PYICEBERG_MAX_WORKERS` environment variable. The default value depends on the system hardware and Python version. See [the Python documentation](https://docs.python.org/3/library/concurrent.futures.html#threadpoolexecutor) for more details.
1 change: 0 additions & 1 deletion pyiceberg/catalog/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,6 @@ class CatalogType(Enum):
GLUE = "glue"
DYNAMODB = "dynamodb"
SQL = "sql"
IN_MEMORY = "in_memory"


def load_rest(name: str, conf: Properties) -> Catalog:
Expand Down

0 comments on commit 10adb1c

Please sign in to comment.