Skip to content

Commit

Permalink
chore(ui): TE - Update pinot version to 1.2.0 (#1739)
Browse files Browse the repository at this point in the history
[TE] Update pinot version to 1.2.0

Co-authored-by: Anshul Singh <anshul.singh@anshuls-macbook-pro-1.wyvern-sun.ts.net>
  • Loading branch information
anshul98ks123 and Anshul Singh authored Jan 7, 2025
1 parent 4b61aa4 commit 4556629
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public String getTag() {

// if the test does not run for every supported Pinot version, use this version
public static PinotVersion recommendedVersion() {
return v1_1_0;
return v1_2_0;
}
}

Expand Down
2 changes: 1 addition & 1 deletion scripts/load-datasets.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null 2>&1 && pwd)"
TE_REPO="${SCRIPT_DIR}/.."
if [ -z "${PINOT_VERSION}" ]; then
PINOT_VERSION=1.1.0
PINOT_VERSION=1.2.0
fi
if [ -z "${CONTROLLER_PROTOCOL}" ]; then
CONTROLLER_PROTOCOL=http
Expand Down
2 changes: 1 addition & 1 deletion scripts/start-pinot.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ SCRIPT_DIR="$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
REPO_DIR="${SCRIPT_DIR}/.."

if [ -z "${PINOT_VERSION}" ]; then
PINOT_VERSION=1.1.0
PINOT_VERSION=1.2.0
fi

export PINOT_INSTALL_TMP_DIR="${REPO_DIR}/tmp/pinot-bin"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ version: "3"

services:
pinot:
image: apachepinot/pinot:1.1.0
image: apachepinot/pinot:1.2.0
command: QuickStart -type batch
ports:
- "2123:2123"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@
from setup_local.launch_backend import setup_and_launch_thirdeye_backend
from setup_local.launch_frontend import launch_thirdeye_frontend

PINOT = 'apachepinot/pinot:1.1.0'
PINOT_ARM64 = 'apachepinot/pinot:1.1.0'
PINOT = 'apachepinot/pinot:1.2.0'
PINOT_ARM64 = 'apachepinot/pinot:1.2.0'
TE_UI_DIR = 'thirdeye-ui'

args_parser = argparse.ArgumentParser()
Expand Down

0 comments on commit 4556629

Please sign in to comment.