-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature: As a devops engineer, I want an aissemble-managed helm chart for the Hive metastore service that uses a newer version of Hive, so I have access to the latest security fixes. #127
Closed
5 tasks done
Comments
peter-mcclonski
added a commit
to peter-mcclonski/aissemble
that referenced
this issue
Jun 7, 2024
…upgrade Signed-off-by: Peter McClonski <[email protected]>
OTS completed |
peter-mcclonski
added a commit
to peter-mcclonski/aissemble
that referenced
this issue
Jun 11, 2024
…upgrade Signed-off-by: Peter McClonski <[email protected]>
peter-mcclonski
added a commit
to peter-mcclonski/aissemble
that referenced
this issue
Jun 11, 2024
Signed-off-by: Peter McClonski <[email protected]>
peter-mcclonski
added a commit
to peter-mcclonski/aissemble
that referenced
this issue
Jun 11, 2024
Signed-off-by: Peter McClonski <[email protected]>
peter-mcclonski
added a commit
to peter-mcclonski/aissemble
that referenced
this issue
Jun 11, 2024
Signed-off-by: Peter McClonski <[email protected]>
peter-mcclonski
added a commit
to peter-mcclonski/aissemble
that referenced
this issue
Jun 11, 2024
Signed-off-by: Peter McClonski <[email protected]>
peter-mcclonski
added a commit
to peter-mcclonski/aissemble
that referenced
this issue
Jun 11, 2024
Signed-off-by: Peter McClonski <[email protected]>
peter-mcclonski
added a commit
to peter-mcclonski/aissemble
that referenced
this issue
Jun 12, 2024
Signed-off-by: Peter McClonski <[email protected]>
peter-mcclonski
added a commit
to peter-mcclonski/aissemble
that referenced
this issue
Jun 12, 2024
Signed-off-by: Peter McClonski <[email protected]>
peter-mcclonski
added a commit
to peter-mcclonski/aissemble
that referenced
this issue
Jun 12, 2024
Signed-off-by: Peter McClonski <[email protected]>
peter-mcclonski
added a commit
to peter-mcclonski/aissemble
that referenced
this issue
Jun 12, 2024
Signed-off-by: Peter McClonski <[email protected]>
peter-mcclonski
added a commit
to peter-mcclonski/aissemble
that referenced
this issue
Jun 13, 2024
Signed-off-by: Peter McClonski <[email protected]>
peter-mcclonski
added a commit
to peter-mcclonski/aissemble
that referenced
this issue
Jun 13, 2024
Signed-off-by: Peter McClonski <[email protected]>
peter-mcclonski
added a commit
to peter-mcclonski/aissemble
that referenced
this issue
Jun 13, 2024
Signed-off-by: Peter McClonski <[email protected]>
peter-mcclonski
added a commit
to peter-mcclonski/aissemble
that referenced
this issue
Jun 13, 2024
Signed-off-by: Peter McClonski <[email protected]>
peter-mcclonski
added a commit
that referenced
this issue
Jun 13, 2024
…ce-v2 #127 Rollback of deprecation notices
26 tasks
final test passed!! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Description
In order to improve usability and maintainability, we will be migrating to a v2 chart for the hive metastore service, keeping a similar usage pattern to that seen in #103. This ticket will encompass #116 as well, to update the underlying Hive metastore version.
Definition of Done
Test Strategy/Script
test-project-pipeline-models/src/main/resources/pipelines/
test-project-pipeline-models/src/main/resources/records/
test-project-pipeline-models/src/main/resources/dictionaries/
mvn clean install -Dmaven.build.cache.skipCache=true
repeatedly, resolving all presented manual actions until none remain.test-project-deploy/pom.xml
, replaceaissemble-spark-infrastructure-deploy
withaissemble-spark-infrastructure-deploy-v2
test-project-deploy/src/main/resources/apps/spark-infrastructure
hive-metastore-service
from your Tiltfiletest-project-pipelines/test-project-data-access/src/main/resources/application.properties
, setquarkus.datasource.jdbc.url
tojdbc:hive2://spark-infrastructure-sts-service:10001/default;transportMode=http;httpPath=cliservice
test-project-pipelines/pyspark-persist/src/pyspark_persist/step/persist_data.py
, define the implementation forexecute_step_impl
as follows:test-project-pipelines/pyspark-persist/src/pyspark_persist/resources/apps/pyspark-persist-dev-values.yaml
with the following:mvn clean install -Dmaven.build.cache.skipCache=true
once.kubectl apply -f
to apply the following yaml:pipeline-invocation-service
.tilt up
pyspark-persist
pipelinekubectl get pods | grep data-access
to get the name of the data access pod.kubectl exec -it <DATA_ACCESS_POD_NAME> -- bash
to enter the data access podcurl -X POST localhost:8080/graphql -H "Content-Type: application/json" -d '{ "query": "{ CustomRecord(table: \"my_new_table\") { customField } }" }'
and ensure that data including two records is returned, ie:{"data":{"CustomRecord":[{"customField":null},{"customField":null}]}}
kubectl get svc | grep sts
. It can take a minute or two to provision the service.References/Additional Context
The text was updated successfully, but these errors were encountered: