This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function saveGoogleDocsImages() { | |
| // Define the folder name where the extracted images will be saved | |
| const folderName = 'Document Images'; | |
| // Check if a folder with the specified name already exists | |
| const folders = DriveApp.getFoldersByName(folderName); | |
| // If the folder exists, use it; otherwise, create a new folder | |
| const folder = folders.hasNext() ? folders.next() : DriveApp.createFolder(folderName); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| client = SchemaRegistryClient(url="http://127.0.0.1:8081") | |
| class User(BaseModel): | |
| ts: str | |
| name: str | |
| country: str | |
| date_of_birth: str | |
| for i in range(100): | |
| data = User( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| client = SchemaRegistryClient(url="http://127.0.0.1:8081") | |
| class User(BaseModel): | |
| ts: str | |
| name: str | |
| country: str | |
| age: int | |
| for i in range(100): | |
| data = User( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| client = SchemaRegistryClient(url="http://127.0.0.1:8081") | |
| class User(BaseModel): | |
| ts: datetime.datetime | |
| name: str | |
| country: str | |
| age: int |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| for i in range(100): | |
| data = { | |
| "ts": datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S.%f"), | |
| "name": fake.name(), | |
| "country": fake.country(), | |
| "date-of-birth": str(fake.date_of_birth(tzinfo=None, minimum_age=0, maximum_age=100)), | |
| } | |
| producer.send(topic=TOPIC, key=str(i).encode("utf-8"), value=json.dumps(data).encode("utf-8")) | |
| print(f"Sent message {i} -> {data}") | |
| sleep(2) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import json | |
| import json | |
| import os | |
| from kafka import KafkaConsumer | |
| BOOTSTRAP_SERVERS = ( | |
| "kafka:9092" if os.getenv("RUNTIME_ENVIRONMENT") == "DOCKER" else "localhost:9092" | |
| ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| TOPIC = "USERS" | |
| def push_messages(): | |
| producer = KafkaProducer( | |
| bootstrap_servers=BOOTSTRAP_SERVERS, | |
| ) | |
| fake = Faker() | |
| for i in range(100): | |
| data = { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: '3' | |
| services: | |
| broker: | |
| image: confluentinc/cp-kafka:7.2.1 | |
| hostname: broker | |
| container_name: broker | |
| ports: | |
| - "9092:9092" | |
| - "9101:9101" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| USE iceberg; | |
| CREATE SCHEMA IF NOT EXISTS iris | |
| WITH (location = 's3a://iris/'); | |
| CREATE TABLE IF NOT EXISTS iceberg.iris.iris_parquet | |
| ( | |
| sepal_length DOUBLE, | |
| sepal_width DOUBLE, | |
| petal_length DOUBLE, |
NewerOlder