Releases: terascope/teraslice
Releases · terascope/teraslice
v0.86.2
v0.86.1
v0.86.0
v0.85.0
v0.84.0
v0.83.0
v0.82.0
v0.81.0
- update to elasticsearch-store which exposes a universal async client that handles api calls for Elasticsearch versions 6, 7, and 8 and opensearch version 1
- updates to types to accommodate elasticsearch client updates
- updates to travis.yml to shard unit tests and smaller test batching
v0.80.1
- Contains fixes for Dataframes joining on undefined values
- fixed date helpers and Bigint conversions. It should make better usage of valid javascript number ranges
- better error handling when scripts starts up test environment
- teraslice startup should be able to wait for elasticsearch to be up and not exit prematurely
- update most internal packages that are available to do
v0.80.0
This release includes the following changes:
- [REQUIREMENT CHANGE] New connector type for Teraslice state stores and API usage. The new connector type is
elasticsearch-next
, this will dynamically create a client based on the type and distribution of the backend. It will provide a v6, v7, or a v8 elasticsearch client, or an opensearch client for the backend that it is communicating to. The old client, can still be used, and is necessary for any older elasticsearch-assets packages being used.
Example config file:
terafoundation:
environment: 'development'
connectors:
# ***********************
# Elastic Search Configuration
# ***********************
elasticsearch:
default:
host:
- "127.0.0.1:9200"
elasticsearch-next:
default:
node:
- "http://localhost:9200"
teraslice:
master: true
master_hostname: "127.0.0.1"
name: "teracluster"
- Update
elasticsearch-store
andelasticsearch-api
to work with the output of the different client that can be used - Update scripts test suite to have more compatibility with asset folder structures, so that they can be used in their codebases
- migrate most internal tests to use new client connector type except for final e2e tests as the setup and testing for that is very nuanced and would need its own dedicated time to convert
- Added test coverage for
elasticsearch-store
using legacy client, v6, v7 and opensearch - Added test coverage for
elasticsearch-api
against a queue restrained elasticsearch backend to test queue overflows