icechunk.config#
Repository configuration, manifest settings, compression, and caching.
icechunk.config #
Classes:
| Name | Description |
|---|---|
CachingConfig | Configuration for how Icechunk caches its metadata files |
CompressionAlgorithm | Enum for selecting the compression algorithm used by Icechunk to write its metadata files |
CompressionConfig | Configuration for how Icechunk compresses its metadata files |
ManifestConfig | Configuration for how Icechunk manifests |
ManifestPreloadCondition | Configuration for conditions under which manifests will preload on session creation |
ManifestPreloadConfig | Configuration for how Icechunk manifest preload on session creation |
ManifestSplitCondition | Configuration for conditions under which manifests will be split into splits |
ManifestSplitDimCondition | Conditions for specifying dimensions along which to shard manifests. |
ManifestSplittingConfig | Configuration for manifest splitting. |
ManifestVirtualChunkLocationCompressionConfig | Configuration for zstd dictionary-based compression of virtual chunk location URLs in manifests. |
RepositoryConfig | Configuration for an Icechunk repository |
Functions:
| Name | Description |
|---|---|
initialize_logs | Initialize the logging system for the library. |
set_logs_filter | Set filters and log levels for the different modules. |
CachingConfig #
Configuration for how Icechunk caches its metadata files
Methods:
| Name | Description |
|---|---|
__new__ | Create a new |
Attributes:
| Name | Type | Description |
|---|---|---|
num_bytes_attributes | int | None | The number of bytes of attributes to cache. |
num_bytes_chunks | int | None | The number of bytes of chunks to cache. |
num_chunk_refs | int | None | The number of chunk references to cache. |
num_snapshot_nodes | int | None | The number of snapshot nodes to cache. |
num_transaction_changes | int | None | The number of transaction changes to cache. |
Source code in icechunk-python/python/icechunk/_icechunk_python.pyi
449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 | |
num_bytes_attributes property writable #
The number of bytes of attributes to cache.
Returns:
| Type | Description |
|---|---|
int | None | The number of bytes of attributes to cache. |
num_bytes_chunks property writable #
The number of bytes of chunks to cache.
Returns:
| Type | Description |
|---|---|
int | None | The number of bytes of chunks to cache. |
num_chunk_refs property writable #
The number of chunk references to cache.
Returns:
| Type | Description |
|---|---|
int | None | The number of chunk references to cache. |
num_snapshot_nodes property writable #
The number of snapshot nodes to cache.
Returns:
| Type | Description |
|---|---|
int | None | The number of snapshot nodes to cache. |
num_transaction_changes property writable #
The number of transaction changes to cache.
Returns:
| Type | Description |
|---|---|
int | None | The number of transaction changes to cache. |
__new__ #
__new__(
num_snapshot_nodes=None,
num_chunk_refs=None,
num_transaction_changes=None,
num_bytes_attributes=None,
num_bytes_chunks=None,
)
Create a new CachingConfig object
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
num_snapshot_nodes | int | None | The number of snapshot nodes to cache. Default: 500,000 | None |
num_chunk_refs | int | None | The number of chunk references to cache. Default: 15,000,000 | None |
num_transaction_changes | int | None | The number of transaction changes to cache. Default: 0 | None |
num_bytes_attributes | int | None | The number of bytes of attributes to cache. Default: 0 | None |
num_bytes_chunks | int | None | The number of bytes of chunks to cache. Default: 0 | None |
Source code in icechunk-python/python/icechunk/_icechunk_python.pyi
CompressionAlgorithm #
Bases: Enum
Enum for selecting the compression algorithm used by Icechunk to write its metadata files
Attributes:
| Name | Type | Description |
|---|---|---|
Zstd | int | The Zstd compression algorithm. |
Methods:
| Name | Description |
|---|---|
default | The default compression algorithm used by Icechunk to write its metadata files. |
Source code in icechunk-python/python/icechunk/_icechunk_python.pyi
default staticmethod #
The default compression algorithm used by Icechunk to write its metadata files.
Returns:
| Type | Description |
|---|---|
CompressionAlgorithm | The default compression algorithm. |
Source code in icechunk-python/python/icechunk/_icechunk_python.pyi
CompressionConfig #
Configuration for how Icechunk compresses its metadata files
Methods:
| Name | Description |
|---|---|
__new__ | Create a new |
default | The default compression configuration used by Icechunk to write its metadata files. |
Attributes:
| Name | Type | Description |
|---|---|---|
algorithm | CompressionAlgorithm | None | The compression algorithm used by Icechunk to write its metadata files. |
level | int | None | The compression level used by Icechunk to write its metadata files. |
Source code in icechunk-python/python/icechunk/_icechunk_python.pyi
algorithm property writable #
The compression algorithm used by Icechunk to write its metadata files.
Returns:
| Type | Description |
|---|---|
CompressionAlgorithm | None | The compression algorithm used by Icechunk to write its metadata files. |
level property writable #
The compression level used by Icechunk to write its metadata files.
Returns:
| Type | Description |
|---|---|
int | None | The compression level used by Icechunk to write its metadata files. |
__new__ #
Create a new CompressionConfig object
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
algorithm | CompressionAlgorithm | None | The compression algorithm to use. Default: Zstd | None |
level | int | None | The compression level to use. Default: 3 | None |
Source code in icechunk-python/python/icechunk/_icechunk_python.pyi
default staticmethod #
The default compression configuration used by Icechunk to write its metadata files.
Returns:
| Type | Description |
|---|---|
CompressionConfig | |
ManifestConfig #
Configuration for how Icechunk manifests
Methods:
| Name | Description |
|---|---|
__new__ | Create a new |
Attributes:
| Name | Type | Description |
|---|---|---|
preload | ManifestPreloadConfig | None | The configuration for how Icechunk manifests will be preloaded. |
splitting | ManifestSplittingConfig | None | The configuration for how Icechunk manifests will be split. |
virtual_chunk_location_compression | ManifestVirtualChunkLocationCompressionConfig | None | The configuration for zstd compression of virtual chunk location URLs. |
Source code in icechunk-python/python/icechunk/_icechunk_python.pyi
932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 | |
preload property writable #
The configuration for how Icechunk manifests will be preloaded.
Returns:
| Type | Description |
|---|---|
ManifestPreloadConfig | None | The configuration for how Icechunk manifests will be preloaded. |
splitting property writable #
The configuration for how Icechunk manifests will be split.
Returns:
| Type | Description |
|---|---|
ManifestSplittingConfig | None | The configuration for how Icechunk manifests will be split. |
virtual_chunk_location_compression property writable #
The configuration for zstd compression of virtual chunk location URLs.
Returns:
| Type | Description |
|---|---|
ManifestVirtualChunkLocationCompressionConfig | None | The compression configuration. |
__new__ #
Create a new ManifestConfig object
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
preload | ManifestPreloadConfig | None | The configuration for how Icechunk manifests will be preloaded. | None |
splitting | ManifestSplittingConfig | None | The configuration for how Icechunk manifests will be split. | None |
virtual_chunk_location_compression | ManifestVirtualChunkLocationCompressionConfig | None | The configuration for zstd compression of virtual chunk location URLs. | None |
Source code in icechunk-python/python/icechunk/_icechunk_python.pyi
ManifestPreloadCondition #
Configuration for conditions under which manifests will preload on session creation
Methods:
| Name | Description |
|---|---|
__and__ | Create a preload condition that matches if both this condition and |
__or__ | Create a preload condition that matches if either this condition or |
and_conditions | Create a preload condition that matches only if all passed |
false | Create a preload condition that never matches any manifests |
name_matches | Create a preload condition that matches if the array's name matches the passed regex. |
num_refs | Create a preload condition that matches only if the number of chunk references in the manifest is within the given range. |
or_conditions | Create a preload condition that matches if any of |
path_matches | Create a preload condition that matches if the full path to the array matches the passed regex. |
true | Create a preload condition that always matches any manifest |
Source code in icechunk-python/python/icechunk/_icechunk_python.pyi
__and__ #
Create a preload condition that matches if both this condition and other match.
__or__ #
Create a preload condition that matches if either this condition or other match.
and_conditions staticmethod #
Create a preload condition that matches only if all passed conditions match
false staticmethod #
name_matches staticmethod #
Create a preload condition that matches if the array's name matches the passed regex.
Example, for an array /model/outputs/temperature, the following will match:
Source code in icechunk-python/python/icechunk/_icechunk_python.pyi
num_refs staticmethod #
Create a preload condition that matches only if the number of chunk references in the manifest is within the given range.
from_refs is inclusive, to_refs is exclusive.
Source code in icechunk-python/python/icechunk/_icechunk_python.pyi
or_conditions staticmethod #
Create a preload condition that matches if any of conditions matches
path_matches staticmethod #
Create a preload condition that matches if the full path to the array matches the passed regex.
Array paths are absolute, as in /path/to/my/array
Source code in icechunk-python/python/icechunk/_icechunk_python.pyi
ManifestPreloadConfig #
Configuration for how Icechunk manifest preload on session creation
Methods:
| Name | Description |
|---|---|
__new__ | Create a new |
Attributes:
| Name | Type | Description |
|---|---|---|
max_arrays_to_scan | int | None | The maximum number of arrays to scan when looking for manifests to preload. |
max_total_refs | int | None | The maximum number of references to preload. |
preload_if | ManifestPreloadCondition | None | The condition under which manifests will be preloaded. |
Source code in icechunk-python/python/icechunk/_icechunk_python.pyi
649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 | |
max_arrays_to_scan property writable #
The maximum number of arrays to scan when looking for manifests to preload.
Returns:
| Type | Description |
|---|---|
int | None | The maximum number of arrays to scan. Default is 50. |
max_total_refs property writable #
The maximum number of references to preload.
Returns:
| Type | Description |
|---|---|
int | None | The maximum number of references to preload. |
preload_if property writable #
The condition under which manifests will be preloaded.
Returns:
| Type | Description |
|---|---|
ManifestPreloadCondition | None | The condition under which manifests will be preloaded. |
__new__ #
Create a new ManifestPreloadConfig object
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
max_total_refs | int | None | The maximum number of references to preload. | None |
preload_if | ManifestPreloadCondition | None | The condition under which manifests will be preloaded. | None |
max_arrays_to_scan | int | None | The maximum number of arrays to scan when looking for manifests to preload. Default is 50. Increase for repositories with many nested groups. | None |
Source code in icechunk-python/python/icechunk/_icechunk_python.pyi
ManifestSplitCondition #
Configuration for conditions under which manifests will be split into splits
Methods:
| Name | Description |
|---|---|
AnyArray | Create a splitting condition that matches any array. |
__and__ | Create a splitting condition that matches if both this condition and |
__or__ | Create a splitting condition that matches if either this condition or |
and_conditions | Create a splitting condition that matches only if all passed |
name_matches | Create a splitting condition that matches if the array's name matches the passed regex. |
or_conditions | Create a splitting condition that matches if any of |
path_matches | Create a splitting condition that matches if the full path to the array matches the passed regex. |
Source code in icechunk-python/python/icechunk/_icechunk_python.pyi
AnyArray staticmethod #
__and__ #
Create a splitting condition that matches if both this condition and other match
__or__ #
Create a splitting condition that matches if either this condition or other matches
and_conditions staticmethod #
Create a splitting condition that matches only if all passed conditions match
name_matches staticmethod #
Create a splitting condition that matches if the array's name matches the passed regex.
Example, for an array /model/outputs/temperature, the following will match:
Source code in icechunk-python/python/icechunk/_icechunk_python.pyi
or_conditions staticmethod #
Create a splitting condition that matches if any of conditions matches
path_matches staticmethod #
Create a splitting condition that matches if the full path to the array matches the passed regex.
Array paths are absolute, as in /path/to/my/array
Source code in icechunk-python/python/icechunk/_icechunk_python.pyi
ManifestSplitDimCondition #
Conditions for specifying dimensions along which to shard manifests.
Classes:
| Name | Description |
|---|---|
Any | Split along any other unspecified dimension. |
Axis | Split along specified integer axis. |
DimensionName | Split along specified named dimension. |
Source code in icechunk-python/python/icechunk/_icechunk_python.pyi
ManifestSplittingConfig #
Configuration for manifest splitting.
Methods:
| Name | Description |
|---|---|
__new__ | Configuration for how Icechunk manifests will be split. |
Attributes:
| Name | Type | Description |
|---|---|---|
split_sizes | _SplitSizes | Configuration for how Icechunk manifests will be split. |
Source code in icechunk-python/python/icechunk/_icechunk_python.pyi
split_sizes property writable #
Configuration for how Icechunk manifests will be split.
Returns:
| Type | Description |
|---|---|
tuple[tuple[ManifestSplitCondition, tuple[tuple[ManifestSplitDimCondition, int], ...]], ...] | The configuration for how Icechunk manifests will be preloaded. |
__new__ #
Configuration for how Icechunk manifests will be split.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
split_sizes | _SplitSizes | None | The configuration for how Icechunk manifests will be preloaded. | None |
Examples:
Split manifests for the temperature array, with 3 chunks per shard along the longitude dimension.
>>> ManifestSplittingConfig.from_dict(
... {
... ManifestSplitCondition.name_matches("temperature"): {
... ManifestSplitDimCondition.DimensionName("longitude"): 3
... }
... }
... )
Source code in icechunk-python/python/icechunk/_icechunk_python.pyi
ManifestVirtualChunkLocationCompressionConfig #
Configuration for zstd dictionary-based compression of virtual chunk location URLs in manifests.
Methods:
| Name | Description |
|---|---|
__new__ | Create a new |
Source code in icechunk-python/python/icechunk/_icechunk_python.pyi
__new__ #
__new__(
min_num_chunks=None,
*,
dictionary_max_training_samples=None,
dictionary_max_size_bytes=None,
compression_level=None,
)
Create a new ManifestVirtualChunkLocationCompressionConfig object
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
min_num_chunks | int | None | Minimum number of virtual chunks required to enable compression. Default: 1000. | None |
dictionary_max_training_samples | int | None | Maximum number of URL samples used to train the compression dictionary. Default: 100. | None |
dictionary_max_size_bytes | int | None | Maximum size of the trained compression dictionary in bytes. Default: 2048. | None |
compression_level | int | None | Zstd compression level. Default: 3. | None |
Source code in icechunk-python/python/icechunk/_icechunk_python.pyi
RepositoryConfig #
Configuration for an Icechunk repository
Methods:
| Name | Description |
|---|---|
__new__ | Create a new |
clear_virtual_chunk_containers | Clear all virtual chunk containers from the repository. |
default | Create a default repository config instance |
get_virtual_chunk_container | Get the virtual chunk container for the repository associated with the given name. |
merge | Merge another RepositoryConfig with this one. |
set_virtual_chunk_container | Add or update a virtual chunk container in the repository configuration. |
Attributes:
| Name | Type | Description |
|---|---|---|
caching | CachingConfig | None | The caching configuration for the repository. |
compression | CompressionConfig | None | The compression configuration for the repository. |
get_partial_values_concurrency | int | None | The number of concurrent requests to make when getting partial values from storage. |
inline_chunk_threshold_bytes | int | None | The maximum size of a chunk that will be stored inline in the repository. Chunks larger than this size will be written to storage. |
manifest | ManifestConfig | None | The manifest configuration for the repository. |
max_concurrent_requests | int | None | The maximum number of concurrent HTTP requests Icechunk will do for this repo. |
num_updates_per_repo_info_file | int | None | Maximum number of updates stored in a single repo info file. When this |
repo_update_retries | RepoUpdateRetryConfig | None | Retry configuration for repo info update operations. |
storage | StorageSettings | None | The storage configuration for the repository. |
virtual_chunk_containers | dict[str, VirtualChunkContainer] | None | The virtual chunk containers for the repository. |
Source code in icechunk-python/python/icechunk/_icechunk_python.pyi
1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 | |
caching property writable #
The caching configuration for the repository.
Returns:
| Type | Description |
|---|---|
CachingConfig | None | The caching configuration for the repository. |
compression property writable #
The compression configuration for the repository.
Returns:
| Type | Description |
|---|---|
CompressionConfig | None | The compression configuration for the repository. |
get_partial_values_concurrency property writable #
The number of concurrent requests to make when getting partial values from storage.
Returns:
| Type | Description |
|---|---|
int | None | The number of concurrent requests to make when getting partial values from storage. |
inline_chunk_threshold_bytes property writable #
The maximum size of a chunk that will be stored inline in the repository. Chunks larger than this size will be written to storage.
manifest property writable #
The manifest configuration for the repository.
Returns:
| Type | Description |
|---|---|
ManifestConfig | None | The manifest configuration for the repository. |
max_concurrent_requests property writable #
The maximum number of concurrent HTTP requests Icechunk will do for this repo.
Returns:
| Type | Description |
|---|---|
int | None | The maximum number of concurrent HTTP requests Icechunk will do for this repo. |
num_updates_per_repo_info_file property writable #
Maximum number of updates stored in a single repo info file. When this limit is reached, a new repo info file is created. Lower values produce slightly smaller repo info files but require more object fetches to reconstruct the ops log. Default is 1000.
repo_update_retries property writable #
Retry configuration for repo info update operations.
storage property writable #
The storage configuration for the repository.
Returns:
| Type | Description |
|---|---|
StorageSettings | None | The storage configuration for the repository. |
virtual_chunk_containers property #
The virtual chunk containers for the repository.
Returns:
| Type | Description |
|---|---|
dict[str, VirtualChunkContainer] | None | The virtual chunk containers for the repository. |
__new__ #
__new__(
inline_chunk_threshold_bytes=None,
get_partial_values_concurrency=None,
compression=None,
max_concurrent_requests=None,
caching=None,
storage=None,
virtual_chunk_containers=None,
manifest=None,
repo_update_retries=None,
num_updates_per_repo_info_file=None,
)
Create a new RepositoryConfig object
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
inline_chunk_threshold_bytes | int | None | The maximum size of a chunk that will be stored inline in the repository. Default: 512 | None |
get_partial_values_concurrency | int | None | The number of concurrent requests to make when getting partial values from storage. Default: 10 | None |
compression | CompressionConfig | None | The compression configuration for the repository. | None |
max_concurrent_requests | int | None | The maximum number of concurrent HTTP requests Icechunk will do for this repo. Default: 256 | None |
caching | CachingConfig | None | The caching configuration for the repository. | None |
storage | StorageSettings | None | The storage configuration for the repository. | None |
virtual_chunk_containers | dict[str, VirtualChunkContainer] | None | The virtual chunk containers for the repository. | None |
manifest | ManifestConfig | None | The manifest configuration for the repository. | None |
repo_update_retries | RepoUpdateRetryConfig | None | Retry configuration for repo info update operations. | None |
num_updates_per_repo_info_file | int | None | Maximum number of updates stored in a single repo info file. When this limit is reached, a new repo info file is created. Lower values produce slightly smaller repo info files but require more object fetches to reconstruct the ops log. Default: 1000 | None |
Source code in icechunk-python/python/icechunk/_icechunk_python.pyi
clear_virtual_chunk_containers #
default staticmethod #
get_virtual_chunk_container #
Get the virtual chunk container for the repository associated with the given name.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
name | str | The name of the virtual chunk container to get. | required |
Returns:
| Type | Description |
|---|---|
VirtualChunkContainer | None | The virtual chunk container for the repository associated with the given name. |
Source code in icechunk-python/python/icechunk/_icechunk_python.pyi
merge #
Merge another RepositoryConfig with this one.
When merging, values from the other config take precedence. For nested configs (compression, caching, manifest, storage), the merge is applied recursively. For virtual_chunk_containers, entries from the other config extend this one.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
other | RepositoryConfig | The configuration to merge with this one. | required |
Returns:
| Type | Description |
|---|---|
RepositoryConfig | A new merged configuration. |
Source code in icechunk-python/python/icechunk/_icechunk_python.pyi
set_virtual_chunk_container #
Add or update a virtual chunk container in the repository configuration.
For named containers, the name is the identity: if a container with the same name already exists (even with a different url_prefix), it will be replaced. For unnamed containers, the url_prefix is the key.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
cont | VirtualChunkContainer | The virtual chunk container to set. | required |
Source code in icechunk-python/python/icechunk/_icechunk_python.pyi
initialize_logs #
Initialize the logging system for the library.
Reads the value of the environment variable ICECHUNK_LOG to obtain the filters. This is autamtically called on import icechunk.
Source code in icechunk-python/python/icechunk/_icechunk_python.pyi
set_logs_filter #
Set filters and log levels for the different modules.
Examples: - set_logs_filter("trace") # trace level for all modules - set_logs_filter("error") # error level for all modules - set_logs_filter("icechunk=debug,info") # debug level for icechunk, info for everything else
Full spec for the log_filter_directive syntax is documented in https://docs.rs/tracing-subscriber/latest/tracing_subscriber/filter/struct.EnvFilter.html#directives
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
log_filter_directive | str | None | The comma separated list of directives for modules and log levels. If None, the directive will be read from the environment variable ICECHUNK_LOG | required |