Description
Using python weaviate-client 3.26.0, I took a back-up of my weaviate data using the following:
def save_weaviate_data(server, timestamp):
backup_id = server + ‘_’ + timestamp
client = weaviate.Client(“http://localhost:8081”)
result = client.backup.create(backup_id=backup_id, backend=“s3”, wait_for_completion=True)
print(result)
When I try to restore the data, I get the following error:
weaviate.exceptions.UnexpectedStatusCodeException: Backup restore! Unexpected status code: 422, with response body: {‘error’: [{‘message’: ‘unable to restore backup as it was produced by a higher version: 2.1 > 2.0’}]}
Any suggestions would be most helpful
Server Setup Information
- Weaviate Server Version: 1.23.15
- Deployment Method: docker container image: semitechnologies/weaviate:latest
- Multi Node? Number of Running Nodes: 1
- Client Language and Version: python weaviate-client 3.26.0