Skip to content

Releases: terascope/teraslice

v0.86.2

26 Jul 20:08
e92f6a5
Compare
Choose a tag to compare
v0.86.2 Pre-release
Pre-release
  • remove schema subfields for execution slicer stats
  • update default kafka version from v2.1 to v3.1 in testing environment
  • fix terafoundation s3 connector schema to have correct spelling of fields used in v3 client

v0.86.1

20 Jul 20:35
9e7fc55
Compare
Choose a tag to compare
v0.86.1 Pre-release
Pre-release

This release includes the following changes:

  • Fixed potential issue with Teraslice job recovery (#3379)
  • Improvements added to the Test scripts management of supporting services

v0.86.0

10 Jul 19:05
0aaadd1
Compare
Choose a tag to compare
  • bug fixes standing up teraslice with opensearch v2

v0.85.0

28 Jun 19:50
e957e41
Compare
Choose a tag to compare
v0.85.0 Pre-release
Pre-release
  • support for opensearch v2
  • updates packages

v0.84.0

02 May 17:09
99b7a03
Compare
Choose a tag to compare
  • use newest s3 v3 client creation in terafoundation
  • ASSET COMPATIBILITY CHANGES , must use file-asset >= v2.4.0 for correct compatibility, if using older file-assets then use teraslice < v0.84.0

v0.83.0

22 Mar 21:21
d84027d
Compare
Choose a tag to compare
v0.83.0 Pre-release
Pre-release

This release of Teraslice provides the following enhancements:

  • Adds pod_spec_override to the job (refs #3347)
  • Adds kubernetes_overrides_enabled to Teraslice config

v0.82.0

23 Feb 23:15
d82fd99
Compare
Choose a tag to compare

This release includes the following changes:

  • Update the base image in the Docker container to Node v14.21.3.

v0.81.0

06 Dec 17:20
a921a32
Compare
Choose a tag to compare
  • 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

13 Oct 17:49
0ad75f0
Compare
Choose a tag to compare
  • 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

21 Jun 18:02
6dce410
Compare
Choose a tag to compare

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 and elasticsearch-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 forelasticsearch-store using legacy client, v6, v7 and opensearch
  • Added test coverage for elasticsearch-api against a queue restrained elasticsearch backend to test queue overflows