I'm working on an application that is required to be clustered on multiple machines, so I have to configure VertxOptions object by setting the cluster host and port on each node (machine), but I came across different methods for setting hosts and ports: setClusterhost/port, setPublicClusterHost/port. What is the difference?
In Vertx clustering, what's the difference between cluster host/port and public cluster host/port?
558 Views Asked by Mohamed Ibrahim Elsayed At
1
There are 1 best solutions below
Related Questions in PORT
- Sniff data packages from application to serial port (/dev/ttyACM0)
- How to choose port number for various microservices? whatever port number I use is already used-blocked or I'm not able to use them
- Why is only the port version not printed in the output?
- Redirect outbound traffic to a different port
- on linux gitclone issue remote server error showing fatal error with proxy n port
- ERR_EMPTY_RESPONSE with docker container port bind
- Block MQTT port from windows firewall
- Localhost doesn't see my file; The requested URL was not found on this server
- Setting up HTML page on port 8083 in NGINX
- ERROR - Container xxx didn't respond to HTTP pings on port: xxx, failing site start
- Docker port exposure with IP resulted to slow postgres database connection
- I don't understand
- Troubleshooting Ineffective Port-Level Value Changes in Kernel Bond Code
- Getting "Jest did not exit one second after the test run has completed" error for test script which was originally passing
- Same IP, same port and nmap scan gives different result. Why?
Related Questions in CLUSTER-COMPUTING
- How to Socket.IO Multithreading on a Raspberry Pi?
- Snakemake remote rules re-read config file?
- Why can CPU memory be specified and allocated during instance creation but not GPU memory on the cloud?
- Make a Cluster without using MongoDB Atlas
- Why don't run at multiple thread?
- Imports failing with workaround in Google Dataproc Cluster Notebooks
- Galera Cluster: 3 Node Cluster, One Node does not reconnect after rebooting
- How to install gromacs on gcp HPC
- Slurm - How to run a list of jobs n by n?
- Setup Slurm partition for only interactive jobs
- makeCluster fails with remote server Ubuntu
- Creating a cluster with two laptops (mac)
- How to configure express-fileupload with cluster?
- problem in configuring dataproc cluster from GCP Console since Friday (1 february 2024)
- Kubernetes cluster refused to connect google cloud
Related Questions in HOST
- Deploy Flutter and Laravel php mobile app on the host server
- C++/C# HostFXR passing arguments via std::tuple
- Cannot run .net Windows Service as Windows host - sc.exe (The service did not respond to the start or control request in a timely fashion)
- Not response for request on docker shell
- Setting-up Virtual host on RHEL-based Apache Server - domain is pointing on a wrong project
- Host express website with templating engine
- Laravel is there a way to detect if a given url have the same host as my project host?
- When migrating my sequelize db to mysql in my remote server, the host indicated in config.json changes
- Fixing the problem of the asp.net core7 project in Plesk panel
- Loading data in https and http
- Github Action connect to a vps over ssh via cloudflare tunnel
- MySQL problem with Host Mask and users grants
- Issue with Loading Images on Vercel
- How to host python project the cloud (specifically Google Cloud Platform)
- Zabbix 6.4 - Use macro {HOST.DESCRIPTION} in title of Host, Trigger, Inventory
Related Questions in VERT.X
- Vert.x modify content of static file
- how to avoid while loop while waiting for future complete?
- Can Eclipse Vert.x support phpmyadmin?
- How to retrieve the managed Router instance in Quarkus
- how to implement vertx webclient mtls?
- Is it possible to create few service proxies with the same method names?
- Quarkus Keystore Password File
- Can verticle consumer handler be executed by the eventloop thread other than the eventloop thread on which it is deployed?
- Should I use ContextInternal when building Vertx Retry mechanism based on Resilience4j?
- How to fix the incompatibility issue for Vertx-core 4.5.4 version with smallrye-reactive-messaging-kafka
- InterruptedException occurred when using Vertx's executeBlocking with JDK ExecutorCompletionService starting from Vertx v4.3.0
- How to asign a class to the results of a Mutiny.Query
- Vertx Async Confusion running async code in a method returning Future
- Vertx Oracle Null-Value on SQL-INOUT-Parameter
- Guaranteed and ordered delivery in event bus of Vert.x?
Related Questions in VERTXOPTIONS
- Path header is prepended with scheme and authority when proxy option is set in HttpClient of Vertx
- Vert.x: how to test how many instances of a specific verticle are deployed?
- Passing custom class object when deploying verticles
- Vertx - threads are stuck while sending response back to client
- What happens internally when we create multiple instances of standard and worker verticle?
- Increasing timeout for vetx server
- Vertx Server Set Mutual Auth Requirement Per Route
- Vert.x httpClient - any idea how to limit the number of concurrent requests?
- please suggest how to use vertx Timeout handler for vertx 3.7.1
- Vertx Http Webclient request hangs even though worker threads are available
- Vert.x GET api returns 400 Bad Request for some traffic
- Vertx http server instance number does not improve throughput
- How do I launch clients on different event loops?
- How to write Vertx worker verticle - indefinite blocking operation?
- extract the user principal from client certificate in vertx
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
The
clusterHostproperty tells Vert.x which host it should bind the socket to. TheclusterPublicHosthow other nodes should connect. By default the values are the same, but sometimes because of proxies you need a way to make them different.This is explained in the Javadoc: