Skip to content

Commit 0222c16

Browse files
authored
Merge pull request #167 from chaolee50/master
add ingestion
2 parents b030711 + e1ce40f commit 0222c16

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

tests/sample_ingestion.py

+7-7
Original file line numberDiff line numberDiff line change
@@ -13,26 +13,26 @@ def main():
1313

1414
ingest_config = '{"schedule":{"delay":0,"runImmediately":true,"interval":"5m","type":"FixedRate"},"lastModifiedTime":1596087431,"recyclable":false,"configuration":{"source":{"bucket":"test-lichao","endpoint":"oss-cn-hangzhou-internal.aliyuncs.com","roleARN":"acs:ram::1049446484210612:role/aliyunlogimportossrole","prefix":" 2019/08/20/13/","compressionCodec":"snappy","restoreObjectEnabled":false,"pattern":"","format":{"skipInvalidRows":false,"timeField":"","type":"JSON"},"type":"AliyunOSS","encoding":"UTF-8"},"logstore":"233"},"createTime":1596087431,"displayName":"osstest","name":"ingest-1596087431-683090","description":"","state":"Enabled","type":"Ingestion","status":"SUCCESSED"}'
1515
res = client.create_ingestion(project, ingest_config)
16-
print res.log_print()
16+
res.log_print()
1717

1818
res = client.list_ingestion(project)
19-
print res.get_ingestions()
19+
res.log_print()
2020

2121
res = client.get_ingestion(project, "ingest-1596087431-683089")
22-
print res.log_print()
22+
res.log_print()
2323

2424
res = client.stop_ingestion(project, "ingest-1596087431-683089")
25-
print res.log_print()
25+
res.log_print()
2626

2727
res = client.start_ingestion(project, "ingest-1596087431-683089")
28-
print res.log_print()
28+
res.log_print()
2929

3030
ingest_config = '{"schedule":{"delay":0,"runImmediately":true,"interval":"5m","type":"FixedRate"},"lastModifiedTime":1596087431,"recyclable":false,"configuration":{"source":{"bucket":"test-lichao","endpoint":"oss-cn-hangzhou-internal.aliyuncs.com","roleARN":"acs:ram::1049446484210612:role/aliyunlogimportossrole","prefix":" 2019/08/20/13/","compressionCodec":"snappy","restoreObjectEnabled":false,"pattern":"","format":{"skipInvalidRows":false,"timeField":"","type":"JSON"},"type":"AliyunOSS","encoding":"UTF-8"},"logstore":"666"},"createTime":1596087431,"displayName":"osstest","name":"ingest-1596087431-683089","description":"","state":"Enabled","type":"Ingestion","status":"SUCCESSED"}'
3131
res = client.update_ingestion(project, "ingest-1596087431-683089", ingest_config)
32-
print res.log_print()
32+
res.log_print()
3333

3434
res = client.delete_ingestion(project, "ingest-1596087431-683089")
35-
print res.log_print()
35+
res.log_print()
3636

3737

3838
if __name__ == '__main__':

0 commit comments

Comments
 (0)