This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ------------------------------------------------------ | |
| _______ __ _____ | |
| / ____(_)___ ____ _/ / / ___/_________ ________ | |
| / /_ / / __ \/ __ `/ / \__ \/ ___/ __ \/ ___/ _ \ | |
| / __/ / / / / / /_/ / / ___/ / /__/ /_/ / / / __/ | |
| /_/ /_/_/ /_/\__,_/_/ /____/\___/\____/_/ \___/ | |
| ------------------------------------------------------ | |
| | Metric | Task | Baseline | Contender | Diff | Unit | Diff % | | |
| |--------------------------------------------------------------:|---------------------------------------------:|---------------:|-----------------:|--------------:|-------:|---------:| |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ------------------------------------------------------ | |
| _______ __ _____ | |
| / ____(_)___ ____ _/ / / ___/_________ ________ | |
| / /_ / / __ \/ __ `/ / \__ \/ ___/ __ \/ ___/ _ \ | |
| / __/ / / / / / /_/ / / ___/ / /__/ /_/ / / / __/ | |
| /_/ /_/_/ /_/\__,_/_/ /____/\___/\____/_/ \___/ | |
| ------------------------------------------------------ | |
| 2024-10-14 08:28:58,549 ActorAddr-(T|:35387)/PID:7662 esrally.reporter INFO | Metric | Task | Value | Unit | | |
| |---------------------------------------------------------------:|---------------------------------------------------:|----------------:|-------:| |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | |
| * or more contributor license agreements. Licensed under the "Elastic License | |
| * 2.0", the "GNU Affero General Public License v3.0 only", and the "Server Side | |
| * Public License v 1"; you may not use this file except in compliance with, at | |
| * your election, the "Elastic License 2.0", the "GNU Affero General Public | |
| * License v3.0 only", or the "Server Side Public License, v 1". | |
| */ | |
| package org.elasticsearch.benchmark.vector; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package org.apache.pylucene.codecs; | |
| import org.apache.lucene.codecs.lucene100.Lucene100Codec; | |
| import org.apache.lucene.codecs.KnnVectorsFormat; | |
| public class PyLucene100Codec extends Lucene100Codec { | |
| private long pythonObject; | |
| public void pythonExtension(long pythonObject){ | |
| this.pythonObject = pythonObject; |
OlderNewer