Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 1343c50

Browse files
committedSep 27, 2024·
nikhil-and-mukesh-review
1 parent d1f0c18 commit 1343c50

File tree

1 file changed

+32
-94
lines changed

1 file changed

+32
-94
lines changed
 

‎modules/install-upgrade/pages/upgrade-guide.adoc

+32-94
Original file line numberDiff line numberDiff line change
@@ -301,77 +301,9 @@ Caused by: org.rocksdb.RocksDBException: unknown checksum type 4 in data/bookkee
301301

302302
Luna Streaming can be deployed on Bare metal, Docker, and Kubernetes.
303303

304-
=== Bare metal deployment
304+
This guide will only address Kubernetes deployment.
305305

306-
Bare metal deployment installs Luna Streaming directly on physical servers.
307-
308-
For detailed instructions on upgrading Pulsar, see the https://pulsar.apache.org/docs/next/administration-upgrade/[Pulsar Upgrade Guide].
309-
310-
// known issues?
311-
312-
=== Docker deployment
313-
314-
The Docker image for Luna Streaming is available on https://hub.docker.com/r/datastax/lunastreaming[Docker Hub].
315-
316-
To upgrade Luna Streaming from version 2.10 to 3.1 in a Docker deployment, update your `docker-compose.yml` file to use the new image version by following these steps:
317-
318-
. Locate your `docker-compose.yml` file, and open the file where your Pulsar services are defined.
319-
. Update the image version for Pulsar components to `datastax/lunastreaming:3.1_4.5`.
320-
+
321-
[source,yaml]
322-
----
323-
services:
324-
zookeeper:
325-
image: datastax/lunastreaming:3.1_4.5
326-
…………
327-
pulsar-init:
328-
image: datastax/lunastreaming:3.1_4.5
329-
…………
330-
bookie:
331-
image: datastax/lunastreaming:3.1_4.5
332-
…………
333-
broker:
334-
image: datastax/lunastreaming:3.1_4.5
335-
----
336-
+
337-
. Ensure you also update any other services that might depend on the Pulsar image.
338-
. Review configuration changes. Some environment variables or configurations might have changed between versions.
339-
Review any breaking changes between versions 2.10 and 3.1 to adjust your application code if necessary.
340-
. Before proceeding with the upgrade, backup your data to prevent any loss during the transition.
341-
. To fetch the updated images, run the following command:
342-
+
343-
[source,bash]
344-
----
345-
docker-compose pull
346-
----
347-
+
348-
. To ensure a clean upgrade, stop and remove your existing Pulsar containers. Run:
349-
+
350-
[source,bash]
351-
----
352-
docker-compose down
353-
----
354-
+
355-
. To start the updated Pulsar deployment, run the following command:
356-
+
357-
[source,bash]
358-
----
359-
docker-compose up -d
360-
----
361-
+
362-
This command creates new containers based on the updated image and configurations.
363-
+
364-
. Verify the upgrade. Check the logs to ensure that Pulsar starts without errors:
365-
+
366-
[source,bash]
367-
----
368-
docker-compose logs -f pulsar
369-
----
370-
+
371-
. To confirm that everything is functioning as expected, verify that you can access the Pulsar Admin UI at `http://localhost:8080` (or whichever port you configured).
372-
. Run health checks with Pulsar's built-in health check commands or APIs to ensure all services are operational.
373-
374-
// known issues?
306+
For more information on upgrading bare metal and Docker Pulsar deployments, see the https://pulsar.apache.org/docs/3.3.x/administration-upgrade/[Pulsar documentation].
375307

376308
=== Kubernetes deployment using KAAP Operator
377309

