prologuetech/big
Composer 安装命令:
composer require prologuetech/big
包简介
Google BigQuery for Laravel
README 文档
README
This package aims to wrap laravel functionality around Google's BigQuery.
Install
Via Composer
$ composer require prologuetech/big
Setup
Publish our config file into your application:
php artisan vendor:publish --provider="Prologuetech\Big\BigServiceProvider"
You should have a config/prologue-big.php file to configure defaults.
Laravel 5.4.x
Older versions of Laravel require you to add our big service provider to your application providers array in config/app.php:
Prologuetech\Big\BigServiceProvider::class,
You now have access to a familiar laravel experience, enjoy!
Google Authentication
The Google SDK supports Application Default Credentials (ADC) and thus this package does as well. You may leave your auth_file field inside of your config file null to use ADC. Credentials fetcher is not currently supported but may be added in the future.
For more information see the adc docs.
How to use
Configuration
By default we use the following global config options with BigQuery.
$this->options = [ 'useLegacySql' => false, 'useQueryCache' => false, ];
Tables
When creating tables in BQ we automatically flip a Eloquent model schema for you. Let's cover an example of archiving data from our events table into BQ using laravel's chunk method.
$datasetId = 'test'; $tableId = 'events'; // Create our BQ helper $big = new Big(); // Create table, we will pass in a mocked model to mutate into BQ schema // Note: create table will only make a new table if it does not exist /** @var Google\Cloud\BigQuery\Table $table */ $table = $big->createFromModel($datasetId, $tableId, new Event()); // Let's stream our events into BQ in large chunks // Note: notArchived() is a simple scope, use whatever scopes you have on your model Event::notArchived()->chunk(1000, function ($events) use ($big, $table) { // Prepare our rows $rows = $big->prepareData($events); // Stream into BQ, you may also pass in any options with a 3rd param. // Note: By default we use: 'ignoreUnknownValues' => true $big->insert($table, $rows); // Get our current id's /** @var Illuminate\Support\Collection $events */ $ids = $events->pluck('id')->toArray(); // Update these event's as processed Event::whereIn('id', $ids)->update([ 'system_processed' => 1 ]); });
That's it! You now have a replica of your events table in BigQuery, enjoy!
Queries
Instantiating Big will automatically setup a Google ServiceBuilder and give us direct access to BigQuery through
our internals via $big->query. However there are many helpers built into Big that make interacting with BigQuery a
piece of cake (or a tasty carrot if you're into that kind of thing).
For example when running a query on BigQuery we must use the reload method in a loop to poll results. Big comes with a
useful method run so all you need to do is this:
$query = 'SELECT count(id) FROM test.events'; $big = new Big(); $results = $big->run($query);
When using run we automatically poll BigQuery and return all results as a laravel collection object for you so you
can enjoy your results as a refreshing cup of Laravel.
Change log
Please see CHANGELOG for more information on what has changed recently.
License
The MIT License (MIT). Please see License File for more information.
prologuetech/big 适用场景与选型建议
prologuetech/big 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 93.72k 次下载、GitHub Stars 达 16, 最近一次更新时间为 2017 年 06 月 28 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「php」 「google」 「laravel」 「big」 「bigquery」 「Prologue Technology」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 prologuetech/big 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 prologuetech/big 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 prologuetech/big 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Magento 2 Social Login extension is designed for quick login to your Magento 2 store without procesing complex register steps
Client for Google Directions API to add interpolated points to a route consisting of given coordinates.
Alfabank REST API integration
Google Recaptcha Package For PHP front and backend.
Zero-dependency raw PHP DNS resolver, domain-ownership verification, and intoDNS/MxToolbox-style diagnostics. Queries authoritative nameservers directly over sockets — never trusts the recursive cache for ownership checks.
Laravel package for Accurate Online API integration.
统计信息
- 总下载量: 93.72k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 16
- 点击次数: 24
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2017-06-28