Google Cloud Storage - 计算非常大的存储桶中的对象

问题描述

我正在尝试加快计算存储桶中对象(文件数量方法。我当前的方法对于大存储桶(通常包含 50k 或更多对象)变得非常慢。我想获取存储桶中对象的总数,以及超过某个阈值的对象数。

    $storage_client = GoogleCloudStorageNew::client();
    $bucket = $storage_client->bucket( $myBucketName );

    $this->threshold_hours = 3;
    $threshold = time() - ( 60 * 60 * $this->threshold_hours );
    $threshold_timestamp = date('Y-m-d H:i:s',$threshold);

    $params = [
                 'prefix'     => "$mls_id/",'pagetoken'  => null
              ];

    $this->total_images = 0;
    $this->total_old_images = 0;
    foreach ( $bucket->objects( $params ) as $object )
    {
        // always add to total
        $this->total_images++;

        $info = $object->info();
        $image_created = date( 'Y-m-d H:i:s',strtotime( $info['timeCreated']) );
        if ( $image_created < $threshold_timestamp )
        {
            $this->total_old_images++;
        }
    }

我想知道尝试分页结果是否会更快,但我无法使分页工作。使用相同的设置,我尝试了这个:

    $page_token = null;
    $params = [
                 'prefix'      => "$mls_id/",'maxResults'  => 5000,'pagetoken'   => null
              ];

    $this->total_images = 0;
    $this->total_old_images = 0;

    $this->threshold_hours = 3;
    $threshold = time() - ( 60 * 60 * $this->threshold_hours );
    $threshold_timestamp = date('Y-m-d H:i:s',$threshold);
    
    while ( $objectList = $bucket->objects($params) )
    {
        $params['pagetoken'] = $objectList->nextResultToken();
        foreach ( $objectList as $object )
        {
            $this->total_images++;

            $info = $object->info();
            $image_created = date( 'Y-m-d H:i:s',strtotime( $info['timeCreated']) );
            if ( $image_created < $threshold_timestamp )
            {
                $this->total_old_images++;
            }
        }
    }

但是分页不起作用 - maxResults 不限制返回到 5000 的内容,它只是获取所有内容。我是否误读了 maxResults/pagetoken 和 nextResultToken() 如何协同工作?显然,我是,但我错过了什么?

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)