|
24 | 24 | Path(cache_dir / ".gitignore").write_text("# Ignore all files in this directory\n*")
|
25 | 25 |
|
26 | 26 | # Create an HTTP cache
|
27 |
| -cache = AirbyteConnectorCache( |
| 27 | +http_cache = AirbyteConnectorCache( |
28 | 28 | cache_dir=cache_dir,
|
29 | 29 | mode="read_write",
|
30 | 30 | serialization_format="native", # Use mitmproxy's native format
|
|
33 | 33 | loop = asyncio.new_event_loop()
|
34 | 34 | asyncio.set_event_loop(loop)
|
35 | 35 |
|
36 |
| -port = cache.start() |
| 36 | +port = http_cache.start() |
37 | 37 | print(f"HTTP cache started on port {port}")
|
38 | 38 |
|
39 |
| -source = get_source( |
40 |
| - "source-pokeapi", |
41 |
| - config={"pokemon_name": "bulbasaur"}, |
42 |
| - source_manifest=True, |
43 |
| - streams=["pokemon"], |
44 |
| -) |
45 |
| - |
46 |
| -print("Checking source connection...") |
47 |
| -source.check() |
48 |
| -print("Source connection successful") |
49 |
| - |
50 |
| -local_cache = ab.new_local_cache("poke") |
| 39 | +local_cache: ab.DuckDBCache = ab.new_local_cache("poke") |
51 | 40 |
|
52 | 41 | print("First run - making HTTP requests...")
|
53 |
| -source_with_cache = get_source( |
| 42 | +source: ab.Source = get_source( |
54 | 43 | "source-pokeapi",
|
55 | 44 | config={"pokemon_name": "bulbasaur"},
|
56 |
| - source_manifest=True, |
57 |
| - http_cache=cache, |
| 45 | + docker_image=True, |
| 46 | + use_host_network=True, |
| 47 | + http_cache=http_cache, |
58 | 48 | streams=["pokemon"],
|
59 | 49 | )
|
60 |
| -source_with_cache.read(cache=local_cache) |
| 50 | +source.check() |
| 51 | +print("Source check successful") |
| 52 | +source.read(cache=local_cache) |
61 | 53 | print("First run completed")
|
62 | 54 |
|
63 | 55 | print("Second run - should use cached responses...")
|
64 | 56 | source.read(cache=local_cache)
|
65 | 57 | print("Second run completed")
|
66 | 58 |
|
67 | 59 | print("Stopping HTTP cache...")
|
68 |
| -cache.stop() |
| 60 | +http_cache.stop() |
69 | 61 | print("HTTP cache stopped")
|
0 commit comments