@@ -382,9 +314,9 @@ For more information, see the xref:kaap-operator::index.adoc[KAAP documentation]
382314
. Back up your existing Pulsar data and configurations to prevent data loss.
383315
. To save your current Helm release configuration, run the following command:
384316
+
385-
[source,bash]
317+
[source,bash,subs="+quotes"]
386318
----
387-
helm get values > pulsar-backup-values.yaml
319+
helm get values *RELEASE-NAME* > pulsar-backup-values.yaml
388320
----
389321
+
390322
. To update the DataStax Pulsar Helm chart repository, run the following command:
@@ -433,25 +365,27 @@ kaap:
433365
This command assumes the default `pulsar` namespace. If you are using a different namespace, replace `pulsar` with your namespace.
434366
The `--wait` flag ensures that Helm waits until all pods are ready before completing the upgrade.
435367
+
436-
[source,bash]
368+
[source,bash,subs="+quotes"]
437369
----
438-
helm upgrade pulsar --namespace pulsar --values current-values.yaml --wait
370+
helm upgrade --namespace *NAMESPACE* --wait --debug --timeout 1200s \
371+
--dependency-update pulsar *KAAP-REPO-DIRECTORY*/helm/kaap-stack \
372+
--values *PATH-TO-CURRENT-VALUES-FILE*.yaml
439373
----
440374
+
441375
. Check the status of the pods to ensure they are running correctly:
442376
+
443-
[source,bash]
377+
[source,bash,subs="+quotes"]
444378
----
445-
kubectl get pods --namespace pulsar
379+
kubectl get pods --namespace *NAMESPACE*
446380
----
447-
=
381+
448382
. Check the logs for any issues:
449383
+
450-
[source,bash]
384+
[source,bash,subs="+quotes"]
451385
----
452-
kubectl logs -n
386+
kubectl logs *POD-NAME* -n *NAMESPACE*
453387
----
454-
+
388+
455389
. After upgrading, check if any additional configurations are required for new features in version 3.1. Adjust settings related to multi-tenancy, security, and observability as needed. Ensure all necessary configurations are in place and correct after the upgrade.
456390
. Test the functionality of your Pulsar cluster by sending messages and ensuring that consumers can read them without issues. Conduct functional tests to ensure that the upgrade did not impact existing applications and that new features work as expected.
457391

@@ -466,9 +400,9 @@ Deploying Luna Streaming on Kubernetes using the DataStax Helm chart is another
466400
. Back up your existing Pulsar data and configurations to prevent data loss.
467401
. To save your current Helm release configuration, run the following command:
468402
+
469-
[source,bash]
403+
[source,bash,subs="+quotes"]
470404
----
471-
helm get values > pulsar-backup-values.yaml
405+
helm get values *RELEASE-NAME* > pulsar-backup-values.yaml
472406
----
473407
+
474408
. To update the DataStax Pulsar Helm chart repository, run the following command:
@@ -484,12 +418,14 @@ helm repo update
484418
----
485419
image:
486420
broker:
487-
# If not using tiered storage, you can use the smaller pulsar image for the broker
421+
# If not using tiered storage, you can use the smaller pulsar image
422+
# for the broker
488423
repository: datastax/lunastreaming-all
489424
pullPolicy: IfNotPresent
490425
tag: 3.1_4.5
491426
brokerSts:
492-
# If not using tiered storage, you can use the smaller pulsar image for the broker
427+
# If not using tiered storage, you can use the smaller pulsar image
428+
# for the broker
493429
repository: apachepulsar/pulsar
494430
pullPolicy: IfNotPresent
495431
tag: latest
@@ -524,30 +460,32 @@ broker:
524460
configData:
525461
brokerDeduplicationEnabled: "false"
526462
----
527-
+
463+
528464
. To upgrade your existing Pulsar installation, run the following Helm command.
529465
This command assumes the default `pulsar` namespace. If you are using a different namespace, replace `pulsar` with your namespace.
530466
The `--wait` flag ensures that Helm waits until all pods are ready before completing the upgrade.
531467
+
532-
[source,bash]
468+
[source,bash,subs="+quotes"]
533469
----
534-
helm upgrade pulsar datastax-pulsar/pulsar --namespace pulsar --values current-values.yaml --wait
470+
helm upgrade --namespace *NAMESPACE* --wait --debug --timeout 1200s \
471+
--dependency-update pulsar *KAAP-REPO-DIRECTORY*/helm/kaap-stack \
472+
--values *PATH-TO-CURRENT-VALUES-FILE*.yaml
535473
----
536-
+
474+
537475
. To check the status of the pods to ensure they are running correctly, run the following command:
538476
+
539-
[source,bash]
477+
[source,bash,subs="+quotes"]
540478
----
541-
kubectl get pods --namespace pulsar
479+
kubectl get pods --namespace *NAMESPACE*
542480
----
543-
=
481+
544482
. To check the logs for any issues, run the following command:
545483
+
546-
[source,bash]
484+
[source,bash,subs="+quotes"]
547485
----
548-
kubectl logs -n
486+
kubectl logs *POD-NAME* -n *NAMESPACE*
549487
----
550-
+
488+
551489
. After upgrading, check if any additional configurations are required for new features in version 3.1. Adjust settings related to multi-tenancy, security, and observability as needed. Ensure all necessary configurations are in place and correct after the upgrade.
552490
. Test the functionality of your Pulsar cluster by sending messages and ensuring that consumers can read them without issues. Conduct functional tests to ensure that the upgrade did not impact existing applications and that new features work as expected.
553491

0 commit comments

Comments
 (0)
Please sign in to comment.