IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 大数据 -> QT操作 influxdb时序数据库(libcur) -> 正文阅读

[大数据]QT操作 influxdb时序数据库(libcur)

概述:

? 最近在项目中需要用到influxdb 数据库,当时使用了libcur库之后,插入数据的速度一直不太理想。 创建字表的速度 1W的话需要11Min,对于这样的时间完全达不到合格。经过研究进行了打包处理。

QT Creator的版5.12.10
系统?win10 64
libcur版本7_82_0

下面代码的这部分主要是用来在测试时,根据需要调整多线程的处理。

#include <iostream>
#include "InfluxDBFactory.h"
#include "Point.h"
#include <QString>
#include <iostream>
#include <QDebug>
#include <QDateTime>
#include <QThread>
#include <QThreadPool>
#include <QVector>
#include <QMutexLocker>
#include <QProcess>
#include "qtconcurrentrun.h"
//#include "unistd.h"
#include <curl/curl.h>
using namespace QtConcurrent;
using namespace influxdb;
const int nSheet = 10000;
static int nThreadCount = 1;

void functionRun(int begin , int end);
int main()
{
    CURLcode globalInitResult = curl_global_init(CURL_GLOBAL_ALL);
    if (globalInitResult != CURLE_OK) {
        throw std::runtime_error(std::string("cURL init") + curl_easy_strerror(globalInitResult));
    }
    int pathc = nSheet / nThreadCount; // 每次的批数
    for(int iIndex = 0; iIndex <=nThreadCount; iIndex ++) //线程的数量
    {
        int begin = iIndex *pathc;
        int end = 0;
        if((nSheet - begin) <= 0)
        {
            break;
        }

        if((nSheet - begin) > pathc )
        {
            end = begin + pathc;
        }
        else
        {
            end = nSheet;
        }
        if( iIndex == 0)
        {

            QString starttime = QDateTime::currentDateTime().toString("yyyy-MM-dd hh:mm:ss");
            qDebug()<<" the software start run, the time is " << starttime;
        }
        QFuture<void> fut1 = run(functionRun, begin,end);//线程的方式有问题
        QThread::msleep(2);
    }
    getchar();
}

?线程函数,主要是在此函数中进行influxdb的操作。

void functionRun(int begin, int end)
{
    std::string strSend = "";
    auto influxdb1 = influxdb::InfluxDBFactory::Get("http://wtw:123456@localhost:8086/?db=base");
    QString strDatetime = QDateTime::currentDateTime().toString("yyyy-MM-dd hh:mm:ss");
    qDebug() << "begin is "  << begin << " the end is " << end << " the start time is " << strDatetime;
    {
        for( int iIndex =  begin; iIndex < end; iIndex ++)
        {
            QString strSheetName = "";
            strSheetName.sprintf("sheet_%05d", iIndex );
            QString tag1 = QString("%1%2").arg("localhost").arg(iIndex);
            QString tag2 = QString("%1%2").arg("china").arg(iIndex);
            strSend += Point{ strSheetName.toStdString().c_str()}
                           //.addTag("idcode",tag1.toStdString().c_str())
                           .addField("value", tag2.toStdString().c_str()).toLineProtocol();
//                           .addTag("host", "localhost")
//                           .addTag("region", "china")
//                           .addField("north_latitude", iIndex)
//                           .addField("east_longitude", iIndex).toLineProtocol();

            strSend += '\n';
        }
       influxdb1->writeMulString(strSend.c_str());
    }
    QString strDatetimeE = QDateTime::currentDateTime().toString("yyyy-MM-dd hh:mm:ss");
    qDebug() << "begin is "  << begin << " the end is " << end << " the end time is " << strDatetimeE;
}

?经过调整该程序, 建表的操作10W的操作只需要4s,如果有需要该代码已经上传到。资源地址

  大数据 最新文章
实现Kafka至少消费一次
亚马逊云科技:还在苦于ETL?Zero ETL的时代
初探MapReduce
【SpringBoot框架篇】32.基于注解+redis实现
Elasticsearch:如何减少 Elasticsearch 集
Go redis操作
Redis面试题
专题五 Redis高并发场景
基于GBase8s和Calcite的多数据源查询
Redis——底层数据结构原理
上一篇文章      下一篇文章      查看所有文章
加:2022-04-01 00:08:39  更:2022-04-01 00:11:39 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 4:49:25-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码