forked from galaxydi/go-loghub
-
Notifications
You must be signed in to change notification settings - Fork 119
/
Copy pathclient_job.go
581 lines (529 loc) · 17.2 KB
/
client_job.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
package sls
import (
"encoding/json"
"errors"
"fmt"
"io/ioutil"
"net/url"
)
const (
DataSourceOSS DataSourceType = "AliyunOSS"
DataSourceBSS DataSourceType = "AliyunBSS"
DataSourceMaxCompute DataSourceType = "AliyunMaxCompute"
DataSourceJDBC DataSourceType = "JDBC"
DataSourceKafka DataSourceType = "Kafka"
DataSourceCMS DataSourceType = "AliyunCloudMonitor"
DataSourceGeneral DataSourceType = "General"
DataSourceS3 DataSourceType = "S3"
OSSDataFormatTypeLine OSSDataFormatType = "Line"
OSSDataFormatTypeMultiline OSSDataFormatType = "Multiline"
OSSDataFormatTypeJSON OSSDataFormatType = "JSON"
OSSDataFormatTypeParquet OSSDataFormatType = "Parquet"
OSSDataFormatTypeDelimitedText OSSDataFormatType = "DelimitedText"
KafkaValueTypeText KafkaValueType = "Text"
KafkaValueTypeJSON KafkaValueType = "JSON"
KafkaPositionGroupOffsets KafkaPosition = "GROUP_OFFSETS"
KafkaPositionEarliest KafkaPosition = "EARLIEST"
KafkaPositionLatest KafkaPosition = "LATEST"
KafkaPositionTimeStamp KafkaPosition = "TIMESTAMP"
DataSinkLOG DataSinkType = "AliyunLOG"
DataSinkOSS DataSinkType = "AliyunOSS"
DataSinkADB DataSinkType = "AliyunADB"
DataSinkTSDB DataSinkType = "AliyunTSDB"
DataSinkODPS DataSinkType = "AliyunODPS"
DataSinkGENERAL DataSinkType = "General"
OSSContentDetailTypeParquet OSSContentType = "parquet"
OSSContentDetailTypeORC OSSContentType = "orc"
OSSContentDetailTypeCSV OSSContentType = "csv"
OSSContentDetailTypeJSON OSSContentType = "json"
OSSCompressionTypeNone OSSCompressionType = "none"
OSSCompressionTypeZstd OSSCompressionType = "zstd"
OSSCompressionTypeGzip OSSCompressionType = "gzip"
OSSCompressionTypeSnappy OSSCompressionType = "snappy"
ExportVersion2 ExportVersion = "v2.0" // new versions of OSSExport, ODPSExport Version property must use this field, otherwise the service may be unavailable or incomplete
)
type (
BaseJob struct {
Name string `json:"name"`
DisplayName string `json:"displayName,omitempty"`
Description string `json:"description,omitempty"`
Type JobType `json:"type"`
Recyclable bool `json:"recyclable"`
CreateTime int64 `json:"createTime"`
LastModifyTime int64 `json:"lastModifyTime"`
}
ScheduledJob struct {
BaseJob
Status string `json:"status"`
Schedule *Schedule `json:"schedule"`
ScheduleId string `json:"scheduleId"`
}
Ingestion struct {
ScheduledJob
IngestionConfiguration *IngestionConfiguration `json:"configuration"`
}
IngestionConfiguration struct {
Version string `json:"version"`
LogStore string `json:"logstore"`
NumberOfInstance int32 `json:"numberOfInstance"`
DataSource interface{} `json:"source"`
}
DataSourceType string
DataSource struct {
DataSourceType DataSourceType `json:"type"`
}
// >>> ingestion oss source
OSSDataFormatType string
AliyunOSSSource struct {
DataSource
Bucket string `json:"bucket"`
Endpoint string `json:"endpoint"`
RoleArn string `json:"roleARN"`
Prefix string `json:"prefix,omitempty"`
Pattern string `json:"pattern,omitempty"`
CompressionCodec string `json:"compressionCodec,omitempty"`
Encoding string `json:"encoding,omitempty"`
Format interface{} `json:"format,omitempty"`
RestoreObjectEnable bool `json:"restoreObjectEnable"`
LastModifyTimeAsLogTime bool `json:"lastModifyTimeAsLogTime"`
}
OSSDataFormat struct {
Type OSSDataFormatType `json:"type"`
TimeFormat string `json:"timeFormat"`
TimeZone string `json:"timeZone"`
}
LineFormat struct {
OSSDataFormat
TimePattern string `json:"timePattern"`
}
MultiLineFormat struct {
LineFormat
MaxLines int64 `json:"maxLines,omitempty"`
Negate bool `json:"negate"`
Match string `json:"match"`
Pattern string `json:"pattern"`
FlushPattern string `json:"flushPattern"`
}
StructureDataFormat struct {
OSSDataFormat
TimeField string `json:"timeField"`
}
JSONFormat struct {
StructureDataFormat
SkipInvalidRows bool `json:"skipInvalidRows"`
}
ParquetFormat struct {
StructureDataFormat
}
DelimitedTextFormat struct {
StructureDataFormat
FieldNames []string `json:"fieldNames"`
FieldDelimiter string `json:"fieldDelimiter"`
QuoteChar string `json:"quoteChar"`
EscapeChar string `json:"escapeChar"`
SkipLeadingRows int64 `json:"skipLeadingRows"`
MaxLines int64 `json:"maxLines"`
FirstRowAsHeader bool `json:"firstRowAsHeader"`
}
// ingestion maxcompute source >>>
AliyunMaxComputeSource struct {
DataSource
AccessKeyID string `json:"accessKeyID"`
AccessKeySecret string `json:"accessKeySecret"`
Endpoint string `json:"endpoint"`
TunnelEndpoint string `json:"tunnelEndpoint,omitempty"`
Project string `json:"project"`
Table string `json:"table"`
PartitionSpec string `json:"partitionSpec"`
TimeField string `json:"timeField"`
TimeFormat string `json:"timeFormat"`
TimeZone string `json:"timeZone"`
}
// ingestion cloud monitor source
AliyunCloudMonitorSource struct {
DataSource
AccessKeyID string `json:"accessKeyID"`
AccessKeySecret string `json:"accessKeySecret"`
StartTime int64 `json:"startTime"`
Namespaces []string `json:"namespaces"`
OutputType string `json:"outputType"`
DelayTime int64 `json:"delayTime"`
}
// ingestion kafka source
KafkaValueType string
KafkaPosition string
KafkaSource struct {
DataSource
Topics string `json:"topics"`
BootStrapServers string `json:"bootstrapServers"`
ValueType KafkaValueType `json:"valueType"`
FromPosition KafkaPosition `json:"fromPosition"`
FromTimeStamp int64 `json:"fromTimestamp"`
ToTimeStamp int64 `json:"toTimestamp"`
TimeField string `json:"timeField"`
TimePattern string `json:"timePattern"`
TimeFormat string `json:"timeFormat"`
TimeZone string `json:"timeZone"`
Communication string `json:"communication"`
NameResolutions string `json:"nameResolutions"`
AdditionalProps map[string]string `json:"additionalProps"`
VpcId string `json:"vpcId"`
}
S3Source struct {
DataSource
AWSAccessKey string `json:"awsAccessKey"`
AWSAccessKeySecret string `json:"awsAccessKeySecret"`
AWSRegion string `json:"awsRegion"`
Bucket string `json:"bucket"`
Prefix string `json:"prefix,omitempty"`
Pattern string `json:"pattern,omitempty"`
CompressionCodec string `json:"compressionCodec,omitempty"`
Encoding string `json:"encoding,omitempty"`
Format interface{} `json:"format,omitempty"`
}
// ingestion JDBC source
AliyunBssSource struct {
DataSource
RoleArn string `json:"roleARN"`
HistoryMonth int64 `json:"historyMonth"`
}
// ingestion general source
IngestionGeneralSource struct {
DataSource
Fields map[string]interface{}
}
Export struct {
ScheduledJob
ExportConfiguration *ExportConfiguration `json:"configuration"`
}
ExportVersion string
ExportConfiguration struct {
FromTime int64 `json:"fromTime"`
ToTime int64 `json:"toTime"`
LogStore string `json:"logstore"`
Parameters map[string]string `json:"parameters"`
RoleArn string `json:"roleArn"`
Version ExportVersion `json:"version"`
DataSink DataSink `json:"sink"`
}
DataSink interface {
DataSinkType() DataSinkType
}
DataSinkType string
OSSContentType string
OSSCompressionType string
AliyunOSSSink struct {
Type DataSinkType `json:"type"`
RoleArn string `json:"roleArn"`
Bucket string `json:"bucket"`
Prefix string `json:"prefix"`
Suffix string `json:"suffix"`
PathFormat string `json:"pathFormat"`
PathFormatType string `json:"pathFormatType"`
BufferSize int64 `json:"bufferSize"`
BufferInterval int64 `json:"bufferInterval"`
TimeZone string `json:"timeZone"`
ContentType OSSContentType `json:"contentType"`
CompressionType OSSCompressionType `json:"compressionType"`
//CsvContentDetail, JsonContentDetail, ParquetContentDetail, OrcContentDetail
// the old version ContentDetail is st ring(struct serialized string), and now we highly recommend you use the struct ContentDetail directly
ContentDetail interface{} `json:"contentDetail"`
}
CsvContentDetail struct {
ColumnNames []string `json:"columns"`
Delimiter string `json:"delimiter"`
Quote string `json:"quote"`
Escape string `json:"escape"`
Null string `json:"null"`
Header bool `json:"header"`
LineFeed string `json:"lineFeed"`
}
JsonContentDetail struct {
EnableTag bool `json:"enableTag"`
}
ParquetContentDetail ColumnStorageContentDetail
OrcContentDetail ColumnStorageContentDetail
ColumnStorageContentDetail struct {
Columns []Column `json:"columns"`
}
Column struct {
Name string `json:"name"`
Type string `json:"type"`
}
AliyunODPSSink struct {
Type DataSinkType `json:"type"`
OdpsRolearn string `json:"odpsRolearn"`
OdpsEndpoint string `json:"odpsEndpoint"`
OdpsTunnelEndpoint string `json:"odpsTunnelEndpoint"`
OdpsProject string `json:"odpsProject"`
OdpsTable string `json:"odpsTable"`
TimeZone string `json:"timeZone"`
PartitionTimeFormat string `json:"partitionTimeFormat"`
Fields []string `json:"fields"`
PartitionColumn []string `json:"partitionColumn"`
OdpsAccessKeyId string `json:"odpsAccessKeyId"`
OdpsAccessSecret string `json:"odpsAccessAecret"`
}
AliyunGeneralSink struct {
Type DataSinkType `json:"type"`
Fields map[string]interface{} `json:"fields"`
}
)
func (_ *AliyunOSSSink) DataSinkType() DataSinkType {
return DataSinkOSS
}
func (_ *AliyunODPSSink) DataSinkType() DataSinkType {
return DataSinkODPS
}
func (_ *AliyunGeneralSink) DataSinkType() DataSinkType {
return DataSinkGENERAL
}
func (e *ExportConfiguration) UnmarshalJSON(data []byte) error {
c := map[string]interface{}{}
if err := json.Unmarshal(data, &c); err != nil {
return err
}
sinkMap := c["sink"].(map[string]interface{})
t := sinkMap["type"].(string)
var sink DataSink
sinkBytes, err := json.Marshal(sinkMap)
if err != nil {
return err
} else if string(DataSinkOSS) == t {
sink = &AliyunOSSSink{}
} else if string(DataSinkODPS) == t {
sink = &AliyunODPSSink{}
} else if string(DataSinkGENERAL) == t {
sink = &AliyunGeneralSink{}
} else { // TODO: other sinks to be implemented
return errors.New(fmt.Sprintf("unsupported sink type:%s", t))
}
if err = json.Unmarshal(sinkBytes, sink); err != nil {
return err
}
parameters := map[string]string{}
for k, v := range c["parameters"].(map[string]interface{}) {
parameters[k] = v.(string)
}
*e = ExportConfiguration{
FromTime: int64(c["fromTime"].(float64)),
ToTime: int64(c["toTime"].(float64)),
LogStore: c["logstore"].(string),
Parameters: parameters,
RoleArn: c["roleArn"].(string),
Version: ExportVersion(c["version"].(string)),
DataSink: sink,
}
return nil
}
func (c *Client) CreateIngestion(project string, ingestion *Ingestion) error {
body, err := json.Marshal(ingestion)
if err != nil {
return NewClientError(err)
}
h := map[string]string{
"x-log-bodyrawsize": fmt.Sprintf("%v", len(body)),
"Content-Type": "application/json",
}
uri := "/jobs"
r, err := c.request(project, "POST", uri, h, body)
if err != nil {
return err
}
r.Body.Close()
return nil
}
func (c *Client) UpdateIngestion(project string, ingestion *Ingestion) error {
body, err := json.Marshal(ingestion)
if err != nil {
return NewClientError(err)
}
h := map[string]string{
"x-log-bodyrawsize": fmt.Sprintf("%v", len(body)),
"Content-Type": "application/json",
}
uri := "/jobs/" + ingestion.Name
r, err := c.request(project, "PUT", uri, h, body)
if err != nil {
return err
}
r.Body.Close()
return nil
}
func (c *Client) GetIngestion(project string, name string) (*Ingestion, error) {
h := map[string]string{
"x-log-bodyrawsize": "0",
"Content-Type": "application/json",
}
uri := "/jobs/" + name
r, err := c.request(project, "GET", uri, h, nil)
if err != nil {
return nil, err
}
defer r.Body.Close()
buf, _ := ioutil.ReadAll(r.Body)
ingestion := &Ingestion{}
if err = json.Unmarshal(buf, ingestion); err != nil {
err = NewClientError(err)
}
return ingestion, err
}
func (c *Client) ListIngestion(project, logstore, name, displayName string, offset, size int) (ingestions []*Ingestion, total, count int, error error) {
h := map[string]string{
"x-log-bodyrawsize": "0",
"Content-Type": "application/json",
}
v := url.Values{}
v.Add("logstore", logstore)
v.Add("jobName", name)
if displayName != "" {
v.Add("displayName", displayName)
}
v.Add("jobType", "Ingestion")
v.Add("offset", fmt.Sprintf("%d", offset))
v.Add("size", fmt.Sprintf("%d", size))
uri := "/jobs?" + v.Encode()
r, err := c.request(project, "GET", uri, h, nil)
if err != nil {
return nil, 0, 0, err
}
defer r.Body.Close()
type ingestionList struct {
Total int `json:"total"`
Count int `json:"count"`
Results []*Ingestion `json:"results"`
}
buf, _ := ioutil.ReadAll(r.Body)
is := &ingestionList{}
if err = json.Unmarshal(buf, is); err != nil {
err = NewClientError(err)
}
return is.Results, is.Total, is.Count, err
}
func (c *Client) DeleteIngestion(project string, name string) error {
h := map[string]string{
"x-log-bodyrawsize": "0",
"Content-Type": "application/json",
}
uri := "/jobs/" + name
r, err := c.request(project, "DELETE", uri, h, nil)
if err != nil {
return err
}
r.Body.Close()
return nil
}
func (c *Client) CreateExport(project string, export *Export) error {
body, err := json.Marshal(export)
if err != nil {
return NewClientError(err)
}
h := map[string]string{
"x-log-bodyrawsize": fmt.Sprintf("%v", len(body)),
"Content-Type": "application/json",
}
uri := "/jobs"
r, err := c.request(project, "POST", uri, h, body)
if err != nil {
return err
}
r.Body.Close()
return nil
}
func (c *Client) UpdateExport(project string, export *Export) error {
body, err := json.Marshal(export)
if err != nil {
return NewClientError(err)
}
h := map[string]string{
"x-log-bodyrawsize": fmt.Sprintf("%v", len(body)),
"Content-Type": "application/json",
}
uri := "/jobs/" + export.Name
r, err := c.request(project, "PUT", uri, h, body)
if err != nil {
return err
}
r.Body.Close()
return nil
}
func (c *Client) GetExport(project, name string) (*Export, error) {
h := map[string]string{
"x-log-bodyrawsize": "0",
"Content-Type": "application/json",
}
uri := "/jobs/" + name
r, err := c.request(project, "GET", uri, h, nil)
if err != nil {
return nil, err
}
defer r.Body.Close()
buf, _ := ioutil.ReadAll(r.Body)
export := &Export{}
if err = json.Unmarshal(buf, export); err != nil {
err = NewClientError(err)
}
return export, err
}
func (c *Client) ListExport(project, logstore, name, displayName string, offset, size int) (exports []*Export, total, count int, error error) {
h := map[string]string{
"x-log-bodyrawsize": "0",
"Content-Type": "application/json",
}
v := url.Values{}
v.Add("logstore", logstore)
v.Add("jobName", name)
if displayName != "" {
v.Add("displayName", displayName)
}
v.Add("jobType", "Export")
v.Add("offset", fmt.Sprintf("%d", offset))
v.Add("size", fmt.Sprintf("%d", size))
uri := "/jobs?" + v.Encode()
r, err := c.request(project, "GET", uri, h, nil)
if err != nil {
return nil, 0, 0, err
}
defer r.Body.Close()
type exportList struct {
Total int `json:"total"`
Count int `json:"count"`
Results []*Export `json:"results"`
}
buf, _ := ioutil.ReadAll(r.Body)
el := &exportList{}
if err = json.Unmarshal(buf, el); err != nil {
err = NewClientError(err)
}
return el.Results, el.Total, el.Count, err
}
func (c *Client) DeleteExport(project string, name string) error {
h := map[string]string{
"x-log-bodyrawsize": "0",
"Content-Type": "application/json",
}
uri := "/jobs/" + name
r, err := c.request(project, "DELETE", uri, h, nil)
if err != nil {
return err
}
r.Body.Close()
return nil
}
func (c *Client) RestartExport(project string, export *Export) error {
body, err := json.Marshal(export)
if err != nil {
return NewClientError(err)
}
h := map[string]string{
"x-log-bodyrawsize": fmt.Sprintf("%v", len(body)),
"Content-Type": "application/json",
}
uri := fmt.Sprintf("/jobs/%s?action=RESTART", export.Name)
r, err := c.request(project, "PUT", uri, h, body)
if err != nil {
return err
}
r.Body.Close()
return nil
}