Reputation: 519
I need some advice on what type of EC2 instance to use for my data processing application. It's a Golang application that utilizes goroutines and channels. It scheduled to check a data source every 10 seconds and could process around one million entries into a database per hour.
Thanks for the help.
Upvotes: 0
Views: 107
Reputation: 962
You can use T2 type of instance. It is suitable for Burstable Performance. You can read more about this here
Also have a look at how to choose right type of instances available in EC2
Upvotes: 1