Since Kafka Connect is intended to be run as a service, it also supports a REST API for managing connectors. By default this service runs on port 8083 ...
分类:
其他好文 时间:
2019-05-29 14:19:15
阅读次数:
80
1、知识点 2、将数据写入TFRecords import tensorflow as tf import os os.environ['TF_CPP_MIN_LOG_LEVEL'] = '2' FLAGS = tf.app.flags.FLAGS tf.app.flags.DEFINE_strin ...
分类:
其他好文 时间:
2019-05-28 22:35:07
阅读次数:
103
什么是文档流 英文原文是:Normal flow. In CSS 2.1, normal flow includes block formatting of block-level boxes, inline formatting of inline-level boxes, and relativ ...
分类:
其他好文 时间:
2019-05-27 22:06:46
阅读次数:
176
package webber.gshdsb.util; import java.io.File;import java.io.IOException;import jxl.Cell;import jxl.Sheet;import jxl.Workbook;import jxl.read.biff.B ...
分类:
其他好文 时间:
2019-05-27 19:25:58
阅读次数:
111
最短路练习 0. Til the Cows Come Home POJ - 2387 完美的模板题 1 //#include<Windows.h> 2 #include<iostream> 3 #include<algorithm> 4 #include<cstring> 5 #include<cs ...
分类:
其他好文 时间:
2019-05-26 19:46:25
阅读次数:
157
#①配置根Logger,其语法为: # #log4j.rootLogger =[level],appenderName,appenderName2,... #level是日志记录的优先级,分为OFF,TRACE,DEBUG,INFO,WARN,ERROR,FATAL,ALL ##Log4j建议只使用 ...
分类:
其他好文 时间:
2019-05-24 18:57:54
阅读次数:
97
3、telnet配置 [Quidway]user-interface vty 0 4 ;进入虚拟终端 [S3026-ui-vty0-4]authentication-mode password ;设置口令模式 [S3026-ui-vty0-4]set authentication-mode pass ...
分类:
其他好文 时间:
2019-05-24 14:32:36
阅读次数:
88
现象 在跑 edu_ocr_img 表的归档时,每跑几万个数据,都会报一次内存耗尽 跟踪代码发现,是在插入时以下代码造成的: execute 之后会造成使用内存涨上去,并且在之后 unset 所有变量内存也会有一部分不会删除,直到内存耗尽。 于是跟踪到 Yii2中execute的具体代码块发现在记录 ...
分类:
其他好文 时间:
2019-05-24 12:26:55
阅读次数:
126
研究了好些天的logging模块,今天终于能用稍微清晰一点的思路记录一下了~~~ 一、root logger 最后结果是:控制台输出warning、error、critical级别的日志 日志输出说明3个问题: 1、日志默认level是warning 2、未配置formater时,日志直接输出内容( ...
分类:
编程语言 时间:
2019-05-23 21:22:21
阅读次数:
148
Given a binary tree, return the zigzag level order traversal of its nodes' values. (ie, from left to right, then right to left for the next level and ...
分类:
其他好文 时间:
2019-05-23 20:48:23
阅读次数:
85