Unfortunately, AWS documents never actually define either Fleet or Stack, not (at least) in any way that I can use. I'd like someone who knows this technology intimately to provide their understanding of what a Fleet and a Stack are. I would particularly appreciate a definition that makes clever use of metaphor.
I'm trying to create some documentation for an AppStream project and need definitions for Fleet and Stack
121 Views Asked by Gus Mueller At
1
There are 1 best solutions below
Related Questions in AMAZON-WEB-SERVICES
- "Access Denied" - User's Permissions to S3 Bucket
- Cohort analysis with Amazon Redshift / PostgreSQL
- Using Amazon KMS service on Heroku
- can't ssh in after cloning an EC2 instance on Amazon AWS
- Using HDFS with Apache Spark on Amazon EC2
- How can I access Mule ESB Community edition via browser?
- AWS EC2: Migrating from Windows to Linux Server
- AWS ELB Load Balancer: is it possible to set multiple session cookies?
- AWS Flow Framework: Can we run activity worker and activity task on different EC2 instances
- Unable to access files from public s3 bucket with boto
Related Questions in AWS-APPSTREAM
- "Access Denied" - User's Permissions to S3 Bucket
- Cohort analysis with Amazon Redshift / PostgreSQL
- Using Amazon KMS service on Heroku
- can't ssh in after cloning an EC2 instance on Amazon AWS
- Using HDFS with Apache Spark on Amazon EC2
- How can I access Mule ESB Community edition via browser?
- AWS EC2: Migrating from Windows to Linux Server
- AWS ELB Load Balancer: is it possible to set multiple session cookies?
- AWS Flow Framework: Can we run activity worker and activity task on different EC2 instances
- Unable to access files from public s3 bucket with boto
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?
Fleet: Fleet is a collection of instances including Autoscaling group, AMI (images), instance type, and the base images (all need to define initially and can be edited). it combines everything in a single term known as the fleet. it can be either running mode or stop mode. it lets you update images. you create multiple fleets with the same definition or different means you can create multiple fleets with multiple requirements such as one for HPC, the second for high graphics, 3rd high memory use or storage, and the 4rth for normal purpose use. you can put all of them in running mode (you have to pay) or stop mode. it also has multiple types of instance starting modes (on-demand flexible,..etc)
Stack: In simple words, it will let you connect the fleet to the appstream access URL. meaning you can create a fleet but there is something needed that let you connect to the user pool and that is stack. this will let you connect the stack to the fleet which will be accessed through appstream URL. e.g. you have 3 fleets with all having a different configuration (HPC, high graphic, normal usage). so now either we create three stacks to connect it to 3 URLs or create one stack and associate it required fleets and now want to use 2nd just disassociate first one and associate 2nd fleet.
some cases: you need to update the fleet's image weekly. so you can create two fleets one for old and sec for new. where 2nd is associated with stack and getting all traffic) in update time you updated the first image (which takes 20-50 min to start or in running mode depending upon the image) while sec one is in already in production. when 1st is in running mode you replace it with 2nd one and stop the first one. OR if need to test the new upgrade one just attached it with the dev stack (new) and test, and after confirmation change it with the production one.