Questions tagged [anycast]

10 questions
6
votes
1 answer

Is HTTPS terminated at the load balancer or global accelerator in AWS?

If you connect the AWS Global Accelerator to an Application Load Balancer, and then the Load Balancer to an Instance, where in the chain is the HTTPS request terminated and replaced with a plain HTTP request? Do I need certificates at the Global…
Lance
  • 75,200
  • 93
  • 289
  • 503
2
votes
1 answer

std::any_cast without needing the type of the original object

Is it possible to use std::any_cast without putting in the first template argument (the type of the object the any is covering)? I tried using any_cast but it didn't work. Also tried to store the objects types from…
Bfyuvf
  • 139
  • 9
2
votes
1 answer

Can one IP address correspond to multiple ASNs

Can one IP address correspond to multiple ASNs? If so, what were the circumstances? Is it related to anycast ip address? thanks!
Liu Yao
  • 21
  • 1
1
vote
0 answers

Anycast on Docker/Containers

I am trying to add multiple containers to the same ip address in order to have an anycast group. This doesn't work as expected because ip addresses cannot be assigned multiple times. However, this leaves me wondering how I can get docker or other…
micartey
  • 128
  • 6
1
vote
1 answer

Does std::any_cast call destructor? How the cast works?

#include #include using namespace std; class c { public: c() :a{ 0 } { cout << "constructor\n"; } c(int aa) :a{ aa } { cout << "Constructor\n"; } ~c() { cout << "destructor\n"; } int get() { return a; } private: …
sunkue
  • 278
  • 1
  • 9
1
vote
0 answers

When I put the template in I get this error

The function getdata() works fine without the template but when I put the template in I get this error Severity Code Description Project File Line Suppression State Error LNK2019 unresolved external symbol "public: char const *…
Walid Zein
  • 31
  • 2
0
votes
1 answer

Is it possible to store and retrieve a container (e.g. std::vector) in an std::any variable?

I would like to have heterogenous map in C++ for my unit test values. Other threads recommended the use of std::any with any_cast for this purpose. This works well for primitive types like int and double but I fail to retrieve the value if I use a…
Dennix
  • 115
  • 1
  • 10
0
votes
0 answers

std::any bad cast whenever a function inside a header is implemented in a cpp file returns it

This is my main.cpp #include #include #include #include "myclass.h" int main(int argc, const char * argv[]) { any a = myclass::returnthis(); unordered_map* hmap =…
Patrik Nusszer
  • 460
  • 3
  • 13
0
votes
1 answer

Does Akamai support anycasted origins?

I wonder if Akamai supports origins with anycast IP addresses? Or will requests to origins be routed within Akamais networks to just one (almost random) location? I'd expect Akamai to route the request to the origin closest to the edge server.
Mikael Dúi Bolinder
  • 2,080
  • 2
  • 19
  • 44
-2
votes
1 answer

Why Google GCP not support cross region UDP load balance

I like to build a DNS server with AnyCast ip. try use the Google GCP to do the load balance. But I find it only support TCP cross region load balance, why google not support cross region UDP load balance? I like to Google AnyCast IP provide very…