mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
31 lines
628 B
JavaScript
31 lines
628 B
JavaScript
|
const GoogleBigQuery = require('@google-cloud/bigquery').BigQuery
|
||
|
|
||
|
let dataset = null
|
||
|
|
||
|
function getDataset() {
|
||
|
if (!dataset) {
|
||
|
console.log(
|
||
|
'Connecting to BigQuery dataset: ',
|
||
|
process.env.BQ_PROJECT_ID,
|
||
|
process.env.BQ_DATASET
|
||
|
)
|
||
|
|
||
|
dataset = new GoogleBigQuery({
|
||
|
projectId: process.env.BQ_PROJECT_ID,
|
||
|
keyFilename: process.env.GCS_KEY_FILE,
|
||
|
}).dataset(process.env.BQ_DATASET)
|
||
|
}
|
||
|
|
||
|
return dataset
|
||
|
}
|
||
|
|
||
|
async function query(query) {
|
||
|
const [job] = await getDataset().createQueryJob({ query })
|
||
|
const [rows] = await job.getQueryResults()
|
||
|
return rows
|
||
|
}
|
||
|
|
||
|
module.exports = {
|
||
|
query,
|
||
|
}
|