You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: modules/install-upgrade/pages/upgrade-guide.adoc
+32-94
Original file line number
Diff line number
Diff line change
@@ -301,77 +301,9 @@ Caused by: org.rocksdb.RocksDBException: unknown checksum type 4 in data/bookkee
301
301
302
302
Luna Streaming can be deployed on Bare metal, Docker, and Kubernetes.
303
303
304
-
=== Bare metal deployment
304
+
This guide will only address Kubernetes deployment.
305
305
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].
375
307
376
308
=== Kubernetes deployment using KAAP Operator
377
309
@@ -382,9 +314,9 @@ For more information, see the xref:kaap-operator::index.adoc[KAAP documentation]
382
314
. Back up your existing Pulsar data and configurations to prevent data loss.
383
315
. To save your current Helm release configuration, run the following command:
384
316
+
385
-
[source,bash]
317
+
[source,bash,subs="+quotes"]
386
318
----
387
-
helm get values > pulsar-backup-values.yaml
319
+
helm get values *RELEASE-NAME* > pulsar-backup-values.yaml
388
320
----
389
321
+
390
322
. To update the DataStax Pulsar Helm chart repository, run the following command:
@@ -433,25 +365,27 @@ kaap:
433
365
This command assumes the default `pulsar` namespace. If you are using a different namespace, replace `pulsar` with your namespace.
434
366
The `--wait` flag ensures that Helm waits until all pods are ready before completing the upgrade.
. Check the status of the pods to ensure they are running correctly:
442
376
+
443
-
[source,bash]
377
+
[source,bash,subs="+quotes"]
444
378
----
445
-
kubectl get pods --namespace pulsar
379
+
kubectl get pods --namespace *NAMESPACE*
446
380
----
447
-
=
381
+
448
382
. Check the logs for any issues:
449
383
+
450
-
[source,bash]
384
+
[source,bash,subs="+quotes"]
451
385
----
452
-
kubectl logs -n
386
+
kubectl logs *POD-NAME* -n *NAMESPACE*
453
387
----
454
-
+
388
+
455
389
. 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.
456
390
. 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.
457
391
@@ -466,9 +400,9 @@ Deploying Luna Streaming on Kubernetes using the DataStax Helm chart is another
466
400
. Back up your existing Pulsar data and configurations to prevent data loss.
467
401
. To save your current Helm release configuration, run the following command:
468
402
+
469
-
[source,bash]
403
+
[source,bash,subs="+quotes"]
470
404
----
471
-
helm get values > pulsar-backup-values.yaml
405
+
helm get values *RELEASE-NAME* > pulsar-backup-values.yaml
472
406
----
473
407
+
474
408
. To update the DataStax Pulsar Helm chart repository, run the following command:
@@ -484,12 +418,14 @@ helm repo update
484
418
----
485
419
image:
486
420
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
488
423
repository: datastax/lunastreaming-all
489
424
pullPolicy: IfNotPresent
490
425
tag: 3.1_4.5
491
426
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
493
429
repository: apachepulsar/pulsar
494
430
pullPolicy: IfNotPresent
495
431
tag: latest
@@ -524,30 +460,32 @@ broker:
524
460
configData:
525
461
brokerDeduplicationEnabled: "false"
526
462
----
527
-
+
463
+
528
464
. To upgrade your existing Pulsar installation, run the following Helm command.
529
465
This command assumes the default `pulsar` namespace. If you are using a different namespace, replace `pulsar` with your namespace.
530
466
The `--wait` flag ensures that Helm waits until all pods are ready before completing the upgrade.
. To check the status of the pods to ensure they are running correctly, run the following command:
538
476
+
539
-
[source,bash]
477
+
[source,bash,subs="+quotes"]
540
478
----
541
-
kubectl get pods --namespace pulsar
479
+
kubectl get pods --namespace *NAMESPACE*
542
480
----
543
-
=
481
+
544
482
. To check the logs for any issues, run the following command:
545
483
+
546
-
[source,bash]
484
+
[source,bash,subs="+quotes"]
547
485
----
548
-
kubectl logs -n
486
+
kubectl logs *POD-NAME* -n *NAMESPACE*
549
487
----
550
-
+
488
+
551
489
. 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.
552
490
. 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.
0 commit comments