-
Notifications
You must be signed in to change notification settings - Fork 0
/
prefectcloudflow-v4-subflows.py
255 lines (183 loc) · 8.13 KB
/
prefectcloudflow-v4-subflows.py
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
from prefect import flow, task
from prefect.task_runners import SequentialTaskRunner
from prefect.task_runners import ConcurrentTaskRunner
from prefect_dask.task_runners import DaskTaskRunner
from prefect.deployments import Deployment
import asyncio
from flightsql import FlightSQLClient, connect
import os
from datetime import datetime
import polars as pl
import pyarrow as pa
import pandas as pd
from influxdb_client import InfluxDBClient
from influxdb_client.client.write_api import SYNCHRONOUS
#Pandas 2.0 setting: engine='pyarrow', dtype_backend='pyarrow'
#Documentation Links
# https://docs.influxdata.com/influxdb/cloud-iox/query-data/sql/explore-schema/
# https://docs.influxdata.com/influxdb/cloud-iox/query-data/sql/basic-query/
# https://docs.influxdata.com/influxdb/cloud-iox/query-data/sql/aggregate-select/
#InfuxData Variables
# Prefect Blocks
from prefect.blocks.system import Secret
secret_block = Secret.load("iox-token")
# Access the stored secret
token = secret_block.get()
from prefect_github import GitHubCredentials
github_credentials_block = GitHubCredentials.load("github-prefect")
#from prefect_github.repository import query_repository
#from prefect.filesystems import GitHub
#github_block = GitHub.load("github-influx-downsample")
from prefect_github.repository import GitHubRepository
github_repository_block = GitHubRepository.load("github-influxdata-repo")
######################################
org = 'dtiolab'
bucket = 'dtiolab'
url = "https://us-east-1-1.aws.cloud2.influxdata.com/"
pa_type = pd.ArrowDtype(pa.timestamp("ns"))
# 3. Instantiate the FlightSQL Client
client = FlightSQLClient(
host="us-east-1-1.aws.cloud2.influxdata.com",
#token=os.environ["INFLUX_TOKEN"],
token=token,
metadata={"bucket-name": "dtiolab"},
features={'metadata-reflection': 'true'}
)
################################################
# Functions with Prefect Flow decorators
###############################################
@task()
def hi():
print("Hi from Prefect! 🤗")
@task()
def gettable():
#hi()
t = client.get_tables()
#s = client.get_db_schemas()
#c = client.get_catalogs()
tables = client.do_get(t.endpoints[0].ticket).read_all()
#print(tables)
#https://github.com/pandas-dev/pandas/issues/51760
tables_df = tables.to_pandas(types_mapper=pd.ArrowDtype)
print(tables_df.dtypes)
#Convert table_name to Measurment to map to Influxdata terminology
tables_df.rename({'table_name': 'Measurement'}, axis='columns', inplace=True)
print("Display just the Measurement Names to execute SQL queries:")
#Take just the iox catalog items
iox_df = tables_df[tables_df['db_schema_name'] == 'iox']
#Remove any tabels with downsampled in the name
iox_df = iox_df[~iox_df['Measurement'].str.contains("downsampled")]
#Convet a list to query against
measurements = iox_df['Measurement'].to_list()
#display tables_df
#tables_df[['Measurement']]
print("The availabile Measurments in the defined IOx connection include:")
print("Measurements:", measurements)
return(measurements)
#Return measurments as could be used as a pick-list
@flow(log_prints=True,
task_runner=DaskTaskRunner(),
description="Executes the defined SQL query and returns a Pandas Dataframe.")
def execute_iox_query(measurement):
#########################################################################################################################################
#4. Execute a query against InfluxDB's Flight SQL endpoint. Here we are querying for all of our data.
# The function should ingest the Table Name aka measurment to query.
#input measurement variable as Table to Query
#We should convert this basic query into a more powerful query that takes advantage of downsampling on the IOx side using the bin function:
""" SELECT
DATE_BIN('1 minute', time) AS time,
"host",
max("Percent_User_Time") as max_user_time,
max("Percent_Privileged_Time") as max_priviliged_time,
max("Percent_DPC_Time") as max_dpc_time,
max("Percent_Interrupt_Time") as max_interrupt_time
FROM "win_cpu"
GROUP BY DATE_BIN('1 minute', time), "host"
ORDER BY time
"""
#IOx Query and generate Table - df
#Query to Execute
#flightsql = f'select * from {measurement} limit 100000'
flightsql = f"WITH times_cte AS ( SELECT host, MAX(time) AS time \
FROM {measurement} \
GROUP BY host, date_trunc('minute', time) ) \
SELECT t.* FROM {measurement} t \
INNER JOIN times_cte m ON t.time = m.time AND t.host = m.host \
ORDER BY host, time;"
print(f"Executing IOx Data Query: {flightsql}")
query = client.execute(f"{flightsql}")
#Rewrite Query to use SQL Bins to help with downsampling on the query Side as well
# 5. Create reader to consume result
print("Create reader to consume result")
reader = client.do_get(query.endpoints[0].ticket)
# 6. Read all data into a pyarrow.Table
print("Read all data into a pyarrow.Table")
Table = reader.read_all()
# 7. Convert to Pandas DataFrame and sort by time
print("Convert to Pandas DataFrame")
#df = Table.to_pandas(types_mapper=pd.ArrowDtype)
df = Table.to_pandas()
df = df.sort_values(by="time")
print("The existing IOx query contains:", df.shape[0], "rows")
#Need to add a datetimeindex for group-by to work properly
print("converting time to datetime index")
df = df.set_index(pd.DatetimeIndex(df['time']))
df.set_index(["time"])
#Return Constructed and formatted dataframe for processing and analysis
print(df.head(7))
return(df)
@task(retries=2, retry_delay_seconds=60)
def execute_iox_downsample(df, time_interval, down_sample_aggregation):
#############################################################################################################
# Resample Function - input of time interval and passed dataframe - return downsampled dataframe
# imput time_interval, aggregation function
#time_interval = '10min'
#down_sample_aggregation = 'mean'
print(f"Performing the Downsample every {time_interval} and calculating the {down_sample_aggregation}")
df_mean = df.groupby(by=["host"]).resample(f'{time_interval}', on='time').mean(numeric_only = True).dropna()
# create a copy of the downsampled data so we can write it back to InfluxDB Cloud powered by IOx.
df_write = df_mean.reset_index()
#print(df_mean.head(5))
print(df_mean.dtypes)
return(df_write)
#############################################################################################################
@flow(log_prints=True,
task_runner=DaskTaskRunner(),
description="Writes the downsampled dataframe back to IOX using the InfluxClient.")
def write_sampled_to_iox(df_write, table):
# write data back to InfluxDB Cloud powered by IOx
print(df_write.head(5))
client = InfluxDBClient(url=url, token=token, org=org)
client.write_api(write_options=SYNCHRONOUS).write(bucket=bucket,
record=df_write,
data_frame_measurement_name=f"{table}_mean_downsampled",
data_frame_timestamp_column='time',
data_frame_tag_columns=['host'])
def deploy():
deployment = Deployment.build_from_flow(
flow=gettable,
name="prefect-gettable-deployment"
)
deployment.apply()
@flow(log_prints=True,
task_runner=SequentialTaskRunner(),
description="Influxdata IOx support workflow prototype.")
def iox_prototype_subflows():
#Set Variables
measurement = 'cpu'
time_interval = '10min'
down_sample_aggregation = 'mean'
tables = gettable()
print(tables)
print("Running IOx Query Flow Loop through the measurments")
for table in tables:
print(table)
df = execute_iox_query(table)
print("Running Downsampling Flow")
resampled = execute_iox_downsample(df, time_interval, down_sample_aggregation)
print("writing sampled dataframe to Influx")
write_sampled_to_iox(resampled, table)
print("Completed Flow")
if __name__ == "__main__":
iox_prototype_subflows()
#deploy()