Is your feature request related to a problem? Please describe.
Pinecone allows to set the number of pods and the pod type when creating an index, through the pod and pod_type parameters, as well as the index configuration through index_config which allows for a dictionary to define more complex configuration of the index.
Here is an example:
pinecone.configure_index("example-index", pods=2, pod_type="s1.x2", index_config=index_config) in this case it allows you to create an index with a defined number of pods and the pod_type as well as define a more complex configuration.
Describe the solution you'd like
The idea would be to add these three parameters to the init method of the PineconeDocumentStore
Describe alternatives you've considered
I think the proposed idea should be quite straightforward
Additional context
Is your feature request related to a problem? Please describe.
Pinecone allows to set the number of pods and the pod type when creating an index, through the
podandpod_typeparameters, as well as the index configuration throughindex_configwhich allows for a dictionary to define more complex configuration of the index.Here is an example:
pinecone.configure_index("example-index", pods=2, pod_type="s1.x2", index_config=index_config)in this case it allows you to create an index with a defined number of pods and the pod_type as well as define a more complex configuration.Describe the solution you'd like
The idea would be to add these three parameters to the init method of the PineconeDocumentStore
Describe alternatives you've considered
I think the proposed idea should be quite straightforward
Additional context