Reputation: 235
According to https://aws.amazon.com/sagemaker/pricing/ :
"You are charged for the instance type you choose, based on the duration of use"
Does this include the time of multiple notebooks running at the same time? So if 3 notebooks ran for 40 minutes simultaneously would it charge the same as 1 notebook running for 120 minutes?
According to this post: Does AWS Sagemaker charges you per API request? aws charges based on 3 things:
So: 2. How does AWS charge for storage within the Jupyter Notebook instance?
Upvotes: 1
Views: 779
Reputation: 5578
Check SageMaker pricing page here after clicking the On-Demand Notebook Instances
tab.
How does AWS charge for storage within the Jupyter Notebook instance?
You're charged by the size of the EBS volume (GB/Month) you choose to attach to the notebook instance.
How does AWS charge for "data in and out of your Endpoint (Bytes in/out)"
This is a cost type is associated with realtime endpoints that host a model, and is not related to notebook instances.
With notebook instances you're networking cost is similar to an EC2 instance (free within the same availability zone and VPC and to regional S3. And incur cost for inter-AZ, inter-region, and outgoing Internet traffic).
Upvotes: 1