Skip to content

Commit

Permalink
Merge pull request #413 from weaviate/improve_dynamic
Browse files Browse the repository at this point in the history
Use batch queue info from weaviate to improve dynamic batching
  • Loading branch information
tsmith023 committed Aug 14, 2023
2 parents f5a6864 + 36febd1 commit 86fac1a
Show file tree
Hide file tree
Showing 11 changed files with 95 additions and 350 deletions.
2 changes: 1 addition & 1 deletion ci/docker-compose-azure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ services:
- --scheme
- http
- --write-timeout=600s
image: semitechnologies/weaviate:1.20.0-prealpha-628c8ff
image: semitechnologies/weaviate:preview-add-batch-queue-congestion-info-to-node-status-c14301b
ports:
- 8081:8081
restart: on-failure:0
Expand Down
2 changes: 1 addition & 1 deletion ci/docker-compose-cluster.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
version: '3.4'
services:
weaviate-node-1:
image: semitechnologies/weaviate:1.20.0-prealpha-628c8ff
image: semitechnologies/weaviate:preview-add-batch-queue-congestion-info-to-node-status-c14301b
restart: on-failure:0
ports:
- "8087:8080"
Expand Down
2 changes: 1 addition & 1 deletion ci/docker-compose-okta-cc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ services:
- --scheme
- http
- --write-timeout=600s
image: semitechnologies/weaviate:1.20.0-prealpha-628c8ff
image: semitechnologies/weaviate:preview-add-batch-queue-congestion-info-to-node-status-c14301b
ports:
- 8082:8082
restart: on-failure:0
Expand Down
2 changes: 1 addition & 1 deletion ci/docker-compose-okta-users.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ services:
- --scheme
- http
- --write-timeout=600s
image: semitechnologies/weaviate:1.20.0-prealpha-628c8ff
image: semitechnologies/weaviate:preview-add-batch-queue-congestion-info-to-node-status-c14301b
ports:
- 8083:8083
restart: on-failure:0
Expand Down
2 changes: 1 addition & 1 deletion ci/docker-compose-openai.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ services:
- '8086'
- --scheme
- http
image: semitechnologies/weaviate:1.20.0-prealpha-628c8ff
image: semitechnologies/weaviate:preview-add-batch-queue-congestion-info-to-node-status-c14301b
ports:
- 8086:8086
restart: on-failure:0
Expand Down
2 changes: 1 addition & 1 deletion ci/docker-compose-wcs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ services:
- --scheme
- http
- --write-timeout=600s
image: semitechnologies/weaviate:1.20.0-prealpha-628c8ff
image: semitechnologies/weaviate:preview-add-batch-queue-congestion-info-to-node-status-c14301b
ports:
- 8085:8085
restart: on-failure:0
Expand Down
2 changes: 1 addition & 1 deletion ci/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ services:
- --scheme
- http
- --write-timeout=600s
image: semitechnologies/weaviate:1.20.0-prealpha-7702266
image: semitechnologies/weaviate:preview-add-batch-queue-congestion-info-to-node-status-c14301b
ports:
- "8080:8080"
- "50051:50051"
Expand Down
4 changes: 2 additions & 2 deletions integration/test_cluster.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

import weaviate

GIT_HASH = "7702266"
SERVER_VERSION = "1.20.0-prealpha"
GIT_HASH = "c14301b"
SERVER_VERSION = "1.20.5"
NODE_NAME = "node1"
NUM_OBJECT = 10

Expand Down
2 changes: 1 addition & 1 deletion integration/test_stress.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import datetime
import random
import uuid
from dataclasses import dataclass, field
from typing import List, Dict, Optional, Any

import pytest
import uuid

import weaviate

Expand Down
Loading

0 comments on commit 86fac1a

Please sign in to comment.