Skip to content

Commit

Permalink
fixed minor typo in notebook
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremyber-aws committed Aug 24, 2023
1 parent 98a1cb5 commit 8d018de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/lambda_create_studio_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ def generate_code_content(app_name, execution_role, bootstrap_string, subnet1, s

insert_datagen_content = {}
insert_datagen_content["text"] = """%flink.ssql(parallelism=1)\nDROP TABLE IF EXISTS generate_stock_data;\nCREATE TABLE generate_stock_data(\n ticker STRING,\n event_time TIMESTAMP(3),\n price DOUBLE\n)\nWITH (\n 'connector' = 'datagen',\n 'fields.price.kind' = 'random',\n 'fields.price.min' ='0.00',\n 'fields.price.max' = '1000.00'\n\n\n);\n\n\nINSERT INTO stock_table \nSELECT random_ticker_udf() as ticker, event_time, price from generate_stock_data;"""
insert_datagen_content["title"] = """<h3><font color="#3071A9" >3) Please run this paragraph before running any additional event_time based queries in order to generate new data into the MSF topic</font></h3>"""
insert_datagen_content["title"] = """<h3><font color="#3071A9" >3) Please run this paragraph before running any additional event_time based queries in order to generate new data into the MSK topic</font></h3>"""
insert_datagen_content["config"] = {}
insert_datagen_content["config"]["title"]= "true"

Expand Down

0 comments on commit 8d018de

Please sign in to comment.