pinecone updates

This commit is contained in:
Jonathan Shook 2023-05-08 12:05:17 -05:00 committed by Madhavan
parent 95305006d6
commit c6b550d53c
6 changed files with 81 additions and 22 deletions

View File

@ -53,12 +53,6 @@
<artifactId>pinecone-client</artifactId>
<version>0.2.3</version>
</dependency>
<dependency>
<groupId>io.nosqlbench</groupId>
<artifactId>adapters-api</artifactId>
<version>5.17.3-SNAPSHOT</version>
<scope>compile</scope>
</dependency>
</dependencies>
<build>

View File

@ -1,13 +1,29 @@
/*
* Copyright (c) 2023 nosqlbench
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.nosqlbench.adapter.pinecone.opdispensers;
import io.nosqlbench.adapter.pinecone.PineconeDriverAdapter;
import io.nosqlbench.adapter.pinecone.PineconeSpace;
import io.nosqlbench.adapter.pinecone.ops.PineconeOp;
import io.nosqlbench.engine.api.activityimpl.BaseOpDispenser;
import io.nosqlbench.engine.api.activityimpl.uniform.DriverAdapter;
import io.nosqlbench.engine.api.templating.ParsedOp;
public class PineconeOpDispenser extends BaseOpDispenser<PineconeOp, PineconeSpace> {
protected PineconeOpDispenser(DriverAdapter<PineconeOp, PineconeSpace> adapter, ParsedOp op) {
protected PineconeOpDispenser(PineconeDriverAdapter adapter, ParsedOp op) {
super(adapter, op);
}

View File

@ -0,0 +1,22 @@
/*
* Copyright (c) 2023 nosqlbench
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.nosqlbench.adapter.pinecone.ops;
public enum PineconeOpTypes {
query,
update
}

View File

@ -0,0 +1,26 @@
# pinecone driver
```yaml
ops:
# A pinecone query op
query-example:
query: myindex
... additional fields ...
# A delete op
delete-example:
delete: indexfoo
... additional fields ...
# A describe index stats op
describe-index-stats-example:
describe-index-stats: indexbar
# A pinecone fetch op
# A pinecone update op
# A pinecone upsert op
```

View File

@ -111,6 +111,7 @@
<module>adapter-s4j</module>
<module>adapter-kafka</module>
<module>adapter-jdbc</module>
<module>adapter-pinecone</module>
<!-- VIRTDATA MODULES -->
<module>virtdata-api</module>