Compare commits
10 Commits
Author | SHA1 | Date | |
---|---|---|---|
87c3548f91 | |||
af3d461593 | |||
bd9b3bb985 | |||
169e49b93d | |||
2db4010648 | |||
b4ae49b604 | |||
9bdd9484f1 | |||
1dcfbe7f5d | |||
e644fed03c | |||
b67acc1b78 |
16500
package-lock.json
generated
16500
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
19
package.json
19
package.json
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@pushrocks/smartclickhouse",
|
"name": "@pushrocks/smartclickhouse",
|
||||||
"version": "2.0.0",
|
"version": "2.0.5",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "an odm for talking to clickhouse",
|
"description": "an odm for talking to clickhouse",
|
||||||
"main": "dist_ts/index.js",
|
"main": "dist_ts/index.js",
|
||||||
@ -15,17 +15,20 @@
|
|||||||
"createClickhouse": "docker run --name some-clickhouse-server --ulimit nofile=262144:262144 -p 8123:8123 -p 9000:9000 --volume=$PWD/.nogit/testdatabase:/var/lib/clickhouse yandex/clickhouse-server"
|
"createClickhouse": "docker run --name some-clickhouse-server --ulimit nofile=262144:262144 -p 8123:8123 -p 9000:9000 --volume=$PWD/.nogit/testdatabase:/var/lib/clickhouse yandex/clickhouse-server"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@gitzone/tsbuild": "^2.1.48",
|
"@gitzone/tsbuild": "^2.1.63",
|
||||||
"@gitzone/tsbundle": "^1.0.91",
|
"@gitzone/tsbundle": "^2.0.6",
|
||||||
"@gitzone/tstest": "^1.0.67",
|
"@gitzone/tstest": "^1.0.72",
|
||||||
"@pushrocks/tapbundle": "^5.0.2",
|
"@pushrocks/tapbundle": "^5.0.4",
|
||||||
"@types/node": "^17.0.21",
|
"@types/node": "^18.6.1",
|
||||||
"tslint": "^6.1.3",
|
"tslint": "^6.1.3",
|
||||||
"tslint-config-prettier": "^1.15.0"
|
"tslint-config-prettier": "^1.15.0"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@depyronick/clickhouse-client": "^1.0.12",
|
"@depyronick/clickhouse-client": "^1.0.14",
|
||||||
"@pushrocks/smartobject": "^1.0.10"
|
"@pushrocks/smartdelay": "^2.0.13",
|
||||||
|
"@pushrocks/smartobject": "^1.0.10",
|
||||||
|
"@pushrocks/smartpromise": "^3.1.7",
|
||||||
|
"@pushrocks/smarturl": "^3.0.1"
|
||||||
},
|
},
|
||||||
"browserslist": [
|
"browserslist": [
|
||||||
"last 1 chrome versions"
|
"last 1 chrome versions"
|
||||||
|
@ -5,7 +5,7 @@ let testClickhouseDb: smartclickhouse.SmartClickHouseDb;
|
|||||||
|
|
||||||
tap.test('first test', async () => {
|
tap.test('first test', async () => {
|
||||||
testClickhouseDb = new smartclickhouse.SmartClickHouseDb({
|
testClickhouseDb = new smartclickhouse.SmartClickHouseDb({
|
||||||
host: 'localhost',
|
url: 'http://localhost:8123',
|
||||||
database: 'test2',
|
database: 'test2',
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
@ -14,10 +14,10 @@ tap.test('should start the clickhouse db', async () => {
|
|||||||
await testClickhouseDb.start(true);
|
await testClickhouseDb.start(true);
|
||||||
});
|
});
|
||||||
|
|
||||||
tap.test('should create a timedatatable', async () => {
|
tap.test('should create a timedatatable', async (toolsArg) => {
|
||||||
const table = await testClickhouseDb.getTable('analytics');
|
const table = await testClickhouseDb.getTable('analytics');
|
||||||
let i = 0;
|
let i = 0;
|
||||||
while(i < 10) {
|
while(i < 5000) {
|
||||||
await table.addData({
|
await table.addData({
|
||||||
timestamp: Date.now(),
|
timestamp: Date.now(),
|
||||||
message: `hello this is a message ${i}`,
|
message: `hello this is a message ${i}`,
|
||||||
@ -28,6 +28,8 @@ tap.test('should create a timedatatable', async () => {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
i++;
|
i++;
|
||||||
|
console.log(`logged ${i} of 5000 lines.`);
|
||||||
|
await toolsArg.delayFor(1);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
8
ts/00_commitinfo_data.ts
Normal file
8
ts/00_commitinfo_data.ts
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
/**
|
||||||
|
* autocreated commitinfo by @pushrocks/commitinfo
|
||||||
|
*/
|
||||||
|
export const commitinfo = {
|
||||||
|
name: '@pushrocks/smartclickhouse',
|
||||||
|
version: '2.0.5',
|
||||||
|
description: 'an odm for talking to clickhouse'
|
||||||
|
}
|
@ -2,13 +2,14 @@ import * as plugins from './smartclickhouse.plugins.js';
|
|||||||
import { TimeDataTable } from './smartclickhouse.classes.timedatatable.js';
|
import { TimeDataTable } from './smartclickhouse.classes.timedatatable.js';
|
||||||
|
|
||||||
export interface IClickhouseConstructorOptions {
|
export interface IClickhouseConstructorOptions {
|
||||||
host: string;
|
url: string;
|
||||||
database: string;
|
database: string;
|
||||||
password?: string;
|
password?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
export class SmartClickHouseDb {
|
export class SmartClickHouseDb {
|
||||||
public options: IClickhouseConstructorOptions;
|
public options: IClickhouseConstructorOptions;
|
||||||
|
public defaultClient: plugins.clickhouse.ClickHouseClient;
|
||||||
public clickhouseClient: plugins.clickhouse.ClickHouseClient;
|
public clickhouseClient: plugins.clickhouse.ClickHouseClient;
|
||||||
|
|
||||||
constructor(optionsArg: IClickhouseConstructorOptions) {
|
constructor(optionsArg: IClickhouseConstructorOptions) {
|
||||||
@ -20,23 +21,50 @@ export class SmartClickHouseDb {
|
|||||||
*/
|
*/
|
||||||
public async start(dropOld = false) {
|
public async start(dropOld = false) {
|
||||||
console.log(`Connecting to default database first.`);
|
console.log(`Connecting to default database first.`);
|
||||||
const defaultClient = new plugins.clickhouse.ClickHouseClient({
|
const defaultOptions: {[keyArg: string]: string} = {};
|
||||||
...this.options,
|
// the protocol, url and host
|
||||||
|
const parsedUrl = plugins.smarturl.Smarturl.createFromUrl(this.options.url);
|
||||||
|
parsedUrl.protocol === 'https' ? defaultOptions.protocol = plugins.clickhouse.ClickHouseConnectionProtocol.HTTPS : null;
|
||||||
|
parsedUrl.protocol === 'http' ? defaultOptions.protocol = plugins.clickhouse.ClickHouseConnectionProtocol.HTTP : null;
|
||||||
|
defaultOptions.host = parsedUrl.hostname;
|
||||||
|
defaultOptions.port = parsedUrl.port;
|
||||||
|
// the database
|
||||||
|
defaultOptions.database = this.options.database;
|
||||||
|
// the password
|
||||||
|
this.options.password ? defaultOptions.password = this.options.password : null;
|
||||||
|
// lets connect
|
||||||
|
this.defaultClient = new plugins.clickhouse.ClickHouseClient({
|
||||||
|
...defaultOptions,
|
||||||
database: 'default',
|
database: 'default',
|
||||||
});
|
});
|
||||||
|
await this.pingDatabaseUntilAvailable();
|
||||||
console.log(`Create database ${this.options.database}, if it does not exist...`);
|
console.log(`Create database ${this.options.database}, if it does not exist...`);
|
||||||
if (dropOld) {
|
await this.createDatabase(dropOld);
|
||||||
await defaultClient.queryPromise(`DROP DATABASE IF EXISTS ${this.options.database}`);
|
|
||||||
}
|
|
||||||
await defaultClient.queryPromise(`CREATE DATABASE IF NOT EXISTS ${this.options.database}`);
|
|
||||||
|
|
||||||
console.log(`Ensured database. Now connecting to wanted database: ${this.options.database}`);
|
console.log(`Ensured database. Now connecting to wanted database: ${this.options.database}`);
|
||||||
this.clickhouseClient = new plugins.clickhouse.ClickHouseClient({
|
this.clickhouseClient = new plugins.clickhouse.ClickHouseClient({
|
||||||
...this.options,
|
...defaultOptions
|
||||||
});
|
});
|
||||||
console.log(`trying to ping database...`);
|
}
|
||||||
const result = await this.clickhouseClient.ping();
|
|
||||||
console.log(`Ping successfull?: ${result}`);
|
public async createDatabase(dropOld: boolean = false) {
|
||||||
|
if (dropOld) {
|
||||||
|
await this.defaultClient.queryPromise(`DROP DATABASE IF EXISTS ${this.options.database}`);
|
||||||
|
}
|
||||||
|
await this.defaultClient.queryPromise(`CREATE DATABASE IF NOT EXISTS ${this.options.database}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
public async pingDatabaseUntilAvailable() {
|
||||||
|
let available = false;
|
||||||
|
while(!available) {
|
||||||
|
available = await this.defaultClient.ping().catch(err => {
|
||||||
|
return false;
|
||||||
|
});
|
||||||
|
if (!available) {
|
||||||
|
console.log(`NOT OK: tried pinging ${this.options.url}... Trying again in 5 seconds.`);
|
||||||
|
await plugins.smartdelay.delayFor(5000);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -26,14 +26,22 @@ export interface IColumnInfo {
|
|||||||
datetime_precision: '3';
|
datetime_precision: '3';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface ITimeDataTableOptions {
|
||||||
|
tableName: string;
|
||||||
|
retainDataForDays: number;
|
||||||
|
}
|
||||||
|
|
||||||
export class TimeDataTable {
|
export class TimeDataTable {
|
||||||
public static async getTable(smartClickHouseDbRefArg: SmartClickHouseDb, tableNameArg: string) {
|
public static async getTable(smartClickHouseDbRefArg: SmartClickHouseDb, tableNameArg: string) {
|
||||||
const newTable = new TimeDataTable(smartClickHouseDbRefArg, tableNameArg);
|
const newTable = new TimeDataTable(smartClickHouseDbRefArg, {
|
||||||
|
tableName: tableNameArg,
|
||||||
|
retainDataForDays: 30
|
||||||
|
});
|
||||||
|
|
||||||
// create table in clickhouse
|
// create table in clickhouse
|
||||||
await smartClickHouseDbRefArg.clickhouseClient
|
await smartClickHouseDbRefArg.clickhouseClient
|
||||||
.queryPromise(`
|
.queryPromise(`
|
||||||
CREATE TABLE IF NOT EXISTS ${newTable.tableName} (
|
CREATE TABLE IF NOT EXISTS ${newTable.options.tableName} (
|
||||||
timestamp DateTime64(3, 'Europe/Berlin'),
|
timestamp DateTime64(3, 'Europe/Berlin'),
|
||||||
message String
|
message String
|
||||||
) ENGINE=MergeTree() ORDER BY timestamp`);
|
) ENGINE=MergeTree() ORDER BY timestamp`);
|
||||||
@ -41,13 +49,13 @@ export class TimeDataTable {
|
|||||||
// lets adjust the TTL
|
// lets adjust the TTL
|
||||||
await smartClickHouseDbRefArg.clickhouseClient
|
await smartClickHouseDbRefArg.clickhouseClient
|
||||||
.queryPromise(`
|
.queryPromise(`
|
||||||
ALTER TABLE ${newTable.tableName} MODIFY TTL toDateTime(timestamp) + INTERVAL 1 MONTH
|
ALTER TABLE ${newTable.options.tableName} MODIFY TTL toDateTime(timestamp) + INTERVAL ${newTable.options.retainDataForDays} DAY
|
||||||
`);
|
`);
|
||||||
|
|
||||||
await newTable.updateColumns();
|
await newTable.updateColumns();
|
||||||
console.log(`=======================`)
|
console.log(`=======================`)
|
||||||
console.log(
|
console.log(
|
||||||
`table with name "${newTable.tableName}" in databse ${newTable.smartClickHouseDbRef.options.database} has the following columns:`
|
`table with name "${newTable.options.tableName}" in databse ${newTable.smartClickHouseDbRef.options.database} has the following columns:`
|
||||||
);
|
);
|
||||||
for (const column of newTable.columns) {
|
for (const column of newTable.columns) {
|
||||||
console.log(`>> ${column.name}: ${column.type}`);
|
console.log(`>> ${column.name}: ${column.type}`);
|
||||||
@ -58,12 +66,13 @@ export class TimeDataTable {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// INSTANCE
|
// INSTANCE
|
||||||
|
public healingDeferred: plugins.smartpromise.Deferred<any>;
|
||||||
public smartClickHouseDbRef: SmartClickHouseDb;
|
public smartClickHouseDbRef: SmartClickHouseDb;
|
||||||
public tableName: string;
|
public options: ITimeDataTableOptions;
|
||||||
|
|
||||||
constructor(smartClickHouseDbRefArg: SmartClickHouseDb, tableNameArg: string) {
|
constructor(smartClickHouseDbRefArg: SmartClickHouseDb, optionsArg: ITimeDataTableOptions) {
|
||||||
this.smartClickHouseDbRef = smartClickHouseDbRefArg;
|
this.smartClickHouseDbRef = smartClickHouseDbRefArg;
|
||||||
this.tableName = tableNameArg;
|
this.options = optionsArg;
|
||||||
}
|
}
|
||||||
|
|
||||||
public columns: IColumnInfo[] = [];
|
public columns: IColumnInfo[] = [];
|
||||||
@ -75,7 +84,7 @@ export class TimeDataTable {
|
|||||||
this.columns = await this.smartClickHouseDbRef.clickhouseClient.queryPromise(`
|
this.columns = await this.smartClickHouseDbRef.clickhouseClient.queryPromise(`
|
||||||
SELECT * FROM system.columns
|
SELECT * FROM system.columns
|
||||||
WHERE database LIKE '${this.smartClickHouseDbRef.options.database}'
|
WHERE database LIKE '${this.smartClickHouseDbRef.options.database}'
|
||||||
AND table LIKE '${this.tableName}'
|
AND table LIKE '${this.options.tableName}'
|
||||||
`);
|
`);
|
||||||
return this.columns;
|
return this.columns;
|
||||||
}
|
}
|
||||||
@ -84,6 +93,7 @@ export class TimeDataTable {
|
|||||||
* stores a json and tries to map it to the nested syntax
|
* stores a json and tries to map it to the nested syntax
|
||||||
*/
|
*/
|
||||||
public async addData(dataArg: any) {
|
public async addData(dataArg: any) {
|
||||||
|
|
||||||
// the storageJson
|
// the storageJson
|
||||||
let storageJson: { [key: string]: any } = {};
|
let storageJson: { [key: string]: any } = {};
|
||||||
|
|
||||||
@ -120,7 +130,7 @@ export class TimeDataTable {
|
|||||||
await checkPath(pathArg, typeArg, true);
|
await checkPath(pathArg, typeArg, true);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
const alterString = `ALTER TABLE ${this.tableName} ADD COLUMN ${pathArg} ${typeArg} FIRST`
|
const alterString = `ALTER TABLE ${this.options.tableName} ADD COLUMN ${pathArg} ${typeArg} FIRST`
|
||||||
try {
|
try {
|
||||||
await this.smartClickHouseDbRef.clickhouseClient.queryPromise(`
|
await this.smartClickHouseDbRef.clickhouseClient.queryPromise(`
|
||||||
${alterString}
|
${alterString}
|
||||||
@ -154,9 +164,20 @@ export class TimeDataTable {
|
|||||||
storageJson[key] = value;
|
storageJson[key] = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
const result = await this.smartClickHouseDbRef.clickhouseClient.insertPromise(this.tableName, [
|
const result = await this.smartClickHouseDbRef.clickhouseClient.insertPromise(this.options.tableName, [
|
||||||
storageJson,
|
storageJson,
|
||||||
]);
|
]).catch(async () => {
|
||||||
|
if (this.healingDeferred) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
this.healingDeferred = plugins.smartpromise.defer();
|
||||||
|
console.log(`Ran into an error. Trying to set up things properly again.`);
|
||||||
|
await this.smartClickHouseDbRef.pingDatabaseUntilAvailable();
|
||||||
|
await this.smartClickHouseDbRef.createDatabase();
|
||||||
|
this.columns = [];
|
||||||
|
this.healingDeferred.resolve();
|
||||||
|
this.healingDeferred = null;
|
||||||
|
});
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,8 +1,14 @@
|
|||||||
// @pushrocks scope
|
// @pushrocks scope
|
||||||
|
import * as smartdelay from '@pushrocks/smartdelay';
|
||||||
import * as smartobject from '@pushrocks/smartobject';
|
import * as smartobject from '@pushrocks/smartobject';
|
||||||
|
import * as smartpromise from '@pushrocks/smartpromise';
|
||||||
|
import * as smarturl from '@pushrocks/smarturl';
|
||||||
|
|
||||||
export {
|
export {
|
||||||
smartobject
|
smartdelay,
|
||||||
|
smartobject,
|
||||||
|
smartpromise,
|
||||||
|
smarturl
|
||||||
}
|
}
|
||||||
|
|
||||||
// thirdparty
|
// thirdparty
|
||||||
|
@ -1,5 +1,10 @@
|
|||||||
{
|
{
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"moduleResolution": "node12"
|
"experimentalDecorators": true,
|
||||||
|
"useDefineForClassFields": false,
|
||||||
|
"target": "ES2022",
|
||||||
|
"module": "ES2022",
|
||||||
|
"moduleResolution": "nodenext",
|
||||||
|
"esModuleInterop": true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user