Questions tagged [bucket]

a bucket is one of several alternative data sinks when data needs to be distributed. The term is used for algorithms, data-structures. Commercial usages include databases and cloud providers.

993 questions
-1
votes
1 answer

google AI platform read history on local

After training model i would like to save history in mine bucket or any location which i can access later on local when i run code below on google colab all work fine history = model.fit(training_dataset, steps_per_epoch=steps_per_epoch,…
-1
votes
1 answer

Pricing of cloud storage in GCP

I have some basic pricing questions of cloud storage in GCP. Here are my questions: 1) After the free trial period is 5 GB/month free storage only applicable for US-WEST1, US-CENTRAL1, and US-EAST1 regions and not the other US regions? 2) If I am…
-1
votes
1 answer

How to Access an AWS Private Bucket

I'm a beginner in AWS and I'm trying some functions, if you can help me I thank. I received a file of credentials to access a private bucket, but I don't know how to access that bucket, whether it is by CMD or the internet itself, I tested a public…
-1
votes
2 answers

Uploding file to amazon s3 bucket through form using node.js

I am new to aws technology so i need suggestions to upload file to s3 bucket using node.js, so in order to complete above task what are the technologies and tools should i know. Note: Without using AWS management console My requirements are: Windows…
-1
votes
1 answer

How to group list items into buckets of varying sequence lengths?

I have the following list: l = [False, True, True, False, True, False, False, True, False, False, False, True] I would like to accumulate the length of each True and False sequence into buckets. I need to count all sequences that are True with the…
Kann Nix
  • 13
  • 2
-1
votes
1 answer

How to rename object name from gcloud Bucket via C# code?

I want to rename objects name from Google Cloud Bucket using C# code. How can I do that?
riki
  • 187
  • 1
  • 17
-1
votes
1 answer

How to read random objects from a bucket with java?

I want to read random objects from a bucket . i do not want to store keys and pick with randomly a key and get the object because i think it is an expensive operation . thanks
-1
votes
1 answer

AWS S3 bucket region-less webpage hosting

Having read a lot of the aws documentation and not finding anything relevant. How to host a website directly from my S3 bucket say: s3-myhost-w.amazonaws.com when I try to access the site directly: The bucket you are attempting to access…
scandalous
  • 912
  • 5
  • 14
  • 25
-1
votes
1 answer

AWS Bucket File Cleanup (Deletion)

We have a AWS bucket NPI_Recovery_Tool, which contains two folders Input and Output. We have set up one expiration policy to cleanup the file after every 30 days of file creation in Input and Output folder. Under file cleanup policy configuration we…
mayank gupta
  • 341
  • 1
  • 4
  • 16
-1
votes
1 answer

delete an empty S3 bucket using `deleteBucket` method using Java

I am trying to check if a bucket exists, and delete it if it does, if not throw some error. Using the AmazonClientBuilder class, I am using the doesBucketExist method to check if a bucket is there, and using the deleteBucket method to delete that…
Roy
  • 73
  • 2
  • 8
-1
votes
1 answer

CNAME, & Amazon S3 bucket as subdomain

I have a S3 bucket called download.mydomain.com My DNS is managed by a local host and they have set up a CNAME to map download.mydomain.com to s3.amazonaws.com. In so doing, this works perfectly: http://download.mydomain.com/myimage.jpg I am…
Trygve
  • 1,317
  • 10
  • 27
-1
votes
4 answers

Find Divisible Sum Pairs in an array in O(n) time

You are given an array of n integers a0, a1, .. an , and a positive integer k. Find and print the number of pairs (i,j) where and i+j is evenly divisible by k (Which is i+j % k == 0). This problem has been taken from here. We need a solution in…
FlyingAura
  • 1,541
  • 5
  • 26
  • 41
-1
votes
1 answer

What is size of a hash-table bucket in java?

We know that more than one object with same hash code can be stored in a single bucket of a hash-table in JAVA. My question is: What is maximum number of objects a single bucket can store?
my name is GYAN
  • 1,269
  • 13
  • 27
-1
votes
1 answer

Setting Couchbase documents to expire based on tow configration

I am using Couchbase server for session management with Java SDK client, I have one bucket for session storage. Currently I am using Time to Live on each document to set expiration time for each session. I have a new requirement where I need to set…
-1
votes
1 answer

jpa query to create intervals / buckets for age

If i have an entity person with date of birth or age, how to create a query that returns number of persons in user defined age intervals e.g if user provides 10 as interval then we want to see 1-10 3 10-20 5 20-30 6 etc ... Already trying some…
J Singh
  • 23
  • 3