Skip to content

Commit

Permalink
Revert "Add index_fullness to the describeIndexStats response"
Browse files Browse the repository at this point in the history
This reverts commit 91ae6b5.
  • Loading branch information
yarden-slon committed Mar 1, 2022
1 parent 91ae6b5 commit eaab2a4
Show file tree
Hide file tree
Showing 7 changed files with 1,944 additions and 759 deletions.
4 changes: 0 additions & 4 deletions pinecone/core/client/model/describe_index_stats_response.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@ def openapi_types():
return {
'namespaces': ({str: (NamespaceSummary,)},), # noqa: E501
'dimension': (int,), # noqa: E501
'index_fullness': (float,), # noqa: E501
}

@cached_property
Expand All @@ -105,7 +104,6 @@ def discriminator():
attribute_map = {
'namespaces': 'namespaces', # noqa: E501
'dimension': 'dimension', # noqa: E501
'index_fullness': 'indexFullness', # noqa: E501
}

read_only_vars = {
Expand Down Expand Up @@ -151,7 +149,6 @@ def _from_openapi_data(cls, *args, **kwargs): # noqa: E501
_visited_composed_classes = (Animal,)
namespaces ({str: (NamespaceSummary,)}): A mapping for each namespace in the index from namespace name to a summary of its contents.. [optional] # noqa: E501
dimension (int): The dimension of the indexed vectors.. [optional] # noqa: E501
index_fullness (float): The storage fullness of the index.. [optional] # noqa: E501
"""

_check_type = kwargs.pop('_check_type', True)
Expand Down Expand Up @@ -235,7 +232,6 @@ def __init__(self, *args, **kwargs): # noqa: E501
_visited_composed_classes = (Animal,)
namespaces ({str: (NamespaceSummary,)}): A mapping for each namespace in the index from namespace name to a summary of its contents.. [optional] # noqa: E501
dimension (int): The dimension of the indexed vectors.. [optional] # noqa: E501
index_fullness (float): The storage fullness of the index.. [optional] # noqa: E501
"""

_check_type = kwargs.pop('_check_type', True)
Expand Down
769 changes: 716 additions & 53 deletions pinecone/core/grpc/protos/vector_column_service_pb2.py

Large diffs are not rendered by default.

466 changes: 194 additions & 272 deletions pinecone/core/grpc/protos/vector_column_service_pb2.pyi

Large diffs are not rendered by default.

958 changes: 822 additions & 136 deletions pinecone/core/grpc/protos/vector_service_pb2.py

Large diffs are not rendered by default.

Loading

0 comments on commit eaab2a4

Please sign in to comment.