Multicast for Tomcat servers on Google CloudClustering on cloud/VPS providersKeepalived: multicast vs...
Does Dispel Magic work on Tiny Hut?
What is the opposite of "eschatology"?
Why do I get negative height?
Different meanings of こわい
How to travel to Japan while expressing milk?
How to remove border from elements in the last row?
What is an equivalently powerful replacement spell for Yuan-Ti's Suggestion spell?
How to coordinate airplane tickets?
What is a Samsaran Word™?
Could the museum Saturn V's be refitted for one more flight?
How do conventional missiles fly?
How to prevent "they're falling in love" trope
Finding the reason behind the value of the integral.
What reasons are there for a Capitalist to oppose a 100% inheritance tax?
How can a day be of 24 hours?
What historical events would have to change in order to make 19th century "steampunk" technology possible?
Car headlights in a world without electricity
Blending or harmonizing
Which ISO should I use for the cleanest image?
Why are UK visa biometrics appointments suspended at USCIS Application Support Centers?
Is this draw by repetition?
Why is the sentence "Das ist eine Nase" correct?
Obtaining database information and values in extended properties
Finitely generated matrix groups whose eigenvalues are all algebraic
Multicast for Tomcat servers on Google Cloud
Clustering on cloud/VPS providersKeepalived: multicast vs unicastAccessing Google Cloud SQL through a Google proxyGoogle Cloud: Health Check is not removing failed instance from HTTP Load BalancerResize a Google Cloud Platform Persistent Disk in a Single-Node File Server (ZFS server)Google Cloud Platform: Is it possible to create project-specific Service Account groups?Google Cloud Firewall Management Shared VPCHow to make an internal load balancer in a google cloud kubernetes instance be accessible from another kubernetes instance in different regions?Route Google Cloud VPN traffic in a VPC to public internet or internal IPsLet's Encrypt SSL on Google Cloud
Google Cloud VPC networks only support IPv4 unicast traffic [1], they do not support broadcast, multicast or IPv6 traffic within the network. I have several tomcat servers and I'd like to group them into a cluster, but without multicast it seems I can't.
Is there any way to make this Tomcat cluster working in the Google Cloud VPC?
[1] https://cloud.google.com/vpc/docs/vpc
networking tomcat
add a comment |
Google Cloud VPC networks only support IPv4 unicast traffic [1], they do not support broadcast, multicast or IPv6 traffic within the network. I have several tomcat servers and I'd like to group them into a cluster, but without multicast it seems I can't.
Is there any way to make this Tomcat cluster working in the Google Cloud VPC?
[1] https://cloud.google.com/vpc/docs/vpc
networking tomcat
add a comment |
Google Cloud VPC networks only support IPv4 unicast traffic [1], they do not support broadcast, multicast or IPv6 traffic within the network. I have several tomcat servers and I'd like to group them into a cluster, but without multicast it seems I can't.
Is there any way to make this Tomcat cluster working in the Google Cloud VPC?
[1] https://cloud.google.com/vpc/docs/vpc
networking tomcat
Google Cloud VPC networks only support IPv4 unicast traffic [1], they do not support broadcast, multicast or IPv6 traffic within the network. I have several tomcat servers and I'd like to group them into a cluster, but without multicast it seems I can't.
Is there any way to make this Tomcat cluster working in the Google Cloud VPC?
[1] https://cloud.google.com/vpc/docs/vpc
networking tomcat
networking tomcat
edited 10 mins ago
Tonin
1,5671429
1,5671429
asked Mar 5 at 13:31
RobertoRoberto
438
438
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
I think it’s better to use static cluster.
There are 2 types of cluster:
Static Tomcat Cluster
Dynamic Tomcat Cluster
In static cluster there is not need multicast, because each tomcat we statically defined/configured the other instances. But dynamic Cluster we are not defined anything. so each tomcat in that cluster some how to identify the other tomcat instances.
You can find more details here: https://www.ramkitech.com/2012/11/tomcat-clustering-series-part-3-session.html
New contributor
Ahmad Parsaei is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
You can use overlay network deployment to have mcast/bcast support inside.
"Third-party partner solutions such as Weave Net, Cohesive Networks, or Ravello can help you enable these features by using their overlay network solutions. Or you can build your own overlay network by using open technologies such as VXLAN."
REF: https://cloud.google.com/solutions/delivering-aggregated-travel-data-with-minimal-latency
New contributor
Fatih Nar is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "2"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f956844%2fmulticast-for-tomcat-servers-on-google-cloud%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
I think it’s better to use static cluster.
There are 2 types of cluster:
Static Tomcat Cluster
Dynamic Tomcat Cluster
In static cluster there is not need multicast, because each tomcat we statically defined/configured the other instances. But dynamic Cluster we are not defined anything. so each tomcat in that cluster some how to identify the other tomcat instances.
You can find more details here: https://www.ramkitech.com/2012/11/tomcat-clustering-series-part-3-session.html
New contributor
Ahmad Parsaei is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
I think it’s better to use static cluster.
There are 2 types of cluster:
Static Tomcat Cluster
Dynamic Tomcat Cluster
In static cluster there is not need multicast, because each tomcat we statically defined/configured the other instances. But dynamic Cluster we are not defined anything. so each tomcat in that cluster some how to identify the other tomcat instances.
You can find more details here: https://www.ramkitech.com/2012/11/tomcat-clustering-series-part-3-session.html
New contributor
Ahmad Parsaei is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
I think it’s better to use static cluster.
There are 2 types of cluster:
Static Tomcat Cluster
Dynamic Tomcat Cluster
In static cluster there is not need multicast, because each tomcat we statically defined/configured the other instances. But dynamic Cluster we are not defined anything. so each tomcat in that cluster some how to identify the other tomcat instances.
You can find more details here: https://www.ramkitech.com/2012/11/tomcat-clustering-series-part-3-session.html
New contributor
Ahmad Parsaei is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
I think it’s better to use static cluster.
There are 2 types of cluster:
Static Tomcat Cluster
Dynamic Tomcat Cluster
In static cluster there is not need multicast, because each tomcat we statically defined/configured the other instances. But dynamic Cluster we are not defined anything. so each tomcat in that cluster some how to identify the other tomcat instances.
You can find more details here: https://www.ramkitech.com/2012/11/tomcat-clustering-series-part-3-session.html
New contributor
Ahmad Parsaei is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Ahmad Parsaei is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
answered yesterday
Ahmad ParsaeiAhmad Parsaei
212
212
New contributor
Ahmad Parsaei is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Ahmad Parsaei is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Ahmad Parsaei is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
add a comment |
You can use overlay network deployment to have mcast/bcast support inside.
"Third-party partner solutions such as Weave Net, Cohesive Networks, or Ravello can help you enable these features by using their overlay network solutions. Or you can build your own overlay network by using open technologies such as VXLAN."
REF: https://cloud.google.com/solutions/delivering-aggregated-travel-data-with-minimal-latency
New contributor
Fatih Nar is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
You can use overlay network deployment to have mcast/bcast support inside.
"Third-party partner solutions such as Weave Net, Cohesive Networks, or Ravello can help you enable these features by using their overlay network solutions. Or you can build your own overlay network by using open technologies such as VXLAN."
REF: https://cloud.google.com/solutions/delivering-aggregated-travel-data-with-minimal-latency
New contributor
Fatih Nar is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
You can use overlay network deployment to have mcast/bcast support inside.
"Third-party partner solutions such as Weave Net, Cohesive Networks, or Ravello can help you enable these features by using their overlay network solutions. Or you can build your own overlay network by using open technologies such as VXLAN."
REF: https://cloud.google.com/solutions/delivering-aggregated-travel-data-with-minimal-latency
New contributor
Fatih Nar is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
You can use overlay network deployment to have mcast/bcast support inside.
"Third-party partner solutions such as Weave Net, Cohesive Networks, or Ravello can help you enable these features by using their overlay network solutions. Or you can build your own overlay network by using open technologies such as VXLAN."
REF: https://cloud.google.com/solutions/delivering-aggregated-travel-data-with-minimal-latency
New contributor
Fatih Nar is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Fatih Nar is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
answered Mar 27 at 1:59
Fatih NarFatih Nar
111
111
New contributor
Fatih Nar is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Fatih Nar is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Fatih Nar is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
add a comment |
Thanks for contributing an answer to Server Fault!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f956844%2fmulticast-for-tomcat-servers-on-google-cloud%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown