1

I have an application that sends video and a text file on different http post request. I have multiple ec2 instances under a loadbalancer. The video and text from a user must be sent to the same instance. Since I'm using a loadbalancer, is there any way to make sure that the both requests are sent to the same instance? Loadbalancer distributes traffic on multiple instances so I don't want the video to be routed to one instance and the text file to another instance. Can sticky session be used to solve this issue?

John Rotenstein
  • 241,921
  • 22
  • 380
  • 470
neerajdngl
  • 200
  • 1
  • 6

1 Answers1

0

Sticky Sessions seems to be an answer for this.

Dmitry Mukhin
  • 6,649
  • 3
  • 29
  • 31